Clanker Cloud
The clanker-cloud AI provider sends model requests through the Clanker Cloud LLM endpoint instead of calling a model vendor directly from the CLI.
Use this when the CLI should share the same hosted model path as Clanker Cloud or when a Clanker Cloud auth token should gate model access.
Provider Details
| Property | Value |
|---|---|
| Config key | clanker-cloud |
| Default model in generated config | gemini-3.5-flash |
| Auth method | Clanker Cloud auth token |
| API key env | CLANKER_CLOUD_AUTH_TOKEN |
Configuration
yaml
ai:
default_provider: clanker-cloud
providers:
clanker-cloud:
model: gemini-3.5-flash
base_url: https://clanker-auth-gw-zc0ce3o.uk.gateway.dev/v1/llm
api_key_env: CLANKER_CLOUD_AUTH_TOKENSet the token locally:
bash
export CLANKER_CLOUD_AUTH_TOKEN="..."
clanker ask --ai-profile clanker-cloud "summarize this infrastructure"Notes
base_urlpoints at the Clanker Cloud LLM gateway.- The token is sent as the API key for the hosted endpoint.
- This provider is useful for Clanker Cloud-integrated workflows; direct model-provider pages still apply when you want local API keys or vendor-native auth.