From 340471a1245d2a97ac3f17aba469b372f3d5ea9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A0=D0=B8=D0=BD=D0=B0=D1=80=20=D0=9C=D0=B8=D1=80=D0=B7?= =?UTF-8?q?=D0=B0=D0=B3=D0=B8=D1=82=D0=BE=D0=B2?= Date: Tue, 16 Jun 2026 13:12:26 +0000 Subject: [PATCH] Build ChromaDB + Tavily RAG agent with Ollama embeddings, local/web tools, create_agent routing, and CLI ingest flow.: add documents/chroma_intro.txt --- documents/chroma_intro.txt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 documents/chroma_intro.txt diff --git a/documents/chroma_intro.txt b/documents/chroma_intro.txt new file mode 100644 index 0000000..810bd26 --- /dev/null +++ b/documents/chroma_intro.txt @@ -0,0 +1,5 @@ +ChromaDB is a local vector store that can persist embeddings between runs. + +With LangChain you can wrap Chroma as a vector store and then expose it as a retriever for semantic search. + +This is useful for local course notes and internal documents that should be searched without going to the web.