fixed error
Browse files
app.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
from
|
| 3 |
|
| 4 |
# Check if a query parameter `user_input` exists
|
| 5 |
user_input = st.experimental_get_query_params().get("user_input", [""])[0]
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
from chatbot import process_query # Your chatbot function
|
| 3 |
|
| 4 |
# Check if a query parameter `user_input` exists
|
| 5 |
user_input = st.experimental_get_query_params().get("user_input", [""])[0]
|