FalconBot / app.py
imSleepy's picture
reverted back to working (app.py)
6636126 verified
raw
history blame
312 Bytes
import streamlit as st
from chatbot import process_query # Import the function from chatbot.py
st.title("Kivy Chatbot Backend")
user_input = st.text_input("Ask a question:")
if st.button("Get Response"):
if user_input:
response = process_query(user_input)
st.write(f"Response: {response}")