File size: 274 Bytes
2a3c721 4e54d88 2a3c721 4e54d88 2a3c721 4e54d88 |
1 2 3 4 5 6 7 8 9 10 11 |
import streamlit as st
from chatbot import process_query
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}")
|