Skip to content

Commit efeefa9

Browse files
committed
fix errors handling
1 parent e354925 commit efeefa9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inferencesh/models/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ def _generate_worker():
705705
msg_type, data = response_queue.get(timeout=0.1)
706706
chunk_count += 1
707707
if chunk_count % 10 == 0: # Log every 10th chunk to avoid spam
708-
print(f"[DEBUG] Main loop received chunk {chunk_count}")
708+
print(f"[DEBUG] Main loop received chunk {chunk_count} chunk sample: {data}")
709709
except Empty:
710710
continue
711711

0 commit comments

Comments
 (0)