.env.example 688 B

123456789101112131415161718192021222324
  1. # mem0 server (your LAN address)
  2. MEM0_BASE_URL=http://192.168.0.200:8420
  3. MEM0_AGENT_ID=knowledge_base
  4. # Groq
  5. GROQ_API_KEY=your_groq_key_here
  6. GROQ_MODEL=meta-llama/llama-4-scout-17b-16e-instruct
  7. # Folders (defaults work out of the box)
  8. BOOKS_INBOX=./books/inbox
  9. BOOKS_PROCESSING=./books/processing
  10. BOOKS_DONE=./books/done
  11. BOOKS_MANIFESTS=./books/manifests
  12. # Chunking
  13. CHUNK_SIZE_TOKENS=350
  14. INGEST_DELAY=0.5 # default — 2 chunks/sec, gentle on the GPU
  15. #INGEST_DELAY=1.0 # 1 chunk/sec — if GPU still runs hot
  16. #INGEST_DELAY=0.2 # faster — if GPU handles it fine
  17. #INGEST_DELAY=0.0 # no throttle — full speed, GPU on its own
  18. # Logging: DEBUG | INFO | WARNING
  19. LOG_LEVEL=INFO