DhruvSoni commited on
Commit
e63cd17
·
1 Parent(s): d50b9bf

docs: Add README.md with Hugging Face Space configuration

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Multi-Agent RAG System
3
+ emoji: 🤖
4
+ colorFrom: blue
5
+ colorTo: indigo
6
+ sdk: docker
7
+ app_port: 7860
8
+ pinned: false
9
+ ---
10
+
11
+ # Multi-Agent RAG System
12
+
13
+ A FastAPI-based multi-agent research assistant running on Hugging Face Spaces.
14
+
15
+ ## Interactive API Docs
16
+ Once deployed, the Swagger interactive documentation is available at:
17
+ `https://dhruvsoni-multi-agent-rag-system.hf.space/docs`
18
+
19
+ ## Local Setup
20
+
21
+ 1. Install dependencies:
22
+ ```bash
23
+ pip install -r requirement.txt
24
+ ```
25
+ 2. Start the FastAPI server locally:
26
+ ```bash
27
+ uvicorn main:app --reload
28
+ ```