Sathvik-kota commited on
Commit
f7e541e
Β·
verified Β·
1 Parent(s): ff8f39c

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +48 -28
README.md CHANGED
@@ -130,34 +130,54 @@ If not β†’ FAISS index is rebuilt from cached embeddings.
130
  ---
131
 
132
  # Folder Structure
133
- src/
134
- doc_service/
135
- app.py
136
- utils.py
137
- embed_service/
138
- app.py
139
- embedder.py
140
- cache_manager.py
141
- search_service/
142
- app.py
143
- indexer.py
144
- explain_service/
145
- app.py
146
- explainer.py
147
- api_gateway/
148
- app.py
149
- ui/
150
- streamlit_app.py
151
- data/
152
- docs/
153
- <all .txt documents>
154
- cache/
155
- faiss_index.bin
156
- faiss_meta.pkl
157
- requirements.txt
158
- Dockerfile
159
- start.sh
160
- README.md
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
 
162
 
163
  ---
 
130
  ---
131
 
132
  # Folder Structure
133
+ β”œβ”€β”€ πŸ“ src
134
+ β”‚ β”œβ”€β”€ πŸ“ doc_service
135
+ β”‚ β”‚ β”œβ”€β”€ init.py
136
+ β”‚ β”‚ β”œβ”€β”€ app.py
137
+ β”‚ β”‚ └── utils.py
138
+ β”‚ β”‚
139
+ β”‚ β”œβ”€β”€ πŸ“ embed_service
140
+ β”‚ β”‚ β”œβ”€β”€ init.py
141
+ β”‚ β”‚ β”œβ”€β”€ app.py
142
+ β”‚ β”‚ β”œβ”€β”€ embedder.py
143
+ β”‚ β”‚ └── cache_manager.py
144
+ β”‚ β”‚
145
+ β”‚ β”œβ”€β”€ πŸ“ search_service
146
+ β”‚ β”‚ β”œβ”€β”€ init.py
147
+ β”‚ β”‚ β”œβ”€β”€ app.py
148
+ β”‚ β”‚ └── indexer.py
149
+ β”‚ β”‚
150
+ β”‚ β”œβ”€β”€ πŸ“ explain_service
151
+ β”‚ β”‚ β”œβ”€β”€ init.py
152
+ β”‚ β”‚ β”œβ”€β”€ app.py
153
+ β”‚ β”‚ └── explainer.py
154
+ β”‚ β”‚
155
+ β”‚ β”œβ”€β”€ πŸ“ api_gateway
156
+ β”‚ β”‚ β”œβ”€β”€ init.py
157
+ β”‚ β”‚ └── app.py
158
+ β”‚ β”‚
159
+ β”‚ └── πŸ“ ui
160
+ β”‚ └── streamlit_app.py
161
+ β”‚
162
+ β”œβ”€β”€ πŸ“ data
163
+ β”‚ └── πŸ“ docs
164
+ β”‚ └── (your .txt documents)
165
+ β”‚
166
+ β”œβ”€β”€ πŸ“ cache
167
+ β”‚ β”œβ”€β”€ embed_meta.json
168
+ β”‚ β”œβ”€β”€ embeddings.npy
169
+ β”‚ β”œβ”€β”€ faiss_index.bin
170
+ β”‚ └── faiss_meta.pkl
171
+ β”‚
172
+ β”œβ”€β”€ πŸ“ eval
173
+ β”‚ β”œβ”€β”€ evaluate.py
174
+ β”‚ └── generated_queries.json
175
+ β”‚
176
+ β”œβ”€β”€ start.sh
177
+ β”œβ”€β”€ Dockerfile
178
+ β”œβ”€β”€ requirements.txt
179
+ β”œβ”€β”€ .gitignore
180
+ └── README.md
181
 
182
 
183
  ---