Sathvik-kota commited on
Commit
b89c481
·
verified ·
1 Parent(s): c67b792

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +1 -28
  2. start.sh +3 -1
README.md CHANGED
@@ -1,28 +1 @@
1
-
2
- ---
3
- title: Document Search Engine (Gemini Style)
4
- emoji: 📄
5
- colorFrom: blue
6
- colorTo: purple
7
- sdk: docker
8
- sdk_version: "0.0.0"
9
- app_file: start.sh
10
- pinned: false
11
- ---
12
-
13
- # 🚀 Multi-Service Document Search Engine (Gemini 2.0 Style)
14
-
15
- This Space hosts a full semantic search system with:
16
-
17
- - Embedding Service
18
- - Search/FAISS Service
19
- - LLM Explanation Service
20
- - API Gateway
21
- - Streamlit UI
22
- - FAISS Vector Indexing
23
- - Evaluation Module
24
-
25
- Powered by:
26
- - Sentence-Transformers MiniLM
27
- - FAISS
28
- - Gemini Flash 2.5 (optional explanations)
 
1
+ # Multi-document-Embedding-Search-Engine-with-Caching
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
start.sh CHANGED
@@ -1,8 +1,10 @@
1
  #!/bin/bash
2
  echo " Starting multi-service document search system..."
3
 
 
 
4
  # Start EMBEDDING service (port 9002)
5
- python3 src/embedding_service/app.py --port 9002 &
6
 
7
  # Start SEARCH service (port 9003)
8
  python3 src/search_service/app.py --port 9003 &
 
1
  #!/bin/bash
2
  echo " Starting multi-service document search system..."
3
 
4
+ python3 src/doc_service/app.py --port 9001 &
5
+
6
  # Start EMBEDDING service (port 9002)
7
+ python3 src/embed_service/app.py --port 9002 &
8
 
9
  # Start SEARCH service (port 9003)
10
  python3 src/search_service/app.py --port 9003 &