initial commit with charts and assistant chat

This commit is contained in:
2026-03-02 00:08:19 -04:00
commit d907c5765e
1828 changed files with 50054 additions and 0 deletions

20
backend/config.yaml Normal file
View File

@@ -0,0 +1,20 @@
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"