datagrid-ai 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 (173) hide show
  1. datagrid_ai-0.1.0/.gitignore +15 -0
  2. datagrid_ai-0.1.0/.release-please-manifest.json +3 -0
  3. datagrid_ai-0.1.0/CHANGELOG.md +491 -0
  4. datagrid_ai-0.1.0/CONTRIBUTING.md +128 -0
  5. datagrid_ai-0.1.0/LICENSE +204 -0
  6. datagrid_ai-0.1.0/PKG-INFO +510 -0
  7. datagrid_ai-0.1.0/README.md +475 -0
  8. datagrid_ai-0.1.0/SECURITY.md +27 -0
  9. datagrid_ai-0.1.0/api.md +263 -0
  10. datagrid_ai-0.1.0/bin/check-release-environment +21 -0
  11. datagrid_ai-0.1.0/bin/publish-pypi +6 -0
  12. datagrid_ai-0.1.0/examples/.keep +4 -0
  13. datagrid_ai-0.1.0/mypy.ini +50 -0
  14. datagrid_ai-0.1.0/noxfile.py +9 -0
  15. datagrid_ai-0.1.0/pyproject.toml +212 -0
  16. datagrid_ai-0.1.0/release-please-config.json +66 -0
  17. datagrid_ai-0.1.0/requirements-dev.lock +135 -0
  18. datagrid_ai-0.1.0/requirements.lock +72 -0
  19. datagrid_ai-0.1.0/src/datagrid/lib/.keep +4 -0
  20. datagrid_ai-0.1.0/src/datagrid_ai/__init__.py +100 -0
  21. datagrid_ai-0.1.0/src/datagrid_ai/_base_client.py +1995 -0
  22. datagrid_ai-0.1.0/src/datagrid_ai/_client.py +806 -0
  23. datagrid_ai-0.1.0/src/datagrid_ai/_compat.py +219 -0
  24. datagrid_ai-0.1.0/src/datagrid_ai/_constants.py +14 -0
  25. datagrid_ai-0.1.0/src/datagrid_ai/_exceptions.py +108 -0
  26. datagrid_ai-0.1.0/src/datagrid_ai/_files.py +123 -0
  27. datagrid_ai-0.1.0/src/datagrid_ai/_models.py +829 -0
  28. datagrid_ai-0.1.0/src/datagrid_ai/_qs.py +150 -0
  29. datagrid_ai-0.1.0/src/datagrid_ai/_resource.py +43 -0
  30. datagrid_ai-0.1.0/src/datagrid_ai/_response.py +832 -0
  31. datagrid_ai-0.1.0/src/datagrid_ai/_streaming.py +410 -0
  32. datagrid_ai-0.1.0/src/datagrid_ai/_types.py +219 -0
  33. datagrid_ai-0.1.0/src/datagrid_ai/_utils/__init__.py +57 -0
  34. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_logs.py +25 -0
  35. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_proxy.py +65 -0
  36. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_reflection.py +42 -0
  37. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_resources_proxy.py +24 -0
  38. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_streams.py +12 -0
  39. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_sync.py +86 -0
  40. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_transform.py +447 -0
  41. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_typing.py +151 -0
  42. datagrid_ai-0.1.0/src/datagrid_ai/_utils/_utils.py +422 -0
  43. datagrid_ai-0.1.0/src/datagrid_ai/_version.py +4 -0
  44. datagrid_ai-0.1.0/src/datagrid_ai/lib/.keep +4 -0
  45. datagrid_ai-0.1.0/src/datagrid_ai/lib/sse_converse/__init__.py +21 -0
  46. datagrid_ai-0.1.0/src/datagrid_ai/lib/sse_converse/converse_response_events.py +59 -0
  47. datagrid_ai-0.1.0/src/datagrid_ai/pagination.py +123 -0
  48. datagrid_ai-0.1.0/src/datagrid_ai/py.typed +0 -0
  49. datagrid_ai-0.1.0/src/datagrid_ai/resources/__init__.py +145 -0
  50. datagrid_ai-0.1.0/src/datagrid_ai/resources/agents.py +997 -0
  51. datagrid_ai-0.1.0/src/datagrid_ai/resources/connections.py +553 -0
  52. datagrid_ai-0.1.0/src/datagrid_ai/resources/connectors.py +216 -0
  53. datagrid_ai-0.1.0/src/datagrid_ai/resources/conversations/__init__.py +33 -0
  54. datagrid_ai-0.1.0/src/datagrid_ai/resources/conversations/conversations.py +488 -0
  55. datagrid_ai-0.1.0/src/datagrid_ai/resources/conversations/messages.py +304 -0
  56. datagrid_ai-0.1.0/src/datagrid_ai/resources/files.py +558 -0
  57. datagrid_ai-0.1.0/src/datagrid_ai/resources/knowledge.py +654 -0
  58. datagrid_ai-0.1.0/src/datagrid_ai/resources/memory/__init__.py +33 -0
  59. datagrid_ai-0.1.0/src/datagrid_ai/resources/memory/memory.py +102 -0
  60. datagrid_ai-0.1.0/src/datagrid_ai/resources/memory/user.py +399 -0
  61. datagrid_ai-0.1.0/src/datagrid_ai/resources/organization/__init__.py +61 -0
  62. datagrid_ai-0.1.0/src/datagrid_ai/resources/organization/credits.py +135 -0
  63. datagrid_ai-0.1.0/src/datagrid_ai/resources/organization/organization.py +166 -0
  64. datagrid_ai-0.1.0/src/datagrid_ai/resources/organization/teamspaces/__init__.py +47 -0
  65. datagrid_ai-0.1.0/src/datagrid_ai/resources/organization/teamspaces/invites.py +500 -0
  66. datagrid_ai-0.1.0/src/datagrid_ai/resources/organization/teamspaces/teamspaces.py +576 -0
  67. datagrid_ai-0.1.0/src/datagrid_ai/resources/organization/teamspaces/users.py +507 -0
  68. datagrid_ai-0.1.0/src/datagrid_ai/resources/organization/users.py +390 -0
  69. datagrid_ai-0.1.0/src/datagrid_ai/resources/search.py +200 -0
  70. datagrid_ai-0.1.0/src/datagrid_ai/resources/secrets.py +470 -0
  71. datagrid_ai-0.1.0/src/datagrid_ai/types/__init__.py +45 -0
  72. datagrid_ai-0.1.0/src/datagrid_ai/types/agent.py +78 -0
  73. datagrid_ai-0.1.0/src/datagrid_ai/types/agent_create_params.py +131 -0
  74. datagrid_ai-0.1.0/src/datagrid_ai/types/agent_list_params.py +29 -0
  75. datagrid_ai-0.1.0/src/datagrid_ai/types/agent_update_params.py +131 -0
  76. datagrid_ai-0.1.0/src/datagrid_ai/types/attachment_metadata.py +39 -0
  77. datagrid_ai-0.1.0/src/datagrid_ai/types/client_converse_params.py +279 -0
  78. datagrid_ai-0.1.0/src/datagrid_ai/types/connection.py +38 -0
  79. datagrid_ai-0.1.0/src/datagrid_ai/types/connection_create_params.py +12 -0
  80. datagrid_ai-0.1.0/src/datagrid_ai/types/connection_list_params.py +32 -0
  81. datagrid_ai-0.1.0/src/datagrid_ai/types/connection_update_params.py +12 -0
  82. datagrid_ai-0.1.0/src/datagrid_ai/types/connector.py +18 -0
  83. datagrid_ai-0.1.0/src/datagrid_ai/types/connector_list_params.py +29 -0
  84. datagrid_ai-0.1.0/src/datagrid_ai/types/conversation.py +26 -0
  85. datagrid_ai-0.1.0/src/datagrid_ai/types/conversation_create_params.py +13 -0
  86. datagrid_ai-0.1.0/src/datagrid_ai/types/conversation_list_params.py +29 -0
  87. datagrid_ai-0.1.0/src/datagrid_ai/types/conversations/__init__.py +6 -0
  88. datagrid_ai-0.1.0/src/datagrid_ai/types/conversations/message.py +69 -0
  89. datagrid_ai-0.1.0/src/datagrid_ai/types/conversations/message_list_params.py +29 -0
  90. datagrid_ai-0.1.0/src/datagrid_ai/types/converse_response.py +69 -0
  91. datagrid_ai-0.1.0/src/datagrid_ai/types/file_create_params.py +13 -0
  92. datagrid_ai-0.1.0/src/datagrid_ai/types/file_list_params.py +29 -0
  93. datagrid_ai-0.1.0/src/datagrid_ai/types/file_object.py +25 -0
  94. datagrid_ai-0.1.0/src/datagrid_ai/types/i_frame_event_type.py +14 -0
  95. datagrid_ai-0.1.0/src/datagrid_ai/types/knowledge.py +57 -0
  96. datagrid_ai-0.1.0/src/datagrid_ai/types/knowledge_connect_params.py +12 -0
  97. datagrid_ai-0.1.0/src/datagrid_ai/types/knowledge_create_params.py +22 -0
  98. datagrid_ai-0.1.0/src/datagrid_ai/types/knowledge_list_params.py +29 -0
  99. datagrid_ai-0.1.0/src/datagrid_ai/types/knowledge_metadata.py +48 -0
  100. datagrid_ai-0.1.0/src/datagrid_ai/types/knowledge_update_params.py +11 -0
  101. datagrid_ai-0.1.0/src/datagrid_ai/types/knowledge_update_response.py +11 -0
  102. datagrid_ai-0.1.0/src/datagrid_ai/types/memory/__init__.py +8 -0
  103. datagrid_ai-0.1.0/src/datagrid_ai/types/memory/user_create_params.py +22 -0
  104. datagrid_ai-0.1.0/src/datagrid_ai/types/memory/user_list_params.py +20 -0
  105. datagrid_ai-0.1.0/src/datagrid_ai/types/memory/user_list_response.py +25 -0
  106. datagrid_ai-0.1.0/src/datagrid_ai/types/memory/user_memory.py +37 -0
  107. datagrid_ai-0.1.0/src/datagrid_ai/types/message_metadata.py +71 -0
  108. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/__init__.py +12 -0
  109. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/credits_report.py +16 -0
  110. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/organization_user.py +40 -0
  111. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspace.py +28 -0
  112. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspace_create_params.py +21 -0
  113. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspace_list_params.py +29 -0
  114. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspace_patch_params.py +21 -0
  115. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspaces/__init__.py +10 -0
  116. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspaces/invite_create_params.py +29 -0
  117. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspaces/invite_list_params.py +29 -0
  118. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspaces/teamspace_invite.py +42 -0
  119. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspaces/teamspace_user.py +46 -0
  120. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspaces/user_list_params.py +32 -0
  121. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/teamspaces/user_update_params.py +17 -0
  122. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/user_list_params.py +32 -0
  123. datagrid_ai-0.1.0/src/datagrid_ai/types/organization/user_update_params.py +15 -0
  124. datagrid_ai-0.1.0/src/datagrid_ai/types/redirect_url_response.py +14 -0
  125. datagrid_ai-0.1.0/src/datagrid_ai/types/row_metadata.py +22 -0
  126. datagrid_ai-0.1.0/src/datagrid_ai/types/search_result_item.py +33 -0
  127. datagrid_ai-0.1.0/src/datagrid_ai/types/search_result_resource.py +16 -0
  128. datagrid_ai-0.1.0/src/datagrid_ai/types/search_result_resource_type.py +9 -0
  129. datagrid_ai-0.1.0/src/datagrid_ai/types/search_search_params.py +20 -0
  130. datagrid_ai-0.1.0/src/datagrid_ai/types/secret.py +21 -0
  131. datagrid_ai-0.1.0/src/datagrid_ai/types/secret_create_params.py +15 -0
  132. datagrid_ai-0.1.0/src/datagrid_ai/types/secret_list_params.py +29 -0
  133. datagrid_ai-0.1.0/src/datagrid_ai/types/table_metadata.py +25 -0
  134. datagrid_ai-0.1.0/src/datagrid_ai/types/tool.py +15 -0
  135. datagrid_ai-0.1.0/src/datagrid_ai/types/tool_name.py +46 -0
  136. datagrid_ai-0.1.0/src/datagrid_ai/types/tool_param.py +17 -0
  137. datagrid_ai-0.1.0/tests/__init__.py +1 -0
  138. datagrid_ai-0.1.0/tests/api_resources/__init__.py +1 -0
  139. datagrid_ai-0.1.0/tests/api_resources/conversations/__init__.py +1 -0
  140. datagrid_ai-0.1.0/tests/api_resources/conversations/test_messages.py +217 -0
  141. datagrid_ai-0.1.0/tests/api_resources/memory/__init__.py +1 -0
  142. datagrid_ai-0.1.0/tests/api_resources/memory/test_user.py +254 -0
  143. datagrid_ai-0.1.0/tests/api_resources/organization/__init__.py +1 -0
  144. datagrid_ai-0.1.0/tests/api_resources/organization/teamspaces/__init__.py +1 -0
  145. datagrid_ai-0.1.0/tests/api_resources/organization/teamspaces/test_invites.py +421 -0
  146. datagrid_ai-0.1.0/tests/api_resources/organization/teamspaces/test_users.py +441 -0
  147. datagrid_ai-0.1.0/tests/api_resources/organization/test_credits.py +74 -0
  148. datagrid_ai-0.1.0/tests/api_resources/organization/test_teamspaces.py +333 -0
  149. datagrid_ai-0.1.0/tests/api_resources/organization/test_users.py +255 -0
  150. datagrid_ai-0.1.0/tests/api_resources/test_agents.py +433 -0
  151. datagrid_ai-0.1.0/tests/api_resources/test_client.py +136 -0
  152. datagrid_ai-0.1.0/tests/api_resources/test_connections.py +396 -0
  153. datagrid_ai-0.1.0/tests/api_resources/test_connectors.py +93 -0
  154. datagrid_ai-0.1.0/tests/api_resources/test_conversations.py +309 -0
  155. datagrid_ai-0.1.0/tests/api_resources/test_files.py +415 -0
  156. datagrid_ai-0.1.0/tests/api_resources/test_knowledge.py +483 -0
  157. datagrid_ai-0.1.0/tests/api_resources/test_search.py +105 -0
  158. datagrid_ai-0.1.0/tests/api_resources/test_secrets.py +313 -0
  159. datagrid_ai-0.1.0/tests/conftest.py +84 -0
  160. datagrid_ai-0.1.0/tests/sample_file.txt +1 -0
  161. datagrid_ai-0.1.0/tests/test_client.py +1732 -0
  162. datagrid_ai-0.1.0/tests/test_deepcopy.py +58 -0
  163. datagrid_ai-0.1.0/tests/test_extract_files.py +64 -0
  164. datagrid_ai-0.1.0/tests/test_files.py +51 -0
  165. datagrid_ai-0.1.0/tests/test_models.py +963 -0
  166. datagrid_ai-0.1.0/tests/test_qs.py +78 -0
  167. datagrid_ai-0.1.0/tests/test_required_args.py +111 -0
  168. datagrid_ai-0.1.0/tests/test_response.py +277 -0
  169. datagrid_ai-0.1.0/tests/test_streaming.py +248 -0
  170. datagrid_ai-0.1.0/tests/test_transform.py +453 -0
  171. datagrid_ai-0.1.0/tests/test_utils/test_proxy.py +34 -0
  172. datagrid_ai-0.1.0/tests/test_utils/test_typing.py +73 -0
  173. datagrid_ai-0.1.0/tests/utils.py +159 -0
