Skip to content

Commit

Permalink
Fix OpenSearchNeuralSearch initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
mbklein committed Mar 14, 2024
1 parent b0f8d86 commit fa1cb9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chat/src/handlers/opensearch_neural_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ class OpenSearchNeuralSearch(VectorStore):

def __init__(
self,
client: None,
endpoint: str,
index: str,
model_id: str,
client: OpenSearch = None,
vector_field: str = "embedding",
search_pipeline: str = None,
text_field: str = "id",
Expand Down

0 comments on commit fa1cb9d

Please sign in to comment.