Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 114 additions & 0 deletions docs/customize/model-providers/more/claudexia.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
---
title: "Claudexia"
description: "Configure Claudexia with Continue — a pay-per-token Claude API gateway with OpenAI- and Anthropic-compatible endpoints"
---

<Info>
[Claudexia](https://claudexia.tech) is a pay-per-token gateway to Claude (and other frontier models) with OpenAI- and Anthropic-compatible APIs. Get an API key from the [Claudexia dashboard](https://claudexia.tech).
</Info>

Claudexia exposes an OpenAI-compatible endpoint at `https://api.claudexia.tech/v1`, so you can use it with Continue via the `openai` provider by setting `apiBase`.

## Chat Model

<Tabs>
<Tab title="YAML">
```yaml title="config.yaml"
name: My Config
version: 0.0.1
schema: v1

models:
- name: Claude Sonnet 4.6 (Claudexia)
provider: openai
model: claude-sonnet-4-6
apiKey: <YOUR_CLAUDEXIA_API_KEY>
apiBase: https://api.claudexia.tech/v1
```
</Tab>
<Tab title="JSON">
```json title="config.json"
{
"models": [
{
"title": "Claude Sonnet 4.6 (Claudexia)",
"provider": "openai",
"model": "claude-sonnet-4-6",
"apiKey": "<YOUR_CLAUDEXIA_API_KEY>",
"apiBase": "https://api.claudexia.tech/v1"
}
]
}
```
</Tab>
</Tabs>

## Available Models

Claudexia routes to Anthropic's Claude family and other frontier models. Common model IDs:

- `claude-opus-4-7`
- `claude-sonnet-4-6`
- `claude-haiku-4-5`
- `gpt-5.5`

See the full list at [claudexia.tech](https://claudexia.tech).

## Multiple Models

<Tabs>
<Tab title="YAML">
```yaml title="config.yaml"
name: My Config
version: 0.0.1
schema: v1

models:
- name: Claude Opus 4.7
provider: openai
model: claude-opus-4-7
apiKey: <YOUR_CLAUDEXIA_API_KEY>
apiBase: https://api.claudexia.tech/v1
roles:
- chat
- edit

- name: Claude Haiku 4.5
provider: openai
model: claude-haiku-4-5
apiKey: <YOUR_CLAUDEXIA_API_KEY>
apiBase: https://api.claudexia.tech/v1
roles:
- autocomplete
- apply
```
</Tab>
<Tab title="JSON">
```json title="config.json"
{
"models": [
{
"title": "Claude Opus 4.7",
"provider": "openai",
"model": "claude-opus-4-7",
"apiKey": "<YOUR_CLAUDEXIA_API_KEY>",
"apiBase": "https://api.claudexia.tech/v1",
"roles": ["chat", "edit"]
},
{
"title": "Claude Haiku 4.5",
"provider": "openai",
"model": "claude-haiku-4-5",
"apiKey": "<YOUR_CLAUDEXIA_API_KEY>",
"apiBase": "https://api.claudexia.tech/v1",
"roles": ["autocomplete", "apply"]
}
]
}
```
</Tab>
</Tabs>

<Tip>
Sign up and grab an API key at [claudexia.tech](https://claudexia.tech). Pay-per-token billing supports SBP, card, and USDT — no VPN required.
</Tip>
1 change: 1 addition & 0 deletions docs/customize/model-providers/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Beyond the top-level providers, Continue supports many other options:
| [Together AI](/customize/model-providers/more/together) | Platform for running a variety of open models |
| [DeepInfra](/customize/model-providers/more/deepinfra) | Hosting for various open source models |
| [OpenRouter](/customize/model-providers/top-level/openrouter) | Gateway to multiple model providers |
| [Claudexia](/customize/model-providers/more/claudexia) | Pay-per-token Claude API gateway, OpenAI/Anthropic-compatible |
| [ClawRouter](/customize/model-providers/more/clawrouter) | Open-source LLM router with automatic cost-optimized model selection |
| [Tetrate Agent Router Service](/customize/model-providers/top-level/tetrate_agent_router_service) | Gateway with intelligent routing across multiple model providers |
| [Cohere](/customize/model-providers/more/cohere) | Models specialized for semantic search and text generation |
Expand Down
1 change: 1 addition & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@
"group": "More Providers",
"pages": [
"customize/model-providers/more/asksage",
"customize/model-providers/more/claudexia",
"customize/model-providers/more/clawrouter",
"customize/model-providers/more/deepseek",
"customize/model-providers/more/deepinfra",
Expand Down
Loading