summaryrefslogtreecommitdiff
path: root/backend/app
diff options
context:
space:
mode:
Diffstat (limited to 'backend/app')
-rw-r--r--backend/app/services/llm.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/app/services/llm.py b/backend/app/services/llm.py
index 6f79d35..660a69d 100644
--- a/backend/app/services/llm.py
+++ b/backend/app/services/llm.py
@@ -169,7 +169,9 @@ async def stream_openai(
if c_type == 'output_text':
text_val = getattr(c, 'text', None)
if text_val:
+ print(f"[responses debug] YIELDING text: {text_val[:50]}...")
yield text_val
+ print(f"[responses debug] YIELDED successfully")
found_content = True
if not found_content: