Models
ORVEXA provides access to frontier AI models through a single OpenAI-compatible API. Specify a model using its model ID in your requests.
Available Models
| Model | Model ID | Provider | Context Window | Status |
|---|---|---|---|---|
| DeepSeek Chat (V3) | deepseek-chat | DeepSeek | 64K | Available |
| DeepSeek Reasoner (R1) | deepseek-reasoner | DeepSeek | 64K | Available |
Coming Soon
We are actively integrating additional model providers. The following providers will be available in the near future.
OpenAI
Soon
GPT-4o, GPT-4o Mini, o3, o4-mini
Anthropic
Soon
Claude Sonnet 4, Claude Opus 4, Claude 3.5 Sonnet
Soon
Gemini 2.5 Pro, Gemini 2.5 Flash
List Available Models
You can retrieve a list of all currently available models by querying the /v1/models endpoint.
GET /v1/modelsbash
curl https://api.orvexaproject.com/v1/models \
-H "Authorization: Bearer nx-sk-dcfab6de7407c3c5f74fb627"Using DeepSeek Reasoner
The deepseek-reasoner model performs chain-of-thought reasoning before generating a final answer, making it ideal for complex problem-solving tasks.
POST /v1/chat/completionsbash
curl https://api.orvexaproject.com/v1/chat/completions \
-H "Authorization: Bearer nx-sk-dcfab6de7407c3c5f74fb627" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-reasoner",
"messages": [
{"role": "user", "content": "Explain quantum computing in simple terms."}
]
}'