File size: 338 Bytes
c24c52a
87a0100
c24c52a
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st
from rag import query
st.title("Blade Runner 2049 Expert")
user_input = st.text_input("Enter your questions about Blade Runner 2049 :", "")
if st.button("Submit"):
    try:
        response = query_engine(user_input)
        st.write(response)
    except Exception as e:
        st.write(f"An error occurred: {e}")