cb1716pics commited on
Commit
14c95e8
·
verified ·
1 Parent(s): ad53611

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -1,11 +1,11 @@
1
  import streamlit as st
2
 
3
  # Page Title
4
- st.title("Real-Time RAG Pipeline Q&A")
5
 
6
  # Question Section
7
- st.subheader("Ask a Question")
8
- question = st.text_input("Enter your question:", placeholder="Type your query here...")
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("Performance Metrics:", value=metrics, height=100, disabled=True)
 
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)