-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
61 lines (45 loc) · 1.59 KB
/
.env.example
File metadata and controls
61 lines (45 loc) · 1.59 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Babocument Server Configuration
# ============================================
# LLM Configuration (Ollama)
# ============================================
# Ollama API base URL
OLLAMA_BASE_URL=http://localhost:11434
# Ollama model storage directory (local path for model files)
# Windows: Use forward slashes or double backslashes
OLLAMA_MODELS=d:/models
# Default LLM model for general tasks
LLM_MODEL=ollama/llama3.2:3b
# LLM generation parameters
LLM_TEMPERATURE=0.7
LLM_MAX_TOKENS=500
LLM_TIMEOUT=30
# ============================================
# Vector Database (ChromaDB)
# ============================================
# ChromaDB storage directory
CHROMA_PERSIST_DIRECTORY=./data/chroma
# Embedding model for semantic search
EMBEDDING_MODEL=all-MiniLM-L6-v2
# ============================================
# Application Configuration
# ============================================
# Server host and port
HOST=0.0.0.0
PORT=8000
# Environment (development, staging, production)
ENVIRONMENT=development
# Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
LOG_LEVEL=INFO
# ============================================
# MCP Integration (Phase 2)
# ============================================
# MCP server endpoints (to be configured when Phase 2 starts)
# BIOMCP_URL=http://localhost:3000
# ARXIV_MCP_URL=http://localhost:3001
# BIORXIV_MCP_URL=http://localhost:3002
# ============================================
# Optional: Cloud API Fallbacks (Production)
# ============================================
# Uncomment if using cloud APIs as fallback
# OPENAI_API_KEY=sk-...
# FALLBACK_MODEL=gpt-4o-mini