mixedbread 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. mixedbread-0.1.0/.gitignore +16 -0
  2. mixedbread-0.1.0/.release-please-manifest.json +3 -0
  3. mixedbread-0.1.0/CHANGELOG.md +546 -0
  4. mixedbread-0.1.0/CONTRIBUTING.md +129 -0
  5. mixedbread-0.1.0/LICENSE +201 -0
  6. mixedbread-0.1.0/PKG-INFO +466 -0
  7. mixedbread-0.1.0/README.md +435 -0
  8. mixedbread-0.1.0/SECURITY.md +29 -0
  9. mixedbread-0.1.0/api.md +156 -0
  10. mixedbread-0.1.0/bin/check-release-environment +21 -0
  11. mixedbread-0.1.0/bin/publish-pypi +6 -0
  12. mixedbread-0.1.0/examples/.keep +4 -0
  13. mixedbread-0.1.0/mypy.ini +50 -0
  14. mixedbread-0.1.0/noxfile.py +9 -0
  15. mixedbread-0.1.0/pyproject.toml +206 -0
  16. mixedbread-0.1.0/release-please-config.json +66 -0
  17. mixedbread-0.1.0/requirements-dev.lock +104 -0
  18. mixedbread-0.1.0/requirements.lock +45 -0
  19. mixedbread-0.1.0/src/mixedbread/__init__.py +96 -0
  20. mixedbread-0.1.0/src/mixedbread/_base_client.py +1969 -0
  21. mixedbread-0.1.0/src/mixedbread/_client.py +865 -0
  22. mixedbread-0.1.0/src/mixedbread/_compat.py +219 -0
  23. mixedbread-0.1.0/src/mixedbread/_constants.py +14 -0
  24. mixedbread-0.1.0/src/mixedbread/_exceptions.py +108 -0
  25. mixedbread-0.1.0/src/mixedbread/_files.py +123 -0
  26. mixedbread-0.1.0/src/mixedbread/_models.py +804 -0
  27. mixedbread-0.1.0/src/mixedbread/_qs.py +150 -0
  28. mixedbread-0.1.0/src/mixedbread/_resource.py +43 -0
  29. mixedbread-0.1.0/src/mixedbread/_response.py +832 -0
  30. mixedbread-0.1.0/src/mixedbread/_streaming.py +333 -0
  31. mixedbread-0.1.0/src/mixedbread/_types.py +217 -0
  32. mixedbread-0.1.0/src/mixedbread/_utils/__init__.py +57 -0
  33. mixedbread-0.1.0/src/mixedbread/_utils/_logs.py +25 -0
  34. mixedbread-0.1.0/src/mixedbread/_utils/_proxy.py +62 -0
  35. mixedbread-0.1.0/src/mixedbread/_utils/_reflection.py +42 -0
  36. mixedbread-0.1.0/src/mixedbread/_utils/_streams.py +12 -0
  37. mixedbread-0.1.0/src/mixedbread/_utils/_sync.py +86 -0
  38. mixedbread-0.1.0/src/mixedbread/_utils/_transform.py +402 -0
  39. mixedbread-0.1.0/src/mixedbread/_utils/_typing.py +149 -0
  40. mixedbread-0.1.0/src/mixedbread/_utils/_utils.py +414 -0
  41. mixedbread-0.1.0/src/mixedbread/_version.py +4 -0
  42. mixedbread-0.1.0/src/mixedbread/lib/.keep +4 -0
  43. mixedbread-0.1.0/src/mixedbread/lib/polling.py +128 -0
  44. mixedbread-0.1.0/src/mixedbread/pagination.py +89 -0
  45. mixedbread-0.1.0/src/mixedbread/py.typed +0 -0
  46. mixedbread-0.1.0/src/mixedbread/resources/__init__.py +75 -0
  47. mixedbread-0.1.0/src/mixedbread/resources/embeddings.py +243 -0
  48. mixedbread-0.1.0/src/mixedbread/resources/extractions/__init__.py +61 -0
  49. mixedbread-0.1.0/src/mixedbread/resources/extractions/content.py +198 -0
  50. mixedbread-0.1.0/src/mixedbread/resources/extractions/extractions.py +166 -0
  51. mixedbread-0.1.0/src/mixedbread/resources/extractions/jobs.py +288 -0
  52. mixedbread-0.1.0/src/mixedbread/resources/extractions/schema.py +358 -0
  53. mixedbread-0.1.0/src/mixedbread/resources/files.py +708 -0
  54. mixedbread-0.1.0/src/mixedbread/resources/parsing/__init__.py +33 -0
  55. mixedbread-0.1.0/src/mixedbread/resources/parsing/jobs.py +954 -0
  56. mixedbread-0.1.0/src/mixedbread/resources/parsing/parsing.py +102 -0
  57. mixedbread-0.1.0/src/mixedbread/resources/vector_stores/__init__.py +33 -0
  58. mixedbread-0.1.0/src/mixedbread/resources/vector_stores/files.py +920 -0
  59. mixedbread-0.1.0/src/mixedbread/resources/vector_stores/vector_stores.py +990 -0
  60. mixedbread-0.1.0/src/mixedbread/types/__init__.py +38 -0
  61. mixedbread-0.1.0/src/mixedbread/types/client_embed_params.py +34 -0
  62. mixedbread-0.1.0/src/mixedbread/types/client_rerank_params.py +28 -0
  63. mixedbread-0.1.0/src/mixedbread/types/embedding.py +19 -0
  64. mixedbread-0.1.0/src/mixedbread/types/embedding_create_params.py +34 -0
  65. mixedbread-0.1.0/src/mixedbread/types/embedding_create_response.py +50 -0
  66. mixedbread-0.1.0/src/mixedbread/types/expires_after.py +16 -0
  67. mixedbread-0.1.0/src/mixedbread/types/expires_after_param.py +15 -0
  68. mixedbread-0.1.0/src/mixedbread/types/extractions/__init__.py +14 -0
  69. mixedbread-0.1.0/src/mixedbread/types/extractions/content_create_params.py +16 -0
  70. mixedbread-0.1.0/src/mixedbread/types/extractions/created_json_schema.py +12 -0
  71. mixedbread-0.1.0/src/mixedbread/types/extractions/enhanced_json_schema.py +12 -0
  72. mixedbread-0.1.0/src/mixedbread/types/extractions/extraction_job.py +45 -0
  73. mixedbread-0.1.0/src/mixedbread/types/extractions/extraction_result.py +13 -0
  74. mixedbread-0.1.0/src/mixedbread/types/extractions/job_create_params.py +16 -0
  75. mixedbread-0.1.0/src/mixedbread/types/extractions/schema_create_params.py +12 -0
  76. mixedbread-0.1.0/src/mixedbread/types/extractions/schema_enhance_params.py +13 -0
  77. mixedbread-0.1.0/src/mixedbread/types/extractions/schema_validate_params.py +13 -0
  78. mixedbread-0.1.0/src/mixedbread/types/extractions/validated_json_schema.py +18 -0
  79. mixedbread-0.1.0/src/mixedbread/types/file_counts.py +24 -0
  80. mixedbread-0.1.0/src/mixedbread/types/file_create_params.py +14 -0
  81. mixedbread-0.1.0/src/mixedbread/types/file_delete_response.py +19 -0
  82. mixedbread-0.1.0/src/mixedbread/types/file_list_params.py +15 -0
  83. mixedbread-0.1.0/src/mixedbread/types/file_object.py +30 -0
  84. mixedbread-0.1.0/src/mixedbread/types/file_update_params.py +14 -0
  85. mixedbread-0.1.0/src/mixedbread/types/info_response.py +12 -0
  86. mixedbread-0.1.0/src/mixedbread/types/multi_encoding_embedding.py +37 -0
  87. mixedbread-0.1.0/src/mixedbread/types/parsing/__init__.py +9 -0
  88. mixedbread-0.1.0/src/mixedbread/types/parsing/job_create_params.py +38 -0
  89. mixedbread-0.1.0/src/mixedbread/types/parsing/job_delete_response.py +19 -0
  90. mixedbread-0.1.0/src/mixedbread/types/parsing/job_list_params.py +15 -0
  91. mixedbread-0.1.0/src/mixedbread/types/parsing/job_list_response.py +35 -0
  92. mixedbread-0.1.0/src/mixedbread/types/parsing/parsing_job.py +115 -0
  93. mixedbread-0.1.0/src/mixedbread/types/rerank_response.py +56 -0
  94. mixedbread-0.1.0/src/mixedbread/types/scored_vector_store_chunk.py +58 -0
  95. mixedbread-0.1.0/src/mixedbread/types/shared/__init__.py +5 -0
  96. mixedbread-0.1.0/src/mixedbread/types/shared/search_filter.py +44 -0
  97. mixedbread-0.1.0/src/mixedbread/types/shared/search_filter_condition.py +18 -0
  98. mixedbread-0.1.0/src/mixedbread/types/shared/usage.py +18 -0
  99. mixedbread-0.1.0/src/mixedbread/types/shared_params/__init__.py +4 -0
  100. mixedbread-0.1.0/src/mixedbread/types/shared_params/search_filter.py +37 -0
  101. mixedbread-0.1.0/src/mixedbread/types/shared_params/search_filter_condition.py +18 -0
  102. mixedbread-0.1.0/src/mixedbread/types/vector_store.py +52 -0
  103. mixedbread-0.1.0/src/mixedbread/types/vector_store_chunk_search_options_param.py +18 -0
  104. mixedbread-0.1.0/src/mixedbread/types/vector_store_create_params.py +27 -0
  105. mixedbread-0.1.0/src/mixedbread/types/vector_store_delete_response.py +19 -0
  106. mixedbread-0.1.0/src/mixedbread/types/vector_store_file_search_options_param.py +24 -0
  107. mixedbread-0.1.0/src/mixedbread/types/vector_store_list_params.py +15 -0
  108. mixedbread-0.1.0/src/mixedbread/types/vector_store_question_answering_params.py +50 -0
  109. mixedbread-0.1.0/src/mixedbread/types/vector_store_search_params.py +35 -0
  110. mixedbread-0.1.0/src/mixedbread/types/vector_store_search_response.py +17 -0
  111. mixedbread-0.1.0/src/mixedbread/types/vector_store_update_params.py +24 -0
  112. mixedbread-0.1.0/src/mixedbread/types/vector_stores/__init__.py +11 -0
  113. mixedbread-0.1.0/src/mixedbread/types/vector_stores/file_create_params.py +26 -0
  114. mixedbread-0.1.0/src/mixedbread/types/vector_stores/file_delete_response.py +19 -0
  115. mixedbread-0.1.0/src/mixedbread/types/vector_stores/file_list_params.py +15 -0
  116. mixedbread-0.1.0/src/mixedbread/types/vector_stores/file_search_params.py +35 -0
  117. mixedbread-0.1.0/src/mixedbread/types/vector_stores/file_search_response.py +17 -0
  118. mixedbread-0.1.0/src/mixedbread/types/vector_stores/scored_vector_store_file.py +48 -0
  119. mixedbread-0.1.0/src/mixedbread/types/vector_stores/vector_store_file.py +41 -0
  120. mixedbread-0.1.0/tests/__init__.py +1 -0
  121. mixedbread-0.1.0/tests/api_resources/__init__.py +1 -0
  122. mixedbread-0.1.0/tests/api_resources/extractions/__init__.py +1 -0
  123. mixedbread-0.1.0/tests/api_resources/extractions/test_content.py +90 -0
  124. mixedbread-0.1.0/tests/api_resources/extractions/test_jobs.py +166 -0
  125. mixedbread-0.1.0/tests/api_resources/extractions/test_schema.py +212 -0
  126. mixedbread-0.1.0/tests/api_resources/parsing/__init__.py +1 -0
  127. mixedbread-0.1.0/tests/api_resources/parsing/test_jobs.py +399 -0
  128. mixedbread-0.1.0/tests/api_resources/test_client.py +260 -0
  129. mixedbread-0.1.0/tests/api_resources/test_embeddings.py +114 -0
  130. mixedbread-0.1.0/tests/api_resources/test_files.py +507 -0
  131. mixedbread-0.1.0/tests/api_resources/test_vector_stores.py +773 -0
  132. mixedbread-0.1.0/tests/api_resources/vector_stores/__init__.py +1 -0
  133. mixedbread-0.1.0/tests/api_resources/vector_stores/test_files.py +599 -0
  134. mixedbread-0.1.0/tests/conftest.py +51 -0
  135. mixedbread-0.1.0/tests/sample_file.txt +1 -0
  136. mixedbread-0.1.0/tests/test_client.py +1673 -0
  137. mixedbread-0.1.0/tests/test_deepcopy.py +58 -0
  138. mixedbread-0.1.0/tests/test_extract_files.py +64 -0
  139. mixedbread-0.1.0/tests/test_files.py +51 -0
  140. mixedbread-0.1.0/tests/test_models.py +888 -0
  141. mixedbread-0.1.0/tests/test_qs.py +78 -0
  142. mixedbread-0.1.0/tests/test_required_args.py +111 -0
  143. mixedbread-0.1.0/tests/test_response.py +277 -0
  144. mixedbread-0.1.0/tests/test_streaming.py +250 -0
  145. mixedbread-0.1.0/tests/test_transform.py +434 -0
  146. mixedbread-0.1.0/tests/test_utils/test_proxy.py +23 -0
  147. mixedbread-0.1.0/tests/test_utils/test_typing.py +73 -0
  148. mixedbread-0.1.0/tests/utils.py +159 -0
