Update copy_image

This commit is contained in:
hlohaus 2025-06-18 00:17:27 +02:00
parent a354a2e8f8
commit faf94ccfbb

View file

@ -224,6 +224,8 @@ class Api:
yield self._format_json("suggestions", chunk.suggestions)
elif isinstance(chunk, DebugResponse):
yield self._format_json("log", chunk.log)
elif isinstance(chunk, ContinueResponse):
yield self._format_json("continue", chunk.log)
elif isinstance(chunk, RawResponse):
yield self._format_json(chunk.type, **chunk.get_dict())
else: