21 lines
554 B
YAML
21 lines
554 B
YAML
www_port: 8080
|
|
server_port: 8081
|
|
|
|
# Agent configuration
|
|
agent:
|
|
model: "claude-sonnet-4-20250514"
|
|
temperature: 0.7
|
|
context_docs_dir: "doc"
|
|
|
|
# Local memory configuration (free & sophisticated!)
|
|
memory:
|
|
# LangGraph checkpointing (SQLite for conversation state)
|
|
checkpoint_db: "data/checkpoints.db"
|
|
|
|
# ChromaDB (local vector DB for semantic search)
|
|
chroma_db: "data/chroma"
|
|
|
|
# Sentence-transformers model (local embeddings)
|
|
# Options: all-MiniLM-L6-v2 (fast, small), all-mpnet-base-v2 (better quality)
|
|
embedding_model: "all-MiniLM-L6-v2"
|