You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ElasticsearchStore class within the langchain_elasticsearch package currently lacks an implementation for the get_by_ids method. Attempting to use this method results in a NotImplementedError.
Error Details:
When calling get_by_ids with a list of IDs, such as ["1"], the following error is raised:
NotImplementedError: ElasticsearchStore does not yet support get_by_ids.
Steps to Reproduce:
Create an instance of ElasticsearchStore with the necessary parameters:
Description:
The
ElasticsearchStore
class within thelangchain_elasticsearch
package currently lacks an implementation for theget_by_ids
method. Attempting to use this method results in aNotImplementedError
.Error Details:
When calling
get_by_ids
with a list of IDs, such as["1"]
, the following error is raised:Steps to Reproduce:
Create an instance of
ElasticsearchStore
with the necessary parameters:Attempt to retrieve documents by using their IDs:
Observe the
NotImplementedError
that indicates the method is not currently supported.Expected Behavior:
The
get_by_ids
method should allow retrieval of documents from theElasticsearchStore
using their unique IDs without raising an error.Actual Behavior:
A
NotImplementedError
is raised, indicating that the method is not supported.Request for Enhancement:
Please implement the
get_by_ids
method in theElasticsearchStore
class to allow for the retrieval of documents by their IDs.Thank you for your assistance!
The text was updated successfully, but these errors were encountered: