41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
# ===== LLM API Configuration =====
|
|
# Default: any OpenAI-compatible API
|
|
# With Prompture installed (pip install prompture): 12+ providers supported
|
|
#
|
|
# ── OpenAI-compatible (default, no Prompture needed) ──
|
|
LLM_API_KEY=your_api_key_here
|
|
LLM_BASE_URL=https://dashscope.aliyuncs.com/compatible-mode/v1
|
|
LLM_MODEL_NAME=qwen-plus
|
|
#
|
|
# ── With Prompture: use "provider/model" format ──
|
|
# LM Studio (free, local):
|
|
# LLM_MODEL_NAME=lmstudio/local-model
|
|
# LLM_BASE_URL=http://localhost:1234/v1
|
|
# LLM_API_KEY=lm-studio
|
|
#
|
|
# Ollama (free, local):
|
|
# LLM_MODEL_NAME=ollama/llama3.1:8b
|
|
#
|
|
# Kimi / Moonshot:
|
|
# LLM_MODEL_NAME=moonshot/moonshot-v1-8k
|
|
# LLM_API_KEY=your_moonshot_key
|
|
#
|
|
# Claude:
|
|
# LLM_MODEL_NAME=claude/claude-sonnet-4-20250514
|
|
# LLM_API_KEY=sk-ant-...
|
|
#
|
|
# Groq (fast, free tier):
|
|
# LLM_MODEL_NAME=groq/llama-3.1-70b-versatile
|
|
# LLM_API_KEY=gsk_...
|
|
#
|
|
# See all providers: https://github.com/jhd3197/prompture#providers
|
|
|
|
# ===== ZEP Memory Graph =====
|
|
# Free monthly quota: https://app.getzep.com/
|
|
ZEP_API_KEY=your_zep_api_key_here
|
|
|
|
# ===== Boost LLM (optional) =====
|
|
# LLM_BOOST_API_KEY=your_api_key_here
|
|
# LLM_BOOST_BASE_URL=your_base_url_here
|
|
# LLM_BOOST_MODEL_NAME=your_model_name_here
|