Replies: 1 comment
-
Closed. Moved to https://github.com/langchain-ai/langchain-community |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Checked
Feature request
Add support for customizing the number of shards and replicas when creating an index in OpenSearch through LangChain with
OpenSearchVectorSearch().create_index()
Motivation
Currently, LangChain doesn't let users set the number of shards or replicas when creating an OpenSearch index. Because of this, users have to use
OpenSearchVectorSearch().client.indices.create()
directly, which isn't fully compatible with LangChain and is inconvenient.Proposal (If applicable)
we could potentially do something like this:
and adjust every other function that uses this one accordingly.
Beta Was this translation helpful? Give feedback.
All reactions