Backend With FastAPI

Ma Mahalakshmi V Updated 16 Sep 2026
7 min read ·Lesson 62 of 224

Why FastAPI Fits This Application Specifically

FastAPI is a Python web framework built around type hints and async support — two properties that map directly onto what Lesson 1's design actually needs. Its request and response models are built on Pydantic, the same library Unit 6's structured outputs use for defining a response schema, so validating what a client sends to this application follows the identical mental model already established for validating what the model returns. And FastAPI's native async support is what makes it possible to use the AsyncOpenAI client from Unit 12, Lesson 6 directly inside a request handler, so one user's document upload or chat request doesn't block the server from handling anyone else's request in the meantime.

Setting Up the Application and Request Models

The application starts with FastAPI's app object and Pydantic models describing exactly what shape each endpoint's request and response take.

from fastapi import FastAPI, HTTPException
from pydantic import BaseModel
from openai import AsyncOpenAI

app = FastAPI()
async_client = AsyncOpenAI()

class UploadDocumentRequest(BaseModel):
    filename: str
    content: str

class UploadDocumentResponse(BaseModel):
    document_id: str
    chunk_count: int

class ChatRequest(BaseModel):
    conversation_id: str
    message: str

class ChatResponse(BaseModel):
    reply: str
    conversation_id: str

Defining these models up front, following Unit 6's discipline around explicit schemas, means FastAPI automatically validates every incoming request against them — a request missing the required message field, or sending the wrong type for conversation_id, is rejected with a clear validation error before the endpoint's own code ever runs, the same reliability benefit structured outputs provide on the model's side of a request, applied here to what arrives from a client.

In-Memory Storage for This Capstone's Scope

Following Lesson 1's explicit scoping decision to keep persistence simple, document chunks, their embeddings, and conversation history are held in memory for this capstone, with Lesson 4 noting where a real deployment would replace this with an actual database.

document_store: dict = {}       # document_id -> list of {"text": ..., "embedding": ...}
conversation_store: dict = {}   # conversation_id -> list of {"role": ..., "content": ...}

Implementing Document Ingestion

The upload endpoint chunks the incoming document text and generates an embedding for each chunk, directly reusing Unit 10's chunking and embedding patterns.

import uuid

def chunk_by_paragraph(text: str) -> list:
    return [p.strip() for p in text.split("\n\n") if p.strip()]

@app.post("/documents/upload", response_model=UploadDocumentResponse)
async def upload_document(request: UploadDocumentRequest):
    chunks = chunk_by_paragraph(request.content)
    if not chunks:
        raise HTTPException(status_code=400, detail="Document contained no usable text.")

    embedding_response = await async_client.embeddings.create(
        model="text-embedding-4",
        input=chunks,
    )

    document_id = str(uuid.uuid4())
    document_store[document_id] = [
        {"text": chunk, "embedding": embedding_data.embedding}
        for chunk, embedding_data in zip(chunks, embedding_response.data)
    ]

    return UploadDocumentResponse(document_id=document_id, chunk_count=len(chunks))

Embedding every chunk in a single embeddings.create() call, passing the full list of chunks as input, is more efficient than a separate call per chunk — the embeddings endpoint accepts a batch of inputs directly, and zip(chunks, embedding_response.data) pairs each original chunk back up with its corresponding embedding vector in the response, preserving the order both were submitted in.

Implementing Retrieval

Given a question, the most relevant stored chunks across all uploaded documents are found using the same cosine-similarity approach from Unit 10, Lesson 3.

import numpy as np

def cosine_similarity(vector_a: list, vector_b: list) -> float:
    a, b = np.array(vector_a), np.array(vector_b)
    return float(np.dot(a, b) / (np.linalg.norm(a) * np.linalg.norm(b)))

async def retrieve_relevant_chunks(query: str, top_k: int = 5) -> list:
    query_embedding_response = await async_client.embeddings.create(
        model="text-embedding-4",
        input=query,
    )
    query_embedding = query_embedding_response.data[0].embedding

    all_chunks = [chunk for chunks in document_store.values() for chunk in chunks]
    if not all_chunks:
        return []

    scored_chunks = [
        (cosine_similarity(query_embedding, chunk["embedding"]), chunk["text"])
        for chunk in all_chunks
    ]
    scored_chunks.sort(key=lambda pair: pair[0], reverse=True)
    return [text for _, text in scored_chunks[:top_k]]

