david-oplatka commited on
Commit
b018ed8
·
verified ·
1 Parent(s): 2b56c73

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -69,10 +69,10 @@ def respond(message, history):
69
  outputs += output
70
  yield outputs
71
  else:
72
- logging.debug(f"Calling normal query with message: {message}")
73
  # Call non-stream response and return message output
74
  response = vq.submit_query(message)
75
  logging.debug(f"Chat response: {response}")
 
76
  return response
77
 
78
  def random_fun(message, history):
 
69
  outputs += output
70
  yield outputs
71
  else:
 
72
  # Call non-stream response and return message output
73
  response = vq.submit_query(message)
74
  logging.debug(f"Chat response: {response}")
75
+ logging.debug(f"Chat response type: {type(response)}")
76
  return response
77
 
78
  def random_fun(message, history):