A unified API server for multiple AI providers
This server provides access to OpenAI, Anthropic, and Google AI models through a single API.
Quick Start:
curl -X POST https://your-domain.vercel.app/api/chat \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{"provider": "openai", "model": "gpt-3.5-turbo", "messages": [{"role": "user", "content": "Hello!"}]}'