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 c3839ad commit a312eb2Copy full SHA for a312eb2
redisvl/utils/vectorize/text/voyageai.py
@@ -290,7 +290,9 @@ def _embed_many(
290
self._validate_input(texts, input_type, truncation)
291
292
# Use token-aware batching
293
- batches = self._build_token_aware_batches(texts, max_batch_size=batch_size)
+ batches = self._build_token_aware_batches(
294
+ texts, max_batch_size=batch_size if batch_size is not None else 1000
295
+ )
296
297
try:
298
embeddings: List = []
0 commit comments