Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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):
|