Interface defining the arguments required to create an Elasticsearch client.

interface ElasticClientArgs {
    client: Client;
    indexName?: string;
    vectorSearchOptions?: VectorSearchOptions;
}

Properties

client: Client
indexName?: string
vectorSearchOptions?: VectorSearchOptions