This flattens chunks from every uploaded document into a single searchable collection — a deliberate simplification appropriate for this capstone's scope, where a production system with a large number of documents and users would more likely need per-user or per-collection scoping (and, at real scale, the vectorized NumPy approach from Unit 10, Lesson 3, or a dedicated vector database, rather than scoring every chunk in a Python loop).

Implementing the Tool

Following Lesson 1's design, one tool beyond retrieval is included: looking up which documents are currently loaded, a request better served by a direct function than by semantic search over document content.

from agents import function_tool

@function_tool
def list_loaded_documents() -> str:
    """Return the number of documents currently loaded into the assistant."""
    return f"{len(document_store)} document(s) currently loaded."

Implementing the Chat Endpoint

The chat endpoint ties every other piece together: retrieval, conversation history, and the tool, combined into a single request following Lesson 1's designed conversation flow.

@app.post("/chat", response_model=ChatResponse)
async def chat(request: ChatRequest):
    history = conversation_store.setdefault(request.conversation_id, [])
    relevant_chunks = await retrieve_relevant_chunks(request.message)
    context_block = "\n\n".join(relevant_chunks) if relevant_chunks else "No relevant document content found."

    system_instructions = (
        "Answer the user's question using only the provided document context. "
        "If the context doesn't contain the answer, say so rather than guessing.\n\n"
        f"Document context:\n{context_block}"
    )

    messages = [{"role": "system", "content": system_instructions}] + history + [
        {"role": "user", "content": request.message}
    ]

    try:
        response = await async_client.responses.create(
            model="gpt-5.6-terra",
            input=messages,
            tools=[list_loaded_documents],
        )
    except Exception as e:
        raise HTTPException(status_code=502, detail=f"Upstream model request failed: {e}")

    reply_text = response.output_text
    history.append({"role": "user", "content": request.message})
    history.append({"role": "assistant", "content": reply_text})

    return ChatResponse(reply=reply_text, conversation_id=request.conversation_id)

conversation_store.setdefault(request.conversation_id, []) retrieves the existing history for a known conversation or starts a new empty one, directly implementing Unit 4's conversation-state pattern without needing the platform's own conversation-state mechanism, since history here is explicitly managed for full visibility into what gets sent on each turn — again, a deliberate choice matching this capstone's goal of making every step inspectable. The system instructions are rebuilt fresh on every turn with the current retrieval results, since which document chunks are relevant can change entirely from one question to the next even within the same ongoing conversation.

Translating Upstream Errors Into HTTP Responses

The try/except block around the model call reflects Unit 12, Lesson 1's error-handling guidance, adapted to a web application's specific need to return something meaningful to the calling client rather than simply letting an unhandled exception propagate as a generic server error.

from openai import APIStatusError

@app.post("/chat", response_model=ChatResponse)
async def chat_with_detailed_errors(request: ChatRequest):
    try:
        response = await async_client.responses.create(model="gpt-5.6-terra", input=request.message)
    except APIStatusError as e:
        if e.status_code == 429:
            raise HTTPException(status_code=503, detail="The assistant is temporarily overloaded. Please try again shortly.")
        raise HTTPException(status_code=502, detail="The assistant encountered an upstream error.")

    return ChatResponse(reply=response.output_text, conversation_id=request.conversation_id)

Translating a 429 from the model API into a 503 returned to this application's own client — rather than passing the raw upstream status code straight through — reflects that the meaning of "too many requests" is specific to the relationship between this application and the model API, not necessarily the right status code to describe the relationship between this application and whoever is calling it.

Common Mistakes

Using the synchronous OpenAI client inside an async def FastAPI route, blocking the entire server for the duration of every model call rather than allowing other requests to be handled concurrently, exactly the mistake Unit 12, Lesson 6 warned against.

Rebuilding conversation history or retrieval context inconsistently between turns, such as retrieving document context once and reusing stale results across a multi-turn conversation instead of retrieving fresh context for each new question.

Letting an unhandled exception from the model API propagate as a generic, uninformative server error, rather than catching it and returning a status code and message that's actually meaningful to the calling client.

