inteligenciamilgrau commited on
Commit
8a553b2
·
verified ·
1 Parent(s): 9558fa7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -34,10 +34,13 @@ def respond(
34
  temperature=temperature,
35
  top_p=top_p,
36
  ):
37
- token = message.choices[0].delta.content
38
-
39
- response += token
40
- yield response
 
 
 
41
 
42
  """
43
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
 
34
  temperature=temperature,
35
  top_p=top_p,
36
  ):
37
+ try:
38
+ token = message.choices[0].delta.content
39
+ response += token
40
+ yield response
41
+ except (AttributeError, IndexError, KeyError) as e:
42
+ print(f"Error processing message: {e}")
43
+ continue
44
 
45
  """
46
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface