Building an End-to-End Python Voice Application

Ma Mahalakshmi V Updated 16 Sep 2026
9 min read ·Lesson 114 of 224

Assembling the Complete System

Every preceding lesson in this unit built one piece of a voice application: transcription, upload handling, timestamps, meeting workflows, synthesis, architecture decisions, long-audio handling, and tool calling. This lesson assembles those pieces into a single, coherent, end-to-end command-line voice application — a working program that accepts a spoken question as an audio file, reasons about it (including calling a tool when appropriate), and produces a spoken answer as an audio file. The goal is not to introduce new API concepts, but to show how the pieces fit together into a realistic, structured codebase, since real applications are judged as much by their overall organization as by any single component's correctness.

Project Structure

A voice application like this benefits from separating concerns into distinct modules rather than one large script, mirroring how you would organize any production Python project:

voice_app/
    __init__.py
    config.py
    transcription.py
    synthesis.py
    tools.py
    assistant.py
    cli.py

Each file has a single, clear responsibility: config.py holds shared configuration, transcription.py and synthesis.py wrap the STT and TTS calls respectively, tools.py defines the available tool functions and their schemas, assistant.py contains the conversation and tool-calling loop, and cli.py is the thin command-line entry point that ties everything together. This separation is what makes each piece independently testable using the dependency-injection patterns from earlier lessons, and it means a future change — swapping which model is used, adding a new tool, changing the voice — touches only one file rather than requiring changes scattered across a monolithic script.

config.py

from openai import OpenAI

MODEL_NAME = "gpt-5.6-terra"
DEFAULT_VOICE = "alloy"
MAX_UPLOAD_BYTES = 25 * 1024 * 1024

client = OpenAI()

