Skip to content

Commit b7cc224

Browse files
feat(api): update via SDK Studio
1 parent d917da0 commit b7cc224

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 49
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-fd1562786a889e981d7d9b30d7f4b29d3d2ea11a8c30e19b919fae07ea355ccd.yml
33
openapi_spec_hash: 1d83645e7d7bc1b6ccfc1ecc7cca656a
4-
config_hash: 9957eb067ae655fc584c6a1fbe82540c
4+
config_hash: 95ffbc5d87b528d727a944596d7cf051

src/mixedbread/_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def __init__(
176176
@property
177177
@override
178178
def qs(self) -> Querystring:
179-
return Querystring(array_format="comma")
179+
return Querystring(array_format="repeat")
180180

181181
@property
182182
@override
@@ -539,7 +539,7 @@ def __init__(
539539
@property
540540
@override
541541
def qs(self) -> Querystring:
542-
return Querystring(array_format="comma")
542+
return Querystring(array_format="repeat")
543543

544544
@property
545545
@override

tests/api_resources/vector_stores/test_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def test_method_list_with_all_params(self, client: Mixedbread) -> None:
143143
limit=1000,
144144
cursor="cursor",
145145
include_total=True,
146-
statuses=["pending"],
146+
statuses=["pending", "in_progress"],
147147
)
148148
assert_matches_type(SyncCursor[VectorStoreFile], file, path=["response"])
149149

@@ -445,7 +445,7 @@ async def test_method_list_with_all_params(self, async_client: AsyncMixedbread)
445445
limit=1000,
446446
cursor="cursor",
447447
include_total=True,
448-
statuses=["pending"],
448+
statuses=["pending", "in_progress"],
449449
)
450450
assert_matches_type(AsyncCursor[VectorStoreFile], file, path=["response"])
451451

0 commit comments

Comments
 (0)