-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 975 Bytes
/
.env.example
File metadata and controls
34 lines (28 loc) · 975 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
34
# tinyMem Environment Variables Example
# Proxy Port (Default: 8080)
TINYMEM_PROXY_PORT=8080
# LLM Backend Configuration
TINYMEM_LLM_BASE_URL=http://localhost:11434/v1
TINYMEM_LLM_API_KEY=your_api_key_here
TINYMEM_LLM_TIMEOUT_SECONDS=10000
# Logging Configuration (levels: debug, info, warn, error)
TINYMEM_LOG_LEVEL=info
TINYMEM_LOG_FILE=.tinyMem/logs/tinymem.log
# Memory Recall Settings
TINYMEM_RECALL_MAX_ITEMS=10
TINYMEM_RECALL_MAX_TOKENS=2000
TINYMEM_SEMANTIC_ENABLED=false
TINYMEM_HYBRID_WEIGHT=0.5
# Evidence Verification (Security Sensitive)
TINYMEM_EVIDENCE_ALLOW_COMMAND=false
TINYMEM_EVIDENCE_ALLOWED_COMMANDS=go test,grep,ls
TINYMEM_EVIDENCE_COMMAND_TIMEOUT_SECONDS=20
# Chain-of-Verification (CoVe) Settings
TINYMEM_COVE_ENABLED=true
TINYMEM_COVE_CONFIDENCE_THRESHOLD=0.6
TINYMEM_COVE_MAX_CANDIDATES=20
TINYMEM_COVE_TIMEOUT_SECONDS=30
TINYMEM_COVE_MODEL=
TINYMEM_COVE_RECALL_FILTER_ENABLED=false
# Metrics and Instrumentation
TINYMEM_METRICS_ENABLED=true