This commit is contained in:
Cyber MacGeddon 2025-12-04 20:46:22 +00:00
parent a89005768b
commit ff9d74ef79
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ def question(url, flow_id, question, user, collection, doc_limit, streaming=True
# Stream output
for chunk in response:
print(chunk.content, end="", flush=True)
print(chunk, end="", flush=True)
print() # Final newline
finally:

View file

@ -42,7 +42,7 @@ def question(
# Stream output
for chunk in response:
print(chunk.content, end="", flush=True)
print(chunk, end="", flush=True)
print() # Final newline
finally: