Update app_R.py
Browse files
app_R.py
CHANGED
@@ -66,7 +66,7 @@ def respond(
|
|
66 |
):
|
67 |
|
68 |
if message: # If there's a user query
|
69 |
-
response = retrieved_info(
|
70 |
return response[0]
|
71 |
|
72 |
# In case no message, return an empty string
|
|
|
66 |
):
|
67 |
|
68 |
if message: # If there's a user query
|
69 |
+
response = retrieved_info(message) # Get the answer from local FAISS and Q&A model
|
70 |
return response[0]
|
71 |
|
72 |
# In case no message, return an empty string
|