Navigate the AI Model Galaxy
Access cutting-edge AI models through a seamless, OpenAI-compatible HTTP reverse proxy. No API key required. Stream responses in real-time.
Everything You Need to Build with AI
A complete reverse proxy solution designed for developers who want seamless access to AI models without the complexity.
OpenAI-Compatible
Drop-in replacement for OpenAI API calls. Use existing SDKs and tools without any modification to your workflow.
Zero Authentication
No API keys required. Start building immediately without sign-ups, token management, or billing setup.
Real-time Streaming
Server-sent events deliver responses as they generate. Watch tokens appear in real-time as the model thinks.
Model Discovery
Browse all available models via GET /v1/models. Explore capabilities, providers, and metadata effortlessly.
Low Latency
Optimized proxy layer handles high concurrency with minimal overhead and maximum throughput for your apps.
Docker Ready
Deploy with docker-compose in minutes. Python FastAPI backend with MongoDB, fully containerized and production-ready.
Explore Available Models
Each model in the galaxy is a star waiting to be explored. Discover their capabilities and start building with the power of advanced AI.
anthropic/claude-fable-5
Advanced language model optimized for academic research, coding tasks, and complex reasoning. Powers the teal-bot intermediate processing layer with state-of-the-art natural language understanding.
import requests
# List available models
response = requests.get(
"http://localhost:8000/v1/models"
)
models = response.json()
# Send a streaming completion request
completion = requests.post(
"http://localhost:8000/v1/chat/completions",
json={
"model": "anthropic/claude-fable-5",
"messages": [
{"role": "user",
"content": "Explain quantum computing"}
],
"stream": True
},
stream=True
)
# Process streaming output
for chunk in completion.iter_lines():
if chunk:
print(chunk.decode())Up and Running in Minutes
From deployment to your first AI response, teal-bot makes the process effortless.
Deploy with Docker
Spin up teal-bot using docker-compose. The Python FastAPI backend and MongoDB are configured and ready to go.
Discover Models
Send a GET request to /v1/models to list all available AI models and their capabilities in the system.
Send Requests
Forward your prompts through the OpenAI-compatible proxy. Use any existing SDK or HTTP client you prefer.
Stream Responses
Receive real-time streaming output as the model processes your request, token by token, with minimal latency.
Start Building with AI Today
No sign-ups. No API keys. No complexity. Just deploy teal-bot and start creating with the power of advanced AI models.

No comments yet. Be the first!