Skip to content

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

PropertyValue
Config keyclanker-cloud
Default model in generated configgemini-3.5-flash
Auth methodClanker Cloud auth token
API key envCLANKER_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_TOKEN

Set the token locally:

bash
export CLANKER_CLOUD_AUTH_TOKEN="..."
clanker ask --ai-profile clanker-cloud "summarize this infrastructure"

Notes

  • base_url points 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.

See Also