Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
309c385
Initial draft
FabianMeiswinkel Sep 12, 2024
cc72dc3
Adding tests
FabianMeiswinkel Sep 13, 2024
a201167
Renaming parameter
FabianMeiswinkel Sep 19, 2024
d85a2b5
Update container.py
FabianMeiswinkel Sep 19, 2024
79a9bb6
Renaming test file
FabianMeiswinkel Sep 19, 2024
f9bfaa0
Fixing LINT issues
FabianMeiswinkel Sep 19, 2024
0c15374
Update container.py
FabianMeiswinkel Sep 19, 2024
ed27e02
Update _base.py
FabianMeiswinkel Sep 19, 2024
38fd806
Update _base.py
FabianMeiswinkel Sep 19, 2024
6edd050
Fixing tests
FabianMeiswinkel Sep 19, 2024
ffecd7f
Fixing tests
FabianMeiswinkel Sep 19, 2024
4920e8d
Adding support to disable response payload on write for AIO
FabianMeiswinkel Sep 20, 2024
8b08b1a
Update CHANGELOG.md
FabianMeiswinkel Sep 20, 2024
c57117e
Update _cosmos_client.py
FabianMeiswinkel Sep 20, 2024
3cb08a4
Reacting to code review comments
FabianMeiswinkel Sep 20, 2024
22531ff
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
FabianMeiswinkel Sep 20, 2024
5a8192c
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
FabianMeiswinkel Sep 20, 2024
6abefa8
Addressing code review feedback
FabianMeiswinkel Sep 30, 2024
f0d8185
Addressed CR feedback
FabianMeiswinkel Oct 1, 2024
03b4915
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
FabianMeiswinkel Oct 1, 2024
e176d2f
Fixing pyLint errors
FabianMeiswinkel Oct 1, 2024
407f151
Fixing pylint errors
FabianMeiswinkel Oct 1, 2024
45ebbd0
Update test_crud.py
FabianMeiswinkel Oct 1, 2024
93e33d6
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
FabianMeiswinkel Oct 2, 2024
4843c2d
Fixing svc regression
FabianMeiswinkel Oct 2, 2024
cd91240
Update sdk/cosmos/azure-cosmos/azure/cosmos/aio/_container.py
FabianMeiswinkel Oct 2, 2024
d104ac3
Reacting to code review feedback.
FabianMeiswinkel Oct 2, 2024
4118a31
Merge branch 'users/fabianm/hotfix20240910' of https://github.com/Fab…
FabianMeiswinkel Oct 2, 2024
54921e8
Merge branch 'main' of https://github.com/Azure/azure-sdk-for-python …
FabianMeiswinkel Oct 2, 2024
88a229a
Update container.py
FabianMeiswinkel Oct 2, 2024
8a28095
Update test_query_vector_similarity.py
FabianMeiswinkel Oct 3, 2024
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
Prev Previous commit
Update test_query_vector_similarity.py
  • Loading branch information
FabianMeiswinkel committed Oct 3, 2024
commit 8a2809544ac1eefef887e624ef7963d730a86016
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def test_wrong_queries(self):
pytest.fail("Client should not allow queries with ASC/DESC.")
except exceptions.CosmosHttpResponseError as e:
assert e.status_code == http_constants.StatusCodes.BAD_REQUEST
assert "One of the input values is invalid." in e.message
assert "Specifying a sorting order (ASC or DESC) with VectorDistance function is not supported." in e.message

def test_ordering_distances(self):
# Besides ordering distances, we also verify that the query text properly replaces any set embedding policies
Expand Down