Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
650f891
docs: update claude-code documentation to include latest models
jdambron Jun 10, 2026
078877a
chore: sync static model snapshot
github-actions[bot] Jun 10, 2026
e92e88a
chore: sync static model snapshot
github-actions[bot] Jun 10, 2026
86b0be1
chore: sync static model snapshot
github-actions[bot] Jun 11, 2026
5a4e3ec
chore: sync static model snapshot
github-actions[bot] Jun 12, 2026
a48aeb9
chore: sync static model snapshot
github-actions[bot] Jun 12, 2026
c920f52
chore: sync static model snapshot
github-actions[bot] Jun 15, 2026
20b11cf
chore: sync static model snapshot
github-actions[bot] Jun 15, 2026
0108c3b
chore: sync static model snapshot
github-actions[bot] Jun 16, 2026
b3c0ace
chore: sync static model snapshot
github-actions[bot] Jun 17, 2026
3e48d3f
chore: sync static model snapshot
github-actions[bot] Jun 17, 2026
0a3295b
chore: sync static model snapshot
github-actions[bot] Jun 18, 2026
1fcb2a0
chore: sync static model snapshot
github-actions[bot] Jun 18, 2026
209fbe8
chore: sync static model snapshot
github-actions[bot] Jun 18, 2026
701745e
chore: sync static model snapshot
github-actions[bot] Jun 22, 2026
fadc7a0
chore: sync static model snapshot
github-actions[bot] Jun 22, 2026
d2a01c1
chore: sync static model snapshot
github-actions[bot] Jun 22, 2026
4dfc084
chore: sync static model snapshot
github-actions[bot] Jun 23, 2026
393760c
chore: sync static model snapshot
github-actions[bot] Jun 23, 2026
838c2e8
chore: sync static model snapshot
github-actions[bot] Jun 24, 2026
0233bb8
chore: sync static model snapshot
github-actions[bot] Jun 24, 2026
16dbdc1
chore: sync static model snapshot
github-actions[bot] Jun 25, 2026
f5ec027
chore: sync static model snapshot
github-actions[bot] Jun 25, 2026
2c2cab0
chore: sync static model snapshot
github-actions[bot] Jun 25, 2026
347b47d
Merge branch 'main' into main
jdambron Jun 26, 2026
d8bec17
chore: sync static model snapshot
github-actions[bot] Jun 26, 2026
6a240f7
chore: sync static model snapshot
github-actions[bot] Jun 26, 2026
2682299
chore: sync static model snapshot
github-actions[bot] Jun 26, 2026
1fab69f
chore: sync static model snapshot
github-actions[bot] Jun 29, 2026
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
26 changes: 18 additions & 8 deletions guides/integrations/claude-code.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
title: Claude Code
description: Configure the Claude Code CLI to route Anthropic Claude Opus and Sonnet requests through Venice for private, usage-based coding agent inference.
"og:title": "Claude Code with Venice | Venice API Docs"
"og:description": "Set up Claude Code to use Claude Opus 4.5/4.6 and Sonnet 4.5/4.6 through Venice AI"
"og:description": "Set up Claude Code to use Claude Opus 4.5/4.6/4.7/4.8, Sonnet 4.5/4.6/4.7/4.8, and Fable 5 through Venice AI"
---

[Claude Code](https://docs.anthropic.com/en/docs/claude-code) is Anthropic's CLI tool for agentic coding. This guide shows you how to run it through Venice AI for pay-per-token access to Claude Opus 4.5/4.6 and Sonnet 4.5/4.6.
[Claude Code](https://docs.anthropic.com/en/docs/claude-code) is Anthropic's CLI tool for agentic coding. This guide shows you how to run it through Venice AI for pay-per-token access to Claude Opus 4.5/4.6/4.7/4.8, Sonnet 4.5/4.6/4.7/4.8, and Fable 5.

<CardGroup cols={3}>
<Card title="Pay Per Token" icon="coins">
No subscription. Pay only for what you use
</Card>
<Card title="Claude Models" icon="microchip">
Access Opus 4.5/4.6 and Sonnet 4.5/4.6 through Venice
Access Opus 4.5/4.6/4.7/4.8, Sonnet 4.5/4.6/4.7/4.8, and Fable 5 through Venice
</Card>
<Card title="Prompt Caching" icon="bolt">
Venice caching works alongside Claude Code
Expand Down Expand Up @@ -110,18 +110,23 @@ Claude Code connects directly to Anthropic's API by default. To use it with Veni
"claude-sonnet-4-5",
"claude-opus-4-6",
"claude-opus-4-6-fast",
"claude-sonnet-4-6"
"claude-sonnet-4-6",
"claude-opus-4-7",
"claude-opus-4-7-fast",
"claude-opus-4-8",
"claude-opus-4-8-fast",
"claude-fable-5"
],
"transformer": {
"use": ["anthropic"]
}
}
],
"Router": {
"default": "venice,claude-opus-4-5",
"think": "venice,claude-opus-4-5",
"background": "venice,claude-opus-4-5",
"longContext": "venice,claude-opus-4-5",
"default": "venice,claude-opus-4-8",
"think": "venice,claude-opus-4-8",
"background": "venice,claude-opus-4-8",
"longContext": "venice,claude-opus-4-8",
"longContextThreshold": 100000
}
}
Expand Down Expand Up @@ -159,6 +164,11 @@ Claude Code connects directly to Anthropic's API by default. To use it with Veni
| Claude Opus 4.6 | `claude-opus-4-6` | Complex reasoning, large refactors |
| Claude Opus 4.6 Fast | `claude-opus-4-6-fast` | Complex reasoning with lower latency |
| Claude Sonnet 4.6 | `claude-sonnet-4-6` | Fast iteration, everyday coding |
| Claude Opus 4.7 | `claude-opus-4-7` | Complex reasoning, large refactors |
| Claude Opus 4.7 Fast | `claude-opus-4-7-fast` | Complex reasoning with lower latency |
| Claude Opus 4.8 | `claude-opus-4-8` | Complex reasoning, large refactors |
| Claude Opus 4.8 Fast | `claude-opus-4-8-fast` | Complex reasoning with lower latency |
| Claude Fable 5 | `claude-fable-5` | Complex tasks requiring the most intelligence |

