drewvid commited on
Commit
0331331
·
1 Parent(s): 85f08b3

error handling

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -120,11 +120,13 @@ def respond(
120
  temperature=temperature,
121
  top_p=top_p,
122
  ):
123
- token = message.choices[0].delta.content
124
-
125
- if token:
126
- response += token
127
- yield response
 
 
128
 
129
  """
130
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
 
120
  temperature=temperature,
121
  top_p=top_p,
122
  ):
123
+ if message.choices:
124
+ token = message.choices[0].delta.content
125
+ if token:
126
+ response += token
127
+ yield response
128
+ else:
129
+ yield "Please clear the history and try again."
130
 
131
  """
132
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface