c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python 0.1.0a4__py3-none-any.whl → 0.1.0a5__py3-none-any.whl

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 (244) hide show
  1. {c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info → c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a5.dist-info}/METADATA +63 -38
  2. c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a5.dist-info/RECORD +230 -0
  3. {gradientai → do_gradientai}/__init__.py +2 -2
  4. {gradientai → do_gradientai}/_base_client.py +1 -1
  5. {gradientai → do_gradientai}/_client.py +73 -71
  6. {gradientai → do_gradientai}/_response.py +4 -4
  7. {gradientai → do_gradientai}/_types.py +1 -1
  8. {gradientai → do_gradientai}/_utils/_logs.py +2 -2
  9. {gradientai → do_gradientai}/_utils/_resources_proxy.py +4 -4
  10. do_gradientai/_version.py +4 -0
  11. {gradientai → do_gradientai}/resources/__init__.py +14 -28
  12. do_gradientai/resources/agents/__init__.py +145 -0
  13. {gradientai → do_gradientai}/resources/agents/agents.py +148 -20
  14. {gradientai/resources/regions → do_gradientai/resources/agents}/evaluation_datasets.py +3 -3
  15. do_gradientai/resources/agents/evaluation_metrics/__init__.py +33 -0
  16. do_gradientai/resources/agents/evaluation_metrics/evaluation_metrics.py +177 -0
  17. do_gradientai/resources/agents/evaluation_metrics/workspaces/__init__.py +33 -0
  18. do_gradientai/resources/agents/evaluation_metrics/workspaces/agents.py +324 -0
  19. do_gradientai/resources/agents/evaluation_metrics/workspaces/workspaces.py +654 -0
  20. {gradientai/resources/regions/evaluation_runs → do_gradientai/resources/agents}/evaluation_runs.py +197 -47
  21. {gradientai/resources/regions → do_gradientai/resources/agents}/evaluation_test_cases.py +30 -9
  22. gradientai/resources/agents/child_agents.py → do_gradientai/resources/agents/routes.py +64 -64
  23. {gradientai → do_gradientai}/resources/chat/completions.py +20 -2
  24. {gradientai → do_gradientai}/resources/inference/__init__.py +0 -14
  25. {gradientai → do_gradientai}/resources/inference/inference.py +0 -32
  26. {gradientai → do_gradientai}/resources/knowledge_bases/__init__.py +14 -0
  27. {gradientai/resources → do_gradientai/resources/knowledge_bases}/indexing_jobs.py +16 -12
  28. {gradientai → do_gradientai}/resources/knowledge_bases/knowledge_bases.py +32 -0
  29. {gradientai/resources/providers → do_gradientai/resources/model_providers}/__init__.py +13 -13
  30. {gradientai/resources/providers → do_gradientai/resources/model_providers}/anthropic/keys.py +12 -7
  31. gradientai/resources/providers/providers.py → do_gradientai/resources/model_providers/model_providers.py +31 -31
  32. {gradientai/resources/providers → do_gradientai/resources/model_providers}/openai/keys.py +12 -7
  33. {gradientai/resources/inference → do_gradientai/resources}/models.py +7 -7
  34. do_gradientai/resources/regions.py +195 -0
  35. {gradientai → do_gradientai}/types/__init__.py +2 -17
  36. {gradientai → do_gradientai}/types/agent_list_response.py +2 -2
  37. do_gradientai/types/agents/__init__.py +67 -0
  38. {gradientai/types → do_gradientai/types/agents}/api_evaluation_metric.py +1 -1
  39. {gradientai/types/regions/evaluation_runs → do_gradientai/types/agents}/api_evaluation_metric_result.py +1 -1
  40. gradientai/types/regions/evaluation_runs/api_prompt.py → do_gradientai/types/agents/api_evaluation_prompt.py +3 -3
  41. {gradientai/types/regions/evaluation_runs → do_gradientai/types/agents}/api_evaluation_run.py +13 -1
  42. {gradientai/types/regions → do_gradientai/types/agents}/api_evaluation_test_case.py +1 -1
  43. {gradientai → do_gradientai}/types/agents/api_key_list_response.py +2 -2
  44. gradientai/types/region_list_evaluation_metrics_response.py → do_gradientai/types/agents/evaluation_metric_list_response.py +3 -3
  45. do_gradientai/types/agents/evaluation_metrics/__init__.py +14 -0
  46. do_gradientai/types/agents/evaluation_metrics/workspace_create_params.py +16 -0
  47. do_gradientai/types/agents/evaluation_metrics/workspace_create_response.py +16 -0
  48. do_gradientai/types/agents/evaluation_metrics/workspace_delete_response.py +11 -0
  49. do_gradientai/types/agents/evaluation_metrics/workspace_list_evaluation_test_cases_response.py +12 -0
  50. do_gradientai/types/agents/evaluation_metrics/workspace_list_response.py +16 -0
  51. do_gradientai/types/agents/evaluation_metrics/workspace_retrieve_response.py +16 -0
  52. do_gradientai/types/agents/evaluation_metrics/workspace_update_params.py +18 -0
  53. do_gradientai/types/agents/evaluation_metrics/workspace_update_response.py +16 -0
  54. do_gradientai/types/agents/evaluation_metrics/workspaces/__init__.py +8 -0
  55. do_gradientai/types/agents/evaluation_metrics/workspaces/agent_list_params.py +26 -0
  56. do_gradientai/types/agents/evaluation_metrics/workspaces/agent_list_response.py +22 -0
  57. do_gradientai/types/agents/evaluation_metrics/workspaces/agent_move_params.py +16 -0
  58. do_gradientai/types/agents/evaluation_metrics/workspaces/agent_move_response.py +16 -0
  59. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_run_create_params.py +3 -2
  60. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_run_create_response.py +2 -2
  61. gradientai/types/regions/evaluation_runs/result_retrieve_response.py → do_gradientai/types/agents/evaluation_run_list_results_response.py +5 -5
  62. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_run_retrieve_response.py +1 -1
  63. do_gradientai/types/agents/evaluation_run_retrieve_results_response.py +12 -0
  64. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_test_case_list_evaluation_runs_response.py +1 -1
  65. do_gradientai/types/agents/evaluation_test_case_retrieve_params.py +12 -0
  66. gradientai/types/agents/child_agent_add_params.py → do_gradientai/types/agents/route_add_params.py +2 -2
  67. gradientai/types/agents/child_agent_add_response.py → do_gradientai/types/agents/route_add_response.py +2 -2
  68. gradientai/types/agents/child_agent_delete_response.py → do_gradientai/types/agents/route_delete_response.py +2 -2
  69. gradientai/types/agents/child_agent_update_params.py → do_gradientai/types/agents/route_update_params.py +2 -2
  70. gradientai/types/agents/child_agent_update_response.py → do_gradientai/types/agents/route_update_response.py +2 -2
  71. gradientai/types/agents/child_agent_view_response.py → do_gradientai/types/agents/route_view_response.py +2 -2
  72. {gradientai → do_gradientai}/types/agents/version_list_response.py +2 -2
  73. {gradientai → do_gradientai}/types/api_knowledge_base.py +1 -1
  74. {gradientai → do_gradientai}/types/api_workspace.py +1 -1
  75. {gradientai → do_gradientai}/types/inference/__init__.py +0 -2
  76. {gradientai → do_gradientai}/types/inference/api_key_list_response.py +2 -2
  77. {gradientai → do_gradientai}/types/knowledge_base_list_response.py +2 -2
  78. {gradientai → do_gradientai}/types/knowledge_bases/__init__.py +12 -0
  79. gradientai/types/indexing_job_retrieve_data_sources_response.py → do_gradientai/types/knowledge_bases/api_indexed_data_source.py +4 -8
  80. {gradientai/types → do_gradientai/types/knowledge_bases}/api_indexing_job.py +13 -1
  81. {gradientai → do_gradientai}/types/knowledge_bases/api_knowledge_base_data_source.py +4 -1
  82. {gradientai → do_gradientai}/types/knowledge_bases/data_source_list_response.py +2 -2
  83. {gradientai/types → do_gradientai/types/knowledge_bases}/indexing_job_create_response.py +1 -1
  84. {gradientai/types → do_gradientai/types/knowledge_bases}/indexing_job_list_response.py +3 -3
  85. do_gradientai/types/knowledge_bases/indexing_job_retrieve_data_sources_response.py +12 -0
  86. {gradientai/types → do_gradientai/types/knowledge_bases}/indexing_job_retrieve_response.py +1 -1
  87. {gradientai/types → do_gradientai/types/knowledge_bases}/indexing_job_update_cancel_params.py +1 -1
  88. {gradientai/types → do_gradientai/types/knowledge_bases}/indexing_job_update_cancel_response.py +1 -1
  89. {gradientai/types/inference → do_gradientai/types}/model.py +1 -1
  90. {gradientai/types/inference → do_gradientai/types}/model_list_response.py +1 -1
  91. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_list_agents_response.py +2 -2
  92. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_list_response.py +2 -2
  93. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_list_response.py +2 -2
  94. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_retrieve_agents_response.py +2 -2
  95. gradientai/_version.py → do_gradientai/types/shared/__init__.py +2 -2
  96. c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info/RECORD +0 -217
  97. gradientai/resources/agents/__init__.py +0 -89
  98. gradientai/resources/models.py +0 -254
  99. gradientai/resources/regions/__init__.py +0 -61
  100. gradientai/resources/regions/evaluation_runs/__init__.py +0 -33
  101. gradientai/resources/regions/evaluation_runs/results.py +0 -264
  102. gradientai/resources/regions/regions.py +0 -352
  103. gradientai/types/agents/__init__.py +0 -31
  104. gradientai/types/api_model.py +0 -32
  105. gradientai/types/model_list_params.py +0 -42
  106. gradientai/types/model_list_response.py +0 -18
  107. gradientai/types/regions/__init__.py +0 -32
  108. gradientai/types/regions/evaluation_runs/__init__.py +0 -9
  109. gradientai/types/regions/evaluation_runs/result_retrieve_prompt_response.py +0 -12
  110. {c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info → c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a5.dist-info}/WHEEL +0 -0
  111. {c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a4.dist-info → c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a5.dist-info}/licenses/LICENSE +0 -0
  112. {gradientai → do_gradientai}/_compat.py +0 -0
  113. {gradientai → do_gradientai}/_constants.py +0 -0
  114. {gradientai → do_gradientai}/_exceptions.py +0 -0
  115. {gradientai → do_gradientai}/_files.py +0 -0
  116. {gradientai → do_gradientai}/_models.py +0 -0
  117. {gradientai → do_gradientai}/_qs.py +0 -0
  118. {gradientai → do_gradientai}/_resource.py +0 -0
  119. {gradientai → do_gradientai}/_streaming.py +0 -0
  120. {gradientai → do_gradientai}/_utils/__init__.py +0 -0
  121. {gradientai → do_gradientai}/_utils/_proxy.py +0 -0
  122. {gradientai → do_gradientai}/_utils/_reflection.py +0 -0
  123. {gradientai → do_gradientai}/_utils/_streams.py +0 -0
  124. {gradientai → do_gradientai}/_utils/_sync.py +0 -0
  125. {gradientai → do_gradientai}/_utils/_transform.py +0 -0
  126. {gradientai → do_gradientai}/_utils/_typing.py +0 -0
  127. {gradientai → do_gradientai}/_utils/_utils.py +0 -0
  128. {gradientai → do_gradientai}/lib/.keep +0 -0
  129. {gradientai → do_gradientai}/py.typed +0 -0
  130. {gradientai → do_gradientai}/resources/agents/api_keys.py +0 -0
  131. {gradientai → do_gradientai}/resources/agents/functions.py +0 -0
  132. {gradientai → do_gradientai}/resources/agents/knowledge_bases.py +0 -0
  133. {gradientai → do_gradientai}/resources/agents/versions.py +0 -0
  134. {gradientai → do_gradientai}/resources/chat/__init__.py +0 -0
  135. {gradientai → do_gradientai}/resources/chat/chat.py +0 -0
  136. {gradientai → do_gradientai}/resources/inference/api_keys.py +0 -0
  137. {gradientai → do_gradientai}/resources/knowledge_bases/data_sources.py +0 -0
  138. {gradientai/resources/providers → do_gradientai/resources/model_providers}/anthropic/__init__.py +0 -0
  139. {gradientai/resources/providers → do_gradientai/resources/model_providers}/anthropic/anthropic.py +0 -0
  140. {gradientai/resources/providers → do_gradientai/resources/model_providers}/openai/__init__.py +0 -0
  141. {gradientai/resources/providers → do_gradientai/resources/model_providers}/openai/openai.py +0 -0
  142. {gradientai → do_gradientai}/types/agent_create_params.py +0 -0
  143. {gradientai → do_gradientai}/types/agent_create_response.py +0 -0
  144. {gradientai → do_gradientai}/types/agent_delete_response.py +0 -0
  145. {gradientai → do_gradientai}/types/agent_list_params.py +0 -0
  146. {gradientai → do_gradientai}/types/agent_retrieve_response.py +0 -0
  147. {gradientai → do_gradientai}/types/agent_update_params.py +0 -0
  148. {gradientai → do_gradientai}/types/agent_update_response.py +0 -0
  149. {gradientai → do_gradientai}/types/agent_update_status_params.py +0 -0
  150. {gradientai → do_gradientai}/types/agent_update_status_response.py +0 -0
  151. {gradientai → do_gradientai}/types/agents/api_key_create_params.py +0 -0
  152. {gradientai → do_gradientai}/types/agents/api_key_create_response.py +0 -0
  153. {gradientai → do_gradientai}/types/agents/api_key_delete_response.py +0 -0
  154. {gradientai → do_gradientai}/types/agents/api_key_list_params.py +0 -0
  155. {gradientai → do_gradientai}/types/agents/api_key_regenerate_response.py +0 -0
  156. {gradientai → do_gradientai}/types/agents/api_key_update_params.py +0 -0
  157. {gradientai → do_gradientai}/types/agents/api_key_update_response.py +0 -0
  158. {gradientai → do_gradientai}/types/agents/api_link_knowledge_base_output.py +0 -0
  159. {gradientai/types/regions → do_gradientai/types/agents}/api_star_metric.py +0 -0
  160. {gradientai/types/regions → do_gradientai/types/agents}/api_star_metric_param.py +0 -0
  161. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_dataset_create_file_upload_presigned_urls_params.py +0 -0
  162. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_dataset_create_file_upload_presigned_urls_response.py +0 -0
  163. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_dataset_create_params.py +0 -0
  164. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_dataset_create_response.py +0 -0
  165. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_test_case_create_params.py +0 -0
  166. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_test_case_create_response.py +0 -0
  167. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_test_case_list_evaluation_runs_params.py +0 -0
  168. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_test_case_list_response.py +0 -0
  169. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_test_case_retrieve_response.py +0 -0
  170. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_test_case_update_params.py +0 -0
  171. {gradientai/types/regions → do_gradientai/types/agents}/evaluation_test_case_update_response.py +0 -0
  172. {gradientai → do_gradientai}/types/agents/function_create_params.py +0 -0
  173. {gradientai → do_gradientai}/types/agents/function_create_response.py +0 -0
  174. {gradientai → do_gradientai}/types/agents/function_delete_response.py +0 -0
  175. {gradientai → do_gradientai}/types/agents/function_update_params.py +0 -0
  176. {gradientai → do_gradientai}/types/agents/function_update_response.py +0 -0
  177. {gradientai → do_gradientai}/types/agents/knowledge_base_detach_response.py +0 -0
  178. {gradientai → do_gradientai}/types/agents/version_list_params.py +0 -0
  179. {gradientai → do_gradientai}/types/agents/version_update_params.py +0 -0
  180. {gradientai → do_gradientai}/types/agents/version_update_response.py +0 -0
  181. {gradientai → do_gradientai}/types/api_agent.py +0 -0
  182. {gradientai → do_gradientai}/types/api_agent_api_key_info.py +0 -0
  183. {gradientai → do_gradientai}/types/api_agent_model.py +0 -0
  184. {gradientai → do_gradientai}/types/api_agreement.py +0 -0
  185. {gradientai → do_gradientai}/types/api_anthropic_api_key_info.py +0 -0
  186. {gradientai → do_gradientai}/types/api_deployment_visibility.py +0 -0
  187. {gradientai → do_gradientai}/types/api_model_version.py +0 -0
  188. {gradientai → do_gradientai}/types/api_openai_api_key_info.py +0 -0
  189. {gradientai → do_gradientai}/types/api_retrieval_method.py +0 -0
  190. {gradientai → do_gradientai}/types/chat/__init__.py +0 -0
  191. {gradientai → do_gradientai}/types/chat/chat_completion_token_logprob.py +0 -0
  192. {gradientai → do_gradientai}/types/chat/completion_create_params.py +0 -0
  193. {gradientai → do_gradientai}/types/chat/completion_create_response.py +0 -0
  194. {gradientai → do_gradientai}/types/inference/api_key_create_params.py +0 -0
  195. {gradientai → do_gradientai}/types/inference/api_key_create_response.py +0 -0
  196. {gradientai → do_gradientai}/types/inference/api_key_delete_response.py +0 -0
  197. {gradientai → do_gradientai}/types/inference/api_key_list_params.py +0 -0
  198. {gradientai → do_gradientai}/types/inference/api_key_update_params.py +0 -0
  199. {gradientai → do_gradientai}/types/inference/api_key_update_regenerate_response.py +0 -0
  200. {gradientai → do_gradientai}/types/inference/api_key_update_response.py +0 -0
  201. {gradientai → do_gradientai}/types/inference/api_model_api_key_info.py +0 -0
  202. {gradientai → do_gradientai}/types/knowledge_base_create_params.py +0 -0
  203. {gradientai → do_gradientai}/types/knowledge_base_create_response.py +0 -0
  204. {gradientai → do_gradientai}/types/knowledge_base_delete_response.py +0 -0
  205. {gradientai → do_gradientai}/types/knowledge_base_list_params.py +0 -0
  206. {gradientai → do_gradientai}/types/knowledge_base_retrieve_response.py +0 -0
  207. {gradientai → do_gradientai}/types/knowledge_base_update_params.py +0 -0
  208. {gradientai → do_gradientai}/types/knowledge_base_update_response.py +0 -0
  209. {gradientai → do_gradientai}/types/knowledge_bases/api_file_upload_data_source.py +0 -0
  210. {gradientai → do_gradientai}/types/knowledge_bases/api_file_upload_data_source_param.py +0 -0
  211. {gradientai → do_gradientai}/types/knowledge_bases/api_spaces_data_source.py +0 -0
  212. {gradientai → do_gradientai}/types/knowledge_bases/api_spaces_data_source_param.py +0 -0
  213. {gradientai → do_gradientai}/types/knowledge_bases/api_web_crawler_data_source.py +0 -0
  214. {gradientai → do_gradientai}/types/knowledge_bases/api_web_crawler_data_source_param.py +0 -0
  215. {gradientai → do_gradientai}/types/knowledge_bases/aws_data_source_param.py +0 -0
  216. {gradientai → do_gradientai}/types/knowledge_bases/data_source_create_params.py +0 -0
  217. {gradientai → do_gradientai}/types/knowledge_bases/data_source_create_response.py +0 -0
  218. {gradientai → do_gradientai}/types/knowledge_bases/data_source_delete_response.py +0 -0
  219. {gradientai → do_gradientai}/types/knowledge_bases/data_source_list_params.py +0 -0
  220. {gradientai/types → do_gradientai/types/knowledge_bases}/indexing_job_create_params.py +0 -0
  221. {gradientai/types → do_gradientai/types/knowledge_bases}/indexing_job_list_params.py +0 -0
  222. {gradientai/types/providers → do_gradientai/types/model_providers}/__init__.py +0 -0
  223. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/__init__.py +0 -0
  224. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_create_params.py +0 -0
  225. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_create_response.py +0 -0
  226. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_delete_response.py +0 -0
  227. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_list_agents_params.py +0 -0
  228. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_list_params.py +0 -0
  229. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_retrieve_response.py +0 -0
  230. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_update_params.py +0 -0
  231. {gradientai/types/providers → do_gradientai/types/model_providers}/anthropic/key_update_response.py +0 -0
  232. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/__init__.py +0 -0
  233. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_create_params.py +0 -0
  234. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_create_response.py +0 -0
  235. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_delete_response.py +0 -0
  236. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_list_params.py +0 -0
  237. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_retrieve_agents_params.py +0 -0
  238. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_retrieve_response.py +0 -0
  239. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_update_params.py +0 -0
  240. {gradientai/types/providers → do_gradientai/types/model_providers}/openai/key_update_response.py +0 -0
  241. {gradientai → do_gradientai}/types/region_list_params.py +0 -0
  242. {gradientai → do_gradientai}/types/region_list_response.py +0 -0
  243. {gradientai/types/agents → do_gradientai/types/shared}/api_links.py +0 -0
  244. {gradientai/types/agents → do_gradientai/types/shared}/api_meta.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python
