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

Base URLhttps://api.orvexaproject.com/v1
API KeyYour ORVEXA API key (starts with orvexa-sk-)
Available Models

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.

Connection Settings
Provider TypeOpenAI Compatible
Base URLhttps://api.orvexaproject.com/v1
API KeyYour ORVEXA API key (orvexa-sk-...)
Default Modeldeepseek-v3

Setup Steps

  1. 1Visit lobehub.com or download LobeChat from GitHub (github.com/lobehub/lobe-chat)
  2. 2Open Settings > Language Model and add a custom provider
  3. 3Select "OpenAI" as the provider type
  4. 4Set API Proxy / Base URL to: https://api.orvexaproject.com/v1
  5. 5Paste your ORVEXA API key
  6. 6Go to the Agents section, create agents with custom system prompts and assign models
  7. 7Create an Agent Group, add multiple agents, then choose a collaboration mode (Sequential / Parallel / Iterative / Debate)
  8. 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.

Connection Settings
ProviderOpenAI
API Hosthttps://api.orvexaproject.com/v1
API KeyYour ORVEXA API key (orvexa-sk-...)
Modeldeepseek-v3

Setup Steps

  1. 1Download Cherry Studio from cherry-ai.com
  2. 2Go to Settings > Model Service
  3. 3Add a new provider and select "OpenAI"
  4. 4Set API Host to: https://api.orvexaproject.com/v1
  5. 5Paste your ORVEXA API key
  6. 6Add models (e.g., deepseek-v3, gpt-4o, claude-3-5-sonnet)
  7. 7Start a conversation or browse the assistant marketplace

Chatbox

A popular cross-platform desktop chat client that supports custom OpenAI-compatible endpoints.

Connection Settings
ProviderOpenAI API
API Hosthttps://api.orvexaproject.com/v1
API KeyYour ORVEXA API key (orvexa-sk-...)
Modeldeepseek-v3

Setup Steps

  1. 1Download and install Chatbox from chatboxai.app
  2. 2Open Settings (gear icon) and go to "Model Provider"
  3. 3Select "OpenAI API" as the provider
  4. 4Set API Host to: https://api.orvexaproject.com/v1
  5. 5Paste your ORVEXA API key
  6. 6Set the model to "deepseek-v3" or any model from the models list
  7. 7Save and start chatting

AionUI

A multi-agent desktop application for orchestrating AI workflows with custom API endpoints.

Connection Settings
Provider TypeOpenAI Compatible
Base URLhttps://api.orvexaproject.com/v1
API KeyYour ORVEXA API key (orvexa-sk-...)
Modeldeepseek-v3

Setup Steps

  1. 1Install AionUI from the official GitHub releases
  2. 2Navigate to Settings > API Configuration
  3. 3Add a new provider and select "OpenAI Compatible"
  4. 4Enter the Base URL: https://api.orvexaproject.com/v1
  5. 5Paste your ORVEXA API key
  6. 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.

Connection Settings
API ProviderOpenAI Compatible
Base URLhttps://api.orvexaproject.com/v1
API KeyYour ORVEXA API key (orvexa-sk-...)
Model IDdeepseek-v3

Setup Steps

  1. 1Install the Cline extension from the VS Code Marketplace
  2. 2Open Cline and click the settings gear icon
  3. 3Under "API Provider", select "OpenAI Compatible"
  4. 4Set Base URL to: https://api.orvexaproject.com/v1
  5. 5Paste your ORVEXA API key
  6. 6Set Model ID to "deepseek-v3" (or another supported model)
  7. 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.

Connection Settings
ProviderOpenAI Compatible
Base URLhttps://api.orvexaproject.com/v1
API KeyYour ORVEXA API key (orvexa-sk-...)
Modeldeepseek-v3

Setup Steps

  1. 1Install Roo Code from the VS Code Marketplace
  2. 2Open Roo Code settings (gear icon)
  3. 3Select "OpenAI Compatible" as the API provider
  4. 4Set the API Base URL to: https://api.orvexaproject.com/v1
  5. 5Enter your ORVEXA API key
  6. 6Set the model name to "deepseek-v3"
  7. 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.