Skip to content
Open
Show file tree
Hide file tree
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 libs/azure-ai/tests/unit_tests/test_azure_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def __init__(self) -> None:
def mock_upload_documents(
self: SearchClient, documents: List[object]
) -> List[Response]:
# assume all documents uploaded successfuly
# assume all documents uploaded successfully
response = [Response() for _ in documents]
return response

Expand Down
2 changes: 1 addition & 1 deletion libs/azure-postgresql/tests/langchain/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def __init__(
"Target cosine similarity matrix must be square"
)

self._n = dimension # number of features/dimenstions in an embedding vector
self._n = dimension # number of features/dimensions in an embedding vector
self._m = self._target_similarity.shape[0] # number of categories
self._generator = RNG(PCG64(SeedSequence(seed)))

Expand Down
2 changes: 1 addition & 1 deletion libs/sqlserver/langchain_sqlserver/vectorstores.py
Original file line number Diff line number Diff line change
Expand Up @@ -1341,7 +1341,7 @@ def _provide_token(
cargs: List[str],
cparams: MutableMapping[str, Any],
) -> None:
"""Function to retreive access token for connection.
"""Function to retrieve access token for connection.

Get token for SQLServer connection from token URL,
and use the token to connect to the database.
Expand Down