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 fb797ba commit 199d3c0Copy full SHA for 199d3c0
redisvl/utils/vectorize/text/voyageai.py
@@ -181,9 +181,9 @@ def _get_batch_size(self) -> int:
181
"""
182
if self.model in ["voyage-2", "voyage-02"]:
183
return 72
184
- elif self.model == "voyage-3-lite":
+ elif self.model in ["voyage-3-lite", "voyage-3.5-lite"]:
185
return 30
186
- elif self.model == "voyage-3":
+ elif self.model in ["voyage-3", "voyage-3.5"]:
187
return 10
188
else:
189
return 7 # Default for other models
0 commit comments