OpenAI
OpenAI chat-completions, selected with LLM_PROVIDER=openai, used to extract facts from conversations. This is the default provider.
Enable it
bash
LLM_PROVIDER=openai
OPENAI_API_KEY=sk-...
OPENAI_BASE_URL=https://api.openai.com/v1
OPENAI_LLM_MODEL=gpt-4.1-nanoConfiguration
| Variable | Default | Description |
|---|---|---|
LLM_PROVIDER | openai | Set to openai. |
OPENAI_API_KEY | (none) | API key sent as a bearer token. Calls fail at runtime if unset. |
OPENAI_BASE_URL | https://api.openai.com/v1 | Chat-completions base URL. |
OPENAI_LLM_MODEL | gpt-4.1-nano | Model used for extraction. |
Notes
gpt-4.1-nanois the default: cheap and fast for high-volume fact extraction.- Requests run at
temperature=0.1with a 2000-token response cap. - Any OpenAI-compatible endpoint works here by changing
OPENAI_BASE_URL; the other OpenAI-compatible providers are thin presets over this same mechanism.