Spaces:
Runtime error
Runtime error
Damien Benveniste
commited on
Commit
·
0f8141c
1
Parent(s):
120ba73
sfs
Browse files
app.py
CHANGED
@@ -1,4 +1,12 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
-
|
4 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
|
12 |
+
|