Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix description of timeout config for WeaviateDocumentStore #7380

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion haystack/document_stores/weaviate.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(
:param host: Weaviate server connection URL for storing and processing documents and vectors.
For more details, see [Weaviate installation](https://weaviate.io/developers/weaviate/current/getting-started/installation.html).
:param port: The port of the Weaviate instance.
:param timeout_config: The Weaviate timeout config as a tuple of (retries, time out seconds).
:param timeout_config: The Weaviate timeout config as a tuple of (connect timeout, read timeout).
:param username: The Weaviate username (standard authentication using http_auth).
:param password: Weaviate password (standard authentication using http_auth).
:param scope: The scope of the credentials when using the OIDC Resource Owner Password or Client Credentials authentication flow.
Expand Down
Loading