Centralizing configuration values like MODEL_NAME and DEFAULT_VOICE in one place, rather than repeating the string literal "gpt-5.6-terra" throughout the codebase, means changing models later (a near-certainty over an application's lifetime) requires editing one line instead of hunting through every file for hardcoded references. The single shared client instance is imported wherever needed, rather than each module constructing its own, which keeps client configuration (API keys, timeouts, retry settings) consistent across the whole application.

transcription.py

from pathlib import Path
from openai import APIError

from .config import client, MODEL_NAME, MAX_UPLOAD_BYTES


class TranscriptionError(Exception):
    pass


def transcribe_audio_file(file_path: str) -> str:
    path = Path(file_path)

    if not path.exists():
        raise TranscriptionError(f"Audio file not found: {file_path}")

    if path.stat().st_size > MAX_UPLOAD_BYTES:
        raise TranscriptionError(f"Audio file exceeds the {MAX_UPLOAD_BYTES} byte limit")

    try:
        with path.open("rb") as audio_file:
            transcript = client.audio.transcriptions.create(
                model=MODEL_NAME,
                file=audio_file,
            )
    except APIError as exc:
        raise TranscriptionError(f"Transcription failed: {exc}") from exc

    return transcript.text

This directly reuses the validation-then-transcribe pattern from Lesson 2, now pulling client and MODEL_NAME from the shared config module rather than defining them locally. This is a small but meaningful benefit of the module structure: the transcription logic does not need to know or care how the client was configured, only that a correctly configured one is available to import.

synthesis.py

from pathlib import Path

from .config import client, MODEL_NAME, DEFAULT_VOICE


def synthesize_reply(text: str, output_path: str, voice: str = DEFAULT_VOICE) -> None:
    response = client.audio.speech.create(
        model=MODEL_NAME,
        voice=voice,
        input=text,
    )
    Path(output_path).write_bytes(response.read())

This mirrors the synthesis function from Lesson 6, again reusing shared configuration rather than duplicating constants. Keeping this function narrow — it does exactly one thing, synthesize text to an audio file — makes it trivial to test in isolation and easy to reuse if a future feature needs to synthesize speech somewhere else in the application.

tools.py

import json


def get_order_status(order_id: str) -> dict:
    fake_database = {
        "A100": {"status": "shipped", "eta_days": 2},
        "A200": {"status": "processing", "eta_days": 5},
    }
    return fake_database.get(order_id, {"status": "not_found"})


TOOLS = [
    {
        "type": "function",
        "function": {
            "name": "get_order_status",
            "description": "Look up the current status and estimated delivery time for an order.",
            "parameters": {
                "type": "object",
                "properties": {
                    "order_id": {"type": "string", "description": "The order identifier, e.g. A100."}
                },
                "required": ["order_id"],
            },
        },
    }
]

AVAILABLE_FUNCTIONS = {"get_order_status": get_order_status}


def call_tool(function_name: str, arguments_json: str):
    if function_name not in AVAILABLE_FUNCTIONS:
        raise KeyError(f"Unknown tool requested: {function_name}")
    arguments = json.loads(arguments_json)
    result = AVAILABLE_FUNCTIONS[function_name](**arguments)
    return json.dumps(result)

This module isolates everything related to tool definitions and execution, directly extending the pattern from Lesson 9. call_tool wraps the guarded lookup, argument parsing, and execution into one function, giving assistant.py a single clean entry point rather than needing to know the details of JSON parsing or dictionary lookups itself. Adding a new tool to this application means adding one function, one schema entry in TOOLS, and one entry in AVAILABLE_FUNCTIONS — no changes needed anywhere else in the codebase.

assistant.py

from .config import client, MODEL_NAME
from .tools import TOOLS, call_tool


def get_assistant_reply(conversation_history: list[dict]) -> str:
    response = client.chat.completions.create(
        model=MODEL_NAME,
        messages=conversation_history,
        tools=TOOLS,
    )
    message = response.choices[0].message

    if message.tool_calls:
        conversation_history.append(message.model_dump())

        for tool_call in message.tool_calls:
            result_json = call_tool(tool_call.function.name, tool_call.function.arguments)
            conversation_history.append({
                "role": "tool",
                "tool_call_id": tool_call.id,
                "content": result_json,
            })

        follow_up = client.chat.completions.create(
            model=MODEL_NAME,
            messages=conversation_history,
            tools=TOOLS,
        )
        final_content = follow_up.choices[0].message.content
        conversation_history.append({"role": "assistant", "content": final_content})
        return final_content

    conversation_history.append({"role": "assistant", "content": message.content})
    return message.content

This is the same tool-calling conversation loop built in Lesson 9, now delegating tool execution entirely to call_tool from tools.py rather than inlining the lookup and execution logic directly. This module's only responsibility is managing the conversation flow — deciding when a tool call is needed and feeding results back — while the actual mechanics of what a tool does and how it is invoked live entirely in tools.py. This separation is what allows either module to change independently: adding a new tool never requires touching assistant.py, and changing the conversation loop's structure never requires touching tools.py.

cli.py

import sys

from .transcription import transcribe_audio_file, TranscriptionError
from .synthesis import synthesize_reply
from .assistant import get_assistant_reply


def run(audio_input_path: str, audio_output_path: str) -> int:
    conversation_history = [
        {"role": "system", "content": "You are a helpful voice assistant for an online store."}
    ]

    try:
        user_text = transcribe_audio_file(audio_input_path)
    except TranscriptionError as exc:
        print(f"Error: {exc}", file=sys.stderr)
        return 1

    print(f"User said: {user_text}")
    conversation_history.append({"role": "user", "content": user_text})

    reply_text = get_assistant_reply(conversation_history)
    print(f"Assistant replied: {reply_text}")

    synthesize_reply(reply_text, audio_output_path)
    print(f"Spoken reply written to: {audio_output_path}")
    return 0


if __name__ == "__main__":
    if len(sys.argv) != 3:
        print("Usage: python -m voice_app.cli <input_audio_path> <output_audio_path>", file=sys.stderr)
        sys.exit(1)

    exit_code = run(sys.argv[1], sys.argv[2])
    sys.exit(exit_code)

run is the orchestration function tying every module together: transcribe, converse (with tool calling handled transparently inside get_assistant_reply), then synthesize. It returns an integer exit code (0 for success, 1 for failure) rather than raising an exception or calling sys.exit directly, which keeps run itself testable as an ordinary function — a test can call run(...) and check its return value, without needing to catch a SystemExit or worry about the process actually terminating. The if __name__ == "__main__": block is what turns this into a runnable command-line tool: it reads command-line arguments from sys.argv, validates that exactly the expected number were provided, calls run, and only then translates the result into an actual process exit via sys.exit(exit_code). This separation between "the logic" (run) and "the command-line wiring" (the __main__ block) is standard practice for any CLI tool, since it keeps the core logic reusable outside of a command-line context — for example, from a web server or a test suite — without dragging along command-line-specific concerns like argument parsing.

Testing the Fully Assembled Application

Because every module was written with dependency injection and clear separation of concerns in mind, the orchestration logic in run can be tested by substituting fake versions of the underlying transcription, assistant, and synthesis functions:

def test_run_produces_expected_flow(monkeypatch):
    calls = {"synthesize_args": None}

    def fake_transcribe(path):
        assert path == "input.wav"
        return "What is the status of order A100?"

    def fake_get_reply(history):
        assert history[-1]["content"] == "What is the status of order A100?"
        return "Order A100 has shipped and should arrive in 2 days."

    def fake_synthesize(text, output_path, voice="alloy"):
        calls["synthesize_args"] = (text, output_path)

    monkeypatch.setattr("voice_app.cli.transcribe_audio_file", fake_transcribe)
    monkeypatch.setattr("voice_app.cli.get_assistant_reply", fake_get_reply)
    monkeypatch.setattr("voice_app.cli.synthesize_reply", fake_synthesize)

    from voice_app.cli import run
    exit_code = run("input.wav", "output.mp3")

    assert exit_code == 0
    assert calls["synthesize_args"] == (
        "Order A100 has shipped and should arrive in 2 days.",
        "output.mp3",
    )
    print("PASS: run_produces_expected_flow")

This test uses monkeypatch (a standard pytest fixture for temporarily replacing an attribute for the duration of a test) to substitute fake implementations of the three functions run depends on, each defined inline with assert statements confirming it receives the arguments the real flow should produce at that stage. This tests the entire orchestration logic — the sequence of transcribe, converse, synthesize, and how their outputs and inputs chain together — without a single real API call, real audio file, or real network connection anywhere in the test. This is the payoff of the modular structure and dependency-injection discipline maintained throughout this unit: the most important integration logic in the entire application is fully testable in milliseconds, deterministically, as part of an ordinary automated test suite.

Extending the Application

This structure scales naturally in directions a real project would need. Adding conversation persistence across separate program invocations means saving and loading conversation_history to a file or database at the start and end of run. Adding the long-audio handling from Lesson 8 means checking the input file's duration in transcribe_audio_file and routing to a chunking implementation when it exceeds a threshold. Migrating from the pipeline architecture to a Realtime-based architecture, as discussed in Lesson 7, would primarily affect assistant.py and the way cli.py orchestrates the flow, while tools.py's tool definitions could largely be reused unchanged — a concrete illustration of why keeping tool definitions in their own module, decoupled from the specific conversation architecture, pays off if the application's architecture ever needs to evolve.

Common Mistakes

Writing the entire pipeline as one long script with no module boundaries, which causes the codebase to become difficult to test, difficult to extend, and difficult for a second developer to understand quickly. The module separation shown here is not bureaucratic overhead — it directly enables the fast, dependency-free testing demonstrated above.

Hardcoding configuration values like model names and voices in multiple files, which causes inconsistency and tedious, error-prone updates when a value needs to change. Centralize shared configuration, as done in config.py.

Mixing command-line argument handling with core application logic, which causes the core logic to become difficult to reuse or test outside of a command-line context. Keep a thin CLI wrapper (cli.py's __main__ block) separate from the actual orchestration function (run).

Best Practices

Structure a multi-component audio application into single-responsibility modules, mirroring the structure demonstrated here: transcription, synthesis, tool definitions, conversation orchestration, and command-line wiring each in their own file.

Design every function to accept its dependencies (a client, a configuration value, another function) explicitly, rather than reaching for global state internally, so that dependency injection for testing — the pattern used consistently across every lesson in this unit — remains possible throughout the application, not just in isolated examples.

Return structured results and exit codes from orchestration logic rather than calling sys.exit or printing directly inside it. This keeps the core logic testable and reusable outside of the specific context (a command-line invocation) it was originally written for.

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 Building an End-to-End Python Voice Application and get answers drawn from it.

Signed-in readers only.