Configure Groq as an LLM provider for translation generation.
groq
llm.profiles.<name>.provider
{ "llm": { "profiles": { "default": { "provider": "groq", "model": "llama-3.3-70b-versatile", "prompt": "Translate from {{source}} to {{target}}:\n\n{{input}}" } } } }
export GROQ_BASE_URL="https://api.groq.com/openai/v1" export GROQ_API_KEY="your-groq-api-key"
Was this page helpful?