@@ -0,0 +1,16 @@
1
+ .prism.log
2
+ .vscode
3
+ _dev
4
+
5
+ __pycache__
6
+ .mypy_cache
7
+
8
+ dist
9
+
10
+ .venv
11
+ .idea
12
+
13
+ .env
14
+ .envrc
15
+ codegen.log
16
+ Brewfile.lock.json
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.1.0"
3
+ }
@@ -0,0 +1,546 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0 (2025-04-04)
4
+
5
+ Full Changelog: [v0.1.0-alpha.42...v0.1.0](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.42...v0.1.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** update via SDK Studio ([#189](https://github.com/mixedbread-ai/mixedbread-python/issues/189)) ([7d2c3ea](https://github.com/mixedbread-ai/mixedbread-python/commit/7d2c3eaf947540a650971b52c6aeb907c35f330b))
10
+ * **api:** update via SDK Studio ([#191](https://github.com/mixedbread-ai/mixedbread-python/issues/191)) ([ecc7b0c](https://github.com/mixedbread-ai/mixedbread-python/commit/ecc7b0ca2ef2ced5c03615aac32a3cc6e79ac162))
11
+
12
+
13
+ ### Chores
14
+
15
+ * **internal:** remove trailing character ([#192](https://github.com/mixedbread-ai/mixedbread-python/issues/192)) ([1d85db1](https://github.com/mixedbread-ai/mixedbread-python/commit/1d85db180e2c005f90348abd96622c7bb51cd39b))
16
+
17
+ ## 0.1.0-alpha.42 (2025-04-03)
18
+
19
+ Full Changelog: [v0.1.0-alpha.41...v0.1.0-alpha.42](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.41...v0.1.0-alpha.42)
20
+
21
+ ### Features
22
+
23
+ * **api:** update via SDK Studio ([#180](https://github.com/mixedbread-ai/mixedbread-python/issues/180)) ([312a603](https://github.com/mixedbread-ai/mixedbread-python/commit/312a603bb67da9ff8409b1e0950a0dee03200636))
24
+ * **api:** update via SDK Studio ([#182](https://github.com/mixedbread-ai/mixedbread-python/issues/182)) ([33480fc](https://github.com/mixedbread-ai/mixedbread-python/commit/33480fca59f6b3f67ad5acee09781ef22e240600))
25
+ * **api:** update via SDK Studio ([#184](https://github.com/mixedbread-ai/mixedbread-python/issues/184)) ([651e092](https://github.com/mixedbread-ai/mixedbread-python/commit/651e0923c62e32345dfc39d67e38ef41dcc22028))
26
+ * **api:** update via SDK Studio ([#186](https://github.com/mixedbread-ai/mixedbread-python/issues/186)) ([b05ec3a](https://github.com/mixedbread-ai/mixedbread-python/commit/b05ec3aca6d8caf88ab416e6a3ebc83da9bcf50e))
27
+
28
+ ## 0.1.0-alpha.41 (2025-04-03)
29
+
30
+ Full Changelog: [v0.1.0-alpha.40...v0.1.0-alpha.41](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.40...v0.1.0-alpha.41)
31
+
32
+ ### Features
33
+
34
+ * **api:** update via SDK Studio ([#178](https://github.com/mixedbread-ai/mixedbread-python/issues/178)) ([f829faa](https://github.com/mixedbread-ai/mixedbread-python/commit/f829faa2fc0f062ece2c3a63e4cd4819a4f3d866))
35
+
36
+ ## 0.1.0-alpha.40 (2025-04-03)
37
+
38
+ Full Changelog: [v0.1.0-alpha.39...v0.1.0-alpha.40](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.39...v0.1.0-alpha.40)
39
+
40
+ ### Features
41
+
42
+ * **api:** update via SDK Studio ([#175](https://github.com/mixedbread-ai/mixedbread-python/issues/175)) ([46af55b](https://github.com/mixedbread-ai/mixedbread-python/commit/46af55b59f1727d387dca11f72e45eb99a046e43))
43
+
44
+ ## 0.1.0-alpha.39 (2025-04-03)
45
+
46
+ Full Changelog: [v0.1.0-alpha.38...v0.1.0-alpha.39](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.38...v0.1.0-alpha.39)
47
+
48
+ ### Features
49
+
50
+ * **api:** update via SDK Studio ([#172](https://github.com/mixedbread-ai/mixedbread-python/issues/172)) ([4d49f3b](https://github.com/mixedbread-ai/mixedbread-python/commit/4d49f3b68fb2f71fc0f6577bb3195a5b44e7e7d9))
51
+
52
+ ## 0.1.0-alpha.38 (2025-04-03)
53
+
54
+ Full Changelog: [v0.1.0-alpha.37...v0.1.0-alpha.38](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.37...v0.1.0-alpha.38)
55
+
56
+ ### Features
57
+
58
+ * **api:** update via SDK Studio ([#169](https://github.com/mixedbread-ai/mixedbread-python/issues/169)) ([0989c35](https://github.com/mixedbread-ai/mixedbread-python/commit/0989c35d0b41f0e63ccb449bf80afdc9b28c47c4))
59
+
60
+ ## 0.1.0-alpha.37 (2025-04-03)
61
+
62
+ Full Changelog: [v0.1.0-alpha.36...v0.1.0-alpha.37](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.36...v0.1.0-alpha.37)
63
+
64
+ ### Features
65
+
66
+ * **api:** update via SDK Studio ([#166](https://github.com/mixedbread-ai/mixedbread-python/issues/166)) ([739abba](https://github.com/mixedbread-ai/mixedbread-python/commit/739abba827998af1958130caa2f3d133081d2563))
67
+
68
+ ## 0.1.0-alpha.36 (2025-04-03)
69
+
70
+ Full Changelog: [v0.1.0-alpha.35...v0.1.0-alpha.36](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.35...v0.1.0-alpha.36)
71
+
72
+ ### Features
73
+
74
+ * **api:** update via SDK Studio ([#163](https://github.com/mixedbread-ai/mixedbread-python/issues/163)) ([95bc622](https://github.com/mixedbread-ai/mixedbread-python/commit/95bc622bc51f436e0a333c1745e6edaf1c57bb78))
75
+
76
+ ## 0.1.0-alpha.35 (2025-03-29)
77
+
78
+ Full Changelog: [v0.1.0-alpha.34...v0.1.0-alpha.35](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.34...v0.1.0-alpha.35)
79
+
80
+ ### Features
81
+
82
+ * **api:** update via SDK Studio ([#160](https://github.com/mixedbread-ai/mixedbread-python/issues/160)) ([6446f27](https://github.com/mixedbread-ai/mixedbread-python/commit/6446f276404b983c716d946737d9cc40ed5751ae))
83
+
84
+ ## 0.1.0-alpha.34 (2025-03-28)
85
+
86
+ Full Changelog: [v0.1.0-alpha.33...v0.1.0-alpha.34](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.33...v0.1.0-alpha.34)
87
+
88
+ ### Features
89
+
90
+ * **api:** update via SDK Studio ([#158](https://github.com/mixedbread-ai/mixedbread-python/issues/158)) ([6e46412](https://github.com/mixedbread-ai/mixedbread-python/commit/6e46412e9a3537a3fb52dc93a857e1d696532fca))
91
+
92
+
93
+ ### Chores
94
+
95
+ * add hash of OpenAPI spec/config inputs to .stats.yml ([#156](https://github.com/mixedbread-ai/mixedbread-python/issues/156)) ([939d44d](https://github.com/mixedbread-ai/mixedbread-python/commit/939d44d81db7d36178cb1834c5b32e562dd62791))
96
+
97
+ ## 0.1.0-alpha.33 (2025-03-27)
98
+
99
+ Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.32...v0.1.0-alpha.33)
100
+
101
+ ### Bug Fixes
102
+
103
+ * **ci:** remove publishing patch ([#153](https://github.com/mixedbread-ai/mixedbread-python/issues/153)) ([ac8c93e](https://github.com/mixedbread-ai/mixedbread-python/commit/ac8c93e93ea77416eba8e85f660f91a1fa3b49db))
104
+
105
+
106
+ ### Chores
107
+
108
+ * fix typos ([#155](https://github.com/mixedbread-ai/mixedbread-python/issues/155)) ([1e32018](https://github.com/mixedbread-ai/mixedbread-python/commit/1e320180ee5f2df270efd0ca2a52648297ede4a1))
109
+
110
+ ## 0.1.0-alpha.32 (2025-03-17)
111
+
112
+ Full Changelog: [v0.1.0-alpha.31...v0.1.0-alpha.32](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.31...v0.1.0-alpha.32)
113
+
114
+ ### Bug Fixes
115
+
116
+ * **ci:** ensure pip is always available ([#151](https://github.com/mixedbread-ai/mixedbread-python/issues/151)) ([0f45b41](https://github.com/mixedbread-ai/mixedbread-python/commit/0f45b41a965578a881dcad238dd2f7e2bb78e8f1))
117
+ * **types:** handle more discriminated union shapes ([#150](https://github.com/mixedbread-ai/mixedbread-python/issues/150)) ([bea9bfe](https://github.com/mixedbread-ai/mixedbread-python/commit/bea9bfeac5b250baff43e2347a9e84354938db53))
118
+
119
+
120
+ ### Chores
121
+
122
+ * **internal:** bump rye to 0.44.0 ([#149](https://github.com/mixedbread-ai/mixedbread-python/issues/149)) ([c66d4c9](https://github.com/mixedbread-ai/mixedbread-python/commit/c66d4c92c9eac9f3e80e244bee6c01a5e9f88f32))
123
+ * **internal:** remove extra empty newlines ([#146](https://github.com/mixedbread-ai/mixedbread-python/issues/146)) ([6e75573](https://github.com/mixedbread-ai/mixedbread-python/commit/6e755738f7d96d7015267124c5bf33765b0a93af))
124
+
125
+ ## 0.1.0-alpha.31 (2025-03-12)
126
+
127
+ Full Changelog: [v0.1.0-alpha.30...v0.1.0-alpha.31](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.30...v0.1.0-alpha.31)
128
+
129
+ ### Features
130
+
131
+ * **api:** update via SDK Studio ([#143](https://github.com/mixedbread-ai/mixedbread-python/issues/143)) ([2a5d9ae](https://github.com/mixedbread-ai/mixedbread-python/commit/2a5d9ae51ef522b61f10dceb59c4f2ee47a85303))
132
+
133
+ ## 0.1.0-alpha.30 (2025-03-12)
134
+
135
+ Full Changelog: [v0.1.0-alpha.29...v0.1.0-alpha.30](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.29...v0.1.0-alpha.30)
136
+
137
+ ### Features
138
+
139
+ * **api:** update via SDK Studio ([#141](https://github.com/mixedbread-ai/mixedbread-python/issues/141)) ([e175d01](https://github.com/mixedbread-ai/mixedbread-python/commit/e175d01bfc96ea743874968a8e19e0976290fff4))
140
+
141
+
142
+ ### Documentation
143
+
144
+ * revise readme docs about nested params ([#138](https://github.com/mixedbread-ai/mixedbread-python/issues/138)) ([1498c27](https://github.com/mixedbread-ai/mixedbread-python/commit/1498c27bc4e44661b040ad19d8d858dc55dc599f))
145
+
146
+ ## 0.1.0-alpha.29 (2025-03-07)
147
+
148
+ Full Changelog: [v0.1.0-alpha.28...v0.1.0-alpha.29](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.28...v0.1.0-alpha.29)
149
+
150
+ ### Features
151
+
152
+ * **api:** update via SDK Studio ([#135](https://github.com/mixedbread-ai/mixedbread-python/issues/135)) ([f41ae1a](https://github.com/mixedbread-ai/mixedbread-python/commit/f41ae1aa4f36f934f92dafc146e2db94819bd9ed))
153
+
154
+ ## 0.1.0-alpha.28 (2025-03-07)
155
+
156
+ Full Changelog: [v0.1.0-alpha.27...v0.1.0-alpha.28](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.27...v0.1.0-alpha.28)
157
+
158
+ ### Features
159
+
160
+ * **api:** update via SDK Studio ([#133](https://github.com/mixedbread-ai/mixedbread-python/issues/133)) ([6c1d814](https://github.com/mixedbread-ai/mixedbread-python/commit/6c1d81472666e856754cd654e4b37f10709219e2))
161
+
162
+
163
+ ### Chores
164
+
165
+ * **internal:** remove unused http client options forwarding ([#131](https://github.com/mixedbread-ai/mixedbread-python/issues/131)) ([3974e4b](https://github.com/mixedbread-ai/mixedbread-python/commit/3974e4b46cfbf587d45e4a8798f92bfd15873cbc))
166
+
167
+ ## 0.1.0-alpha.27 (2025-03-04)
168
+
169
+ Full Changelog: [v0.1.0-alpha.26...v0.1.0-alpha.27](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.26...v0.1.0-alpha.27)
170
+
171
+ ### Features
172
+
173
+ * **api:** update via SDK Studio ([#129](https://github.com/mixedbread-ai/mixedbread-python/issues/129)) ([424bbf2](https://github.com/mixedbread-ai/mixedbread-python/commit/424bbf2ab6ad06a6a1fa8202b426846e5ca7dbe9))
174
+
175
+
176
+ ### Chores
177
+
178
+ * **docs:** update client docstring ([#128](https://github.com/mixedbread-ai/mixedbread-python/issues/128)) ([70fc2aa](https://github.com/mixedbread-ai/mixedbread-python/commit/70fc2aafe8a29f0726ee4862f4f6538bae0d1d2f))
179
+ * **internal:** fix devcontainers setup ([#124](https://github.com/mixedbread-ai/mixedbread-python/issues/124)) ([2f328c7](https://github.com/mixedbread-ai/mixedbread-python/commit/2f328c7f4205eeb9d850fa99538db6dc98c15380))
180
+ * **internal:** properly set __pydantic_private__ ([#126](https://github.com/mixedbread-ai/mixedbread-python/issues/126)) ([c7e4eba](https://github.com/mixedbread-ai/mixedbread-python/commit/c7e4eba3546ac0923eaab44db3d6434d01a86921))
181
+
182
+
183
+ ### Documentation
184
+
185
+ * update URLs from stainlessapi.com to stainless.com ([#127](https://github.com/mixedbread-ai/mixedbread-python/issues/127)) ([d20d87b](https://github.com/mixedbread-ai/mixedbread-python/commit/d20d87bcd34aac6d68f071dac319788b9e63b77e))
186
+
187
+ ## 0.1.0-alpha.26 (2025-02-21)
188
+
189
+ Full Changelog: [v0.1.0-alpha.25...v0.1.0-alpha.26](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.25...v0.1.0-alpha.26)
190
+
191
+ ### Features
192
+
193
+ * **client:** allow passing `NotGiven` for body ([#122](https://github.com/mixedbread-ai/mixedbread-python/issues/122)) ([d23452e](https://github.com/mixedbread-ai/mixedbread-python/commit/d23452e636ada79e4688cab9f4eabd7647cb0319))
194
+
195
+
196
+ ### Bug Fixes
197
+
198
+ * **client:** mark some request bodies as optional ([d23452e](https://github.com/mixedbread-ai/mixedbread-python/commit/d23452e636ada79e4688cab9f4eabd7647cb0319))
199
+
200
+
201
+ ### Chores
202
+
203
+ * **internal:** codegen related update ([#121](https://github.com/mixedbread-ai/mixedbread-python/issues/121)) ([2a97f57](https://github.com/mixedbread-ai/mixedbread-python/commit/2a97f57c004ff7f820c7c282fa50959d954821f1))
204
+ * **internal:** update client tests ([#119](https://github.com/mixedbread-ai/mixedbread-python/issues/119)) ([48516b9](https://github.com/mixedbread-ai/mixedbread-python/commit/48516b9944b79939474d00460063b27f888ec9fd))
205
+
206
+ ## 0.1.0-alpha.25 (2025-02-14)
207
+
208
+ Full Changelog: [v0.1.0-alpha.24...v0.1.0-alpha.25](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.24...v0.1.0-alpha.25)
209
+
210
+ ### Bug Fixes
211
+
212
+ * asyncify on non-asyncio runtimes ([#117](https://github.com/mixedbread-ai/mixedbread-python/issues/117)) ([149d5c1](https://github.com/mixedbread-ai/mixedbread-python/commit/149d5c142ce91e4ba109490a8efef03ec33387a5))
213
+
214
+
215
+ ### Chores
216
+
217
+ * **internal:** fix type traversing dictionary params ([#113](https://github.com/mixedbread-ai/mixedbread-python/issues/113)) ([326e6a7](https://github.com/mixedbread-ai/mixedbread-python/commit/326e6a75bf544395d8e708f32f4543f230aad1a3))
218
+ * **internal:** minor type handling changes ([#115](https://github.com/mixedbread-ai/mixedbread-python/issues/115)) ([e9e257c](https://github.com/mixedbread-ai/mixedbread-python/commit/e9e257c60e9e210043f3b320bf499c58d7d6688d))
219
+ * **internal:** update client tests ([#116](https://github.com/mixedbread-ai/mixedbread-python/issues/116)) ([dd97d92](https://github.com/mixedbread-ai/mixedbread-python/commit/dd97d920954f4a1193ef9226357070a91eec99ba))
220
+
221
+ ## 0.1.0-alpha.24 (2025-02-06)
222
+
223
+ Full Changelog: [v0.1.0-alpha.23...v0.1.0-alpha.24](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.23...v0.1.0-alpha.24)
224
+
225
+ ### Features
226
+
227
+ * **api:** update via SDK Studio ([#111](https://github.com/mixedbread-ai/mixedbread-python/issues/111)) ([5b3e4c4](https://github.com/mixedbread-ai/mixedbread-python/commit/5b3e4c4bd32c5bafbfd465dedba94a5f1663d90a))
228
+ * **client:** send `X-Stainless-Read-Timeout` header ([#110](https://github.com/mixedbread-ai/mixedbread-python/issues/110)) ([870d21d](https://github.com/mixedbread-ai/mixedbread-python/commit/870d21d4bd83e0120640b01a0b415feea5473aec))
229
+
230
+
231
+ ### Chores
232
+
233
+ * **internal:** bummp ruff dependency ([#108](https://github.com/mixedbread-ai/mixedbread-python/issues/108)) ([76291c2](https://github.com/mixedbread-ai/mixedbread-python/commit/76291c27a1638ed09d920b1f7fb567c63cd9a469))
234
+ * **internal:** change default timeout to an int ([#107](https://github.com/mixedbread-ai/mixedbread-python/issues/107)) ([1916121](https://github.com/mixedbread-ai/mixedbread-python/commit/1916121d59d5942319409de017981b2fa8178aad))
235
+ * **internal:** codegen related update ([#105](https://github.com/mixedbread-ai/mixedbread-python/issues/105)) ([a001692](https://github.com/mixedbread-ai/mixedbread-python/commit/a001692fc3661ae2f7fd2c4385c1b225ea844d12))
236
+ * **internal:** use TypeAliasType for type aliases ([#109](https://github.com/mixedbread-ai/mixedbread-python/issues/109)) ([76fd1fc](https://github.com/mixedbread-ai/mixedbread-python/commit/76fd1fc06b1cdba0eec51fd440f24b20115a10b9))
237
+
238
+ ## 0.1.0-alpha.23 (2025-01-29)
239
+
240
+ Full Changelog: [v0.1.0-alpha.22...v0.1.0-alpha.23](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.22...v0.1.0-alpha.23)
241
+
242
+ ### Features
243
+
244
+ * **api:** update via SDK Studio ([#102](https://github.com/mixedbread-ai/mixedbread-python/issues/102)) ([29ca738](https://github.com/mixedbread-ai/mixedbread-python/commit/29ca7384d45644f9dc31575fd6147d3a70457f7d))
245
+
246
+ ## 0.1.0-alpha.22 (2025-01-29)
247
+
248
+ Full Changelog: [v0.1.0-alpha.21...v0.1.0-alpha.22](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.21...v0.1.0-alpha.22)
249
+
250
+ ### Features
251
+
252
+ * **api:** update via SDK Studio ([#99](https://github.com/mixedbread-ai/mixedbread-python/issues/99)) ([3e981bf](https://github.com/mixedbread-ai/mixedbread-python/commit/3e981bf75820ff33abbffb4a93e4bd4df928235d))
253
+
254
+ ## 0.1.0-alpha.21 (2025-01-29)
255
+
256
+ Full Changelog: [v0.1.0-alpha.20...v0.1.0-alpha.21](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.20...v0.1.0-alpha.21)
257
+
258
+ ### Features
259
+
260
+ * **api:** update via SDK Studio ([#96](https://github.com/mixedbread-ai/mixedbread-python/issues/96)) ([123f3f3](https://github.com/mixedbread-ai/mixedbread-python/commit/123f3f38512beccad3ed151430b80cdb35071551))
261
+
262
+ ## 0.1.0-alpha.20 (2025-01-29)
263
+
264
+ Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
265
+
266
+ ### Features
267
+
268
+ * feat: Support kwargs + experimental ([d48fd9a](https://github.com/mixedbread-ai/mixedbread-python/commit/d48fd9ab322bbd075cba80c3ad81e8685dc66762))
269
+
270
+ ## 0.1.0-alpha.19 (2025-01-29)
271
+
272
+ Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
273
+
274
+ ### Features
275
+
276
+ * **api:** update via SDK Studio ([638129a](https://github.com/mixedbread-ai/mixedbread-python/commit/638129a9cf0e17c900712bb4d95b7f7e3f9d1414))
277
+ * **api:** update via SDK Studio ([0153e9e](https://github.com/mixedbread-ai/mixedbread-python/commit/0153e9eebf7a558bdc9fcd59bfc63a8336c9156e))
278
+ * **api:** update via SDK Studio ([d289d83](https://github.com/mixedbread-ai/mixedbread-python/commit/d289d83e3afe5def14fefeb71817ee16affd5e00))
279
+ * **api:** update via SDK Studio ([690efcb](https://github.com/mixedbread-ai/mixedbread-python/commit/690efcb8869353048153c7cba05d2251bea28b6c))
280
+ * **api:** update via SDK Studio ([c87fcff](https://github.com/mixedbread-ai/mixedbread-python/commit/c87fcff8005cbdd01972e0d08fb53c84a031c15c))
281
+ * **api:** update via SDK Studio ([d9db05d](https://github.com/mixedbread-ai/mixedbread-python/commit/d9db05d0f25c3069e8266a8869754b6af6fa573b))
282
+ * **api:** update via SDK Studio ([d719154](https://github.com/mixedbread-ai/mixedbread-python/commit/d719154b55832f37cdb84bdaf12124b450ced190))
283
+ * **api:** update via SDK Studio ([e4fbd82](https://github.com/mixedbread-ai/mixedbread-python/commit/e4fbd829b247e0cd1935ff38dbd2af0106450e9f))
284
+ * **api:** update via SDK Studio ([0bb9273](https://github.com/mixedbread-ai/mixedbread-python/commit/0bb92731087b81de203b160f0fda3f22730b997f))
285
+ * **api:** update via SDK Studio ([ebfdbcb](https://github.com/mixedbread-ai/mixedbread-python/commit/ebfdbcb4151fff3ca9afb6bd449f78ca6f5d1f83))
286
+ * **api:** update via SDK Studio ([20f5a92](https://github.com/mixedbread-ai/mixedbread-python/commit/20f5a92fada6b965185ce0583389e9d6749c6319))
287
+ * **api:** update via SDK Studio ([0d75a30](https://github.com/mixedbread-ai/mixedbread-python/commit/0d75a30a4ee5e202c86b4d682ca61e5fee990380))
288
+ * **api:** update via SDK Studio ([8a038de](https://github.com/mixedbread-ai/mixedbread-python/commit/8a038de5f5773f7417806804ff240b39424b606b))
289
+ * **api:** update via SDK Studio ([656ea6f](https://github.com/mixedbread-ai/mixedbread-python/commit/656ea6ffeb8a92e34ded0fbed58508ca12429053))
290
+ * **api:** update via SDK Studio ([3af8c6c](https://github.com/mixedbread-ai/mixedbread-python/commit/3af8c6c54d61d4cffa0e192851ef615096ca8fc7))
291
+ * **api:** update via SDK Studio ([9ba9c8a](https://github.com/mixedbread-ai/mixedbread-python/commit/9ba9c8afe91941db3aa65618ec0b1f5f0d552a06))
292
+ * **api:** update via SDK Studio ([f565add](https://github.com/mixedbread-ai/mixedbread-python/commit/f565add104afae946aa7937b34d72793f1f6f482))
293
+ * **api:** update via SDK Studio ([73cf7ea](https://github.com/mixedbread-ai/mixedbread-python/commit/73cf7ea2a46d3e18ef6200da31919e7979c67cf0))
294
+ * **api:** update via SDK Studio ([4dbbaea](https://github.com/mixedbread-ai/mixedbread-python/commit/4dbbaead9c07366b04538c96f0b9b7db1d92c8c8))
295
+ * **api:** update via SDK Studio ([3e48baa](https://github.com/mixedbread-ai/mixedbread-python/commit/3e48baa57fd7152bf160dbde92968128974b327a))
296
+ * **api:** update via SDK Studio ([#12](https://github.com/mixedbread-ai/mixedbread-python/issues/12)) ([f9fd1d3](https://github.com/mixedbread-ai/mixedbread-python/commit/f9fd1d31ce9f04cc5423c1a26e4498666455a1e1))
297
+ * **api:** update via SDK Studio ([#13](https://github.com/mixedbread-ai/mixedbread-python/issues/13)) ([8dda6ff](https://github.com/mixedbread-ai/mixedbread-python/commit/8dda6ffedea34cfad49fc834d15a40993dab809e))
298
+ * **api:** update via SDK Studio ([#14](https://github.com/mixedbread-ai/mixedbread-python/issues/14)) ([f3271a1](https://github.com/mixedbread-ai/mixedbread-python/commit/f3271a1b15fc453425c534b4c57d37560e4d769e))
299
+ * **api:** update via SDK Studio ([#18](https://github.com/mixedbread-ai/mixedbread-python/issues/18)) ([176aefb](https://github.com/mixedbread-ai/mixedbread-python/commit/176aefbeb97af3f7db4680b13632f47e84d0bb79))
300
+ * **api:** update via SDK Studio ([#19](https://github.com/mixedbread-ai/mixedbread-python/issues/19)) ([a618b6e](https://github.com/mixedbread-ai/mixedbread-python/commit/a618b6e437f75b84c05933b7f2ed3747301f0994))
301
+ * **api:** update via SDK Studio ([#2](https://github.com/mixedbread-ai/mixedbread-python/issues/2)) ([3a558fa](https://github.com/mixedbread-ai/mixedbread-python/commit/3a558fac6e610ce946c1b48b9098c4d70424a3bc))
302
+ * **api:** update via SDK Studio ([#21](https://github.com/mixedbread-ai/mixedbread-python/issues/21)) ([0fcdca0](https://github.com/mixedbread-ai/mixedbread-python/commit/0fcdca0bd79dcd18b69ead4085903f109e152181))
303
+ * **api:** update via SDK Studio ([#22](https://github.com/mixedbread-ai/mixedbread-python/issues/22)) ([de4d0bd](https://github.com/mixedbread-ai/mixedbread-python/commit/de4d0bd187f813f1cb761e94bad6fb60cb015aa3))
304
+ * **api:** update via SDK Studio ([#23](https://github.com/mixedbread-ai/mixedbread-python/issues/23)) ([1ba25bf](https://github.com/mixedbread-ai/mixedbread-python/commit/1ba25bf15dfaac0b4df647779ceb9a25700068ec))
305
+ * **api:** update via SDK Studio ([#25](https://github.com/mixedbread-ai/mixedbread-python/issues/25)) ([046e6e6](https://github.com/mixedbread-ai/mixedbread-python/commit/046e6e6109b390b10e83fd1661782fb9e77a1421))
306
+ * **api:** update via SDK Studio ([#30](https://github.com/mixedbread-ai/mixedbread-python/issues/30)) ([ce02f2e](https://github.com/mixedbread-ai/mixedbread-python/commit/ce02f2ec3986cc6de33478f1eb63b458c621e493))
307
+ * **api:** update via SDK Studio ([#33](https://github.com/mixedbread-ai/mixedbread-python/issues/33)) ([d03360a](https://github.com/mixedbread-ai/mixedbread-python/commit/d03360adf1225da7c1b002e0e35953f19a8772fc))
308
+ * **api:** update via SDK Studio ([#37](https://github.com/mixedbread-ai/mixedbread-python/issues/37)) ([f1f62dc](https://github.com/mixedbread-ai/mixedbread-python/commit/f1f62dc7a2b37c13d31ffe7c3e56445c68429c7b))
309
+ * **api:** update via SDK Studio ([#4](https://github.com/mixedbread-ai/mixedbread-python/issues/4)) ([f825609](https://github.com/mixedbread-ai/mixedbread-python/commit/f8256091bc8ccfe3b7cd608f9542e43a1c2c8bf3))
310
+ * **api:** update via SDK Studio ([#40](https://github.com/mixedbread-ai/mixedbread-python/issues/40)) ([e8d5387](https://github.com/mixedbread-ai/mixedbread-python/commit/e8d538723525682cf74651023c1da3d430c122ea))
311
+ * **api:** update via SDK Studio ([#48](https://github.com/mixedbread-ai/mixedbread-python/issues/48)) ([3c213f6](https://github.com/mixedbread-ai/mixedbread-python/commit/3c213f61fea1ef97e34eaae870db5daaa35a9f96))
312
+ * **api:** update via SDK Studio ([#50](https://github.com/mixedbread-ai/mixedbread-python/issues/50)) ([636e0cb](https://github.com/mixedbread-ai/mixedbread-python/commit/636e0cb75055d39ec3c4f2366fb72ae2c9d9e849))
313
+ * **api:** update via SDK Studio ([#52](https://github.com/mixedbread-ai/mixedbread-python/issues/52)) ([c7430c8](https://github.com/mixedbread-ai/mixedbread-python/commit/c7430c8b4a10515785cb454bee4f24a972f9afa2))
314
+ * **api:** update via SDK Studio ([#6](https://github.com/mixedbread-ai/mixedbread-python/issues/6)) ([aa8c372](https://github.com/mixedbread-ai/mixedbread-python/commit/aa8c37275297e2fa0d9eab51123f02600284f8b3))
315
+ * **api:** update via SDK Studio ([#60](https://github.com/mixedbread-ai/mixedbread-python/issues/60)) ([7d6512c](https://github.com/mixedbread-ai/mixedbread-python/commit/7d6512cbc243f4c7efffb51f54de266138191ec2))
316
+ * **api:** update via SDK Studio ([#61](https://github.com/mixedbread-ai/mixedbread-python/issues/61)) ([440b082](https://github.com/mixedbread-ai/mixedbread-python/commit/440b082371b4dd86a2d95bce050bc037a463bba4))
317
+ * **api:** update via SDK Studio ([#65](https://github.com/mixedbread-ai/mixedbread-python/issues/65)) ([cd92872](https://github.com/mixedbread-ai/mixedbread-python/commit/cd92872a9396d215a8bbafc3bfbd184e4a3ab429))
318
+ * **api:** update via SDK Studio ([#67](https://github.com/mixedbread-ai/mixedbread-python/issues/67)) ([8187944](https://github.com/mixedbread-ai/mixedbread-python/commit/818794418c7370c0d548335bdb9281c11b2a5794))
319
+ * **api:** update via SDK Studio ([#72](https://github.com/mixedbread-ai/mixedbread-python/issues/72)) ([8535a3a](https://github.com/mixedbread-ai/mixedbread-python/commit/8535a3a1423434482e7fe6b91653995c39839cec))
320
+ * **api:** update via SDK Studio ([#74](https://github.com/mixedbread-ai/mixedbread-python/issues/74)) ([4865c48](https://github.com/mixedbread-ai/mixedbread-python/commit/4865c4848392d4c279cf368abb844dcf9536eda3))
321
+ * **api:** update via SDK Studio ([#79](https://github.com/mixedbread-ai/mixedbread-python/issues/79)) ([a4defc1](https://github.com/mixedbread-ai/mixedbread-python/commit/a4defc10e2d85b8a14afcd22a935dabcf2fa855d))
322
+ * **api:** update via SDK Studio ([#81](https://github.com/mixedbread-ai/mixedbread-python/issues/81)) ([5120abf](https://github.com/mixedbread-ai/mixedbread-python/commit/5120abf10d4bdda349d01075c965fa2fef1c3383))
323
+ * **api:** update via SDK Studio ([#87](https://github.com/mixedbread-ai/mixedbread-python/issues/87)) ([1ca7922](https://github.com/mixedbread-ai/mixedbread-python/commit/1ca79224de6a0eae55b058200fe97c1788611fa1))
324
+ * **api:** update via SDK Studio ([#9](https://github.com/mixedbread-ai/mixedbread-python/issues/9)) ([5967933](https://github.com/mixedbread-ai/mixedbread-python/commit/5967933654c2384fd11a17fcfbd608856d08df17))
325
+ * vector store polling ([06f8c1e](https://github.com/mixedbread-ai/mixedbread-python/commit/06f8c1eff981970fb12d2fd7a2b8552a4d8ece5d))
326
+
327
+
328
+ ### Bug Fixes
329
+
330
+ * **client:** compat with new httpx 0.28.0 release ([79dfe90](https://github.com/mixedbread-ai/mixedbread-python/commit/79dfe9011ebde6c84d422f8f3ade94bebdf190ef))
331
+ * correctly handle deserialising `cls` fields ([#59](https://github.com/mixedbread-ai/mixedbread-python/issues/59)) ([6cada34](https://github.com/mixedbread-ai/mixedbread-python/commit/6cada34c9adc93161f2a51e3eb9c7b43ead70c6e))
332
+
333
+
334
+ ### Chores
335
+
336
+ * fix naming ([65990fd](https://github.com/mixedbread-ai/mixedbread-python/commit/65990fd0c717752203acb2bd4d190d17dff7c0f4))
337
+ * go live ([a74a889](https://github.com/mixedbread-ai/mixedbread-python/commit/a74a8898cf855c7d19dca4880ea79b462dae87d5))
338
+ * **internal:** bump pydantic dependency ([34e73ef](https://github.com/mixedbread-ai/mixedbread-python/commit/34e73ef8ff6bb4cd18f74265fce272835816a175))
339
+ * **internal:** bump pyright ([8c3fa40](https://github.com/mixedbread-ai/mixedbread-python/commit/8c3fa4033707692a80a0cf2bfec132353c596910))
340
+ * **internal:** codegen related update ([f19c6df](https://github.com/mixedbread-ai/mixedbread-python/commit/f19c6dfa83dcedbae740d7929f35a6bcc3d4764b))
341
+ * **internal:** codegen related update ([8229b38](https://github.com/mixedbread-ai/mixedbread-python/commit/8229b384d4ebd21209415c06add3d00d16115b4a))
342
+ * **internal:** codegen related update ([521096c](https://github.com/mixedbread-ai/mixedbread-python/commit/521096c7229f5d991b6df91e357ea29bb41ffa1b))
343
+ * **internal:** codegen related update ([ba3aeab](https://github.com/mixedbread-ai/mixedbread-python/commit/ba3aeab0b50fb13e5228b5cf7b5f68e5167585b3))
344
+ * **internal:** codegen related update ([efcf79d](https://github.com/mixedbread-ai/mixedbread-python/commit/efcf79dea535034b47edb354d7a62cbfaf2d3556))
345
+ * **internal:** codegen related update ([4a28043](https://github.com/mixedbread-ai/mixedbread-python/commit/4a28043ad8884156601cb8dc4e72520da8cda290))
346
+ * **internal:** codegen related update ([#3](https://github.com/mixedbread-ai/mixedbread-python/issues/3)) ([2174af4](https://github.com/mixedbread-ai/mixedbread-python/commit/2174af46a632867e6350373abe95544dfd44c4cc))
347
+ * **internal:** codegen related update ([#46](https://github.com/mixedbread-ai/mixedbread-python/issues/46)) ([189d38a](https://github.com/mixedbread-ai/mixedbread-python/commit/189d38a157ceaf3bcd385e5752782693dbde6451))
348
+ * **internal:** codegen related update ([#55](https://github.com/mixedbread-ai/mixedbread-python/issues/55)) ([f8f93b4](https://github.com/mixedbread-ai/mixedbread-python/commit/f8f93b4178ccb41c7705f9757b63477bcdecd7ba))
349
+ * **internal:** codegen related update ([#58](https://github.com/mixedbread-ai/mixedbread-python/issues/58)) ([4ee7313](https://github.com/mixedbread-ai/mixedbread-python/commit/4ee7313ab3c0ca6344cde03c5744f85509e2b04a))
350
+ * **internal:** codegen related update ([#66](https://github.com/mixedbread-ai/mixedbread-python/issues/66)) ([df284d3](https://github.com/mixedbread-ai/mixedbread-python/commit/df284d359787501edf6aa4bac56f7fc740ea2464))
351
+ * **internal:** codegen related update ([#69](https://github.com/mixedbread-ai/mixedbread-python/issues/69)) ([645d6a2](https://github.com/mixedbread-ai/mixedbread-python/commit/645d6a29692ebad7ea123f7f35f7ceecdb86863c))
352
+ * **internal:** codegen related update ([#70](https://github.com/mixedbread-ai/mixedbread-python/issues/70)) ([e167953](https://github.com/mixedbread-ai/mixedbread-python/commit/e1679530da659697a24e1cfb6f22818939662ff4))
353
+ * **internal:** codegen related update ([#78](https://github.com/mixedbread-ai/mixedbread-python/issues/78)) ([02352bf](https://github.com/mixedbread-ai/mixedbread-python/commit/02352bf762d31f799e191cfc5d07194e14cdcadf))
354
+ * **internal:** exclude mypy from running on tests ([1fa4191](https://github.com/mixedbread-ai/mixedbread-python/commit/1fa419185eb27d5ab222bb8d418fdd27c15c3035))
355
+ * **internal:** fix compat model_dump method when warnings are passed ([2012b11](https://github.com/mixedbread-ai/mixedbread-python/commit/2012b11dac1b2f421e72ad2aa648a3d0f8fd7640))
356
+ * **internal:** fix some typos ([b79e0eb](https://github.com/mixedbread-ai/mixedbread-python/commit/b79e0eb5c089ece56ec745df84719351ca69d340))
357
+ * **internal:** minor formatting changes ([#71](https://github.com/mixedbread-ai/mixedbread-python/issues/71)) ([38087e0](https://github.com/mixedbread-ai/mixedbread-python/commit/38087e083a753dbbb6e1ac2dac553481fedc7b9d))
358
+ * **internal:** updated imports ([8ab3cec](https://github.com/mixedbread-ai/mixedbread-python/commit/8ab3ceca8012020a52e13fd2d743d5e9c0860966))
359
+ * **internal:** version bump ([#27](https://github.com/mixedbread-ai/mixedbread-python/issues/27)) ([931e37a](https://github.com/mixedbread-ai/mixedbread-python/commit/931e37a294640aa3673f67593441a24c14976544))
360
+ * **internal:** version bump ([#32](https://github.com/mixedbread-ai/mixedbread-python/issues/32)) ([1754b14](https://github.com/mixedbread-ai/mixedbread-python/commit/1754b14b6e13022eb6a0646e9eca4717a9284e45))
361
+ * **internal:** version bump ([#36](https://github.com/mixedbread-ai/mixedbread-python/issues/36)) ([d7bb76b](https://github.com/mixedbread-ai/mixedbread-python/commit/d7bb76bef1803a3494b0d6210dd667ca90ca315a))
362
+ * **internal:** version bump ([#43](https://github.com/mixedbread-ai/mixedbread-python/issues/43)) ([afaea00](https://github.com/mixedbread-ai/mixedbread-python/commit/afaea007356e5dae3aff9e2601c04e0f071e39d0))
363
+ * **internal:** version bump ([#49](https://github.com/mixedbread-ai/mixedbread-python/issues/49)) ([90b60f0](https://github.com/mixedbread-ai/mixedbread-python/commit/90b60f0869d86dab31023ac1fd2283cc56fb0035))
364
+ * **internal:** version bump ([#5](https://github.com/mixedbread-ai/mixedbread-python/issues/5)) ([51a9658](https://github.com/mixedbread-ai/mixedbread-python/commit/51a96588cd61a0d8eb0bf08237b88a237308eba0))
365
+ * **internal:** version bump ([#54](https://github.com/mixedbread-ai/mixedbread-python/issues/54)) ([e8b54d0](https://github.com/mixedbread-ai/mixedbread-python/commit/e8b54d09bcc6eafe965c025c285ab5dfb93b36aa))
366
+ * **internal:** version bump ([#8](https://github.com/mixedbread-ai/mixedbread-python/issues/8)) ([8bf2fc2](https://github.com/mixedbread-ai/mixedbread-python/commit/8bf2fc257686c13cf75f91d777af138e83b8ff1c))
367
+ * make the `Omit` type public ([cfe8b7c](https://github.com/mixedbread-ai/mixedbread-python/commit/cfe8b7cf11f0259266faaa91366fa8512b41a10c))
368
+ * rebuild project due to codegen change ([a1564f7](https://github.com/mixedbread-ai/mixedbread-python/commit/a1564f704290b325b1de62d87ce61cd5a70d5e69))
369
+ * rebuild project due to codegen change ([192a853](https://github.com/mixedbread-ai/mixedbread-python/commit/192a85352f10fafa6f9c07be48f7edb6fba1bfd6))
370
+ * rebuild project due to codegen change ([ab7ad9c](https://github.com/mixedbread-ai/mixedbread-python/commit/ab7ad9cde30fd8e669a85daa92569b3f6ad26ec7))
371
+ * rebuild project due to codegen change ([59ac8fe](https://github.com/mixedbread-ai/mixedbread-python/commit/59ac8fe8a7c8e1b764e22430dd7db878f7001b38))
372
+ * remove now unused `cached-property` dep ([5b05d12](https://github.com/mixedbread-ai/mixedbread-python/commit/5b05d12a33a68164438ee899ffd9490a71055997))
373
+ * update SDK settings ([d691361](https://github.com/mixedbread-ai/mixedbread-python/commit/d691361a06d95e402a39486b13589b2b0df88c6c))
374
+ * update SDK settings ([#84](https://github.com/mixedbread-ai/mixedbread-python/issues/84)) ([31e677d](https://github.com/mixedbread-ai/mixedbread-python/commit/31e677d3a94822749002f50a9ee649429bf4d4a2))
375
+
376
+
377
+ ### Documentation
378
+
379
+ * add info log level to readme ([36edcef](https://github.com/mixedbread-ai/mixedbread-python/commit/36edcefb3b54cd9c2737f34ab207ebba5dedc814))
380
+ * fix typos ([#57](https://github.com/mixedbread-ai/mixedbread-python/issues/57)) ([6e5207b](https://github.com/mixedbread-ai/mixedbread-python/commit/6e5207bd722bfe13e4fc92eed77f9b4990f1d8e7))
381
+ * **readme:** example snippet for client context manager ([8ae1d6f](https://github.com/mixedbread-ai/mixedbread-python/commit/8ae1d6f10204a38d2c7a1f9088cfbde71e2761ab))
382
+ * **readme:** fix http client proxies example ([ea2bd33](https://github.com/mixedbread-ai/mixedbread-python/commit/ea2bd331828a79eb5bff5d40ba6c1e0565e3ff88))
383
+
384
+ ## 0.1.0-alpha.18 (2025-01-29)
385
+
386
+ Full Changelog: [v0.1.0-alpha.17...v0.1.0-alpha.18](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.17...v0.1.0-alpha.18)
387
+
388
+ ### Features
389
+
390
+ * **api:** update via SDK Studio ([#87](https://github.com/mixedbread-ai/mixedbread-python/issues/87)) ([142f557](https://github.com/mixedbread-ai/mixedbread-python/commit/142f557c5370feb3788e6876a02e2aef24ba9c66))
391
+
392
+ ## 0.1.0-alpha.17 (2025-01-29)
393
+
394
+ Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
395
+
396
+ ### Chores
397
+
398
+ * update SDK settings ([#84](https://github.com/mixedbread-ai/mixedbread-python/issues/84)) ([31e677d](https://github.com/mixedbread-ai/mixedbread-python/commit/31e677d3a94822749002f50a9ee649429bf4d4a2))
399
+
400
+ ## 0.1.0-alpha.16 (2025-01-29)
401
+
402
+ Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
403
+
404
+ ### Features
405
+
406
+ * **api:** update via SDK Studio ([#81](https://github.com/mixedbread-ai/mixedbread-python/issues/81)) ([8624043](https://github.com/mixedbread-ai/mixedbread-python/commit/86240430596b0251eda26fd89b837d44c2d5c49a))
407
+
408
+ ## 0.1.0-alpha.15 (2025-01-28)
409
+
410
+ Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.14...v0.1.0-alpha.15)
411
+
412
+ ### Features
413
+
414
+ * **api:** update via SDK Studio ([#79](https://github.com/mixedbread-ai/mixedbread-python/issues/79)) ([832a74f](https://github.com/mixedbread-ai/mixedbread-python/commit/832a74f6a1c578677993e284e9396979d1d25a68))
415
+
416
+
417
+ ### Chores
418
+
419
+ * fix naming ([65990fd](https://github.com/mixedbread-ai/mixedbread-python/commit/65990fd0c717752203acb2bd4d190d17dff7c0f4))
420
+ * **internal:** codegen related update ([#78](https://github.com/mixedbread-ai/mixedbread-python/issues/78)) ([912bccd](https://github.com/mixedbread-ai/mixedbread-python/commit/912bccd4146d254f019d3d927e7dd41c4220f662))
421
+
422
+ ## 0.1.0-alpha.14 (2025-01-27)
423
+
424
+ Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.13...v0.1.0-alpha.14)
425
+
426
+ ### Features
427
+
428
+ * **api:** update via SDK Studio ([#74](https://github.com/mixedbread-ai/mixedbread-python/issues/74)) ([4865c48](https://github.com/mixedbread-ai/mixedbread-python/commit/4865c4848392d4c279cf368abb844dcf9536eda3))
429
+
430
+ ## 0.1.0-alpha.13 (2025-01-27)
431
+
432
+ Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.12...v0.1.0-alpha.13)
433
+
434
+ ### Features
435
+
436
+ * **api:** update via SDK Studio ([#65](https://github.com/mixedbread-ai/mixedbread-python/issues/65)) ([cd92872](https://github.com/mixedbread-ai/mixedbread-python/commit/cd92872a9396d215a8bbafc3bfbd184e4a3ab429))
437
+ * **api:** update via SDK Studio ([#67](https://github.com/mixedbread-ai/mixedbread-python/issues/67)) ([8187944](https://github.com/mixedbread-ai/mixedbread-python/commit/818794418c7370c0d548335bdb9281c11b2a5794))
438
+ * **api:** update via SDK Studio ([#72](https://github.com/mixedbread-ai/mixedbread-python/issues/72)) ([8535a3a](https://github.com/mixedbread-ai/mixedbread-python/commit/8535a3a1423434482e7fe6b91653995c39839cec))
439
+
440
+
441
+ ### Chores
442
+
443
+ * **internal:** codegen related update ([#66](https://github.com/mixedbread-ai/mixedbread-python/issues/66)) ([df284d3](https://github.com/mixedbread-ai/mixedbread-python/commit/df284d359787501edf6aa4bac56f7fc740ea2464))
444
+ * **internal:** codegen related update ([#69](https://github.com/mixedbread-ai/mixedbread-python/issues/69)) ([645d6a2](https://github.com/mixedbread-ai/mixedbread-python/commit/645d6a29692ebad7ea123f7f35f7ceecdb86863c))
445
+ * **internal:** codegen related update ([#70](https://github.com/mixedbread-ai/mixedbread-python/issues/70)) ([e167953](https://github.com/mixedbread-ai/mixedbread-python/commit/e1679530da659697a24e1cfb6f22818939662ff4))
446
+ * **internal:** minor formatting changes ([#71](https://github.com/mixedbread-ai/mixedbread-python/issues/71)) ([38087e0](https://github.com/mixedbread-ai/mixedbread-python/commit/38087e083a753dbbb6e1ac2dac553481fedc7b9d))
447
+
448
+ ## 0.1.0-alpha.12 (2025-01-13)
449
+
450
+ Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/mixedbread-ai/mixedbread-python/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
451
+
452
+ ### Features
453
+
454
+ * **api:** update via SDK Studio ([638129a](https://github.com/mixedbread-ai/mixedbread-python/commit/638129a9cf0e17c900712bb4d95b7f7e3f9d1414))
455
+ * **api:** update via SDK Studio ([0153e9e](https://github.com/mixedbread-ai/mixedbread-python/commit/0153e9eebf7a558bdc9fcd59bfc63a8336c9156e))
456
+ * **api:** update via SDK Studio ([d289d83](https://github.com/mixedbread-ai/mixedbread-python/commit/d289d83e3afe5def14fefeb71817ee16affd5e00))
457
+ * **api:** update via SDK Studio ([690efcb](https://github.com/mixedbread-ai/mixedbread-python/commit/690efcb8869353048153c7cba05d2251bea28b6c))
458
+ * **api:** update via SDK Studio ([c87fcff](https://github.com/mixedbread-ai/mixedbread-python/commit/c87fcff8005cbdd01972e0d08fb53c84a031c15c))
459
+ * **api:** update via SDK Studio ([d9db05d](https://github.com/mixedbread-ai/mixedbread-python/commit/d9db05d0f25c3069e8266a8869754b6af6fa573b))
460
+ * **api:** update via SDK Studio ([d719154](https://github.com/mixedbread-ai/mixedbread-python/commit/d719154b55832f37cdb84bdaf12124b450ced190))
461
+ * **api:** update via SDK Studio ([e4fbd82](https://github.com/mixedbread-ai/mixedbread-python/commit/e4fbd829b247e0cd1935ff38dbd2af0106450e9f))
462
+ * **api:** update via SDK Studio ([0bb9273](https://github.com/mixedbread-ai/mixedbread-python/commit/0bb92731087b81de203b160f0fda3f22730b997f))
463
+ * **api:** update via SDK Studio ([ebfdbcb](https://github.com/mixedbread-ai/mixedbread-python/commit/ebfdbcb4151fff3ca9afb6bd449f78ca6f5d1f83))
464
+ * **api:** update via SDK Studio ([20f5a92](https://github.com/mixedbread-ai/mixedbread-python/commit/20f5a92fada6b965185ce0583389e9d6749c6319))
465
+ * **api:** update via SDK Studio ([0d75a30](https://github.com/mixedbread-ai/mixedbread-python/commit/0d75a30a4ee5e202c86b4d682ca61e5fee990380))
466
+ * **api:** update via SDK Studio ([8a038de](https://github.com/mixedbread-ai/mixedbread-python/commit/8a038de5f5773f7417806804ff240b39424b606b))
467
+ * **api:** update via SDK Studio ([656ea6f](https://github.com/mixedbread-ai/mixedbread-python/commit/656ea6ffeb8a92e34ded0fbed58508ca12429053))
468
+ * **api:** update via SDK Studio ([3af8c6c](https://github.com/mixedbread-ai/mixedbread-python/commit/3af8c6c54d61d4cffa0e192851ef615096ca8fc7))
469
+ * **api:** update via SDK Studio ([9ba9c8a](https://github.com/mixedbread-ai/mixedbread-python/commit/9ba9c8afe91941db3aa65618ec0b1f5f0d552a06))
470
+ * **api:** update via SDK Studio ([f565add](https://github.com/mixedbread-ai/mixedbread-python/commit/f565add104afae946aa7937b34d72793f1f6f482))
471
+ * **api:** update via SDK Studio ([73cf7ea](https://github.com/mixedbread-ai/mixedbread-python/commit/73cf7ea2a46d3e18ef6200da31919e7979c67cf0))
472
+ * **api:** update via SDK Studio ([4dbbaea](https://github.com/mixedbread-ai/mixedbread-python/commit/4dbbaead9c07366b04538c96f0b9b7db1d92c8c8))
473
+ * **api:** update via SDK Studio ([3e48baa](https://github.com/mixedbread-ai/mixedbread-python/commit/3e48baa57fd7152bf160dbde92968128974b327a))
474
+ * **api:** update via SDK Studio ([#12](https://github.com/mixedbread-ai/mixedbread-python/issues/12)) ([f9fd1d3](https://github.com/mixedbread-ai/mixedbread-python/commit/f9fd1d31ce9f04cc5423c1a26e4498666455a1e1))
475
+ * **api:** update via SDK Studio ([#13](https://github.com/mixedbread-ai/mixedbread-python/issues/13)) ([8dda6ff](https://github.com/mixedbread-ai/mixedbread-python/commit/8dda6ffedea34cfad49fc834d15a40993dab809e))
476
+ * **api:** update via SDK Studio ([#14](https://github.com/mixedbread-ai/mixedbread-python/issues/14)) ([f3271a1](https://github.com/mixedbread-ai/mixedbread-python/commit/f3271a1b15fc453425c534b4c57d37560e4d769e))
477
+ * **api:** update via SDK Studio ([#18](https://github.com/mixedbread-ai/mixedbread-python/issues/18)) ([176aefb](https://github.com/mixedbread-ai/mixedbread-python/commit/176aefbeb97af3f7db4680b13632f47e84d0bb79))
478
+ * **api:** update via SDK Studio ([#19](https://github.com/mixedbread-ai/mixedbread-python/issues/19)) ([a618b6e](https://github.com/mixedbread-ai/mixedbread-python/commit/a618b6e437f75b84c05933b7f2ed3747301f0994))
479
+ * **api:** update via SDK Studio ([#2](https://github.com/mixedbread-ai/mixedbread-python/issues/2)) ([3a558fa](https://github.com/mixedbread-ai/mixedbread-python/commit/3a558fac6e610ce946c1b48b9098c4d70424a3bc))
480
+ * **api:** update via SDK Studio ([#21](https://github.com/mixedbread-ai/mixedbread-python/issues/21)) ([0fcdca0](https://github.com/mixedbread-ai/mixedbread-python/commit/0fcdca0bd79dcd18b69ead4085903f109e152181))
481
+ * **api:** update via SDK Studio ([#22](https://github.com/mixedbread-ai/mixedbread-python/issues/22)) ([de4d0bd](https://github.com/mixedbread-ai/mixedbread-python/commit/de4d0bd187f813f1cb761e94bad6fb60cb015aa3))
482
+ * **api:** update via SDK Studio ([#23](https://github.com/mixedbread-ai/mixedbread-python/issues/23)) ([1ba25bf](https://github.com/mixedbread-ai/mixedbread-python/commit/1ba25bf15dfaac0b4df647779ceb9a25700068ec))
483
+ * **api:** update via SDK Studio ([#25](https://github.com/mixedbread-ai/mixedbread-python/issues/25)) ([046e6e6](https://github.com/mixedbread-ai/mixedbread-python/commit/046e6e6109b390b10e83fd1661782fb9e77a1421))
484
+ * **api:** update via SDK Studio ([#30](https://github.com/mixedbread-ai/mixedbread-python/issues/30)) ([ce02f2e](https://github.com/mixedbread-ai/mixedbread-python/commit/ce02f2ec3986cc6de33478f1eb63b458c621e493))
485
+ * **api:** update via SDK Studio ([#33](https://github.com/mixedbread-ai/mixedbread-python/issues/33)) ([d03360a](https://github.com/mixedbread-ai/mixedbread-python/commit/d03360adf1225da7c1b002e0e35953f19a8772fc))
486
+ * **api:** update via SDK Studio ([#37](https://github.com/mixedbread-ai/mixedbread-python/issues/37)) ([f1f62dc](https://github.com/mixedbread-ai/mixedbread-python/commit/f1f62dc7a2b37c13d31ffe7c3e56445c68429c7b))
487
+ * **api:** update via SDK Studio ([#4](https://github.com/mixedbread-ai/mixedbread-python/issues/4)) ([f825609](https://github.com/mixedbread-ai/mixedbread-python/commit/f8256091bc8ccfe3b7cd608f9542e43a1c2c8bf3))
488
+ * **api:** update via SDK Studio ([#40](https://github.com/mixedbread-ai/mixedbread-python/issues/40)) ([e8d5387](https://github.com/mixedbread-ai/mixedbread-python/commit/e8d538723525682cf74651023c1da3d430c122ea))
489
+ * **api:** update via SDK Studio ([#48](https://github.com/mixedbread-ai/mixedbread-python/issues/48)) ([3c213f6](https://github.com/mixedbread-ai/mixedbread-python/commit/3c213f61fea1ef97e34eaae870db5daaa35a9f96))
490
+ * **api:** update via SDK Studio ([#50](https://github.com/mixedbread-ai/mixedbread-python/issues/50)) ([636e0cb](https://github.com/mixedbread-ai/mixedbread-python/commit/636e0cb75055d39ec3c4f2366fb72ae2c9d9e849))
491
+ * **api:** update via SDK Studio ([#52](https://github.com/mixedbread-ai/mixedbread-python/issues/52)) ([c7430c8](https://github.com/mixedbread-ai/mixedbread-python/commit/c7430c8b4a10515785cb454bee4f24a972f9afa2))
492
+ * **api:** update via SDK Studio ([#6](https://github.com/mixedbread-ai/mixedbread-python/issues/6)) ([aa8c372](https://github.com/mixedbread-ai/mixedbread-python/commit/aa8c37275297e2fa0d9eab51123f02600284f8b3))
493
+ * **api:** update via SDK Studio ([#60](https://github.com/mixedbread-ai/mixedbread-python/issues/60)) ([7d6512c](https://github.com/mixedbread-ai/mixedbread-python/commit/7d6512cbc243f4c7efffb51f54de266138191ec2))
494
+ * **api:** update via SDK Studio ([#61](https://github.com/mixedbread-ai/mixedbread-python/issues/61)) ([440b082](https://github.com/mixedbread-ai/mixedbread-python/commit/440b082371b4dd86a2d95bce050bc037a463bba4))
495
+ * **api:** update via SDK Studio ([#9](https://github.com/mixedbread-ai/mixedbread-python/issues/9)) ([5967933](https://github.com/mixedbread-ai/mixedbread-python/commit/5967933654c2384fd11a17fcfbd608856d08df17))
496
+ * vector store polling ([06f8c1e](https://github.com/mixedbread-ai/mixedbread-python/commit/06f8c1eff981970fb12d2fd7a2b8552a4d8ece5d))
497
+
498
+
499
+ ### Bug Fixes
500
+
501
+ * **client:** compat with new httpx 0.28.0 release ([79dfe90](https://github.com/mixedbread-ai/mixedbread-python/commit/79dfe9011ebde6c84d422f8f3ade94bebdf190ef))
502
+ * correctly handle deserialising `cls` fields ([#59](https://github.com/mixedbread-ai/mixedbread-python/issues/59)) ([6cada34](https://github.com/mixedbread-ai/mixedbread-python/commit/6cada34c9adc93161f2a51e3eb9c7b43ead70c6e))
503
+
504
+
505
+ ### Chores
506
+
507
+ * go live ([a74a889](https://github.com/mixedbread-ai/mixedbread-python/commit/a74a8898cf855c7d19dca4880ea79b462dae87d5))
508
+ * **internal:** bump pydantic dependency ([34e73ef](https://github.com/mixedbread-ai/mixedbread-python/commit/34e73ef8ff6bb4cd18f74265fce272835816a175))
509
+ * **internal:** bump pyright ([8c3fa40](https://github.com/mixedbread-ai/mixedbread-python/commit/8c3fa4033707692a80a0cf2bfec132353c596910))
510
+ * **internal:** codegen related update ([f19c6df](https://github.com/mixedbread-ai/mixedbread-python/commit/f19c6dfa83dcedbae740d7929f35a6bcc3d4764b))
511
+ * **internal:** codegen related update ([8229b38](https://github.com/mixedbread-ai/mixedbread-python/commit/8229b384d4ebd21209415c06add3d00d16115b4a))
512
+ * **internal:** codegen related update ([521096c](https://github.com/mixedbread-ai/mixedbread-python/commit/521096c7229f5d991b6df91e357ea29bb41ffa1b))
513
+ * **internal:** codegen related update ([ba3aeab](https://github.com/mixedbread-ai/mixedbread-python/commit/ba3aeab0b50fb13e5228b5cf7b5f68e5167585b3))
514
+ * **internal:** codegen related update ([efcf79d](https://github.com/mixedbread-ai/mixedbread-python/commit/efcf79dea535034b47edb354d7a62cbfaf2d3556))
515
+ * **internal:** codegen related update ([4a28043](https://github.com/mixedbread-ai/mixedbread-python/commit/4a28043ad8884156601cb8dc4e72520da8cda290))
516
+ * **internal:** codegen related update ([#3](https://github.com/mixedbread-ai/mixedbread-python/issues/3)) ([2174af4](https://github.com/mixedbread-ai/mixedbread-python/commit/2174af46a632867e6350373abe95544dfd44c4cc))
517
+ * **internal:** codegen related update ([#46](https://github.com/mixedbread-ai/mixedbread-python/issues/46)) ([189d38a](https://github.com/mixedbread-ai/mixedbread-python/commit/189d38a157ceaf3bcd385e5752782693dbde6451))
518
+ * **internal:** codegen related update ([#55](https://github.com/mixedbread-ai/mixedbread-python/issues/55)) ([f8f93b4](https://github.com/mixedbread-ai/mixedbread-python/commit/f8f93b4178ccb41c7705f9757b63477bcdecd7ba))
519
+ * **internal:** codegen related update ([#58](https://github.com/mixedbread-ai/mixedbread-python/issues/58)) ([4ee7313](https://github.com/mixedbread-ai/mixedbread-python/commit/4ee7313ab3c0ca6344cde03c5744f85509e2b04a))
520
+ * **internal:** exclude mypy from running on tests ([1fa4191](https://github.com/mixedbread-ai/mixedbread-python/commit/1fa419185eb27d5ab222bb8d418fdd27c15c3035))
521
+ * **internal:** fix compat model_dump method when warnings are passed ([2012b11](https://github.com/mixedbread-ai/mixedbread-python/commit/2012b11dac1b2f421e72ad2aa648a3d0f8fd7640))
522
+ * **internal:** fix some typos ([b79e0eb](https://github.com/mixedbread-ai/mixedbread-python/commit/b79e0eb5c089ece56ec745df84719351ca69d340))
523
+ * **internal:** updated imports ([8ab3cec](https://github.com/mixedbread-ai/mixedbread-python/commit/8ab3ceca8012020a52e13fd2d743d5e9c0860966))
524
+ * **internal:** version bump ([#27](https://github.com/mixedbread-ai/mixedbread-python/issues/27)) ([931e37a](https://github.com/mixedbread-ai/mixedbread-python/commit/931e37a294640aa3673f67593441a24c14976544))
525
+ * **internal:** version bump ([#32](https://github.com/mixedbread-ai/mixedbread-python/issues/32)) ([1754b14](https://github.com/mixedbread-ai/mixedbread-python/commit/1754b14b6e13022eb6a0646e9eca4717a9284e45))
526
+ * **internal:** version bump ([#36](https://github.com/mixedbread-ai/mixedbread-python/issues/36)) ([d7bb76b](https://github.com/mixedbread-ai/mixedbread-python/commit/d7bb76bef1803a3494b0d6210dd667ca90ca315a))
527
+ * **internal:** version bump ([#43](https://github.com/mixedbread-ai/mixedbread-python/issues/43)) ([afaea00](https://github.com/mixedbread-ai/mixedbread-python/commit/afaea007356e5dae3aff9e2601c04e0f071e39d0))
528
+ * **internal:** version bump ([#49](https://github.com/mixedbread-ai/mixedbread-python/issues/49)) ([90b60f0](https://github.com/mixedbread-ai/mixedbread-python/commit/90b60f0869d86dab31023ac1fd2283cc56fb0035))
529
+ * **internal:** version bump ([#5](https://github.com/mixedbread-ai/mixedbread-python/issues/5)) ([51a9658](https://github.com/mixedbread-ai/mixedbread-python/commit/51a96588cd61a0d8eb0bf08237b88a237308eba0))
530
+ * **internal:** version bump ([#54](https://github.com/mixedbread-ai/mixedbread-python/issues/54)) ([e8b54d0](https://github.com/mixedbread-ai/mixedbread-python/commit/e8b54d09bcc6eafe965c025c285ab5dfb93b36aa))
531
+ * **internal:** version bump ([#8](https://github.com/mixedbread-ai/mixedbread-python/issues/8)) ([8bf2fc2](https://github.com/mixedbread-ai/mixedbread-python/commit/8bf2fc257686c13cf75f91d777af138e83b8ff1c))
532
+ * make the `Omit` type public ([cfe8b7c](https://github.com/mixedbread-ai/mixedbread-python/commit/cfe8b7cf11f0259266faaa91366fa8512b41a10c))
533
+ * rebuild project due to codegen change ([a1564f7](https://github.com/mixedbread-ai/mixedbread-python/commit/a1564f704290b325b1de62d87ce61cd5a70d5e69))
534
+ * rebuild project due to codegen change ([192a853](https://github.com/mixedbread-ai/mixedbread-python/commit/192a85352f10fafa6f9c07be48f7edb6fba1bfd6))
535
+ * rebuild project due to codegen change ([ab7ad9c](https://github.com/mixedbread-ai/mixedbread-python/commit/ab7ad9cde30fd8e669a85daa92569b3f6ad26ec7))
536
+ * rebuild project due to codegen change ([59ac8fe](https://github.com/mixedbread-ai/mixedbread-python/commit/59ac8fe8a7c8e1b764e22430dd7db878f7001b38))
537
+ * remove now unused `cached-property` dep ([5b05d12](https://github.com/mixedbread-ai/mixedbread-python/commit/5b05d12a33a68164438ee899ffd9490a71055997))
538
+ * update SDK settings ([d691361](https://github.com/mixedbread-ai/mixedbread-python/commit/d691361a06d95e402a39486b13589b2b0df88c6c))
539
+
540
+
541
+ ### Documentation
542
+
543
+ * add info log level to readme ([36edcef](https://github.com/mixedbread-ai/mixedbread-python/commit/36edcefb3b54cd9c2737f34ab207ebba5dedc814))
544
+ * fix typos ([#57](https://github.com/mixedbread-ai/mixedbread-python/issues/57)) ([6e5207b](https://github.com/mixedbread-ai/mixedbread-python/commit/6e5207bd722bfe13e4fc92eed77f9b4990f1d8e7))
545
+ * **readme:** example snippet for client context manager ([8ae1d6f](https://github.com/mixedbread-ai/mixedbread-python/commit/8ae1d6f10204a38d2c7a1f9088cfbde71e2761ab))
546
+ * **readme:** fix http client proxies example ([ea2bd33](https://github.com/mixedbread-ai/mixedbread-python/commit/ea2bd331828a79eb5bff5d40ba6c1e0565e3ff88))