praisonai serve openai starts a FastAPI server that exposes OpenAI-compatible HTTP endpoints — point any existing OpenAI SDK code at it and it works as a drop-in replacement.
The user points an OpenAI SDK client at the server; chat completions route to your PraisonAI agent.
Quick Start
1
Simple Usage
http://localhost:8765 by default.2
With Configuration
How It Works
Endpoints
All endpoints follow the OpenAI REST specification.Streaming
Setstream=True to receive tokens via Server-Sent Events:
data: [DONE] sentinel. Errors during streaming are also sent as SSE events:
Tool Invocation
/v1/tools/invoke is a PraisonAI extension that calls an agent tool by name. It requires --agents-url to point to a running agents server.
Authentication
Pass--api-key to require authentication:
Authorization header:
CLI Reference
Choosing Between serve openai and serve rag --openai-compat
For OpenAI-compatible RAG queries, use
praisonai serve rag --openai-compat instead. See RAG CLI for details.Error Shape
All errors follow the OpenAI error format:Best Practices
Set an API key for production
Set an API key for production
Always pass
--api-key when running on a public or shared network. The default configuration accepts unauthenticated requests.Bind to 0.0.0.0 for external access
Bind to 0.0.0.0 for external access
The default
127.0.0.1 only accepts local connections. Use --host 0.0.0.0 to accept connections from other machines — always pair with --api-key.Route model names with LiteLLM
Route model names with LiteLLM
The server passes
model directly to the underlying LLM. Use LiteLLM-style model names (ollama/llama3, anthropic/claude-3-5-sonnet-20241022) to route to any provider.When to use the unified server instead
When to use the unified server instead
Use
praisonai serve unified when you need multiple protocol surfaces (MCP, A2A, agents) alongside the OpenAI-compat layer. Use serve openai for a lightweight standalone deployment that only exposes OpenAI endpoints.Related
Serve Commands
All praisonai serve subcommands
Gateway
Unified gateway and control plane
RAG OpenAI Compat
OpenAI-compatible RAG server
LLM Endpoint Config
Configure LLM provider endpoints

