From b6c29e475d868aee169b18b6fb53c0c2f7803afd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=B4=D0=B5=D0=BB=D0=B8=D0=BD=D0=B0=20=D0=A1=D0=B0?= =?UTF-8?q?=D1=82=D1=82=D0=B0=D1=80=D0=BE=D0=B2=D0=B0?= Date: Sun, 31 May 2026 16:18:26 +0000 Subject: [PATCH] Add README --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d3e4a8c --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# RAG Agent with ChromaDB and Tavily + +This repository contains a simple RAG agent that uses **ChromaDB** as a local vector store and **Tavily** for web search. The agent can decide whether to answer from the local knowledge base or fetch fresh information from the internet. + +## Features +- Local semantic search with ChromaDB + Ollama embeddings (`nomic-embed-text`). +- Web search via Tavily API. +- Automatic source selection (local vs web) in responses. +- CLI chat interface.