krishna1705 commited on
Commit
018e104
·
verified ·
1 Parent(s): 72d65aa

Upload readme.md

Browse files
Files changed (1) hide show
  1. readme.md +17 -0
readme.md ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Project: AI Agent with RAG using LangGraph
2
+
3
+ Steps to Run:
4
+ 1. Install requirements:
5
+ pip install -r requirements.txt
6
+
7
+ 2. Add your OpenAI API key in agent_rag.py
8
+
9
+ 3. Add knowledge.txt with domain content
10
+
11
+ 4. Run:
12
+ python agent_rag.py
13
+
14
+ Agent Overview:
15
+ The agent follows a 4-stage workflow using LangGraph:
16
+ Plan → Retrieve → Answer → Reflect.
17
+ It uses ChromaDB for vector storage and OpenAI for embeddings and generation.