-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 837 Bytes
/
Copy path.env.example
File metadata and controls
33 lines (26 loc) · 837 Bytes
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
27
28
29
30
31
32
33
# KeepContext AI — Environment Variables
# Copy this file to .env and fill in your values:
# cp .env.example .env
# --- Required API Keys ---
OPENAI_API_KEY=sk-your-openai-key
GROQ_API_KEY=gsk-your-groq-key
# --- App Settings (optional) ---
APP_NAME=keepcontext-ai
APP_VERSION=0.1.0
DEBUG=false
LOG_LEVEL=INFO
# --- ChromaDB (optional — defaults shown) ---
CHROMA_HOST=localhost
CHROMA_PORT=8100
# --- OpenAI Embeddings (optional — defaults shown) ---
OPENAI_EMBEDDING_MODEL=text-embedding-3-small
# --- Groq LLM (optional — defaults shown) ---
GROQ_MODEL=openai/gpt-oss-120b
GROQ_MAX_TOKENS=2048
# --- Neo4j Knowledge Graph (required user/password) ---
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=change-me
# --- Agent System (optional — defaults shown) ---
AGENT_MAX_STEPS=3
AGENT_TIMEOUT=120