Skip to content

Groq

Groq's OpenAI-compatible chat-completions endpoint, selected with LLM_PROVIDER=groq, used to extract facts from conversations.

Enable it

bash
LLM_PROVIDER=groq
OPENAI_API_KEY=<groq-api-key>
OPENAI_BASE_URL=https://api.groq.com/openai/v1
OPENAI_LLM_MODEL=llama-3.3-70b-versatile

Configuration

VariableDefaultDescription
LLM_PROVIDERopenaiSet to groq.
OPENAI_API_KEY(none)Groq API key, sent as a bearer token.
OPENAI_BASE_URLhttps://api.openai.com/v1Point at Groq's endpoint: https://api.groq.com/openai/v1.
OPENAI_LLM_MODELgpt-4.1-nanoA Groq-hosted model, e.g. llama-3.3-70b-versatile.

Notes

  • OpenAI-compatible: the provider reuses the OpenAI request handling and only differs by base URL, key, and model.
  • You must override OPENAI_BASE_URL to Groq's endpoint; its default points at OpenAI.

The memory layer for AI agents.