chatbytes commited on
Commit
0a0896b
·
verified ·
1 Parent(s): beceabe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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, history):
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))