Pavithiran commited on
Commit
e443fbc
·
verified ·
1 Parent(s): 99ebc54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -37,13 +37,15 @@ def respond(
37
  top_p=top_p,
38
  ):
39
  token = message.choices[0].delta.content
 
40
  print(token)
41
 
42
  response += token
 
43
 
44
  yield response.json()
45
  except Exception as e:
46
- yield f"Error: {e}"
47
  """
48
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
49
  """
 
37
  top_p=top_p,
38
  ):
39
  token = message.choices[0].delta.content
40
+ print('token start')
41
  print(token)
42
 
43
  response += token
44
+ print('token end')
45
 
46
  yield response.json()
47
  except Exception as e:
48
+ print (f"Error: {e}")
49
  """
50
  For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
51
  """