Access DeepSeek, Qwen, Kimi, GLM-4 and 10+ more Chinese LLMs through a single OpenAI-compatible endpoint. Same quality, 80% less cost.
Chinese AI models deliver comparable performance at a fraction of the cost
Every major Chinese AI model, unified under one OpenAI-compatible API
Drop-in replacement for OpenAI. Just change the base URL and model name.
from openai import OpenAI client = OpenAI( base_url="http://localhost:3000/v1", api_key="sk-your-api-key" ) response = client.chat.completions.create( model="deepseek-chat", messages=[ {"role": "user", "content": "Explain quantum computing"} ] ) print(response.choices[0].message.content)
curl http://localhost:3000/v1/chat/completions \ -H "Authorization: Bearer sk-your-key" \ -H "Content-Type: application/json" \ -d '{ "model": "deepseek-chat", "messages": [ {"role": "user", "content": "Hello!"} ] }'
Works with any OpenAI-compatible client
Pay only for what you use. No hidden fees.