Unified AI Gateway Ā· Port 3210 Ā· v4.1.0

Perplexity
Chatgpt
Claude
Gemini
šŸ’¬ Live Chat Ā· via WebSocket Disconnected
Connect and start chatting with AI ⚔

šŸŽÆ ONE Endpoint — Everything

Same URL for chat, search, translate, code, analyze. Use "function" field to change behavior.

POST /v1/chat/completions

// Chat
{"model": "claude", "message": "Hello"}

// Search — add "function": "search"
{"model": "perplexity", "message": "AI news", "function": "search"}

// Translate — add "function": "translate" + "to"
{"model": "gemini", "message": "Hello", "function": "translate", "to": "Hindi"}

// Code — add "function": "code"
{"model": "claude", "message": "Sort algo", "function": "code"}
šŸ“Š Live Stats
Requests
1
0 errors
Uptime
86884s
Chatgpt
4.6s
1 calls Ā· 4.6s–4.6s
Auto-refreshes every 10s
šŸ¤– Models
chatgpt Ā· gpt-4 Ā· openai
claude Ā· sonnet Ā· anthropic
gemini Ā· google Ā· bard
perplexity Ā· pplx Ā· sonar
auto → best available
⚔ Functions (same endpoint, different body)
chatNo function field neededDefault
search"function": "search"Web search + AI
translate"function": "translate", "to": "Hindi"Translate text
brainstorm"function": "brainstorm"Generate ideas
code"function": "code", "action": "generate|review|debug|explain"Code tools
analyze"function": "analyze", "url": "..."Analyze URL/content
security_audit"function": "security_audit", "code": "..."Security vulnerability scan
debate"function": "debate"Multi-perspective debate
šŸ“– Examples — ALL use same URL

Chat

curl http://localhost:3210/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{"model": "claude", "message": "What is AI?"}'

Search (same URL, add function)

curl http://localhost:3210/v1/chat/completions \
  -d '{"model": "perplexity", "message": "AI news 2026", "function": "search"}'

Translate (same URL, add function + to)

curl http://localhost:3210/v1/chat/completions \
  -d '{"model": "gemini", "message": "Hello world", "function": "translate", "to": "Hindi"}'

Code Generate (same URL, add function + action)

curl http://localhost:3210/v1/chat/completions \
  -d '{"model": "claude", "message": "Sort algorithm", "function": "code", "action": "generate", "language": "Python"}'

Any Model — Same Pattern

// ChatGPT se search
{"model": "chatgpt", "message": "AI trends", "function": "search"}

// Gemini se code
{"model": "gemini", "message": "REST API", "function": "code"}

// Perplexity se chat
{"model": "perplexity", "message": "Explain quantum computing"}

// Auto pick — har cheez ke liye
{"model": "auto", "message": "Hello"}
Proxima API v4.1.0 — Zen4-bit ⚔