pazukdev commited on
Commit
ea080b4
·
verified ·
1 Parent(s): 78806a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -85,7 +85,7 @@ def predict(message, history):
85
  temperature=0,
86
  stream=True)
87
 
88
- partial_message = "{model}:\n".format(model=model)
89
  for chunk in response:
90
  if chunk.choices[0].delta.content is not None:
91
  partial_message = partial_message + chunk.choices[0].delta.content
 
85
  temperature=0,
86
  stream=True)
87
 
88
+ partial_message = "🤖 {model}:\n".format(model=model)
89
  for chunk in response:
90
  if chunk.choices[0].delta.content is not None:
91
  partial_message = partial_message + chunk.choices[0].delta.content