Configure Anthropic as an LLM provider for translation generation.
anthropic
llm.profiles.<name>.provider
{ "llm": { "profiles": { "default": { "provider": "anthropic", "model": "claude-sonnet-4-5", "prompt": "Translate from {{source}} to {{target}}:\n\n{{input}}" } } } }
export ANTHROPIC_BASE_URL="https://api.anthropic.com/v1" export ANTHROPIC_API_KEY="your-anthropic-api-key"
Was this page helpful?