Arthur Passuello commited on
Commit
212cdc0
·
1 Parent(s): 0242f02

Fixed App management

Browse files
Files changed (2) hide show
  1. README.md +3 -26
  2. app.py +1 -1
README.md CHANGED
@@ -5,31 +5,6 @@ colorFrom: blue
5
  colorTo: purple
6
  sdk: streamlit
7
  sdk_version: 1.46.0
8
- app_file: streamlit_epic2_demo.py
9
- pinned: false
10
- license: mit
11
- tags:
12
- - rag
13
- - nlp
14
- - risc-v
15
- - technical-documentation
16
- - graph-enhancement
17
- - neural-reranking
18
- short_description: RAG system
19
- ---
20
- # Welcome to Streamlit!
21
-
22
- Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :heart:
23
-
24
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
25
- forums](https://discuss.streamlit.io).
26
- =======
27
- title: Epic 2 Enhanced RAG System
28
- emoji: 🚀
29
- colorFrom: blue
30
- colorTo: purple
31
- sdk: streamlit
32
- sdk_version: 1.46.0
33
  app_file: app.py
34
  pinned: false
35
  license: mit
@@ -38,8 +13,10 @@ tags:
38
  - nlp
39
  - risc-v
40
  - technical-documentation
41
- - graph-enhancement
42
  - neural-reranking
 
 
43
  short_description: Production RAG system with 48.7% MRR improvement via graph-enhanced fusion
44
  ---
45
 
 
5
  colorTo: purple
6
  sdk: streamlit
7
  sdk_version: 1.46.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  app_file: app.py
9
  pinned: false
10
  license: mit
 
13
  - nlp
14
  - risc-v
15
  - technical-documentation
16
+ - graph-enhancement
17
  - neural-reranking
18
+ - vector-search
19
+ - document-processing
20
  short_description: Production RAG system with 48.7% MRR improvement via graph-enhanced fusion
21
  ---
22
 
app.py CHANGED
@@ -208,7 +208,7 @@ def main():
208
 
209
  # Import and run Epic 2 demo
210
  import streamlit_epic2_demo
211
- # The Epic 2 demo will handle its own execution
212
 
213
  else:
214
  # Fallback to basic demo with mock capabilities
 
208
 
209
  # Import and run Epic 2 demo
210
  import streamlit_epic2_demo
211
+ streamlit_epic2_demo.main() # Actually call the main function
212
 
213
  else:
214
  # Fallback to basic demo with mock capabilities