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 06bea68 commit 802cd16Copy full SHA for 802cd16
README.md
@@ -346,7 +346,8 @@ print(f"Total size: {size_mb:.2f} MB")
346
347
# Decide whether chunking is needed
348
if size_mb > 3.0:
349
- chunks = create_message_chunks(entities)
+ for chunk in create_message_chunks(entities):
350
+ client.ingest(entities=chunk)
351
else:
352
# Small enough to send in one request
353
client.ingest(entities=entities)
0 commit comments