@@ -0,0 +1,15 @@
1
+ .prism.log
2
+ _dev
3
+
4
+ __pycache__
5
+ .mypy_cache
6
+
7
+ dist
8
+
9
+ .venv
10
+ .idea
11
+
12
+ .env
13
+ .envrc
14
+ codegen.log
15
+ Brewfile.lock.json
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.1.0"
3
+ }
@@ -0,0 +1,491 @@
1
+ # Changelog
2
+
3
+ ## 0.1.0 (2025-08-29)
4
+
5
+ Full Changelog: [v0.1.0-alpha.20...v0.1.0](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.20...v0.1.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([9830c85](https://github.com/DatagridAI/datagrid-python/commit/9830c85d05913c0899d49a8a6c0fd44ae0948ef9))
10
+ * **api:** api update ([81db996](https://github.com/DatagridAI/datagrid-python/commit/81db996156d4bc8bd5783ee341de7d2bee808b4e))
11
+ * **api:** api update ([1985dde](https://github.com/DatagridAI/datagrid-python/commit/1985dde9bb3b50bc2fdc88fb0f56835240be5734))
12
+ * **api:** api update ([48c997c](https://github.com/DatagridAI/datagrid-python/commit/48c997c3cd8dd16cf6c950661a6ea2d5890ee13f))
13
+ * **api:** manual updates ([6a44a7e](https://github.com/DatagridAI/datagrid-python/commit/6a44a7e1018e9f853a3b8e333c8ec4a7da4a8427))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * avoid newer type syntax ([5021142](https://github.com/DatagridAI/datagrid-python/commit/502114289f2cc7e297a48a4d614152e3db2507e4))
19
+
20
+
21
+ ### Chores
22
+
23
+ * **internal:** change ci workflow machines ([c4ae7e9](https://github.com/DatagridAI/datagrid-python/commit/c4ae7e9a443a9418472b28be67fe463c31f13c7d))
24
+ * **internal:** update comment in script ([9883ad4](https://github.com/DatagridAI/datagrid-python/commit/9883ad402d2051934ca94a89dccfa0f449c2b58e))
25
+ * **internal:** update pyright exclude list ([8d826f0](https://github.com/DatagridAI/datagrid-python/commit/8d826f0081c04b4fba88f8085f4b6623600e70e4))
26
+ * update @stainless-api/prism-cli to v5.15.0 ([02a5780](https://github.com/DatagridAI/datagrid-python/commit/02a578058bc73d6fa93c4b594d7b2697a5721550))
27
+ * update github action ([7c53335](https://github.com/DatagridAI/datagrid-python/commit/7c5333514d05ca6c79c2aa84046df4b2259e0314))
28
+
29
+ ## 0.1.0-alpha.20 (2025-08-07)
30
+
31
+ Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)
32
+
33
+ ### Features
34
+
35
+ * **api:** api update ([33ddca7](https://github.com/DatagridAI/datagrid-python/commit/33ddca772837690319df4eec8f5a027289af9bee))
36
+ * **api:** api update ([25445ab](https://github.com/DatagridAI/datagrid-python/commit/25445abfb5869678aac3e472cd100b2f7d6a0d27))
37
+ * **client:** support file upload requests ([2b878ed](https://github.com/DatagridAI/datagrid-python/commit/2b878edede1dc1c6b61274a23e093d3590a72755))
38
+
39
+
40
+ ### Chores
41
+
42
+ * **internal:** fix ruff target version ([3319eb8](https://github.com/DatagridAI/datagrid-python/commit/3319eb8c073d1153da2532e62444e1a711b80dd4))
43
+ * **project:** add settings file for vscode ([d03aa0a](https://github.com/DatagridAI/datagrid-python/commit/d03aa0a5e13ec7bce2197d469f5e414622891e2f))
44
+
45
+ ## 0.1.0-alpha.19 (2025-07-23)
46
+
47
+ Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
48
+
49
+ ### Bug Fixes
50
+
51
+ * **parsing:** parse extra field types ([556dd44](https://github.com/DatagridAI/datagrid-python/commit/556dd44012acef8e2e3aec3e2f389d5561047d29))
52
+
53
+ ## 0.1.0-alpha.18 (2025-07-22)
54
+
55
+ Full Changelog: [v0.1.0-alpha.17...v0.1.0-alpha.18](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.17...v0.1.0-alpha.18)
56
+
57
+ ### Features
58
+
59
+ * clean up environment call outs ([7cc9b31](https://github.com/DatagridAI/datagrid-python/commit/7cc9b315a597741958907b334dc0022652e42730))
60
+
61
+
62
+ ### Bug Fixes
63
+
64
+ * **parsing:** ignore empty metadata ([f5884fb](https://github.com/DatagridAI/datagrid-python/commit/f5884fbd1b60bb73ec9908893c2332751dcb4828))
65
+
66
+ ## 0.1.0-alpha.17 (2025-07-12)
67
+
68
+ Full Changelog: [v0.1.0-alpha.16...v0.1.0-alpha.17](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.16...v0.1.0-alpha.17)
69
+
70
+ ### Bug Fixes
71
+
72
+ * **client:** don't send Content-Type header on GET requests ([4732ccc](https://github.com/DatagridAI/datagrid-python/commit/4732cccf189fa83ec1c1838e32288b341fb508e5))
73
+
74
+
75
+ ### Chores
76
+
77
+ * **readme:** fix version rendering on pypi ([83e8f48](https://github.com/DatagridAI/datagrid-python/commit/83e8f48587fad3c4fb81522632502046bc688273))
78
+
79
+ ## 0.1.0-alpha.16 (2025-07-10)
80
+
81
+ Full Changelog: [v0.1.0-alpha.15...v0.1.0-alpha.16](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.15...v0.1.0-alpha.16)
82
+
83
+ ### Bug Fixes
84
+
85
+ * **parsing:** correctly handle nested discriminated unions ([8db4008](https://github.com/DatagridAI/datagrid-python/commit/8db400826d2c272fa9ac3aef1c42e7bb07884882))
86
+
87
+
88
+ ### Chores
89
+
90
+ * **internal:** bump pinned h11 dep ([f658efc](https://github.com/DatagridAI/datagrid-python/commit/f658efc24fb9a2df8b4e2a4acf0fd768c72020d4))
91
+ * **package:** mark python 3.13 as supported ([bf4ec47](https://github.com/DatagridAI/datagrid-python/commit/bf4ec471f9ec2bfeb64f632eda4693a4fc8de54c))
92
+
93
+ ## 0.1.0-alpha.15 (2025-07-04)
94
+
95
+ Full Changelog: [v0.1.0-alpha.14...v0.1.0-alpha.15](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.14...v0.1.0-alpha.15)
96
+
97
+ ### Features
98
+
99
+ * **api:** api update ([811c9b8](https://github.com/DatagridAI/datagrid-python/commit/811c9b81e94b6bf5704a78ef4a832cc09b5e0751))
100
+
101
+
102
+ ### Chores
103
+
104
+ * **ci:** change upload type ([4e2f02c](https://github.com/DatagridAI/datagrid-python/commit/4e2f02cae19e106f00e5df1d232a12f023ea3266))
105
+
106
+ ## 0.1.0-alpha.14 (2025-06-30)
107
+
108
+ Full Changelog: [v0.1.0-alpha.13...v0.1.0-alpha.14](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.13...v0.1.0-alpha.14)
109
+
110
+ ### Bug Fixes
111
+
112
+ * **ci:** correct conditional ([6f8ff47](https://github.com/DatagridAI/datagrid-python/commit/6f8ff471850a13b1f708202e62447ac229516cca))
113
+
114
+
115
+ ### Chores
116
+
117
+ * **ci:** only run for pushes and fork pull requests ([7f3dac3](https://github.com/DatagridAI/datagrid-python/commit/7f3dac3e1210be75377890c3f7ede8094fbc497b))
118
+
119
+ ## 0.1.0-alpha.13 (2025-06-27)
120
+
121
+ Full Changelog: [v0.1.0-alpha.12...v0.1.0-alpha.13](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.12...v0.1.0-alpha.13)
122
+
123
+ ### Bug Fixes
124
+
125
+ * **ci:** release-doctor — report correct token name ([e3db8d6](https://github.com/DatagridAI/datagrid-python/commit/e3db8d60a1de6a9bc0078b072a241268538e2f61))
126
+
127
+
128
+ ### Chores
129
+
130
+ * **tests:** skip some failing tests on the latest python versions ([ab78ea3](https://github.com/DatagridAI/datagrid-python/commit/ab78ea360c718461a625214638325d145e58ee15))
131
+
132
+ ## 0.1.0-alpha.12 (2025-06-23)
133
+
134
+ Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
135
+
136
+ ### Features
137
+
138
+ * **api:** api update ([97b7538](https://github.com/DatagridAI/datagrid-python/commit/97b753863e3a06eb7d5a6423ac389b5a1d75ad52))
139
+ * **client:** add support for aiohttp ([b304bb4](https://github.com/DatagridAI/datagrid-python/commit/b304bb47e44d39bd29d8d5d322cd552ae2b2f8b9))
140
+
141
+
142
+ ### Documentation
143
+
144
+ * **client:** fix httpx.Timeout documentation reference ([d51d6cd](https://github.com/DatagridAI/datagrid-python/commit/d51d6cd68237bc2f88670d509b986684b6a3d6ce))
145
+
146
+ ## 0.1.0-alpha.11 (2025-06-18)
147
+
148
+ Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
149
+
150
+ ### Bug Fixes
151
+
152
+ * **tests:** fix: tests which call HTTP endpoints directly with the example parameters ([4dd9a53](https://github.com/DatagridAI/datagrid-python/commit/4dd9a53b654967f9e5d9ee6f84cd80dcf4b9734a))
153
+
154
+
155
+ ### Chores
156
+
157
+ * **ci:** enable for pull requests ([a07a3c0](https://github.com/DatagridAI/datagrid-python/commit/a07a3c0f1ad7869f4078687e9f19b8d597458fdf))
158
+ * **internal:** update conftest.py ([962a1ac](https://github.com/DatagridAI/datagrid-python/commit/962a1acdaba134e06cc4370fed0fd85aa22b4313))
159
+ * **readme:** update badges ([e63d5b8](https://github.com/DatagridAI/datagrid-python/commit/e63d5b8b4538f0a1fcd71b31862a6f60f47de359))
160
+ * **tests:** add tests for httpx client instantiation & proxies ([1e7b9e8](https://github.com/DatagridAI/datagrid-python/commit/1e7b9e81bcbe864b60541a1d5e42df41e7d8d370))
161
+
162
+ ## 0.1.0-alpha.10 (2025-06-13)
163
+
164
+ Full Changelog: [v0.1.0-alpha.9...v0.1.0-alpha.10](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.9...v0.1.0-alpha.10)
165
+
166
+ ### Features
167
+
168
+ * **client:** add follow_redirects request option ([5c794ae](https://github.com/DatagridAI/datagrid-python/commit/5c794ae0ed92b3669a5fcb0d5884cea3f96cbb1b))
169
+
170
+
171
+ ### Bug Fixes
172
+
173
+ * **client:** correctly parse binary response | stream ([03be065](https://github.com/DatagridAI/datagrid-python/commit/03be065c4e07a8cc7def153f131b80d872aef7e8))
174
+
175
+
176
+ ### Chores
177
+
178
+ * **docs:** remove reference to rye shell ([ef6eee4](https://github.com/DatagridAI/datagrid-python/commit/ef6eee4fc57446563961f69590d717d207b82760))
179
+ * **docs:** remove unnecessary param examples ([f09ed5e](https://github.com/DatagridAI/datagrid-python/commit/f09ed5ec8c93c8e74ef11ec561eefc706ea60954))
180
+ * **tests:** run tests in parallel ([a4d5067](https://github.com/DatagridAI/datagrid-python/commit/a4d506709f15ac43062baaf759ef6333a5b16648))
181
+
182
+ ## 0.1.0-alpha.9 (2025-06-01)
183
+
184
+ Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
185
+
186
+ ### Features
187
+
188
+ * **api:** api update ([0ad7592](https://github.com/DatagridAI/datagrid-python/commit/0ad7592206a7e680e8aafdc1b6c9bc881a7c4c5e))
189
+ * **api:** api update ([f034485](https://github.com/DatagridAI/datagrid-python/commit/f034485d95f21eec4d13f4fd7f220264e1f37318))
190
+
191
+ ## 0.1.0-alpha.8 (2025-05-26)
192
+
193
+ Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)
194
+
195
+ ### Features
196
+
197
+ * **api:** api update ([aea656c](https://github.com/DatagridAI/datagrid-python/commit/aea656c2ab600a852c00a334f613e98206d554e6))
198
+ * **api:** api update ([1389cc2](https://github.com/DatagridAI/datagrid-python/commit/1389cc212729fa13bb70bbe3b8090235d8a6f789))
199
+ * **api:** api update ([2fba8c9](https://github.com/DatagridAI/datagrid-python/commit/2fba8c901ccd767d60970e9cabb10d5d427354b9))
200
+ * **api:** api update ([9e42c13](https://github.com/DatagridAI/datagrid-python/commit/9e42c13e25ba478b40dcceeca93c668a4589730d))
201
+ * **api:** api update ([2cfc00c](https://github.com/DatagridAI/datagrid-python/commit/2cfc00cce15bb7ea89af7290c020799cef1738ed))
202
+ * **api:** api update ([3f7a4b6](https://github.com/DatagridAI/datagrid-python/commit/3f7a4b6f54df771231c0dbe607b3245f63c5f375))
203
+ * **api:** api update ([2eced62](https://github.com/DatagridAI/datagrid-python/commit/2eced625be77bfaa14acd5ebd3abe16060a61dc1))
204
+
205
+
206
+ ### Bug Fixes
207
+
208
+ * **package:** support direct resource imports ([6aa3ba4](https://github.com/DatagridAI/datagrid-python/commit/6aa3ba4ab0790575ad5711c6e929939a58a19a1b))
209
+ * **package:** support direct resource imports ([79ab574](https://github.com/DatagridAI/datagrid-python/commit/79ab574c90bcd5c3b3d04980e1ce5afe48a5393d))
210
+ * **perf:** optimize some hot paths ([a69daa1](https://github.com/DatagridAI/datagrid-python/commit/a69daa1c5169ff72bc537df7b18c4c50152e7286))
211
+ * **perf:** skip traversing types for NotGiven values ([414feb0](https://github.com/DatagridAI/datagrid-python/commit/414feb0c31bc502bc3546582053069f933c3f85f))
212
+ * **pydantic v1:** more robust ModelField.annotation check ([146f01d](https://github.com/DatagridAI/datagrid-python/commit/146f01d0e7169be367ca05028168460ccf612069))
213
+
214
+
215
+ ### Chores
216
+
217
+ * broadly detect json family of content-type headers ([8a68411](https://github.com/DatagridAI/datagrid-python/commit/8a684111c8d66787c5daee7893e1ba81ab545be3))
218
+ * **ci:** add timeout thresholds for CI jobs ([1457fc3](https://github.com/DatagridAI/datagrid-python/commit/1457fc387d89dc9eb9e7cf66d0c636aae74bf079))
219
+ * **ci:** fix installation instructions ([fa43889](https://github.com/DatagridAI/datagrid-python/commit/fa4388974b31ae164cc7f8a79f70547e3cf9baee))
220
+ * **ci:** fix installation instructions ([519082b](https://github.com/DatagridAI/datagrid-python/commit/519082b94778805c818e44644356d7b3994e8518))
221
+ * **ci:** only use depot for staging repos ([7ed9b36](https://github.com/DatagridAI/datagrid-python/commit/7ed9b36be8b24b7cbb2acf98f974d49335ce16b9))
222
+ * **ci:** upload sdks to package manager ([237bec1](https://github.com/DatagridAI/datagrid-python/commit/237bec1db34fa84cc91e9fbe4d262850ae4f4ec8))
223
+ * **ci:** upload sdks to package manager ([c7f7994](https://github.com/DatagridAI/datagrid-python/commit/c7f7994d05bb2c09f9e23860d67d47bf5582fde8))
224
+ * **client:** minor internal fixes ([bb6292d](https://github.com/DatagridAI/datagrid-python/commit/bb6292d31ff45618bd588933e236f01fbf729fac))
225
+ * **docs:** grammar improvements ([6dda73b](https://github.com/DatagridAI/datagrid-python/commit/6dda73bca8237e5bbe40501ce4ea4dd2c6a6a18f))
226
+ * **docs:** grammar improvements ([e3e01f1](https://github.com/DatagridAI/datagrid-python/commit/e3e01f1a3df3a966ec9ddf7b003055b88545bdb2))
227
+ * **internal:** avoid errors for isinstance checks on proxies ([e3c5849](https://github.com/DatagridAI/datagrid-python/commit/e3c5849536afd935133809262975c357acffb538))
228
+ * **internal:** avoid errors for isinstance checks on proxies ([8466e9d](https://github.com/DatagridAI/datagrid-python/commit/8466e9d00af69df60fe3195560545620b917d0ad))
229
+ * **internal:** base client updates ([74039a9](https://github.com/DatagridAI/datagrid-python/commit/74039a90bac677cdb4ecd9ff41167c9055660cf8))
230
+ * **internal:** bump pyright version ([77d0e04](https://github.com/DatagridAI/datagrid-python/commit/77d0e0418254c204eab6fb854d488ccf3fb02d7b))
231
+ * **internal:** codegen related update ([fbc4788](https://github.com/DatagridAI/datagrid-python/commit/fbc4788e7c796fa8fb6d44cd29c8f4a68b66e2da))
232
+ * **internal:** codegen related update ([8119d34](https://github.com/DatagridAI/datagrid-python/commit/8119d347b0f334c56d94c3787a9c05b9b77f28dd))
233
+ * **internal:** codegen related update ([e4a139c](https://github.com/DatagridAI/datagrid-python/commit/e4a139cfe2d534b6006022e48e0c845012097640))
234
+ * **internal:** expand CI branch coverage ([7d209af](https://github.com/DatagridAI/datagrid-python/commit/7d209af6c136f63d93bdcd96a7fd29a2240b1160))
235
+ * **internal:** fix list file params ([c4351ad](https://github.com/DatagridAI/datagrid-python/commit/c4351adc26a005c36216aa69474f4f2383d76207))
236
+ * **internal:** import reformatting ([752a0a6](https://github.com/DatagridAI/datagrid-python/commit/752a0a66d0f870d9b72a02ab132230ef8188ec12))
237
+ * **internal:** reduce CI branch coverage ([57d7ee4](https://github.com/DatagridAI/datagrid-python/commit/57d7ee431da0fb6f254326aec135091afae89056))
238
+ * **internal:** refactor retries to not use recursion ([bfc18e5](https://github.com/DatagridAI/datagrid-python/commit/bfc18e59a26e61857c5d6f3ea46aec4c4f352550))
239
+ * **internal:** remove trailing character ([03603f3](https://github.com/DatagridAI/datagrid-python/commit/03603f38fe84988f4c65b0719ccd5592a85bc59b))
240
+ * **internal:** slight transform perf improvement ([a52f0ef](https://github.com/DatagridAI/datagrid-python/commit/a52f0ef31f266fe06c159f6016cb6776a02450bd))
241
+ * **internal:** update file param examples ([19ce6f7](https://github.com/DatagridAI/datagrid-python/commit/19ce6f71a86377b5f2bc9f9715ea99ca82fb705e))
242
+ * **internal:** update models test ([971e32a](https://github.com/DatagridAI/datagrid-python/commit/971e32a83a6c989f09c73b9762af93a43241c9f1))
243
+ * **internal:** update pyright settings ([eb4dae9](https://github.com/DatagridAI/datagrid-python/commit/eb4dae9b15bc335d0c0fde519500daa7e5159e11))
244
+ * **internal:** version bump ([#24](https://github.com/DatagridAI/datagrid-python/issues/24)) ([f850000](https://github.com/DatagridAI/datagrid-python/commit/f850000c03228166a29845fc18b6b4e2b2c6c9d3))
245
+ * update SDK settings ([b4bfae6](https://github.com/DatagridAI/datagrid-python/commit/b4bfae697b07d2ff8fcab69a5c843ec07903cdab))
246
+ * update SDK settings ([5af1a58](https://github.com/DatagridAI/datagrid-python/commit/5af1a584341a893357a148e3cccf1d462542e53b))
247
+ * update SDK settings ([37733b7](https://github.com/DatagridAI/datagrid-python/commit/37733b7c7d83ab1a717406fafeb2af742d248a0a))
248
+ * update SDK settings ([db8780d](https://github.com/DatagridAI/datagrid-python/commit/db8780d77cf39f92deec8a00e83c4c5215c2d400))
249
+ * update SDK settings ([6851c91](https://github.com/DatagridAI/datagrid-python/commit/6851c91ff6cca9b42d8d9b7dc6039cd626cedfb5))
250
+
251
+ ## 0.1.0-alpha.7 (2025-04-03)
252
+
253
+ Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)
254
+
255
+ ### Features
256
+
257
+ * **api:** api update ([6024f2c](https://github.com/DatagridAI/datagrid-python/commit/6024f2c26df9aefde5cc396f0ac76daee22e555c))
258
+ * **api:** api update ([9f8986d](https://github.com/DatagridAI/datagrid-python/commit/9f8986d7f2537250fa02e53ecbdcada4750db896))
259
+ * **api:** api update ([ec3c727](https://github.com/DatagridAI/datagrid-python/commit/ec3c727b772116faea0d64d9f72eee4727af49a8))
260
+ * **api:** api update ([366491b](https://github.com/DatagridAI/datagrid-python/commit/366491b88ccdb9d698faa7d19f530561992e775c))
261
+ * **api:** api update ([fdd0edf](https://github.com/DatagridAI/datagrid-python/commit/fdd0edf3ec67058a347d4b47d1f6c657c50b86e1))
262
+
263
+
264
+ ### Bug Fixes
265
+
266
+ * **ci:** ensure pip is always available ([7333b0f](https://github.com/DatagridAI/datagrid-python/commit/7333b0fb136954b1f490fc51c42b3598d3bbc284))
267
+ * **ci:** remove publishing patch ([23fbdd8](https://github.com/DatagridAI/datagrid-python/commit/23fbdd82d9fbe918c8ef28d9a437eb2a21061899))
268
+ * **types:** handle more discriminated union shapes ([60b6945](https://github.com/DatagridAI/datagrid-python/commit/60b694538e89756badf3bc1eb5e45c2a86f312bb))
269
+
270
+
271
+ ### Chores
272
+
273
+ * fix typos ([6d417a0](https://github.com/DatagridAI/datagrid-python/commit/6d417a0466ca5ce33f653c1114af4e18e19669e4))
274
+ * go live ([9b4fbf1](https://github.com/DatagridAI/datagrid-python/commit/9b4fbf195e38ceaab87ed93ffd086f9cfd8750ef))
275
+ * go live ([938c836](https://github.com/DatagridAI/datagrid-python/commit/938c836827490764e550b2fd2c42874125f0e514))
276
+ * go live ([#17](https://github.com/DatagridAI/datagrid-python/issues/17)) ([2c038ba](https://github.com/DatagridAI/datagrid-python/commit/2c038baf6e09ebd2c65630c242895b5bb585ccb7))
277
+ * go live ([#19](https://github.com/DatagridAI/datagrid-python/issues/19)) ([dfbc3ca](https://github.com/DatagridAI/datagrid-python/commit/dfbc3cae6a6602b39172c77d90dba5515e2e7e2b))
278
+ * **internal:** bump rye to 0.44.0 ([56f5b6e](https://github.com/DatagridAI/datagrid-python/commit/56f5b6efcc404937c2a2d586967709e147933cd5))
279
+ * **internal:** codegen related update ([9e57466](https://github.com/DatagridAI/datagrid-python/commit/9e57466158d9e16926d5edcb5c53054708631d60))
280
+ * **internal:** remove extra empty newlines ([b54de0b](https://github.com/DatagridAI/datagrid-python/commit/b54de0ba993ad58222df632eca3c8a754cd55efa))
281
+ * update SDK settings ([22cc8c2](https://github.com/DatagridAI/datagrid-python/commit/22cc8c239a282a07d2fdc2ef40f25e976ac8989a))
282
+ * update SDK settings ([#20](https://github.com/DatagridAI/datagrid-python/issues/20)) ([78e7524](https://github.com/DatagridAI/datagrid-python/commit/78e7524024c5c2b79b17d5d34338a8ae4b2ad179))
283
+
284
+
285
+ ### Documentation
286
+
287
+ * revise readme docs about nested params ([868768f](https://github.com/DatagridAI/datagrid-python/commit/868768f89aa8aa8f169496404050b8a76aee397d))
288
+
289
+ ## 0.1.0-alpha.6 (2025-04-03)
290
+
291
+ Full Changelog: [v0.1.0-alpha.5...v0.1.0-alpha.6](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.5...v0.1.0-alpha.6)
292
+
293
+ ### Features
294
+
295
+ * **api:** api update ([1d75da9](https://github.com/DatagridAI/datagrid-python/commit/1d75da98c63d3280a3e03c76121d2fe6b07ce12f))
296
+ * **api:** api update ([60a4ca6](https://github.com/DatagridAI/datagrid-python/commit/60a4ca686fe70137e2bd7e2366fffc1823c6f49b))
297
+ * **api:** api update ([52939fd](https://github.com/DatagridAI/datagrid-python/commit/52939fdb8b703414efc1568bec0659ef23548d80))
298
+ * **api:** api update ([fb19d73](https://github.com/DatagridAI/datagrid-python/commit/fb19d73af6dcf03941d3866351c581f2cff2a5b4))
299
+ * **api:** api update ([93fb0d4](https://github.com/DatagridAI/datagrid-python/commit/93fb0d4e4e1dc6e5172429515e70aad79e0ad6e2))
300
+ * **api:** api update ([941cf45](https://github.com/DatagridAI/datagrid-python/commit/941cf4546e4878e8489756c98c2570c98f570f6c))
301
+ * **api:** api update ([66b6770](https://github.com/DatagridAI/datagrid-python/commit/66b6770bdde6d3a77ed50613b25fcb1fb33220d4))
302
+ * **api:** api update ([b5d6a8c](https://github.com/DatagridAI/datagrid-python/commit/b5d6a8ca109ee89ad067c52bc2a9742e77e438b8))
303
+ * **api:** manual updates ([97e0bd5](https://github.com/DatagridAI/datagrid-python/commit/97e0bd582eb2428bd0abd8423e8c90995b0654f8))
304
+ * **api:** manual updates ([2b17522](https://github.com/DatagridAI/datagrid-python/commit/2b17522f5b743047bba597447667fbdcd302fdf4))
305
+ * **api:** update via SDK Studio ([9b8b99d](https://github.com/DatagridAI/datagrid-python/commit/9b8b99de5655c824bba0cd1c39ebe86d111e7fda))
306
+ * **api:** update via SDK Studio ([4356f22](https://github.com/DatagridAI/datagrid-python/commit/4356f2273f8df43faa7e72caf384a717aeb11283))
307
+ * **client:** allow passing `NotGiven` for body ([80af128](https://github.com/DatagridAI/datagrid-python/commit/80af12839a681c57ffe197630d8909812d72aeec))
308
+ * **client:** send `X-Stainless-Read-Timeout` header ([9be674c](https://github.com/DatagridAI/datagrid-python/commit/9be674c4ae28023120412482e57f860622067800))
309
+ * sse converse ([d771e3b](https://github.com/DatagridAI/datagrid-python/commit/d771e3bbcbc2cf0be4f368d0d1ab56a523b88c81))
310
+ * sse converse ([d771e3b](https://github.com/DatagridAI/datagrid-python/commit/d771e3bbcbc2cf0be4f368d0d1ab56a523b88c81))
311
+ * support for SSE converse ([0e95ca4](https://github.com/DatagridAI/datagrid-python/commit/0e95ca428a7593a13a7be1f47256aef30ff9b3e9))
312
+
313
+
314
+ ### Bug Fixes
315
+
316
+ * asyncify on non-asyncio runtimes ([18b81e5](https://github.com/DatagridAI/datagrid-python/commit/18b81e5b94d50c9ac1d221be9f960c719ea53fcf))
317
+ * **client:** mark some request bodies as optional ([80af128](https://github.com/DatagridAI/datagrid-python/commit/80af12839a681c57ffe197630d8909812d72aeec))
318
+ * **client:** only call .close() when needed ([49224f5](https://github.com/DatagridAI/datagrid-python/commit/49224f551ffa1cf522b8f915c0150f6b0ccec8b3))
319
+ * correctly handle deserialising `cls` fields ([4e06990](https://github.com/DatagridAI/datagrid-python/commit/4e06990be5b8fb76cad39b97dafb0a7b350c45f8))
320
+ * proper header ([710309f](https://github.com/DatagridAI/datagrid-python/commit/710309ffd9ed01d181d5d44368454d63c6285a7a))
321
+ * rm docstring from the overloaded def ([75b11ce](https://github.com/DatagridAI/datagrid-python/commit/75b11ceac6c49277ca3e0f51b9648d061077793c))
322
+ * tests ([94160e8](https://github.com/DatagridAI/datagrid-python/commit/94160e8dac5014ea368517637ad7180b0ed514f2))
323
+
324
+
325
+ ### Chores
326
+
327
+ * **docs:** update client docstring ([cf00c67](https://github.com/DatagridAI/datagrid-python/commit/cf00c6780a611b64a4e6c275e1bf4090f7b8b04f))
328
+ * go live ([#1](https://github.com/DatagridAI/datagrid-python/issues/1)) ([b608c44](https://github.com/DatagridAI/datagrid-python/commit/b608c44014061206cd2a0b2023fd6fe715107bfb))
329
+ * go live ([#1](https://github.com/DatagridAI/datagrid-python/issues/1)) ([379ce7a](https://github.com/DatagridAI/datagrid-python/commit/379ce7a02b84a30151f647b86ff1ba94d6f1d695))
330
+ * go live ([#10](https://github.com/DatagridAI/datagrid-python/issues/10)) ([18e8a01](https://github.com/DatagridAI/datagrid-python/commit/18e8a0151ea1afa7724c82923cbde1639ecdd960))
331
+ * go live ([#12](https://github.com/DatagridAI/datagrid-python/issues/12)) ([2e31e51](https://github.com/DatagridAI/datagrid-python/commit/2e31e5110cb8a84952ded99e6a380a6cb7059b96))
332
+ * go live ([#14](https://github.com/DatagridAI/datagrid-python/issues/14)) ([377e546](https://github.com/DatagridAI/datagrid-python/commit/377e546829b09b4bae97dd31870639943577defb))
333
+ * go live ([#3](https://github.com/DatagridAI/datagrid-python/issues/3)) ([31dd324](https://github.com/DatagridAI/datagrid-python/commit/31dd324ceb90b1c9a7d546ed984bee88c5dbc1ca))
334
+ * go live ([#6](https://github.com/DatagridAI/datagrid-python/issues/6)) ([75ac964](https://github.com/DatagridAI/datagrid-python/commit/75ac96490178d1214d15741c9a12e2e3868b6703))
335
+ * **internal:** bummp ruff dependency ([f4eefdf](https://github.com/DatagridAI/datagrid-python/commit/f4eefdf62acaa67e3cdd64d7e9ae516ddf176546))
336
+ * **internal:** bump httpx dependency ([413952c](https://github.com/DatagridAI/datagrid-python/commit/413952c264538f97d317c95d87876cb058d64c8d))
337
+ * **internal:** change default timeout to an int ([359c23c](https://github.com/DatagridAI/datagrid-python/commit/359c23c3276a032c7ead84d44f61ead0ec22dd0d))
338
+ * **internal:** codegen related update ([3cd8e1a](https://github.com/DatagridAI/datagrid-python/commit/3cd8e1afe81e4c438b663a1022677045fa052cd8))
339
+ * **internal:** codegen related update ([b38e485](https://github.com/DatagridAI/datagrid-python/commit/b38e48539cf573deb543c5a4b3e1c9a001494c6b))
340
+ * **internal:** codegen related update ([8e61214](https://github.com/DatagridAI/datagrid-python/commit/8e61214d9e0c146005e00bf1dfdd3563af952acd))
341
+ * **internal:** codegen related update ([a2a5915](https://github.com/DatagridAI/datagrid-python/commit/a2a5915b64fc7c52da27ffb39f95d63e7b39e69c))
342
+ * **internal:** codegen related update ([e44f3ba](https://github.com/DatagridAI/datagrid-python/commit/e44f3ba933e4c22292f33126ffd804e7459c4331))
343
+ * **internal:** codegen related update ([31f7bfd](https://github.com/DatagridAI/datagrid-python/commit/31f7bfdeabb11f65d7c4c6548475b1a856147c11))
344
+ * **internal:** codegen related update ([6597ed4](https://github.com/DatagridAI/datagrid-python/commit/6597ed414dcb7e2a1bd03163f3bf26fa7d0ba27f))
345
+ * **internal:** fix devcontainers setup ([dce524c](https://github.com/DatagridAI/datagrid-python/commit/dce524c041c77b024e633443ba9e5acbc06b847b))
346
+ * **internal:** fix some typos ([d7bf113](https://github.com/DatagridAI/datagrid-python/commit/d7bf11367981380729d2eee052e0bcd5bc2c5837))
347
+ * **internal:** fix type traversing dictionary params ([1d381eb](https://github.com/DatagridAI/datagrid-python/commit/1d381ebfed07d84c9763ae80af19aa31ed39a35e))
348
+ * **internal:** minor formatting changes ([1608034](https://github.com/DatagridAI/datagrid-python/commit/16080345f25c83d34a2fbd2250741f061aedae6c))
349
+ * **internal:** minor type handling changes ([bd2ae66](https://github.com/DatagridAI/datagrid-python/commit/bd2ae6666eae680c0c26f05a91a7d6476541fb33))
350
+ * **internal:** properly set __pydantic_private__ ([e4b9ec6](https://github.com/DatagridAI/datagrid-python/commit/e4b9ec680aab049141b55110bc88bc22e8ee94cc))
351
+ * **internal:** remove unused http client options forwarding ([dadae7c](https://github.com/DatagridAI/datagrid-python/commit/dadae7c7cf6949c504bcdcb1fddb14945b1211b3))
352
+ * **internal:** update client tests ([08398a7](https://github.com/DatagridAI/datagrid-python/commit/08398a7439cc156a16a84d2e044864476fd05824))
353
+ * sync repo ([8397cc3](https://github.com/DatagridAI/datagrid-python/commit/8397cc34de7a7ba2ced88732507070148bd7921c))
354
+ * update SDK settings ([#3](https://github.com/DatagridAI/datagrid-python/issues/3)) ([dd5ded3](https://github.com/DatagridAI/datagrid-python/commit/dd5ded35ca67baa02693285fcde3f5ac85d8feee))
355
+ * update SDK settings ([#4](https://github.com/DatagridAI/datagrid-python/issues/4)) ([acd7f70](https://github.com/DatagridAI/datagrid-python/commit/acd7f70e749b1c9dad7df54fe1a1b64f4d42ffe8))
356
+ * update SDK settings ([#8](https://github.com/DatagridAI/datagrid-python/issues/8)) ([7370457](https://github.com/DatagridAI/datagrid-python/commit/7370457e992a180d2ea42d8499402e30b6d774b2))
357
+
358
+
359
+ ### Documentation
360
+
361
+ * fix typos ([647dc35](https://github.com/DatagridAI/datagrid-python/commit/647dc35d4c22fcf7964b5df9e512b6213c6ed71b))
362
+ * **readme:** example snippet for client context manager ([34d4dc9](https://github.com/DatagridAI/datagrid-python/commit/34d4dc9bf14f6d6aef814c7055a415873bc3aef5))
363
+ * update URLs from stainlessapi.com to stainless.com ([85a7345](https://github.com/DatagridAI/datagrid-python/commit/85a73452c81fc9186bc48c1916f46f31a890ed04))
364
+
365
+ ## 0.1.0-alpha.5 (2025-03-05)
366
+
367
+ Full Changelog: [v0.1.0-alpha.4...v0.1.0-alpha.5](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.4...v0.1.0-alpha.5)
368
+
369
+ ### Features
370
+
371
+ * **api:** api update ([1d75da9](https://github.com/DatagridAI/datagrid-python/commit/1d75da98c63d3280a3e03c76121d2fe6b07ce12f))
372
+ * **api:** api update ([60a4ca6](https://github.com/DatagridAI/datagrid-python/commit/60a4ca686fe70137e2bd7e2366fffc1823c6f49b))
373
+ * **api:** api update ([52939fd](https://github.com/DatagridAI/datagrid-python/commit/52939fdb8b703414efc1568bec0659ef23548d80))
374
+ * **client:** allow passing `NotGiven` for body ([80af128](https://github.com/DatagridAI/datagrid-python/commit/80af12839a681c57ffe197630d8909812d72aeec))
375
+ * **client:** send `X-Stainless-Read-Timeout` header ([9be674c](https://github.com/DatagridAI/datagrid-python/commit/9be674c4ae28023120412482e57f860622067800))
376
+
377
+
378
+ ### Bug Fixes
379
+
380
+ * asyncify on non-asyncio runtimes ([18b81e5](https://github.com/DatagridAI/datagrid-python/commit/18b81e5b94d50c9ac1d221be9f960c719ea53fcf))
381
+ * **client:** mark some request bodies as optional ([80af128](https://github.com/DatagridAI/datagrid-python/commit/80af12839a681c57ffe197630d8909812d72aeec))
382
+
383
+
384
+ ### Chores
385
+
386
+ * **docs:** update client docstring ([cf00c67](https://github.com/DatagridAI/datagrid-python/commit/cf00c6780a611b64a4e6c275e1bf4090f7b8b04f))
387
+ * go live ([#14](https://github.com/DatagridAI/datagrid-python/issues/14)) ([377e546](https://github.com/DatagridAI/datagrid-python/commit/377e546829b09b4bae97dd31870639943577defb))
388
+ * **internal:** bummp ruff dependency ([f4eefdf](https://github.com/DatagridAI/datagrid-python/commit/f4eefdf62acaa67e3cdd64d7e9ae516ddf176546))
389
+ * **internal:** change default timeout to an int ([359c23c](https://github.com/DatagridAI/datagrid-python/commit/359c23c3276a032c7ead84d44f61ead0ec22dd0d))
390
+ * **internal:** fix devcontainers setup ([dce524c](https://github.com/DatagridAI/datagrid-python/commit/dce524c041c77b024e633443ba9e5acbc06b847b))
391
+ * **internal:** fix type traversing dictionary params ([1d381eb](https://github.com/DatagridAI/datagrid-python/commit/1d381ebfed07d84c9763ae80af19aa31ed39a35e))
392
+ * **internal:** minor type handling changes ([bd2ae66](https://github.com/DatagridAI/datagrid-python/commit/bd2ae6666eae680c0c26f05a91a7d6476541fb33))
393
+ * **internal:** properly set __pydantic_private__ ([e4b9ec6](https://github.com/DatagridAI/datagrid-python/commit/e4b9ec680aab049141b55110bc88bc22e8ee94cc))
394
+ * **internal:** remove unused http client options forwarding ([dadae7c](https://github.com/DatagridAI/datagrid-python/commit/dadae7c7cf6949c504bcdcb1fddb14945b1211b3))
395
+ * **internal:** update client tests ([08398a7](https://github.com/DatagridAI/datagrid-python/commit/08398a7439cc156a16a84d2e044864476fd05824))
396
+
397
+
398
+ ### Documentation
399
+
400
+ * update URLs from stainlessapi.com to stainless.com ([85a7345](https://github.com/DatagridAI/datagrid-python/commit/85a73452c81fc9186bc48c1916f46f31a890ed04))
401
+
402
+ ## 0.1.0-alpha.4 (2025-01-29)
403
+
404
+ Full Changelog: [v0.1.0-alpha.3...v0.1.0-alpha.4](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.3...v0.1.0-alpha.4)
405
+
406
+ ### Features
407
+
408
+ * **api:** api update ([fb19d73](https://github.com/DatagridAI/datagrid-python/commit/fb19d73af6dcf03941d3866351c581f2cff2a5b4))
409
+
410
+
411
+ ### Chores
412
+
413
+ * go live ([#10](https://github.com/DatagridAI/datagrid-python/issues/10)) ([18e8a01](https://github.com/DatagridAI/datagrid-python/commit/18e8a0151ea1afa7724c82923cbde1639ecdd960))
414
+ * go live ([#12](https://github.com/DatagridAI/datagrid-python/issues/12)) ([2e31e51](https://github.com/DatagridAI/datagrid-python/commit/2e31e5110cb8a84952ded99e6a380a6cb7059b96))
415
+ * sync repo ([8397cc3](https://github.com/DatagridAI/datagrid-python/commit/8397cc34de7a7ba2ced88732507070148bd7921c))
416
+
417
+ ## 0.1.0-alpha.3 (2025-01-28)
418
+
419
+ Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
420
+
421
+ ### Chores
422
+
423
+ * go live ([#6](https://github.com/DatagridAI/datagrid-python/issues/6)) ([75ac964](https://github.com/DatagridAI/datagrid-python/commit/75ac96490178d1214d15741c9a12e2e3868b6703))
424
+ * update SDK settings ([#8](https://github.com/DatagridAI/datagrid-python/issues/8)) ([7370457](https://github.com/DatagridAI/datagrid-python/commit/7370457e992a180d2ea42d8499402e30b6d774b2))
425
+
426
+ ## 0.1.0-alpha.2 (2025-01-27)
427
+
428
+ Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/DatagridAI/datagrid-python/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
429
+
430
+ ### Features
431
+
432
+ * **api:** api update ([93fb0d4](https://github.com/DatagridAI/datagrid-python/commit/93fb0d4e4e1dc6e5172429515e70aad79e0ad6e2))
433
+ * **api:** api update ([941cf45](https://github.com/DatagridAI/datagrid-python/commit/941cf4546e4878e8489756c98c2570c98f570f6c))
434
+ * **api:** api update ([66b6770](https://github.com/DatagridAI/datagrid-python/commit/66b6770bdde6d3a77ed50613b25fcb1fb33220d4))
435
+ * **api:** manual updates ([97e0bd5](https://github.com/DatagridAI/datagrid-python/commit/97e0bd582eb2428bd0abd8423e8c90995b0654f8))
436
+ * **api:** manual updates ([2b17522](https://github.com/DatagridAI/datagrid-python/commit/2b17522f5b743047bba597447667fbdcd302fdf4))
437
+ * sse converse ([d771e3b](https://github.com/DatagridAI/datagrid-python/commit/d771e3bbcbc2cf0be4f368d0d1ab56a523b88c81))
438
+ * sse converse ([d771e3b](https://github.com/DatagridAI/datagrid-python/commit/d771e3bbcbc2cf0be4f368d0d1ab56a523b88c81))
439
+ * support for SSE converse ([0e95ca4](https://github.com/DatagridAI/datagrid-python/commit/0e95ca428a7593a13a7be1f47256aef30ff9b3e9))
440
+
441
+
442
+ ### Bug Fixes
443
+
444
+ * proper header ([710309f](https://github.com/DatagridAI/datagrid-python/commit/710309ffd9ed01d181d5d44368454d63c6285a7a))
445
+ * rm docstring from the overloaded def ([75b11ce](https://github.com/DatagridAI/datagrid-python/commit/75b11ceac6c49277ca3e0f51b9648d061077793c))
446
+ * tests ([94160e8](https://github.com/DatagridAI/datagrid-python/commit/94160e8dac5014ea368517637ad7180b0ed514f2))
447
+
448
+
449
+ ### Chores
450
+
451
+ * go live ([#1](https://github.com/DatagridAI/datagrid-python/issues/1)) ([b608c44](https://github.com/DatagridAI/datagrid-python/commit/b608c44014061206cd2a0b2023fd6fe715107bfb))
452
+ * go live ([#3](https://github.com/DatagridAI/datagrid-python/issues/3)) ([31dd324](https://github.com/DatagridAI/datagrid-python/commit/31dd324ceb90b1c9a7d546ed984bee88c5dbc1ca))
453
+ * **internal:** codegen related update ([3cd8e1a](https://github.com/DatagridAI/datagrid-python/commit/3cd8e1afe81e4c438b663a1022677045fa052cd8))
454
+ * **internal:** minor formatting changes ([1608034](https://github.com/DatagridAI/datagrid-python/commit/16080345f25c83d34a2fbd2250741f061aedae6c))
455
+ * update SDK settings ([#4](https://github.com/DatagridAI/datagrid-python/issues/4)) ([acd7f70](https://github.com/DatagridAI/datagrid-python/commit/acd7f70e749b1c9dad7df54fe1a1b64f4d42ffe8))
456
+
457
+ ## 0.1.0-alpha.1 (2025-01-15)
458
+
459
+ Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/ToricLabs/datagrid-python/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
460
+
461
+ ### Features
462
+
463
+ * **api:** api update ([b5d6a8c](https://github.com/ToricLabs/datagrid-python/commit/b5d6a8ca109ee89ad067c52bc2a9742e77e438b8))
464
+ * **api:** update via SDK Studio ([9b8b99d](https://github.com/ToricLabs/datagrid-python/commit/9b8b99de5655c824bba0cd1c39ebe86d111e7fda))
465
+ * **api:** update via SDK Studio ([4356f22](https://github.com/ToricLabs/datagrid-python/commit/4356f2273f8df43faa7e72caf384a717aeb11283))
466
+
467
+
468
+ ### Bug Fixes
469
+
470
+ * **client:** only call .close() when needed ([49224f5](https://github.com/ToricLabs/datagrid-python/commit/49224f551ffa1cf522b8f915c0150f6b0ccec8b3))
471
+ * correctly handle deserialising `cls` fields ([4e06990](https://github.com/ToricLabs/datagrid-python/commit/4e06990be5b8fb76cad39b97dafb0a7b350c45f8))
472
+
473
+
474
+ ### Chores
475
+
476
+ * go live ([#1](https://github.com/ToricLabs/datagrid-python/issues/1)) ([379ce7a](https://github.com/ToricLabs/datagrid-python/commit/379ce7a02b84a30151f647b86ff1ba94d6f1d695))
477
+ * **internal:** bump httpx dependency ([413952c](https://github.com/ToricLabs/datagrid-python/commit/413952c264538f97d317c95d87876cb058d64c8d))
478
+ * **internal:** codegen related update ([b38e485](https://github.com/ToricLabs/datagrid-python/commit/b38e48539cf573deb543c5a4b3e1c9a001494c6b))
479
+ * **internal:** codegen related update ([8e61214](https://github.com/ToricLabs/datagrid-python/commit/8e61214d9e0c146005e00bf1dfdd3563af952acd))
480
+ * **internal:** codegen related update ([a2a5915](https://github.com/ToricLabs/datagrid-python/commit/a2a5915b64fc7c52da27ffb39f95d63e7b39e69c))
481
+ * **internal:** codegen related update ([e44f3ba](https://github.com/ToricLabs/datagrid-python/commit/e44f3ba933e4c22292f33126ffd804e7459c4331))
482
+ * **internal:** codegen related update ([31f7bfd](https://github.com/ToricLabs/datagrid-python/commit/31f7bfdeabb11f65d7c4c6548475b1a856147c11))
483
+ * **internal:** codegen related update ([6597ed4](https://github.com/ToricLabs/datagrid-python/commit/6597ed414dcb7e2a1bd03163f3bf26fa7d0ba27f))
484
+ * **internal:** fix some typos ([d7bf113](https://github.com/ToricLabs/datagrid-python/commit/d7bf11367981380729d2eee052e0bcd5bc2c5837))
485
+ * update SDK settings ([#3](https://github.com/ToricLabs/datagrid-python/issues/3)) ([dd5ded3](https://github.com/ToricLabs/datagrid-python/commit/dd5ded35ca67baa02693285fcde3f5ac85d8feee))
486
+
487
+
488
+ ### Documentation
489
+
490
+ * fix typos ([647dc35](https://github.com/ToricLabs/datagrid-python/commit/647dc35d4c22fcf7964b5df9e512b6213c6ed71b))
491
+ * **readme:** example snippet for client context manager ([34d4dc9](https://github.com/ToricLabs/datagrid-python/commit/34d4dc9bf14f6d6aef814c7055a415873bc3aef5))