-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (21 loc) · 1.11 KB
/
Copy path.env.example
File metadata and controls
26 lines (21 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Copy to .env and fill in your values
# ── LLM Backend ───────────────────────────────────────────────────────────────
# Ollama (default)
# LLM_BACKEND=ollama
# LLM_BASE_URL=http://localhost:11434
# LLM_MODEL=llama3.1
# LLM_API_KEY=
# vLLM example:
LLM_BACKEND=openai
LLM_BASE_URL=http://localhost:8000
LLM_MODEL=mistralai/Mistral-7B-Instruct-v0.3
# LiteLLM proxy example:
# LLM_BACKEND=openai
# LLM_BASE_URL=http://localhost:4000
# LLM_MODEL=ollama/llama3.1
# LLM_API_KEY=your-litellm-master-key
# ── Streaming ─────────────────────────────────────────────────────────────────
TOOL_CALL_OPEN_TOKEN={"tool_call"
STREAM_CHUNK_SIZE=32
# ── Server ────────────────────────────────────────────────────────────────────
LOG_LEVEL=info