3
- Version: 0.1.0a4
4
- Summary: The official Python library for the GradientAI API
3
+ Version: 0.1.0a5
4
+ Summary: The official Python library for GradientAI
5
5
  Project-URL: Homepage, https://github.com/digitalocean/gradientai-python
6
6
  Project-URL: Repository, https://github.com/digitalocean/gradientai-python
7
7
  Author: Gradient AI
@@ -32,11 +32,11 @@ Requires-Dist: aiohttp; extra == 'aiohttp'
32
32
  Requires-Dist: httpx-aiohttp>=0.1.6; extra == 'aiohttp'
33
33
  Description-Content-Type: text/markdown
34
34
 
35
- # Gradient AI Python API library
35
+ # GradientAI Python API library
36
36
 
37
37
  [![PyPI version](https://github.com/digitalocean/gradientai-python/tree/main/<https://img.shields.io/pypi/v/c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python.svg?label=pypi%20(stable)>)](https://pypi.org/project/c63a5cfe-b235-4fbe-8bbb-82a9e02a482a-python/)
38
38
 
39
- The Gradient AI Python library provides convenient access to the Gradient AI REST API from any Python 3.8+
39
+ The GradientAI Python library provides convenient access to the GradientAI REST API from any Python 3.8+
40
40
  application. The library includes type definitions for all request params and response fields,
41
41
  and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
42
42
 
@@ -59,16 +59,22 @@ The full API of this library can be found in [api.md](https://github.com/digital
59
59
 
60
60
  ```python
61
61
  import os
62
- from gradientai import GradientAI
62
+ from do_gradientai import GradientAI
63
63
 
64
64
  client = GradientAI(
65
65
  api_key=os.environ.get("GRADIENTAI_API_KEY"), # This is the default and can be omitted
66
66
  )
67
67
 
68
- versions = client.agents.versions.list(
69
- uuid="REPLACE_ME",
68
+ completion = client.chat.completions.create(
69
+ messages=[
70
+ {
71
+ "content": "string",
72
+ "role": "system",
73
+ }
74
+ ],
75
+ model="llama3-8b-instruct",
70
76
  )
71
- print(versions.agent_versions)
77
+ print(completion.id)
72
78
  ```
73
79
 
74
80
  While you can provide an `api_key` keyword argument,
@@ -83,7 +89,7 @@ Simply import `AsyncGradientAI` instead of `GradientAI` and use `await` with eac
83
89
  ```python
84
90
  import os
85
91
  import asyncio
86
- from gradientai import AsyncGradientAI
92
+ from do_gradientai import AsyncGradientAI
87
93
 
88
94
  client = AsyncGradientAI(
89
95
  api_key=os.environ.get("GRADIENTAI_API_KEY"), # This is the default and can be omitted
@@ -91,10 +97,16 @@ client = AsyncGradientAI(
91
97
 
92
98
 
93
99
  async def main() -> None:
94
- versions = await client.agents.versions.list(
95
- uuid="REPLACE_ME",
100
+ completion = await client.chat.completions.create(
101
+ messages=[
102
+ {
103
+ "content": "string",
104
+ "role": "system",
105
+ }
106
+ ],
107
+ model="llama3-8b-instruct",
96
108
  )
97
- print(versions.agent_versions)
109
+ print(completion.id)
98
110
 
99
111
 
100
112
  asyncio.run(main())
@@ -118,8 +130,8 @@ Then you can enable it by instantiating the client with `http_client=DefaultAioH
118
130
  ```python
119
131
  import os
120
132
  import asyncio
121
- from gradientai import DefaultAioHttpClient
122
- from gradientai import AsyncGradientAI
133
+ from do_gradientai import DefaultAioHttpClient
134
+ from do_gradientai import AsyncGradientAI
123
135
 
124
136
 
125
137
  async def main() -> None:
@@ -127,10 +139,16 @@ async def main() -> None:
127
139
  api_key=os.environ.get("GRADIENTAI_API_KEY"), # This is the default and can be omitted
128
140
  http_client=DefaultAioHttpClient(),
129
141
  ) as client:
130
- versions = await client.agents.versions.list(
131
- uuid="REPLACE_ME",
142
+ completion = await client.chat.completions.create(
143
+ messages=[
144
+ {
145
+ "content": "string",
146
+ "role": "system",
147
+ }
148
+ ],
149
+ model="llama3-8b-instruct",
132
150
  )
133
- print(versions.agent_versions)
151
+ print(completion.id)
134
152
 
135
153
 
136
154
  asyncio.run(main())
@@ -150,28 +168,35 @@ Typed requests and responses provide autocomplete and documentation within your
150
168
  Nested parameters are dictionaries, typed using `TypedDict`, for example:
151
169
 
152
170
  ```python
153
- from gradientai import GradientAI
171
+ from do_gradientai import GradientAI
154
172
 
155
173
  client = GradientAI()
156
174
 
157
- evaluation_test_case = client.regions.evaluation_test_cases.create(
158
- star_metric={},
175
+ completion = client.chat.completions.create(
176
+ messages=[
177
+ {
178
+ "content": "string",
179
+ "role": "system",
180
+ }
181
+ ],
182
+ model="llama3-8b-instruct",
183
+ stream_options={},
159
184
  )
160
- print(evaluation_test_case.star_metric)
185
+ print(completion.stream_options)
161
186
  ```
162
187
 
163
188
  ## Handling errors
164
189
 
165
- When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `gradientai.APIConnectionError` is raised.
190
+ When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `do_gradientai.APIConnectionError` is raised.
166
191
 
167
192
  When the API returns a non-success status code (that is, 4xx or 5xx
168
- response), a subclass of `gradientai.APIStatusError` is raised, containing `status_code` and `response` properties.
193
+ response), a subclass of `do_gradientai.APIStatusError` is raised, containing `status_code` and `response` properties.
169
194
 
170
- All errors inherit from `gradientai.APIError`.
195
+ All errors inherit from `do_gradientai.APIError`.
171
196
 
172
197
  ```python
173
- import gradientai
174
- from gradientai import GradientAI
198
+ import do_gradientai
199
+ from do_gradientai import GradientAI
175
200
 
176
201
  client = GradientAI()
177
202
 
@@ -179,12 +204,12 @@ try:
179
204
  client.agents.versions.list(
180
205
  uuid="REPLACE_ME",
181
206
  )
182
- except gradientai.APIConnectionError as e:
207
+ except do_gradientai.APIConnectionError as e:
183
208
  print("The server could not be reached")
184
209
  print(e.__cause__) # an underlying Exception, likely raised within httpx.
185
- except gradientai.RateLimitError as e:
210
+ except do_gradientai.RateLimitError as e:
186
211
  print("A 429 status code was received; we should back off a bit.")
187
- except gradientai.APIStatusError as e:
212
+ except do_gradientai.APIStatusError as e:
188
213
  print("Another non-200-range status code was received")
189
214
  print(e.status_code)
190
215
  print(e.response)
@@ -212,7 +237,7 @@ Connection errors (for example, due to a network connectivity problem), 408 Requ
212
237
  You can use the `max_retries` option to configure or disable retry settings:
213
238
 
214
239
  ```python
215
- from gradientai import GradientAI
240
+ from do_gradientai import GradientAI
216
241
 
217
242
  # Configure the default for all requests:
218
243
  client = GradientAI(
@@ -232,7 +257,7 @@ By default requests time out after 1 minute. You can configure this with a `time
232
257
  which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
233
258
 
234
259
  ```python
235
- from gradientai import GradientAI
260
+ from do_gradientai import GradientAI
236
261
 
237
262
  # Configure the default for all requests:
238
263
  client = GradientAI(
@@ -286,7 +311,7 @@ if response.my_field is None:
286
311
  The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g.,
287
312
 
288
313
  ```py
289
- from gradientai import GradientAI
314
+ from do_gradientai import GradientAI
290
315
 
291
316
  client = GradientAI()
292
317
  response = client.agents.versions.with_raw_response.list(
@@ -298,9 +323,9 @@ version = response.parse() # get the object that `agents.versions.list()` would
298
323
  print(version.agent_versions)
299
324
  ```
300
325
 
301
- These methods return an [`APIResponse`](https://github.com/digitalocean/gradientai-python/tree/main/src/gradientai/_response.py) object.
326
+ These methods return an [`APIResponse`](https://github.com/digitalocean/gradientai-python/tree/main/src/do_gradientai/_response.py) object.
302
327
 
303
- The async client returns an [`AsyncAPIResponse`](https://github.com/digitalocean/gradientai-python/tree/main/src/gradientai/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
328
+ The async client returns an [`AsyncAPIResponse`](https://github.com/digitalocean/gradientai-python/tree/main/src/do_gradientai/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
304
329
 
305
330
  #### `.with_streaming_response`
306
331
 
@@ -364,7 +389,7 @@ You can directly override the [httpx client](https://www.python-httpx.org/api/#c
364
389
 
365
390
  ```python
366
391
  import httpx
367
- from gradientai import GradientAI, DefaultHttpxClient
392
+ from do_gradientai import GradientAI, DefaultHttpxClient
368
393
 
369
394
  client = GradientAI(
370
395
  # Or use the `GRADIENT_AI_BASE_URL` env var
@@ -387,7 +412,7 @@ client.with_options(http_client=DefaultHttpxClient(...))
387
412
  By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
388
413
 
389
414
  ```py
390
- from gradientai import GradientAI
415
+ from do_gradientai import GradientAI
391
416
 
392
417
  with GradientAI() as client:
393
418
  # make requests here
@@ -415,8 +440,8 @@ If you've upgraded to the latest version but aren't seeing any new features you
415
440
  You can determine the version that is being used at runtime with:
416
441
 
417
442
  ```py
418
- import gradientai
419
- print(gradientai.__version__)
443
+ import do_gradientai
444
+ print(do_gradientai.__version__)
420
445
  ```
421
446
 
422
447
  ## Requirements
@@ -0,0 +1,230 @@
1
+ do_gradientai/__init__.py,sha256=R24O1-Ce_mTNlCgJ2S6VB7kRnN4pYc8HwtAIlMlKooI,2664
2
+ do_gradientai/_base_client.py,sha256=fjCcRPL8jl-rUUkdj_O4PL1WnCpf3nGGO72aRR-_uO4,66722
3
+ do_gradientai/_client.py,sha256=fVSjsof_G2ocWJyWlghrJYbpHg_z8gbJDOISRrsAvUY,26908
4
+ do_gradientai/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
5
+ do_gradientai/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ do_gradientai/_exceptions.py,sha256=o1GvaW36c7_LMj5WasVKUBOpae8tzETBJsfbVphb3Vk,3228
7
+ do_gradientai/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
8
+ do_gradientai/_models.py,sha256=G1vczEodX0vUySeVKbF-mbzlaObNL1oVAYH4c65agRk,29131
9
+ do_gradientai/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
10
+ do_gradientai/_resource.py,sha256=4NZbH2h8dQ-t-DQPida4VANJ_oZJNA7qxV84mwJT8oM,1124
11
+ do_gradientai/_response.py,sha256=oOsyoAWYU_ug63ybv4tGQn88A-GOJbm0_bs8UQ23FYQ,28854
12
+ do_gradientai/_streaming.py,sha256=AWqY4cmmmTplZperXnkkMkeQ11gmpqYbt6TIXByqCv8,10116
13
+ do_gradientai/_types.py,sha256=_pjnefZUYAwkTZme4ycp-WgWvQroYlpEfj9sVpoVt5A,6204
14
+ do_gradientai/_version.py,sha256=uGFTxhAhh7W37qZUTo0c-ms9Ynbg4OGgiTpl7-shmZU,173
15
+ do_gradientai/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ do_gradientai/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
17
+ do_gradientai/_utils/_logs.py,sha256=IJRNHJJ8GCs1UufnhUvwdit6nOqBiKaRevRzVNvRD68,793
18
+ do_gradientai/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
19
+ do_gradientai/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
20
+ do_gradientai/_utils/_resources_proxy.py,sha256=3FbfjLtZnEsIeFZTTROHN7jmHfRX4RbQQaBj3K9hgLk,624
21
+ do_gradientai/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
22
+ do_gradientai/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
23
+ do_gradientai/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
24
+ do_gradientai/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
25
+ do_gradientai/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
26
+ do_gradientai/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
27
+ do_gradientai/resources/__init__.py,sha256=Sej63-wOANl_4F78LH6m2Zx2Qu_-wGPHirIiq_20gwk,3488
28
+ do_gradientai/resources/models.py,sha256=QgmB03fBAdteKRmdTvwLnBcWYzvvaWnU6wtv8ZTE4vw,8597
29
+ do_gradientai/resources/regions.py,sha256=c4KX_qFTu83Svil1CO8CP4XdkEIfNQD3zwU_E6w734A,7172
30
+ do_gradientai/resources/agents/__init__.py,sha256=Rysev19rr3O3IVlHCvKUac0VwMV2xcByK5jpXPiFaVk,5363
31
+ do_gradientai/resources/agents/agents.py,sha256=be3ucbfRa3gVya1iP8xzzUUMs77Y-UiUYSb8WuN3BFE,45161
32
+ do_gradientai/resources/agents/api_keys.py,sha256=1Uh77vhUD0WYUkvX0RD4VcLCOWFG6vL6Lz1EQRDx-t4,24632
33
+ do_gradientai/resources/agents/evaluation_datasets.py,sha256=mhs9lTIIZHfUFgN93jBdJYQZ0iGHQwN_EQlTFk2IiDU,12594
34
+ do_gradientai/resources/agents/evaluation_runs.py,sha256=LDaEWVWUjrPcLMqQ6TQldzoc1a1ydz2rzpAcP1KNpxI,19483
35
+ do_gradientai/resources/agents/evaluation_test_cases.py,sha256=F7nTpn6cKhUkC7wy8DAr4Lm7G9I1cVX6goBaOUR4Pow,27342
36
+ do_gradientai/resources/agents/functions.py,sha256=ZAOelsCnOl8lRuF5RpZDVGMN-E0yTG4Vo3hA-wv5Ldg,18492
37
+ do_gradientai/resources/agents/knowledge_bases.py,sha256=rFIrqsT7nXFJ_Sy4OWpUc8QmBGKSN_PhYpFpWvYHTfg,15191
38
+ do_gradientai/resources/agents/routes.py,sha256=pDoK5hUgluhz5awJ9FR_krF8DIbkRzLX__MTYYQa2bA,21957
39
+ do_gradientai/resources/agents/versions.py,sha256=hmHDaawFkpqoUEYI4Vi5jckH3mamkPKupXO3cZccyKE,11546
40
+ do_gradientai/resources/agents/evaluation_metrics/__init__.py,sha256=qUCsT_vI2TrZrUBPe8h-VMNBE4ytcoe0RXshDctV0g0,1198
41
+ do_gradientai/resources/agents/evaluation_metrics/evaluation_metrics.py,sha256=BueqcWT0lqbElo-lgntkr1s7J0-qi2KqEZV2qzc7dcI,7089
42
+ do_gradientai/resources/agents/evaluation_metrics/workspaces/__init__.py,sha256=Zf3wa7WSVOKyG1x9Fppny38_ewQCbdghxbptqGFVfOM,1054
43
+ do_gradientai/resources/agents/evaluation_metrics/workspaces/agents.py,sha256=AVgDNRVJI07ERA_cRFY8KeUZZjPBLHv6GK2jPhu4Jt0,12553
44
+ do_gradientai/resources/agents/evaluation_metrics/workspaces/workspaces.py,sha256=iSQS3IW5xjOX5EsyJraoS5enwzrBARUhm6Xl1EgiICE,27079
45
+ do_gradientai/resources/chat/__init__.py,sha256=BVAfz9TM3DT5W9f_mt0P9YRxL_MsUxKCWAH6u1iogmA,1041
46
+ do_gradientai/resources/chat/chat.py,sha256=ANOEzzDATXj-onkkdtvVad9O-Dfwe7Uza7yfA_3bU4U,3696
47
+ do_gradientai/resources/chat/completions.py,sha256=KWtB8ro2ClciI4NhbXzgXL-bIE7fcInDdGR7EElA5nU,19108
48
+ do_gradientai/resources/inference/__init__.py,sha256=5Yk9bdOpUJPTero0_CvA-GJvcU5_gVlN1jf5r2GGGPY,1055
49
+ do_gradientai/resources/inference/api_keys.py,sha256=xgWTFTp8IVRkw2nvXnfjBZPOTJyLUDIKlE7fSmb1y2I,22021
50
+ do_gradientai/resources/inference/inference.py,sha256=jBimuBx3kKsuwC3pgy-PPrWg1TryO_a108CC_xLS2-Y,3771
51
+ do_gradientai/resources/knowledge_bases/__init__.py,sha256=lTQb-5YWsLKoXrPaxO6opzsGXpXZybuowe1kgFGDTcA,1702
52
+ do_gradientai/resources/knowledge_bases/data_sources.py,sha256=uSX40BBVrjnEpa3DATR2XH76gmJANG-oFnMe5N8MTis,17889
53
+ do_gradientai/resources/knowledge_bases/indexing_jobs.py,sha256=01xbt4UNTla51cUD5tLeUIT3cH87GoP3VKK-Mv-rEaY,23185
54
+ do_gradientai/resources/knowledge_bases/knowledge_bases.py,sha256=ZEIAfLoIlfgzY19xyinKZRlp-ZNjfbr8X3nDbtKsfP0,29461
55
+ do_gradientai/resources/model_providers/__init__.py,sha256=JuYymuWt40b6uJfYZpKGT9Ym1kmhO7Et8rnte6YNGJE,1596
56
+ do_gradientai/resources/model_providers/model_providers.py,sha256=XYhPTpba1nMnVNd2pRajekeQEvG2OPCVuxOkkRFIc2E,5136
57
+ do_gradientai/resources/model_providers/anthropic/__init__.py,sha256=07ZXCxoPjF79SZEYuffvDn-WcVsSjhNZm7HBMb_6pYI,1015
58
+ do_gradientai/resources/model_providers/anthropic/anthropic.py,sha256=F056ue6d1WI8amKsarHh-Sfe_E3DRgxlEZOUL5S5JkU,3675
59
+ do_gradientai/resources/model_providers/anthropic/keys.py,sha256=WyRqOn51jfb3Iuu8mlhghBuX1uYyd0rga3-3owc3NLA,26495
60
+ do_gradientai/resources/model_providers/openai/__init__.py,sha256=77LFIe5ko8imMJR7pkAn3E9r4rzw7j2fF9ZSpBaLZyo,976
61
+ do_gradientai/resources/model_providers/openai/keys.py,sha256=HAwxE3WVrBLPZnn799iHL9LRzMWTCdldZ5-PNeWhQrs,26388
62
+ do_gradientai/resources/model_providers/openai/openai.py,sha256=MfV9fB4EJVa6RYIfVS2QJW_BSkShLKCscDuxDV8wCBE,3567
63
+ do_gradientai/types/__init__.py,sha256=95EVUFJ_xrIP7K7ewBh2MeDPRrmhwGedv0rQ2GkTkv4,2784
64
+ do_gradientai/types/agent_create_params.py,sha256=nvLpM8V64762cwAn7ggyvbSzQ0mgjwOopOUZ_bVL1-I,912
65
+ do_gradientai/types/agent_create_response.py,sha256=frBMp76xLUzznVzWP70fb49drn3r3-2l4kX1xpQrNmg,332
66
+ do_gradientai/types/agent_delete_response.py,sha256=_1ciIOuRDvbeuaBvbCOpLV7QF6TufMX5MXNsBZv6H4s,332
67
+ do_gradientai/types/agent_list_params.py,sha256=RC6oo07xNp6vfHRLvwS5wRrM6yjpEUf7Q0RNyc3lUQM,396
68
+ do_gradientai/types/agent_list_response.py,sha256=WrK6dBVB0D36kaMqxG-UO6Xh9T0eyjvkgrLr6Ndg5AQ,4873
69
+ do_gradientai/types/agent_retrieve_response.py,sha256=y7F3MascI1aBoVkPORghe_CQHstUXBVF4oMJcjDByMk,336
70
+ do_gradientai/types/agent_update_params.py,sha256=aIuFbZmb0fBXvGFnjL4nWobXgwfVUe1IEiMqYzYPAJ8,1771
71
+ do_gradientai/types/agent_update_response.py,sha256=tLXl32VqNHwi8oW9A9jRKMFcGjXR1edflnr7ermyspQ,332
72
+ do_gradientai/types/agent_update_status_params.py,sha256=rK-txkmPGkR4cChMVJ0_t5fy3XZWBPlTP2eEykPST0w,467
73
+ do_gradientai/types/agent_update_status_response.py,sha256=pbl3IO_hNYlVh3cFmXQccUZKSJe97pC-LFS-QZ5Ab2U,344
74
+ do_gradientai/types/api_agent.py,sha256=dUGm4_bD_R7OQ_fSvQWZU6fSUVIMhFUAfnzUIfmZ2W0,6017
75
+ do_gradientai/types/api_agent_api_key_info.py,sha256=fXqCbC6UVQg3X15WhGFoDn1g0x6IJ9ec5uK3siAnmE0,476
76
+ do_gradientai/types/api_agent_model.py,sha256=GHX8w9IBBOsYnIFv8E0SF_vOWvETAG8kkrYqvz8S59g,1435
77
+ do_gradientai/types/api_agreement.py,sha256=hMeoGBF2HySVHDm4dFTyamq19BexwhezL6Y1e_R1uFk,342
78
+ do_gradientai/types/api_anthropic_api_key_info.py,sha256=Ii_1zvwZselJjf9XwUGDFWq-fT7VlgC_l-cfXQfpc-s,489
79
+ do_gradientai/types/api_deployment_visibility.py,sha256=WT2fj4lgBorEOB9EirE50Xn0-J56a5v1zXuNpKCrzf0,340
80
+ do_gradientai/types/api_knowledge_base.py,sha256=LoZAFXubzOBaV3edIYCr8-N7cwwf4BEyzKudw1hQjZQ,839
81
+ do_gradientai/types/api_model_version.py,sha256=heTuejUUfP0GVFThpYEhwPqBc331hrMBGF_8Uq2qcME,313
82
+ do_gradientai/types/api_openai_api_key_info.py,sha256=_vfDX_fAIwHB1BXqNk7dUeA7meSU5GVTLbdDblSK5rY,582
83
+ do_gradientai/types/api_retrieval_method.py,sha256=hbD5272cHgAqDCwPv7tqIUlqNnDAOIjkwDUTciglitE,377
84
+ do_gradientai/types/api_workspace.py,sha256=rR9yxetW9xzia9DGFWqH36wPfOIv1aOomB0ScxTDWxo,815
85
+ do_gradientai/types/knowledge_base_create_params.py,sha256=qr9msSag-RTna-wcjDeGJ4xMi7vhnXbtGOub4b3nhME,2076
86
+ do_gradientai/types/knowledge_base_create_response.py,sha256=bpVpd6X2_OfBZMQPdvkFXQb6YfHTPsXw3F1RpX4Vaso,342
87
+ do_gradientai/types/knowledge_base_delete_response.py,sha256=Qwzyk1akgmNrjfYmtm53onng5UtFSXYxLzHKQNSuW6A,270
88
+ do_gradientai/types/knowledge_base_list_params.py,sha256=ix0uGYXNXrRhZNRFtun3sLhE6Hd_yoSlgzvGyPqT0XY,341
89
+ do_gradientai/types/knowledge_base_list_response.py,sha256=z8mUZAd328EEvs_3YnHZVcbT6lUsHEVzRiFPHIW2Rpw,501
90
+ do_gradientai/types/knowledge_base_retrieve_response.py,sha256=zwsKaL1KEfgFbglBriT4XorDz6PUwmvgkIrnD0mzWpI,758
91
+ do_gradientai/types/knowledge_base_update_params.py,sha256=8TRWSRY6c1tRTKPwBNkjwdw_1FbJ1Jmy7vX3covlj64,681
92
+ do_gradientai/types/knowledge_base_update_response.py,sha256=hNxnfwd-eyRIAuy7KxcQfG-dEK3TZITMYmAv7VH7AyE,342
93
+ do_gradientai/types/model.py,sha256=DMw8KwQx8B6S6sAI038D0xdzkmYdY5-r0oMhCUG4l6w,532
94
+ do_gradientai/types/model_list_response.py,sha256=fUKK6I7am-Sx4cnC7nC3mHEhOKZXbkTRHLzxiApK3pA,329
95
+ do_gradientai/types/region_list_params.py,sha256=_oeMCCqhoSpB4rb3BvQw97w-Zo6eblgye3iuIoTjMHs,418
96
+ do_gradientai/types/region_list_response.py,sha256=JyPfcqxMTafktlkuq5S2Vog77rMQ1RJ6_3cCa-gi0yA,515
97
+ do_gradientai/types/agents/__init__.py,sha256=h0Uk85a9xEa8HmelfaLVLHmB82wRmIZxj4eVXO4GR28,5117
98
+ do_gradientai/types/agents/api_evaluation_metric.py,sha256=T0CTm5p9uHPQkjbBN8UkD9w44B6sQr_otOxVP91csW0,673
99
+ do_gradientai/types/agents/api_evaluation_metric_result.py,sha256=we8AdZV1pi3ivzJDkT3kx3z8AkqQ6MeRdHiUwx_IOPs,450
100
+ do_gradientai/types/agents/api_evaluation_prompt.py,sha256=anx9cyrOsVh22jhKPIa7n_nzZu9_m3_C64b5RgefDt0,1218
101
+ do_gradientai/types/agents/api_evaluation_run.py,sha256=iGxojNe5Gsb6oIjsZHYUTtoC1kRmJSTWySL_YKfGbHY,1862
102
+ do_gradientai/types/agents/api_evaluation_test_case.py,sha256=tT2OZLJMSC3D5ZrfQff7smvYbF612EOKiA_ID3tHxkQ,1110
103
+ do_gradientai/types/agents/api_key_create_params.py,sha256=nbdADmTDS1_MbQZYsGTPkmpHvWQV7s6R815uSBJO3KA,381
104
+ do_gradientai/types/agents/api_key_create_response.py,sha256=3GURkoTxf4JQ3vegYIN5Ph68jz82k2UG6yKbLIN8Xqk,336
105
+ do_gradientai/types/agents/api_key_delete_response.py,sha256=jDUrMgujEeW-Y-KqvoG28IGZSgPOOZ2XjuVIIo2lVrU,336
106
+ do_gradientai/types/agents/api_key_list_params.py,sha256=2bqdW2M_aw0ae7qY-zDgnxa96gun0V9Wzv2hwISss-8,327
107
+ do_gradientai/types/agents/api_key_list_response.py,sha256=RyTrL6RU6AaK6rBJ9WDWOfy8B8w3j82d4ulle9gb238,497
108
+ do_gradientai/types/agents/api_key_regenerate_response.py,sha256=TML0mOW1vJ7A1E49xJsVfJSs4BTcNmhsKMNPv0GeGF8,344
109
+ do_gradientai/types/agents/api_key_update_params.py,sha256=dK14YjCCy8GThEOBykQhgAvCuYPAHxFsf0nHIrmO534,547
110
+ do_gradientai/types/agents/api_key_update_response.py,sha256=t8QvQ1HJT2DadyMUjCpmthK8OpqAUwo-7SKmqcs1RSI,336
111
+ do_gradientai/types/agents/api_link_knowledge_base_output.py,sha256=7CppA-k04phV0oaqBiZssJKTfWHyDybJrNGY56NBT5k,348
112
+ do_gradientai/types/agents/api_star_metric.py,sha256=zoIdToH1tDzi1rXSev8ys-VFDHOiL-PLDVk4NgM6jF8,444
113
+ do_gradientai/types/agents/api_star_metric_param.py,sha256=21SYQ7J8rgYtw8JIDgPb2d_Xh1plzBjVPPgWuwqZYwY,430
114
+ do_gradientai/types/agents/evaluation_dataset_create_file_upload_presigned_urls_params.py,sha256=5VmGf4WuVMmIhjFbJcVRoyOTXq-Z484Z0utiza2b4k8,555
115
+ do_gradientai/types/agents/evaluation_dataset_create_file_upload_presigned_urls_response.py,sha256=D71yt5RvwxzY0M33uTPGcxlC8xhhf2pske-0-Uur8x8,964
116
+ do_gradientai/types/agents/evaluation_dataset_create_params.py,sha256=_Ab7rv6id0zOWDsZynBVZH9T_OL35l39HY-hMROynp8,546
117
+ do_gradientai/types/agents/evaluation_dataset_create_response.py,sha256=UJGh8WSeleKopfjG9MAy5uCW-l0L8vtDYt_rPm-yiTE,333
118
+ do_gradientai/types/agents/evaluation_metric_list_response.py,sha256=iuM4v76PGX5o_HSmc2-SlRYvxqIWPtfIJk0GzZZLUBE,359
119
+ do_gradientai/types/agents/evaluation_run_create_params.py,sha256=vabJd9XM_ctfmzXMSyONKlf1e_19PGBrngFn9ZeTu_Q,441
120
+ do_gradientai/types/agents/evaluation_run_create_response.py,sha256=K9rMKeMZ3w8UxktDCL_lqT9VzMsWquENtJyhcujbnCI,299
121
+ do_gradientai/types/agents/evaluation_run_list_results_response.py,sha256=xULgLCkz7RkZEhGvHGBWipFOPj4TonW70Mad87_-i_k,507
122
+ do_gradientai/types/agents/evaluation_run_retrieve_response.py,sha256=a_iqhS8uvQr3QLNgStdDkdfGsVEhMcMbhhlBV57EsPc,347
123
+ do_gradientai/types/agents/evaluation_run_retrieve_results_response.py,sha256=GQoxrgyX_JgppfNc4QUh8bz5qxxH3m1lxOqqcQLpnrk,362
124
+ do_gradientai/types/agents/evaluation_test_case_create_params.py,sha256=MDzlgUtT_TvI3AEBi10oqqqh46GY7Hzbhzks-9NWzL8,721
125
+ do_gradientai/types/agents/evaluation_test_case_create_response.py,sha256=6o_tJW7oECyIFtOl9C96eaHoMF_GwIGuwK772BMkcNY,319
126
+ do_gradientai/types/agents/evaluation_test_case_list_evaluation_runs_params.py,sha256=YpIdWEwwEtBStTZl6fuD60fT7xmMXk8cj2yuWTQz-NY,371
127
+ do_gradientai/types/agents/evaluation_test_case_list_evaluation_runs_response.py,sha256=QKriPoRmv3AW0RMc5tVYxQOGF1rrQqMoM5oJffHUXnk,425
128
+ do_gradientai/types/agents/evaluation_test_case_list_response.py,sha256=8BqMiIhwizpSFles_MpvcDWkYqzEFfFwY6icGzBkSfY,384
129
+ do_gradientai/types/agents/evaluation_test_case_retrieve_params.py,sha256=B5a7G0qN8CiSEjAUrv3h_Ys3c-nv1rhM8YA470FJtF4,351
130
+ do_gradientai/types/agents/evaluation_test_case_retrieve_response.py,sha256=zr5U956-FgFoPAUSSEvOI8CsyBFDdGG-dpC5rIfxZ60,379
131
+ do_gradientai/types/agents/evaluation_test_case_update_params.py,sha256=S0FRlU-b1dRQlDKJFthcAmIGmjb4IwAy4zL9uQ0XKqM,809
132
+ do_gradientai/types/agents/evaluation_test_case_update_response.py,sha256=SBsxKPG4_0T6LoL7rKj9kp0J4sHqtamRszprgD064h4,369
133
+ do_gradientai/types/agents/function_create_params.py,sha256=AagCrtptfN15XA0WdFWvzcDTsVqjH_ztjvW3yZXxIQU,514
134
+ do_gradientai/types/agents/function_create_response.py,sha256=_HlKLn7L6NtRQJEQLTYAZRk1XLq8AmrspjxJ7NO3FOI,340
135
+ do_gradientai/types/agents/function_delete_response.py,sha256=mXVfs4hsYbiRijPwfEAz3xhmpsGrJbz58YF-BLt-NrY,340
136
+ do_gradientai/types/agents/function_update_params.py,sha256=rTc1J3VwUikAk3WR3lbWe_dq8QebS39C1LKm8kkXYs0,682
137
+ do_gradientai/types/agents/function_update_response.py,sha256=_u_a9cf7DSx6wplCKx7ZkzM4-TBWNhIXgtVZY83gCWQ,340
138
+ do_gradientai/types/agents/knowledge_base_detach_response.py,sha256=dCFJvnfuz6otqLZ9Lae11S3ouSSM9xkYU9UWenaKPjg,350
139
+ do_gradientai/types/agents/route_add_params.py,sha256=00mdO2llJA2tFg2BKGiy43EITIs2seLfA3uMwFB8Dqo,651
140
+ do_gradientai/types/agents/route_add_response.py,sha256=TT7zCfUfvzlct-wbGbgFygjv_vZAcOW0xpZoJCY4lbQ,358
141
+ do_gradientai/types/agents/route_delete_response.py,sha256=SFhq1l8DKUJK6mUwwk1-DTqwZsYITsGDjkK6HXnZPcU,312
142
+ do_gradientai/types/agents/route_update_params.py,sha256=e8fWgOq8mMGi20ng-XlqtbAusKTQOd5TzLsNUWa_V5w,672
143
+ do_gradientai/types/agents/route_update_response.py,sha256=zDFovVKBqmPTtiDbTXuqHokEGC8uKaeDZjcnrW3Y9nI,433
144
+ do_gradientai/types/agents/route_view_response.py,sha256=ShDsY0nJX8ECbY9Eu1zWcYMpERwzEeRjU_7Tb-IKFbY,345
145
+ do_gradientai/types/agents/version_list_params.py,sha256=0_3DhUbFDRyjUnn2G4saFOvuotRXI5EFZ4n4s6qUF8o,329
146
+ do_gradientai/types/agents/version_list_response.py,sha256=Y0Y8CSPUPVHKRA3zTRRfQ8gC2aFyBacSCaGz-D5k8nk,2725
147
+ do_gradientai/types/agents/version_update_params.py,sha256=j9tOda5wXmSOHsmcxQONo2mM-hEtrYi5-19HfGU_XnI,379
148
+ do_gradientai/types/agents/version_update_response.py,sha256=nspPIkxQskT82tcW0JyG7bBVlXq_KU6CZzodTd9jfkQ,709
149
+ do_gradientai/types/agents/evaluation_metrics/__init__.py,sha256=XWH_utxMx-JwArRpr-rHQfmoxQRGK6GciKOllbkqg40,894
150
+ do_gradientai/types/agents/evaluation_metrics/workspace_create_params.py,sha256=LrccBST52BUMlIidiba8K_7vU9HLZW8TTQ2E227UF8Y,343
151
+ do_gradientai/types/agents/evaluation_metrics/workspace_create_response.py,sha256=jCVs2l3APGqA7gTetoepZS0Fkf7XJdK4e9pspgI3zpo,360
152
+ do_gradientai/types/agents/evaluation_metrics/workspace_delete_response.py,sha256=Al8qWJXknJCeDm30oPGONeSD1TONg555gKu5fkkEU28,274
153
+ do_gradientai/types/agents/evaluation_metrics/workspace_list_evaluation_test_cases_response.py,sha256=PSQLxyGQqgePycIL8I5OywCe6w5jcEiDu9gnCtCJefw,406
154
+ do_gradientai/types/agents/evaluation_metrics/workspace_list_response.py,sha256=UPaO8jS48UYrKwszGwQRJ2lBJ4OALtHDQTseNHXuUf8,369
155
+ do_gradientai/types/agents/evaluation_metrics/workspace_retrieve_response.py,sha256=k7ORQIxXYMsTyLEmkJN1PAz9vXFH139Sq0jBRLv-S5M,364
156
+ do_gradientai/types/agents/evaluation_metrics/workspace_update_params.py,sha256=rq7mZeZUJ2BDQA6L2zeMB4nWvA5U_EkNDjvKiVBPY6M,444
157
+ do_gradientai/types/agents/evaluation_metrics/workspace_update_response.py,sha256=sPvuXY7fxAl0hk2d4p8eIGl9iAciqu2HzmIc7c4sDxk,360
158
+ do_gradientai/types/agents/evaluation_metrics/workspaces/__init__.py,sha256=JmVfrkVAdpoy5Rcyw8n4AVVcGNAfpLHWGJjFhg7CcQU,399
159
+ do_gradientai/types/agents/evaluation_metrics/workspaces/agent_list_params.py,sha256=0zqP67__kS_8qDZz6Aud_CePzVUFK4m4p5Ch4m5HcXs,563
160
+ do_gradientai/types/agents/evaluation_metrics/workspaces/agent_list_response.py,sha256=W4O5v1LoWh2hQJTpUm5SfQCYcv6Q9Yz1Id5Pm1sPQNA,503
161
+ do_gradientai/types/agents/evaluation_metrics/workspaces/agent_move_params.py,sha256=4INiLEvgT9UDqFbrGwp3nuWOzFhwv7sX_YCr1Um1RaQ,422
162
+ do_gradientai/types/agents/evaluation_metrics/workspaces/agent_move_response.py,sha256=j2uoTmFwnLNU7kGI5LZdPpMUxWmUk-HdQIVVDOwSy4Y,350
163
+ do_gradientai/types/chat/__init__.py,sha256=zdTzozOxKOf2jRrwHBHU2Rmtz4nOTwQkYQl2ZbLJZyg,403
164
+ do_gradientai/types/chat/chat_completion_token_logprob.py,sha256=6-ipUFfsXMf5L7FDFi127NaVkDtmEooVgGBF6Ts965A,1769
165
+ do_gradientai/types/chat/completion_create_params.py,sha256=F4Dcrt5aYC_GEWUSN2OA3Zm5ImevZ7tFuTxBH7RyooM,6635
166
+ do_gradientai/types/chat/completion_create_response.py,sha256=5nCsU9BeXjB5HmkBNemRZHyFwegvKouSBHjzxvb4EFM,2405
167
+ do_gradientai/types/inference/__init__.py,sha256=4Dt7-03NeP9ehdHLkLsZMiL_YLQwZsl92D0mMoDQ5g0,857
168
+ do_gradientai/types/inference/api_key_create_params.py,sha256=MOy5Bdr1wNBqCvqzyZ0FLfFY2a97q6eXCzgCR1wcLAE,263
169
+ do_gradientai/types/inference/api_key_create_response.py,sha256=HjTGC3rpPKqYPE-D6Z9jIE8fqrmo2hTTGBrt00cMwIU,335
170
+ do_gradientai/types/inference/api_key_delete_response.py,sha256=18JbFhk0T0qsNM8PosxQDaBwy-fzKLclG_cAbk8WqS4,335
171
+ do_gradientai/types/inference/api_key_list_params.py,sha256=2bqdW2M_aw0ae7qY-zDgnxa96gun0V9Wzv2hwISss-8,327
172
+ do_gradientai/types/inference/api_key_list_response.py,sha256=EYzeo66RGZbXAjoMA0oihTYyrF0vh8e4-ISeyARbipA,496
173
+ do_gradientai/types/inference/api_key_update_params.py,sha256=Jeq5mm_HXgkh77SjYpct-vdc1UZBWAo9fUtoZSAxCpQ,385
174
+ do_gradientai/types/inference/api_key_update_regenerate_response.py,sha256=EdejYl_Kuu3r0O-Zzu8sO7P32lQSzsVpJu-m7j1TkpI,355
175
+ do_gradientai/types/inference/api_key_update_response.py,sha256=x77TF5sMy-k9wVEBP0h1bkp2bi1nX1oP4SpzetnF-Rc,335
176
+ do_gradientai/types/inference/api_model_api_key_info.py,sha256=P8vLRvhdCqqkD6Jbzfa6cijmCRMeJGHw70nMEvcOKCU,477
177
+ do_gradientai/types/knowledge_bases/__init__.py,sha256=AOvaWdzrac-_M4coPjLsObAfh1YU8oWKBSdeK4Ml80s,2305
178
+ do_gradientai/types/knowledge_bases/api_file_upload_data_source.py,sha256=pwuooMktHMl3-c9_XAqisMW2euFXE_WzLW2MrH4cphY,363
179
+ do_gradientai/types/knowledge_bases/api_file_upload_data_source_param.py,sha256=BYJsp891zGJL9NxKAQA9wj7ZI5oW8O7ktpGQTf78-Z4,349
180
+ do_gradientai/types/knowledge_bases/api_indexed_data_source.py,sha256=bC9O35k9Bw9eZ5vHSJDnVdMkbZkHt61fjy8ROcNauTQ,1194
181
+ do_gradientai/types/knowledge_bases/api_indexing_job.py,sha256=IRY0OUaRY8iWPIX3MvrCw3nR8HMOmWYXwNGWbV2Ctrs,1405
182
+ do_gradientai/types/knowledge_bases/api_knowledge_base_data_source.py,sha256=dd5m7pefZR_x2yiPXWqln2lce9yjAoP1Gsh3uF3HdE0,1390
183
+ do_gradientai/types/knowledge_bases/api_spaces_data_source.py,sha256=hikZqBGk2a6deuYtL5o0x2a0ShTk_-r6Mrlocw04g54,333
184
+ do_gradientai/types/knowledge_bases/api_spaces_data_source_param.py,sha256=fHHNZiL9k5JX8NLFJSrrh11S6mHE6l1Tv_GOs5HmSvw,319
185
+ do_gradientai/types/knowledge_bases/api_web_crawler_data_source.py,sha256=TwP9_tIh7lZyYBYA8vcUBsJ8t1njlqvRnSkbe5kBFx4,927
186
+ do_gradientai/types/knowledge_bases/api_web_crawler_data_source_param.py,sha256=5RNeniApD7_5LobZWFhQ3iZ2RaLa2Lj4hpqXvIPAfco,884
187
+ do_gradientai/types/knowledge_bases/aws_data_source_param.py,sha256=MXImPMnxy2B2LEof2CSGH2BRIs77HrN6lYgwdYHFx7k,345
188
+ do_gradientai/types/knowledge_bases/data_source_create_params.py,sha256=qXoTkAJ3Mta5Lx3q8-Fd5EXwsQXhGmOw1NH2PjQJ-pY,739
189
+ do_gradientai/types/knowledge_bases/data_source_create_response.py,sha256=Pr6z8AvrNNvgABGB9cL_-gdwBYQn8z3OYDrramZeWIY,381
190
+ do_gradientai/types/knowledge_bases/data_source_delete_response.py,sha256=9W0vPF3zE6aoO4pKKY1FWNFhvyBSJ4UJ0bq-jIf5Rug,324
191
+ do_gradientai/types/knowledge_bases/data_source_list_params.py,sha256=LE15JRXzJdFffHga_aS1JUnGc-gDdTbSfdV-hyywVTw,335
192
+ do_gradientai/types/knowledge_bases/data_source_list_response.py,sha256=gtJOM-0MNFnUjHQ397vCA7TseSrPM2-YaGSWQznubV4,542
193
+ do_gradientai/types/knowledge_bases/indexing_job_create_params.py,sha256=OhQcaCShz4GB3N27erLsRCDLJOXJMSTPnAL8jN099hg,346
194
+ do_gradientai/types/knowledge_bases/indexing_job_create_response.py,sha256=Bm7HG0n745DGz5dLsma4Lm_CwIOIBA1KtrmcUzYx7K0,322
195
+ do_gradientai/types/knowledge_bases/indexing_job_list_params.py,sha256=6bECitbPQGnm-WdSIULUcX47CeEVa5wqKWfYhWZC4Wo,337
196
+ do_gradientai/types/knowledge_bases/indexing_job_list_response.py,sha256=ga_tcBAXhKNaUPcL3pEkI4IXLRs3bV55LHja3RlNAP8,483
197
+ do_gradientai/types/knowledge_bases/indexing_job_retrieve_data_sources_response.py,sha256=tpac0_oX9Tqjxy7wgLIWMk0d74f-konAVHRr5yNKu9g,396
198
+ do_gradientai/types/knowledge_bases/indexing_job_retrieve_response.py,sha256=ubGW4WrVlUXw5oemxsFiBlFCfD-xEs8SU2iszY6WA1U,326
199
+ do_gradientai/types/knowledge_bases/indexing_job_update_cancel_params.py,sha256=g0q6nlUdyOIz8ZFygW5IqFKP7Y7-BGkm9ft-2u7WT2U,427
200
+ do_gradientai/types/knowledge_bases/indexing_job_update_cancel_response.py,sha256=2YC31-iwH3Fep1MQRgsVCI8E_Wy73NB-bjnFbIphLO4,334
201
+ do_gradientai/types/model_providers/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
202
+ do_gradientai/types/model_providers/anthropic/__init__.py,sha256=Rc-P39qouKDD0KcLrR0xXtDercCG-01WvVGfITLxH3w,839
203
+ do_gradientai/types/model_providers/anthropic/key_create_params.py,sha256=Wpo2FgKsoMDwT0DrN9QiFdxGL93QUV7PsyZjU_dZwVo,275
204
+ do_gradientai/types/model_providers/anthropic/key_create_response.py,sha256=QMr7WcgcSAU4-X3OBzZ_x8z37UQKN4gVNctFjFx35ZU,344
205
+ do_gradientai/types/model_providers/anthropic/key_delete_response.py,sha256=woDhj5cV-I-bl-8SahR4yIhLzXXOl4YQjuZq9JhQXow,344
206
+ do_gradientai/types/model_providers/anthropic/key_list_agents_params.py,sha256=ZOwFGGQpBm0H-jceINE2yFj5SQsRi3eAYJldIIhdZG0,333
207
+ do_gradientai/types/model_providers/anthropic/key_list_agents_response.py,sha256=GTvbpdAduT4tQ8s8BHAzL1oEK4DtI04IDX2maEIKrWo,507
208
+ do_gradientai/types/model_providers/anthropic/key_list_params.py,sha256=NIUqtMZ4wCEmsf4pSVYf52rlKg4j98VeXHdsBHvJkb0,321
209
+ do_gradientai/types/model_providers/anthropic/key_list_response.py,sha256=PEByTAy9lhKEUVmduGalNdtHP5M7MMCiC3iJFBhaldg,507
210
+ do_gradientai/types/model_providers/anthropic/key_retrieve_response.py,sha256=kwlHSeYuNimwsfAc11EYYiONL1QEuj-nRSyYbenCdMA,348
211
+ do_gradientai/types/model_providers/anthropic/key_update_params.py,sha256=Y3soYvQEpYbnofgxQoLdeZFolk-NcUSnlUg8BQ2BliU,398
212
+ do_gradientai/types/model_providers/anthropic/key_update_response.py,sha256=RsO2ImbQNdJgGNDUPwnOMrE2Bq_pw4e8f_DBB01ZsPw,344
213
+ do_gradientai/types/model_providers/openai/__init__.py,sha256=vTB3oppxWE1E9S4c2XzsDERHaaRUkUKGuWUsgp2PY5Y,863
214
+ do_gradientai/types/model_providers/openai/key_create_params.py,sha256=Wpo2FgKsoMDwT0DrN9QiFdxGL93QUV7PsyZjU_dZwVo,275
215
+ do_gradientai/types/model_providers/openai/key_create_response.py,sha256=D8eRhllf50P3LJHMDzMT2YWuymUXtV-2KgfAZdRHM08,335
216
+ do_gradientai/types/model_providers/openai/key_delete_response.py,sha256=AOF_SSCaagPjxP9mEHEXuTX2G8mBYyyaVwviNC0PfTg,335
217
+ do_gradientai/types/model_providers/openai/key_list_params.py,sha256=NIUqtMZ4wCEmsf4pSVYf52rlKg4j98VeXHdsBHvJkb0,321
218
+ do_gradientai/types/model_providers/openai/key_list_response.py,sha256=Sqlw5FdENZyKcIUcsnYzJVlJOF5UKl2ayJW3aUuRzvw,498
219
+ do_gradientai/types/model_providers/openai/key_retrieve_agents_params.py,sha256=iXx-1E5feJfrtjuNIXV0SsCTMB_wA88edXunaMd0sEY,341
220
+ do_gradientai/types/model_providers/openai/key_retrieve_agents_response.py,sha256=IdkDMHJFXQgoml9KRLISoWCBEJtNelFXKR0rTto826A,515
221
+ do_gradientai/types/model_providers/openai/key_retrieve_response.py,sha256=96ZitCFjLlTzk8UhB2Q1ekmLYF2fer_9TGZ1kzhT2Ck,339
222
+ do_gradientai/types/model_providers/openai/key_update_params.py,sha256=Y3soYvQEpYbnofgxQoLdeZFolk-NcUSnlUg8BQ2BliU,398
223
+ do_gradientai/types/model_providers/openai/key_update_response.py,sha256=918Y7yxffOe0DmFci54fq0-zTO_1Lc6jruSok8WsBX4,335
224
+ do_gradientai/types/shared/__init__.py,sha256=S9SLB1APW-dDg_jhLB7iJbyycEkZGof0AJi0ejhNGWI,172
225
+ do_gradientai/types/shared/api_links.py,sha256=Iq5iQwOkRYuwLcuDLk54dUfrq0f2ZVEOXSpF744gYgA,403
226
+ do_gradientai/types/shared/api_meta.py,sha256=-KyinzQqM5GSjD7E5xm7A4UALXAvLOyVNR1SYVOUFJM,297
227
+ c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a5.dist-info/METADATA,sha256=8ukNSzsvUipCWbUh4YzMUwOck-KoBhpiTM3v4pvtWj8,15087
228
+ c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a5.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
229
+ c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a5.dist-info/licenses/LICENSE,sha256=AzxEF8mEks6hu5V_87CXF8gLdL875WeO8FmQtEZTFok,11341
230
+ c63a5cfe_b235_4fbe_8bbb_82a9e02a482a_python-0.1.0a5.dist-info/RECORD,,
@@ -89,12 +89,12 @@ _setup_logging()
89
89
  # Update the __module__ attribute for exported symbols so that
90
90
  # error messages point to this module instead of the module
91
91
  # it was originally defined in, e.g.
92
- # gradientai._exceptions.NotFoundError -> gradientai.NotFoundError
92
+ # do_gradientai._exceptions.NotFoundError -> do_gradientai.NotFoundError
93
93
  __locals = locals()
94
94
  for __name in __all__:
95
95
  if not __name.startswith("__"):
96
96
  try:
97
- __locals[__name].__module__ = "gradientai"
97
+ __locals[__name].__module__ = "do_gradientai"
98
98
  except (TypeError, AttributeError):
99
99
  # Some of our exported symbols are builtins which we can't set attributes for.
100
100
  pass
@@ -389,7 +389,7 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
389
389
 
390
390
  if max_retries is None: # pyright: ignore[reportUnnecessaryComparison]
391
391
  raise TypeError(
392
- "max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `gradientai.DEFAULT_MAX_RETRIES`"
392
+ "max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `do_gradientai.DEFAULT_MAX_RETRIES`"
393
393
  )
394
394
 
395
395
  def _enforce_trailing_slash(self, url: URL) -> URL: