Compatible Clients Setup Guide
Connect your favorite third-party OpenAI-compatible clients to ORVEXA. All clients use the same API endpoint and authentication — configure once, use anywhere.
API Configuration
https://api.orvexaproject.com/v1Your ORVEXA API key (starts with orvexa-sk-)See the full list on the models page. Popular choices: deepseek-v3, gpt-4o, claude-3-5-sonnet.
Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(
base_url="https://api.orvexaproject.com/v1",
api_key="your-orvexa-api-key"
)
response = client.chat.completions.create(
model="deepseek-v3",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.orvexaproject.com/v1/chat/completions \
-H "Authorization: Bearer your-orvexa-api-key" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v3",
"messages": [{"role": "user", "content": "Hello!"}]
}'LobeChat
The #1 open-source AI chat framework with Agent Groups. Create multiple AI agents with distinct personas and orchestrate them in Sequential, Parallel, Iterative, or Debate collaboration modes. Available on Web, iOS, Android, macOS, Windows, Linux, and PWA.
OpenAI Compatiblehttps://api.orvexaproject.com/v1Your ORVEXA API key (orvexa-sk-...)deepseek-v3Setup Steps
- 1Visit lobehub.com or download LobeChat from GitHub (github.com/lobehub/lobe-chat)
- 2Open Settings > Language Model and add a custom provider
- 3Select "OpenAI" as the provider type
- 4Set API Proxy / Base URL to: https://api.orvexaproject.com/v1
- 5Paste your ORVEXA API key
- 6Go to the Agents section, create agents with custom system prompts and assign models
- 7Create an Agent Group, add multiple agents, then choose a collaboration mode (Sequential / Parallel / Iterative / Debate)
- 8Start chatting — your agent team collaborates automatically
Cherry Studio
A powerful desktop AI assistant with 300+ pre-built assistant templates. Supports multiple providers, knowledge bases, and side-by-side model comparison.
OpenAIhttps://api.orvexaproject.com/v1Your ORVEXA API key (orvexa-sk-...)deepseek-v3Setup Steps
- 1Download Cherry Studio from cherry-ai.com
- 2Go to Settings > Model Service
- 3Add a new provider and select "OpenAI"
- 4Set API Host to: https://api.orvexaproject.com/v1
- 5Paste your ORVEXA API key
- 6Add models (e.g., deepseek-v3, gpt-4o, claude-3-5-sonnet)
- 7Start a conversation or browse the assistant marketplace
Chatbox
A popular cross-platform desktop chat client that supports custom OpenAI-compatible endpoints.
OpenAI APIhttps://api.orvexaproject.com/v1Your ORVEXA API key (orvexa-sk-...)deepseek-v3Setup Steps
- 1Download and install Chatbox from chatboxai.app
- 2Open Settings (gear icon) and go to "Model Provider"
- 3Select "OpenAI API" as the provider
- 4Set API Host to: https://api.orvexaproject.com/v1
- 5Paste your ORVEXA API key
- 6Set the model to "deepseek-v3" or any model from the models list
- 7Save and start chatting
AionUI
A multi-agent desktop application for orchestrating AI workflows with custom API endpoints.
OpenAI Compatiblehttps://api.orvexaproject.com/v1Your ORVEXA API key (orvexa-sk-...)deepseek-v3Setup Steps
- 1Install AionUI from the official GitHub releases
- 2Navigate to Settings > API Configuration
- 3Add a new provider and select "OpenAI Compatible"
- 4Enter the Base URL: https://api.orvexaproject.com/v1
- 5Paste your ORVEXA API key
- 6Set the default model to "deepseek-v3"
Cline (VS Code)
An autonomous AI coding agent that runs in VS Code and supports custom OpenAI-compatible providers.
OpenAI Compatiblehttps://api.orvexaproject.com/v1Your ORVEXA API key (orvexa-sk-...)deepseek-v3Setup Steps
- 1Install the Cline extension from the VS Code Marketplace
- 2Open Cline and click the settings gear icon
- 3Under "API Provider", select "OpenAI Compatible"
- 4Set Base URL to: https://api.orvexaproject.com/v1
- 5Paste your ORVEXA API key
- 6Set Model ID to "deepseek-v3" (or another supported model)
- 7Start a new task and Cline will use ORVEXA
Roo Code (VS Code)
A powerful AI coding assistant for VS Code with support for custom OpenAI-compatible API endpoints.
OpenAI Compatiblehttps://api.orvexaproject.com/v1Your ORVEXA API key (orvexa-sk-...)deepseek-v3Setup Steps
- 1Install Roo Code from the VS Code Marketplace
- 2Open Roo Code settings (gear icon)
- 3Select "OpenAI Compatible" as the API provider
- 4Set the API Base URL to: https://api.orvexaproject.com/v1
- 5Enter your ORVEXA API key
- 6Set the model name to "deepseek-v3"
- 7Save and start coding
Third-Party Disclaimer
ORVEXA is not affiliated with, endorsed by, or sponsored by LobeChat, Cherry Studio, Chatbox, AionUI, Cline, Roo Code, or any other third-party client mentioned on this page. These are independent projects that support OpenAI-compatible APIs. All product names, logos, and brands are property of their respective owners.