<Info>
Claude Code is optimized for Claude models. While other models available through Venice (GPT, DeepSeek, Grok, etc.) may work, we cannot guarantee an equivalent experience since Claude Code relies on Claude-specific features like extended thinking. For other models, consider using Venice's [standard API](/api-reference/endpoint/chat/completions).
Expand Down
4 changes: 2 additions & 2 deletions model-search.js

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions overview/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ Prices per 1M tokens unless noted. All prices in USD. 1 Diem = $1/day of compute
| Claude Opus 4.5 | `claude-opus-4-5` | $6.00 | $30.00 | $0.60 | $7.50 | 198K | Anonymized |
| Claude Opus 4.6 (Beta) | `claude-opus-4-6` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |
| Claude Opus 4.7 | `claude-opus-4-7` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |
| Claude Opus 4.7 Fast (Beta) | `claude-opus-4-7-fast` | $36.00 | $180.00 | $3.60 | $45.00 | 1000K | Anonymized |
| Claude Opus 4.8 | `claude-opus-4-8` | $6.00 | $30.00 | $0.60 | $7.50 | 1000K | Anonymized |
| Claude Opus 4.8 Fast (Beta) | `claude-opus-4-8-fast` | $12.00 | $60.00 | $1.20 | $15.00 | 1000K | Anonymized |
| Claude Sonnet 4.5 | `claude-sonnet-4-5` | $3.75 | $18.75 | $0.38 | $4.69 | 198K | Anonymized |
| Claude Sonnet 4.6 (Beta) | `claude-sonnet-4-6` | $3.60 | $18.00 | $0.36 | $4.50 | 1000K | Anonymized |
| DeepSeek V3.2 | `deepseek-v3.2` | $0.33 | $0.48 | $0.16 | - | 160K | Private |
| DeepSeek V4 Flash | `deepseek-v4-flash` | $0.17 | $0.35 | $0.03 | - | 1000K | Anonymized |
| DeepSeek V4 Pro | `deepseek-v4-pro` | $1.73 | $3.80 | $0.33 | - | 1000K | Anonymized |
| DeepSeek V4 Flash | `deepseek-v4-flash` | $0.14 | $0.28 | $0.03 | - | 1000K | Anonymized |
| DeepSeek V4 Pro | `deepseek-v4-pro` | $1.65 | $3.30 | $0.33 | - | 1000K | Anonymized |
| Gemini 3 Flash Preview | `gemini-3-flash-preview` | $0.70 | $3.75 | $0.07 | - | 256K | Anonymized |
| Gemini 3.1 Pro Preview | `gemini-3-1-pro-preview` | $2.50 | $15.00 | $0.50 | $0.50 | 1000K | Anonymized |
| ↳ >200K Context | | $5.00 | $22.50 | $0.50 | $0.50 | | |
Expand Down Expand Up @@ -197,7 +196,6 @@ Prices per 1M tokens unless noted. All prices in USD. 1 Diem = $1/day of compute
| Luma Uni-1 Max | `luma-uni-1-max-edit` | $0.13 |
| Nano Banana 2 | `nano-banana-2-edit` | $0.10 |
| Nano Banana Pro | `nano-banana-pro-edit` | $0.18 |
| Qwen Edit 2511 | `qwen-edit` | $0.04 |
| Qwen Edit Uncensored | `qwen-edit-uncensored` | $0.04 |
| Qwen Image 2 | `qwen-image-2-edit` | $0.05 |
| Qwen Image 2 Pro | `qwen-image-2-pro-edit` | $0.10 |
Expand Down