Storing conversation history and document embeddings without any bound, which works for a capstone's scope but would grow memory usage without limit in a real, long-running deployment.

Best Practices

Use the async client throughout, matching FastAPI's own async request handling, so one slow model call doesn't block the server from serving other users.

Define explicit Pydantic request and response models for every endpoint, gaining automatic request validation the same way Unit 6's structured outputs validate model responses.

Retrieve fresh context on every conversation turn rather than caching it across turns, since relevance can shift entirely from one question to the next.

Translate upstream API errors into status codes and messages meaningful to this application's own clients, rather than passing raw upstream errors through unchanged.

0 Comments

Reviewed before they appear

No comments yet.

OpenAI SDK
Introduction to the OpenAI SDK Setting Up Python Creating an API Key Your First Call — client.responses.create() and response.output_text Understanding Billing, Credits, and What a Request Costs Why Responses Replaced Chat Completions Anatomy of a Request: model, input, and instructions Anatomy of a Response: The Typed output Array, Not Just Text Roles: User, Assistant, and Developer/System Choosing a Model, and Reading the Models Page Instead of Memorizing Names Instructions vs. Input Writing Prompts That Get Consistent Results Few-Shot Examples Reasoning Models and the reasoning Parameter Debugging a Prompt That Misbehaves Why Streaming Matters for User Experience stream=True and Iterating Over Events Handling the Event Types You Actually Care About Background Mode for Long-Running Jobs Project — Add Live Streaming to Your Chatbot The Problem With Parsing Free Text JSON Schema and Strict Mode Pydantic Models With the SDK's Parse Helpers Handling Refusals and Validation Failures Project — A Resume-to-JSON Extractor Working With input_image input_file, PDFs, and the Files API Image Generation Speech-to-Text and Text-to-Speech Project: A PDF Question-Answering Script What Function Calling Is Defining a Tool Schema The Full Loop Multiple Tools Errors, Timeouts, and Untrusted Arguments Project: A Weather Assistant Web Search File Search and Vector Stores Code Interpreter Remote MCP Servers and Connectors Project: A Research Assistant What an Embedding Is, Without the Maths Generating and Storing Embeddings Similarity Search From Scratch Hosted Vector Stores vs. Rolling Your Own A Small RAG App Over a Folder of Notes Agents vs. a Single API Call — When You Need One pip install openai Giving Agents Tools Handoffs and Multi-Agent Triage Guardrails and Approvals Tracing and Observing What Your Agent Did A Multi-Agent Support Desk Error Codes and What Each One Means Retries, Timeouts, and Backoff Rate Limits and Spend Limits Prompt Caching and Cost Optimisation The Batch API for Bulk Work Async Clients and Concurrency Moderation and Safety Best Practices Designing the App Backend With FastAPI Streaming to a Simple Frontend Deploying and a Cost/Safety Checklist Why Web Search Is Useful for Current Information Using the Web Search Tool with the Responses API Configuring Search Behavior for Application Use Cases Understanding Citations and Source Attribution Where to Go Next Building a Research Assistant with Web Search Combining Web Search with Structured Outputs Handling Conflicting or Low-Quality Web Sources Reducing Unsupported Claims with Grounded Generation Testing Freshness-Sensitive AI Answers Production Considerations for Web-Grounded Applications Understanding File Search and Retrieval-Augmented Generation Creating and Organizing Vector Stores Uploading Documents for Retrieval Connecting Vector Stores to Responses API Requests Designing Document Metadata and Filtering Strategies Building a PDF Question-Answering Application Improving Retrieval Quality With Better Document Preparation Handling Missing Evidence and Retrieval Failures Combining File Search With Web Search Building a Production Knowledge-Base Assistant What the Code Interpreter Tool Is Designed For Running Python-Based Analysis Through the OpenAI SDK Uploading Datasets for Analysis Analyzing CSV and Spreadsheet Data Generating Charts and Data Summaries Handling Generated Files and Downloadable Artifacts Building a Data-Analysis Assistant Combining Code Execution with Structured Outputs Validating Generated Calculations and Results Security and Sandbox Considerations for Code Execution Understanding Multimodal Input with the OpenAI SDK Sending Images to a Model Image Analysis from URLs and Uploaded Files Extracting Text and Information from Screenshots Building an Image-Question-Answering Application Combining Image Input with Structured Output Analyzing Multiple Images in One Request Handling Image Quality and Input Limitations Designing Multimodal Prompts for Reliable Results Building a Practical Vision-Powered Python Application Understanding Speech-to-Text and Text-to-Speech Workflows Transcribing Audio with the OpenAI SDK Working with Uploaded Audio Files Handling Timestamps and Transcription Metadata Building a Meeting Transcription Workflow Generating Spoken Responses from Text Handling Long Audio and Processing Failures Combining Audio with Text and Tool Calling Building an End-to-End Python Voice Application What Embeddings Are and When to Use Them Generating Embeddings With the OpenAI API Preparing Text for Embedding Comparing Vectors With Cosine Similarity Building a Simple Semantic Search Engine in Python Storing Embeddings in a Database Metadata Filtering for Semantic Search Chunking Strategies for Better Retrieval Evaluating Semantic Search Quality Building a Document Similarity Application When Batch Processing Makes Sense Designing Large-Volume AI Processing Pipelines Using Asynchronous Python with the OpenAI SDK Running Concurrent Requests Safely Controlling Concurrency and Avoiding Rate Limits Tracking Batch Job Progress Handling Partial Failures in Bulk Workloads Retrying Failed Items Without Duplicating Successful Work Designing Resumable AI Processing Jobs Building a Production Batch-Processing Pipeline Batch Processing Makes Sense Large-Scale AI Processing Pipelines Async Python with OpenAI SDK Safe Concurrent Requests Concurrency & Rate Limits Batch Progress Tracking Partial Failure Handling Safe Retry Handling Resumable AI Jobs Production Batch Pipeline System–User Data Separation Reusable App Instructions Prompt Templates & Variables Extraction & Classification Prompts Summarization & Transformation Prompts Explicit Output Requirements Prompt Version Management Prompt Testing & Evaluation Reusable Python Prompt Library API Key Security Secure API Key Storage Secure Secret Management Prompt Injection Prevention Trusted vs. Untrusted Content Tool Argument Validation Sensitive Data Handling Secure Logging AI Action Authorization Production AI Security Checklist Why AI Applications Need Evaluation Beyond Unit Tests Unit Testing OpenAI SDK Integration Code Mocking API Responses in Python Tests Testing Structured Outputs Against Schemas Testing Tool-Calling Workflows Building a Small Evaluation Dataset Measuring Accuracy, Consistency, and Failure Rates Regression Testing Prompts and Model Changes Human Evaluation Versus Automated Evaluation Creating a Repeatable Evaluation Pipeline AI Request Monitoring Token Cost Management Usage Metrics Design Reducing Model Calls Prompt & Context Optimization Model Selection & Optimization AI Caching Strategies Interactive Latency Optimization Usage Dashboards & Budget Alerts Performance & Cost Checklist Every API Call Starts Fresh Fixing API Statelessness Server-Side Conversation Memory Limits of Response Chaining What We're Building Conversation Memory Challenges Preparing an OpenAI SDK Application for Deployment Environment-Specific Configuration for Development and Production Deploying a Python AI Service with Docker Container Health Checks and Startup Configuration Managing Secrets in Cloud Deployments Background Workers for Long-Running AI Tasks Queues and Asynchronous Job Architectures Scaling AI Workloads Horizontally Monitoring Production Incidents and Failures Production Deployment Checklist for OpenAI SDK Applications Reusable OpenAI Service Classes AI Client Dependency Injection Typed AI Responses Python Configuration Management AI Request Decorators Centralized AI Error Handling Clean SDK Abstractions Reusable OpenAI Utilities Internal AI Python Libraries SDK Integration Maintenance Production AI Chatbot Document Q&A System Web Research Assistant Customer Support Agent AI Data Analysis Assistant Image Analysis App Meeting Transcription & Summary Semantic Document Search Multi-Tool AI Agent Production OpenAI SDK App Why "It Looked Fine When I Tested It" Isn't Enough Timing Note Status Note Pre-Decision Status Note Current Availability Note
Ask about this post
AI Ask about this post

Ask questions about Backend With FastAPI and get answers drawn from it.

Signed-in readers only.