Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
# Page Title
|
4 |
-
st.title("
|
5 |
|
6 |
# Question Section
|
7 |
-
st.subheader("
|
8 |
-
question = st.text_input("Enter your question:", placeholder="Type your
|
9 |
|
10 |
# Submit Button
|
11 |
if st.button("Submit"):
|
@@ -29,4 +29,4 @@ with col1:
|
|
29 |
metrics = ""
|
30 |
|
31 |
with col2:
|
32 |
-
st.text_area("
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
# Page Title
|
4 |
+
st.title("RAG7 - Real World RAG System")
|
5 |
|
6 |
# Question Section
|
7 |
+
st.subheader("Hi, What do you want to know today?")
|
8 |
+
question = st.text_input("Enter your question:", placeholder="Type your question here...", height=100)
|
9 |
|
10 |
# Submit Button
|
11 |
if st.button("Submit"):
|
|
|
29 |
metrics = ""
|
30 |
|
31 |
with col2:
|
32 |
+
st.text_area("Metrics:", value=metrics, height=100, disabled=True)
|