OpenAI Passthrough
Pass-through endpoints for /openai
Overviewโ
| Feature | Supported | Notes | 
|---|---|---|
| Cost Tracking | โ | Not supported | 
| Logging | โ | Works across all integrations | 
| Streaming | โ | Fully supported | 
When to use this?โ
- For 90% of your use cases, you should use the native LiteLLM OpenAI Integration (/chat/completions,/embeddings,/completions,/images,/batches, etc.)
- Use this passthrough to call less popular or newer OpenAI endpoints that LiteLLM doesn't fully support yet, such as /assistants,/threads,/vector_stores
Simply replace https://api.openai.com with LITELLM_PROXY_BASE_URL/openai
Usage Examplesโ
Assistants APIโ
Create OpenAI Clientโ
Make sure you do the following:
- Point base_urlto yourLITELLM_PROXY_BASE_URL/openai
- Use your LITELLM_API_KEYas theapi_key
import openai
client = openai.OpenAI(
    base_url="http://0.0.0.0:4000/openai",  # <your-proxy-url>/openai
    api_key="sk-anything"  # <your-proxy-api-key>
)
Create an Assistantโ
# Create an assistant
assistant = client.beta.assistants.create(
    name="Math Tutor",
    instructions="You are a math tutor. Help solve equations.",
    model="gpt-4o",
)
Create a Threadโ
# Create a thread
thread = client.beta.threads.create()
Add a Message to the Threadโ
# Add a message
message = client.beta.threads.messages.create(
    thread_id=thread.id,
    role="user",
    content="Solve 3x + 11 = 14",
)
Run the Assistantโ
# Create a run to get the assistant's response
run = client.beta.threads.runs.create(
    thread_id=thread.id,
    assistant_id=assistant.id,
)
# Check run status
run_status = client.beta.threads.runs.retrieve(
    thread_id=thread.id,
    run_id=run.id
)
Retrieve Messagesโ
# List messages after the run completes
messages = client.beta.threads.messages.list(
    thread_id=thread.id
)
Delete the Assistantโ
# Delete the assistant when done
client.beta.assistants.delete(assistant.id)