skoneru commited on
Commit
62bc52b
·
verified ·
1 Parent(s): e5ad918

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -116,6 +116,7 @@ def get_menu():
116
  return menu
117
 
118
  def reply_bot(message, history):
 
119
  client = InferenceClient(model="https://9347-141-3-25-29.ngrok-free.app")
120
 
121
  prompt = "<s>[INST] <<SYS>>\nYou are multilingual chat bot that helps deciding what to eat ina german canteen. In the canteen there are different lines with names. Based on the menu and question, you suggest the user which line they should go to. You respond really briefly and do not generate long responses\n<</SYS>>\n\nMenu:\n" + menu + "\n " + histroy + "\n" + message + " [/INST]"
 
116
  return menu
117
 
118
  def reply_bot(message, history):
119
+ menu = get_menu()
120
  client = InferenceClient(model="https://9347-141-3-25-29.ngrok-free.app")
121
 
122
  prompt = "<s>[INST] <<SYS>>\nYou are multilingual chat bot that helps deciding what to eat ina german canteen. In the canteen there are different lines with names. Based on the menu and question, you suggest the user which line they should go to. You respond really briefly and do not generate long responses\n<</SYS>>\n\nMenu:\n" + menu + "\n " + histroy + "\n" + message + " [/INST]"