-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
24 lines (20 loc) · 1.2 KB
/
Copy path.env
File metadata and controls
24 lines (20 loc) · 1.2 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
# ── Ollama (local IBM Granite) ─────────────────────────────────────────────────
# 1. Install Ollama from https://ollama.com/download
# 2. Start the server: ollama serve
# 3. Pull the model: ollama pull granite3.3
#
# OLLAMA_BASE_URL — change only if Ollama runs on a non-default host/port
OLLAMA_BASE_URL=http://localhost:11434
# Granite model tag. Options (pick one):
# granite3.3 ~4.9 GB disk / ~6 GB RAM — best quality, recommended
# granite3.1-dense:2b ~1.5 GB disk / ~2 GB RAM — lighter, lower quality
OLLAMA_MODEL=granite3.3:2b
# ── LLM generation tunables (optional — defaults are sensible) ─────────────────
# LLM_TEMPERATURE=0.7
# LLM_TOP_P=0.9
# LLM_MAX_NEW_TOKENS=2048
# ── Local storage paths (defaults work out of the box) ────────────────────────
# SQLITE_PATH=data/scriptify.db
# CHROMA_PATH=data/chroma
# ── FastAPI base URL (used by Streamlit frontend) ─────────────────────────────
# API_BASE_URL=http://localhost:8000