Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ from langchain.chains import RetrievalQA
|
|
6 |
from langchain.llms import GooglePalm
|
7 |
|
8 |
# Define chatbot response function
|
9 |
-
def chatbot_response(user_input
|
10 |
# Example: returning a placeholder response, update with actual chatbot logic
|
11 |
# bot_response = "You said: " + user_input
|
12 |
# history.append((user_input, bot_response))
|
|
|
6 |
from langchain.llms import GooglePalm
|
7 |
|
8 |
# Define chatbot response function
|
9 |
+
def chatbot_response(user_input):
|
10 |
# Example: returning a placeholder response, update with actual chatbot logic
|
11 |
# bot_response = "You said: " + user_input
|
12 |
# history.append((user_input, bot_response))
|