mirror of
https://github.com/coleam00/context-engineering-intro.git
synced 2025-12-17 17:55:29 +00:00
9 lines
366 B
Plaintext
9 lines
366 B
Plaintext
|
|
# ===== LLM Configuration =====
|
||
|
|
# Provider: openai, anthropic, gemini, ollama, etc.
|
||
|
|
LLM_PROVIDER=openai
|
||
|
|
# Your LLM API key
|
||
|
|
LLM_API_KEY=sk-your-openai-api-key-here
|
||
|
|
# LLM to use for the agents (e.g., gpt-4.1-mini, gpt-4.1, claude-4-sonnet)
|
||
|
|
LLM_CHOICE=gpt-4.1-mini
|
||
|
|
# Base URL for the LLM API (change for Ollama or other providers)
|
||
|
|
LLM_BASE_URL=https://api.openai.com/v1
|