Skip to main content

Expose any LangGraph agent as an OpenAI Responses API endpoint

Project description

LangGraph Responses Gateway

GitHub GitHub Stars GitHub Issues GitHub Actions

Bridge any LangGraph agent to OpenAI's Responses API format with zero configuration.

Overview

langgraph-responses-gateway is a lightweight Python package that exposes any LangGraph agent or multi-agent system as an OpenAI Responses API endpoint. This enables seamless integration with modern AI clients like Vercel AI SDK, OpenAI's client libraries, and any tool that supports the Responses API format.

Why This Package?

The AI ecosystem has a gap: while LangGraph provides powerful agent orchestration capabilities, and OpenAI's Responses API has become the de facto standard for AI interactions, there's no simple way to bridge the two. This package fills that gap.

Key Benefits

  • Zero Configuration: Works with any LangGraph CompiledGraph out of the box
  • Full Streaming Support: Native SSE streaming for real-time responses
  • Vercel AI SDK Compatible: Seamless integration with modern web frameworks
  • Type-Safe: Built with full type hints and OpenAI's official type definitions
  • Production Ready: Built on FastAPI with robust error handling

Installation

pip install langgraph-responses-gateway

Or with uv:

uv add langgraph-responses-gateway

Quick Start

Transform your LangGraph agent into an OpenAI-compatible API in just 3 lines:

from langgraph_responses_gateway import ResponsesGateway
from your_agent import create_agent_graph

# 1. Create your LangGraph
graph = create_agent_graph()

# 2. Wrap it as Responses API
gateway = ResponsesGateway(graph, name="My Agent")

# 3. Run the server
import uvicorn
uvicorn.run(gateway.app, host="0.0.0.0", port=8000)

Your agent is now accessible at http://localhost:8000/v1/responses!

Usage Examples

Basic Chat Request

import httpx

response = httpx.post(
    "http://localhost:8000/v1/responses",
    json={
        "messages": [{"role": "user", "content": "Hello!"}],
        "stream": False
    }
)
print(response.json())

Streaming with SSE

import httpx
import json

with httpx.stream("POST", "http://localhost:8000/v1/responses",
                  json={"messages": [{"role": "user", "content": "Tell me a story"}], 
                        "stream": True}) as r:
    for line in r.iter_lines():
        if line.startswith("data: "):
            event = json.loads(line[6:])
            if event["type"] == "response.text.delta":
                print(event["delta"], end="", flush=True)

With Vercel AI SDK

import { openai } from '@ai-sdk/openai'
import { streamText } from 'ai'

const result = await streamText({
  model: openai('langgraph-agent'),
  baseURL: 'http://localhost:8000/v1',
  messages: [{ role: 'user', content: 'Hello!' }],
})

for await (const chunk of result.textStream) {
  console.log(chunk)
}

Advanced Configuration

from langgraph_responses_gateway import ResponsesGateway

gateway = ResponsesGateway(
    graph=your_graph,
    name="Advanced Agent",
    version="2.0.0",
    base_path="/api/v2",  # Custom base path
    model_name="my-custom-model"  # Model name reported to clients
)

# Access additional request data
class CustomGateway(ResponsesGateway):
    def _prepare_graph_input(self, user_message: str, req):
        return {
            "messages": [{"role": "user", "content": user_message}],
            "thread_id": req.thread_id,  # Conversation threading
            "user_id": req.user_id,      # User isolation
            "metadata": req.metadata,     # Custom metadata
        }

API Endpoints

The gateway exposes the following endpoints:

POST /v1/responses

Create a response from the agent. Supports both streaming and non-streaming modes.

Request Body:

{
  "messages": [{"role": "user", "content": "Your message"}],
  "stream": true,
  "thread_id": "optional-thread-id",
  "user_id": "optional-user-id",
  "metadata": {}
}

GET /v1/models

List available models (returns your configured model name).

GET /health

Health check endpoint for monitoring.

Customization

Custom Content Extraction

Override the content extraction methods to handle your specific LangGraph output format:

class MyGateway(ResponsesGateway):
    def _extract_content_from_step(self, step):
        # Custom logic for your graph's streaming format
        if "my_custom_field" in step:
            return step["my_custom_field"]
        return super()._extract_content_from_step(step)

Custom Input Preparation

Customize how user messages are prepared for your graph:

class MyGateway(ResponsesGateway):
    def _prepare_graph_input(self, user_message: str, req):
        return {
            "query": user_message,
            "context": req.metadata.get("context", {}),
            "config": {"temperature": 0.7}
        }

Architecture

The gateway works by:

  1. Input Translation: Converting OpenAI Responses API requests to LangGraph input format
  2. Graph Execution: Running your LangGraph with the prepared input
  3. Output Streaming: Converting LangGraph's streaming output to SSE events
  4. Format Compliance: Ensuring all responses match OpenAI's Responses API specification

Requirements

  • Python 3.9+
  • LangGraph 0.5.0+
  • FastAPI 0.100.0+
  • Pydantic 2.0.0+

Development

Setup

# Clone the repository
git clone https://github.com/jero2rome/langgraph-responses-gateway
cd langgraph-responses-gateway

# Install with development dependencies
uv add --dev pytest pytest-asyncio pytest-cov black ruff mypy

# Run tests
uv run pytest

# Format code
uv run black src/
uv run ruff check --fix src/

Running Tests

# Run all tests
uv run pytest

# With coverage
uv run pytest --cov=langgraph_responses_gateway

# Specific test file
uv run pytest tests/test_gateway.py

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Created by Jerome Mohanan

Acknowledgments

  • Built on top of LangGraph by LangChain
  • Implements OpenAI's Responses API specification
  • Inspired by the need for better LangGraph ↔ OpenAI compatibility

Support

Roadmap

  • Tool calling support (convert LangGraph tools to Responses API format)
  • Reasoning output for complex agent traces
  • Automatic token counting with tiktoken
  • Built-in authentication and rate limiting
  • Support for other agent frameworks (CrewAI, AutoGen)
  • WebSocket support for bidirectional streaming
  • OpenTelemetry instrumentation

Related Projects

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

langgraph_responses_gateway-0.1.0.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

langgraph_responses_gateway-0.1.0-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file langgraph_responses_gateway-0.1.0.tar.gz.

File metadata

File hashes

Hashes for langgraph_responses_gateway-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1a1aab20417d895902f0dcf9c41afee1b6c0867e68be73b0a39cf57c0fe0577f
MD5 b8c414f1b877d41841b91f8366796187
BLAKE2b-256 1e80a90bcaa4a86221745f03c34ae5c0b40fba93a679dd8ca37676b8f283834b

See more details on using hashes here.

File details

Details for the file langgraph_responses_gateway-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for langgraph_responses_gateway-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4bcc1e9fc057c9ed876e8f404f07d5d846a06f7b7bf67e31688093f440ab127b
MD5 ae7896540fca3db8805dc8ad743b1573
BLAKE2b-256 e837357c667cde4778eb55c2272495382e1bb03be149ac8b2d03ad8016fb93ba

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page