Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -19,7 +19,7 @@ if not vector_store_id:
|
|
19 |
response_manager = ResponseManager(vector_store_id)
|
20 |
|
21 |
# Define the chatbot function to handle user queries and generate responses
|
22 |
-
def chat_interaction(query: str)
|
23 |
"""
|
24 |
Function to handle the chatbot interaction and maintain conversation history.
|
25 |
:param query: The user query to respond to.
|
|
|
19 |
response_manager = ResponseManager(vector_store_id)
|
20 |
|
21 |
# Define the chatbot function to handle user queries and generate responses
|
22 |
+
def chat_interaction(query: str, history):
|
23 |
"""
|
24 |
Function to handle the chatbot interaction and maintain conversation history.
|
25 |
:param query: The user query to respond to.
|