Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.gpuhub.com/llms.txt

Use this file to discover all available pages before exploring further.

claude-sonnet-4-6-cc is the Claude Code-focused variant of Anthropic Claude Sonnet 4.6. Use claude-sonnet-4-6 instead when you need the general-purpose model for non-Claude Code scenarios.
Create or copy your API key from the console before calling the API. Use the model unit price displayed in the console as the source of truth.

Endpoints

CompatibilityBase URL
Anthropic-compatiblehttps://api.gpuhub.com/api/v1/anthropic
OpenAI-compatiblehttps://api.gpuhub.com/api/v1

Claude Code

export ANTHROPIC_BASE_URL=https://api.gpuhub.com/api/v1/anthropic
export ANTHROPIC_AUTH_TOKEN=$API_KEY

# Optional: route Claude Code model aliases to this model.
export ANTHROPIC_DEFAULT_HAIKU_MODEL=claude-sonnet-4-6-cc
export ANTHROPIC_DEFAULT_SONNET_MODEL=claude-sonnet-4-6-cc
export ANTHROPIC_DEFAULT_OPUS_MODEL=claude-sonnet-4-6-cc

Python

# Install the SDK first if needed:
# pip install anthropic

from anthropic import Anthropic

client = Anthropic(
    api_key="YOUR_API_KEY",
    base_url="https://api.gpuhub.com/api/v1/anthropic",
)

message = client.messages.create(
    model="claude-sonnet-4-6-cc",
    max_tokens=1024,
    messages=[
        {"role": "user", "content": "Hello! Review this implementation plan."}
    ],
)

print(message.content[0].text)

Use with Cherry Studio

To use this model in Cherry Studio, configure the matching provider type and add the model name shown on this page. See Cherry Studio for setup details.