Update app.py
Browse files
app.py
CHANGED
@@ -35,6 +35,8 @@ data = {
|
|
35 |
}
|
36 |
table = pd.DataFrame.from_dict(data)
|
37 |
|
|
|
|
|
38 |
def chatbot_response(user_message):
|
39 |
# Generate chatbot response using the chatbot model
|
40 |
#inputs = chatbot_tokenizer.encode("User: " + user_message, return_tensors="pt")
|
|
|
35 |
}
|
36 |
table = pd.DataFrame.from_dict(data)
|
37 |
|
38 |
+
bot_input_ids = None
|
39 |
+
|
40 |
def chatbot_response(user_message):
|
41 |
# Generate chatbot response using the chatbot model
|
42 |
#inputs = chatbot_tokenizer.encode("User: " + user_message, return_tensors="pt")
|