wang16888 commited on
Commit
5b9ba77
·
verified ·
1 Parent(s): c552947

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ pg = st.navigation([
4
+ st.Page("pages/simple_page.py"),
5
+ st.Page("pages/formatted_page.py"),
6
+ st.Page("pages/history_page.py"),
7
+ st.Page("pages/rag_page.py"),
8
+ st.Page("pages/filtered_rag_page.py"),
9
+ ])
10
+ pg.run()
11
+