We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 489cccb commit 940365eCopy full SHA for 940365e
api/core/plugin/impl/tool.py
@@ -36,7 +36,6 @@ def write_blob(self, blob_data):
36
if expected_final_size > self.total_length:
37
raise ValueError(f"Chunk would exceed file size ({expected_final_size} > {self.total_length})")
38
39
- # Handle non-final chunks
40
start_pos = self.bytes_written
41
self.data[start_pos : start_pos + blob_data_length] = blob_data
42
self.bytes_written += blob_data_length
0 commit comments