partners: Remove unnecessary print from voyageai embeddings (#21865)

Thank you for contributing to LangChain!

Remove unnecessary print from voyageai embeddings

- [x] **Lint and test**: Run `make format`, `make lint` and `make test`
from the root of the package(s) you've modified. See contribution
guidelines for more: https://python.langchain.com/docs/contributing/

If no one reviews your PR within a few days, please @-mention one of
baskaryan, efriis, eyurtsev, hwchase17.
pull/21867/head
fzowl 2 weeks ago committed by GitHub
parent 61ebe7991c
commit d3624eaba1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -45,7 +45,6 @@ class VoyageAIEmbeddings(BaseModel, Embeddings):
model = values.get("model")
batch_size = values.get("batch_size")
if batch_size is None:
print("batch size", batch_size)
values["batch_size"] = 72 if model in ["voyage-2", "voyage-02"] else 7
return values

Loading…
Cancel
Save