skoneru commited on
Commit
d185d0b
·
verified ·
1 Parent(s): 0437ab7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -124,9 +124,10 @@ def reply_bot(message, history):
124
  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" + message + " [/INST]"
125
 
126
  try:
127
- for token in client.text_generation(prompt=prompt, max_new_tokens=128, stream=True):
128
- yield token
129
  except:
130
  return "Clear History or ask FR to increase Context Window. Current capacity only 4k tokens"
131
 
 
 
132
  gr.ChatInterface(reply_bot).launch()
 
124
  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" + message + " [/INST]"
125
 
126
  try:
127
+ answer = client.text_generation(prompt=prompt, max_new_tokens=128)
 
128
  except:
129
  return "Clear History or ask FR to increase Context Window. Current capacity only 4k tokens"
130
 
131
+ return answer
132
+
133
  gr.ChatInterface(reply_bot).launch()