nimble_python 0.22.0__tar.gz → 0.24.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 (229) hide show
  1. nimble_python-0.24.0/.release-please-manifest.json +3 -0
  2. {nimble_python-0.22.0 → nimble_python-0.24.0}/CHANGELOG.md +25 -0
  3. {nimble_python-0.22.0 → nimble_python-0.24.0}/PKG-INFO +1 -1
  4. {nimble_python-0.22.0 → nimble_python-0.24.0}/api.md +13 -2
  5. {nimble_python-0.22.0 → nimble_python-0.24.0}/pyproject.toml +1 -1
  6. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_client.py +38 -9
  7. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_version.py +1 -1
  8. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/__init__.py +14 -0
  9. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/agent.py +84 -39
  10. nimble_python-0.24.0/src/nimble_python/resources/fast_serp.py +293 -0
  11. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/jobs.py +122 -53
  12. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/runs/artifacts.py +80 -50
  13. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/runs/runs.py +55 -24
  14. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/task_agent/runs.py +117 -142
  15. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/task_agent/task_agent.py +241 -96
  16. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/task_agent/templates.py +41 -29
  17. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/__init__.py +2 -0
  18. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_generate_params.py +8 -8
  19. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/client_extract_async_params.py +2 -0
  20. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/client_extract_batch_params.py +4 -0
  21. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/client_extract_params.py +2 -0
  22. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/client_search_params.py +1 -4
  23. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_run_params.py +2 -0
  24. nimble_python-0.24.0/src/nimble_python/types/fast_serp_run_params.py +64 -0
  25. nimble_python-0.24.0/src/nimble_python/types/fast_serp_run_response.py +339 -0
  26. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/job_create_params.py +1 -0
  27. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/job_create_response.py +1 -0
  28. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/job_get_response.py +1 -0
  29. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/job_list_response.py +6 -5
  30. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/job_update_params.py +1 -0
  31. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/job_update_response.py +1 -0
  32. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/run_list_response.py +5 -5
  33. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/artifact_get_response.py +2 -7
  34. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/artifact_list_response.py +2 -7
  35. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/run_get_response.py +15 -8
  36. nimble_python-0.24.0/src/nimble_python/types/task_agent/run_get_result_response.py +409 -0
  37. nimble_python-0.24.0/src/nimble_python/types/task_agent/run_list_response.py +68 -0
  38. nimble_python-0.24.0/src/nimble_python/types/task_agent/template_get_response.py +89 -0
  39. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/template_list_params.py +0 -5
  40. nimble_python-0.24.0/src/nimble_python/types/task_agent/template_list_response.py +103 -0
  41. nimble_python-0.24.0/src/nimble_python/types/task_agent_create_params.py +92 -0
  42. nimble_python-0.24.0/src/nimble_python/types/task_agent_create_response.py +122 -0
  43. nimble_python-0.24.0/src/nimble_python/types/task_agent_get_response.py +122 -0
  44. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent_list_params.py +1 -3
  45. nimble_python-0.24.0/src/nimble_python/types/task_agent_list_response.py +144 -0
  46. nimble_python-0.24.0/src/nimble_python/types/task_agent_run_params.py +74 -0
  47. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent_run_response.py +15 -8
  48. nimble_python-0.24.0/src/nimble_python/types/task_agent_update_params.py +32 -0
  49. nimble_python-0.24.0/src/nimble_python/types/task_agent_update_response.py +122 -0
  50. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/jobs/runs/test_artifacts.py +202 -196
  51. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/jobs/test_runs.py +150 -114
  52. nimble_python-0.24.0/tests/api_resources/task_agent/test_runs.py +486 -0
  53. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/task_agent/test_templates.py +80 -60
  54. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/test_agent.py +238 -184
  55. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/test_client.py +8 -2
  56. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/test_crawl.py +2 -0
  57. nimble_python-0.24.0/tests/api_resources/test_fast_serp.py +130 -0
  58. nimble_python-0.24.0/tests/api_resources/test_jobs.py +686 -0
  59. nimble_python-0.24.0/tests/api_resources/test_task_agent.py +762 -0
  60. nimble_python-0.22.0/.release-please-manifest.json +0 -3
  61. nimble_python-0.22.0/src/nimble_python/types/task_agent/run_get_result_response.py +0 -254
  62. nimble_python-0.22.0/src/nimble_python/types/task_agent/run_list_response.py +0 -50
  63. nimble_python-0.22.0/src/nimble_python/types/task_agent/template_get_response.py +0 -65
  64. nimble_python-0.22.0/src/nimble_python/types/task_agent/template_list_response.py +0 -74
  65. nimble_python-0.22.0/src/nimble_python/types/task_agent_create_params.py +0 -70
  66. nimble_python-0.22.0/src/nimble_python/types/task_agent_create_response.py +0 -91
  67. nimble_python-0.22.0/src/nimble_python/types/task_agent_get_response.py +0 -91
  68. nimble_python-0.22.0/src/nimble_python/types/task_agent_list_response.py +0 -102
  69. nimble_python-0.22.0/src/nimble_python/types/task_agent_run_params.py +0 -46
  70. nimble_python-0.22.0/src/nimble_python/types/task_agent_update_params.py +0 -20
  71. nimble_python-0.22.0/src/nimble_python/types/task_agent_update_response.py +0 -91
  72. nimble_python-0.22.0/tests/api_resources/task_agent/test_runs.py +0 -544
  73. nimble_python-0.22.0/tests/api_resources/test_jobs.py +0 -616
  74. nimble_python-0.22.0/tests/api_resources/test_task_agent.py +0 -698
  75. {nimble_python-0.22.0 → nimble_python-0.24.0}/.gitignore +0 -0
  76. {nimble_python-0.22.0 → nimble_python-0.24.0}/CONTRIBUTING.md +0 -0
  77. {nimble_python-0.22.0 → nimble_python-0.24.0}/LICENSE +0 -0
  78. {nimble_python-0.22.0 → nimble_python-0.24.0}/README.md +0 -0
  79. {nimble_python-0.22.0 → nimble_python-0.24.0}/SECURITY.md +0 -0
  80. {nimble_python-0.22.0 → nimble_python-0.24.0}/bin/check-release-environment +0 -0
  81. {nimble_python-0.22.0 → nimble_python-0.24.0}/bin/publish-pypi +0 -0
  82. {nimble_python-0.22.0 → nimble_python-0.24.0}/examples/.keep +0 -0
  83. {nimble_python-0.22.0 → nimble_python-0.24.0}/release-please-config.json +0 -0
  84. {nimble_python-0.22.0 → nimble_python-0.24.0}/requirements-dev.lock +0 -0
  85. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/__init__.py +0 -0
  86. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_base_client.py +0 -0
  87. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_compat.py +0 -0
  88. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_constants.py +0 -0
  89. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_exceptions.py +0 -0
  90. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_files.py +0 -0
  91. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_models.py +0 -0
  92. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_qs.py +0 -0
  93. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_resource.py +0 -0
  94. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_response.py +0 -0
  95. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_streaming.py +0 -0
  96. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_types.py +0 -0
  97. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/__init__.py +0 -0
  98. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_compat.py +0 -0
  99. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_datetime_parse.py +0 -0
  100. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_json.py +0 -0
  101. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_logs.py +0 -0
  102. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_path.py +0 -0
  103. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_proxy.py +0 -0
  104. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_reflection.py +0 -0
  105. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_resources_proxy.py +0 -0
  106. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_streams.py +0 -0
  107. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_sync.py +0 -0
  108. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_transform.py +0 -0
  109. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_typing.py +0 -0
  110. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_utils.py +0 -0
  111. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/lib/.keep +0 -0
  112. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/py.typed +0 -0
  113. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/batches.py +0 -0
  114. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/crawl.py +0 -0
  115. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/domain_knowledge.py +0 -0
  116. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/__init__.py +0 -0
  117. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/runs/__init__.py +0 -0
  118. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/media.py +0 -0
  119. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/serp.py +0 -0
  120. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/task_agent/__init__.py +0 -0
  121. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/resources/tasks.py +0 -0
  122. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_generate_response.py +0 -0
  123. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_get_generation_response.py +0 -0
  124. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_get_response.py +0 -0
  125. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_list_params.py +0 -0
  126. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_list_response.py +0 -0
  127. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_async_params.py +0 -0
  128. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_async_response.py +0 -0
  129. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_batch_params.py +0 -0
  130. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_batch_response.py +0 -0
  131. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_params.py +0 -0
  132. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_response.py +0 -0
  133. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/batch_get_response.py +0 -0
  134. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/batch_progress_response.py +0 -0
  135. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/client_map_params.py +0 -0
  136. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_list_params.py +0 -0
  137. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_list_response.py +0 -0
  138. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_run_response.py +0 -0
  139. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_status_response.py +0 -0
  140. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_terminate_response.py +0 -0
  141. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/domain_knowledge_get_driver_params.py +0 -0
  142. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/domain_knowledge_get_driver_response.py +0 -0
  143. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/extract_async_response.py +0 -0
  144. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/extract_batch_response.py +0 -0
  145. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/extract_response.py +0 -0
  146. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/job_list_params.py +0 -0
  147. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/job_run_response.py +0 -0
  148. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/__init__.py +0 -0
  149. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/run_cancel_response.py +0 -0
  150. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/run_get_response.py +0 -0
  151. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/run_list_params.py +0 -0
  152. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/__init__.py +0 -0
  153. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/artifact_download_url_response.py +0 -0
  154. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/artifact_preview_response.py +0 -0
  155. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/map_response.py +0 -0
  156. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/media_run_async_params.py +0 -0
  157. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/media_run_async_response.py +0 -0
  158. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/media_run_params.py +0 -0
  159. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/media_run_response.py +0 -0
  160. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/search_response.py +0 -0
  161. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_async_params.py +0 -0
  162. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_async_response.py +0 -0
  163. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_batch_params.py +0 -0
  164. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_batch_response.py +0 -0
  165. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_params.py +0 -0
  166. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_response.py +0 -0
  167. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/__init__.py +0 -0
  168. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/auto_scroll_action.py +0 -0
  169. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/click_action.py +0 -0
  170. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/eval_action.py +0 -0
  171. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/fetch_action.py +0 -0
  172. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/fill_action.py +0 -0
  173. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/get_cookies_action.py +0 -0
  174. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/goto_action.py +0 -0
  175. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/press_action.py +0 -0
  176. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/screenshot_action.py +0 -0
  177. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/scroll_action.py +0 -0
  178. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/wait_action.py +0 -0
  179. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/wait_for_element_action.py +0 -0
  180. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/wait_for_navigation_action.py +0 -0
  181. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/__init__.py +0 -0
  182. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/auto_scroll_action.py +0 -0
  183. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/click_action.py +0 -0
  184. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/eval_action.py +0 -0
  185. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/fetch_action.py +0 -0
  186. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/fill_action.py +0 -0
  187. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/get_cookies_action.py +0 -0
  188. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/goto_action.py +0 -0
  189. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/press_action.py +0 -0
  190. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/screenshot_action.py +0 -0
  191. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/scroll_action.py +0 -0
  192. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/wait_action.py +0 -0
  193. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/wait_for_element_action.py +0 -0
  194. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/wait_for_navigation_action.py +0 -0
  195. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/__init__.py +0 -0
  196. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/run_list_params.py +0 -0
  197. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_get_response.py +0 -0
  198. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_list_params.py +0 -0
  199. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_list_response.py +0 -0
  200. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimble_python/types/task_results_response.py +0 -0
  201. {nimble_python-0.22.0 → nimble_python-0.24.0}/src/nimbleway/lib/.keep +0 -0
  202. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/__init__.py +0 -0
  203. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/__init__.py +0 -0
  204. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/jobs/__init__.py +0 -0
  205. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/jobs/runs/__init__.py +0 -0
  206. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/task_agent/__init__.py +0 -0
  207. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/test_batches.py +0 -0
  208. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/test_domain_knowledge.py +0 -0
  209. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/test_media.py +0 -0
  210. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/test_serp.py +0 -0
  211. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/api_resources/test_tasks.py +0 -0
  212. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/conftest.py +0 -0
  213. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/sample_file.txt +0 -0
  214. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_client.py +0 -0
  215. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_extract_files.py +0 -0
  216. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_files.py +0 -0
  217. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_models.py +0 -0
  218. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_qs.py +0 -0
  219. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_required_args.py +0 -0
  220. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_response.py +0 -0
  221. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_streaming.py +0 -0
  222. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_transform.py +0 -0
  223. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_utils/test_datetime_parse.py +0 -0
  224. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_utils/test_json.py +0 -0
  225. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_utils/test_path.py +0 -0
  226. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_utils/test_proxy.py +0 -0
  227. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/test_utils/test_typing.py +0 -0
  228. {nimble_python-0.22.0 → nimble_python-0.24.0}/tests/utils.py +0 -0
  229. {nimble_python-0.22.0 → nimble_python-0.24.0}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.24.0"
3
+ }
@@ -1,5 +1,30 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.24.0 (2026-07-19)
4
+
5
+ Full Changelog: [v0.23.0...v0.24.0](https://github.com/Nimbleway/nimble-python/compare/v0.23.0...v0.24.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([27121de](https://github.com/Nimbleway/nimble-python/commit/27121de406e5be1d76975780b8689d48aecebbf5))
10
+ * **api:** api update ([f1585c5](https://github.com/Nimbleway/nimble-python/commit/f1585c5fae73225539e26a86d33d6ee5c4b8ab5d))
11
+ * **api:** api update ([145d461](https://github.com/Nimbleway/nimble-python/commit/145d46130aa4bf0dae2526b5173c76ef3cd9e832))
12
+ * **stlc:** configurable CI runner and private-production-repo support in workflow templates ([1ba64bc](https://github.com/Nimbleway/nimble-python/commit/1ba64bcfba91ef0dcc170122382e00af7b3f1d8d))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **internal:** resolve build failures ([be103a1](https://github.com/Nimbleway/nimble-python/commit/be103a12056631ed49ad660acdd68aa24025e87c))
18
+
19
+ ## 0.23.0 (2026-07-13)
20
+
21
+ Full Changelog: [v0.22.0...v0.23.0](https://github.com/Nimbleway/nimble-python/compare/v0.22.0...v0.23.0)
22
+
23
+ ### Features
24
+
25
+ * **api:** api update ([a1e3f26](https://github.com/Nimbleway/nimble-python/commit/a1e3f264c89f0a534be69714d3af67b73c1b740c))
26
+ * **api:** api update ([082bc09](https://github.com/Nimbleway/nimble-python/commit/082bc099c7c2b53c0df4c6336ea489cdb1a0fe3c))
27
+
3
28
  ## 0.22.0 (2026-07-07)
4
29
 
5
30
  Full Changelog: [v0.21.0...v0.22.0](https://github.com/Nimbleway/nimble-python/compare/v0.21.0...v0.22.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nimble_python
3
- Version: 0.22.0
3
+ Version: 0.24.0
4
4
  Summary: The official Python library for the nimble API
5
5
  Project-URL: Homepage, https://github.com/Nimbleway/nimble-python
6
6
  Project-URL: Repository, https://github.com/Nimbleway/nimble-python
@@ -153,6 +153,18 @@ Methods:
153
153
  - <code title="post /v1/serp/async">client.serp.<a href="./src/nimble_python/resources/serp.py">run_async</a>(\*\*<a href="src/nimble_python/types/serp_run_async_params.py">params</a>) -> <a href="./src/nimble_python/types/serp_run_async_response.py">SerpRunAsyncResponse</a></code>
154
154
  - <code title="post /v1/serp/batch">client.serp.<a href="./src/nimble_python/resources/serp.py">run_batch</a>(\*\*<a href="src/nimble_python/types/serp_run_batch_params.py">params</a>) -> <a href="./src/nimble_python/types/serp_run_batch_response.py">SerpRunBatchResponse</a></code>
155
155
 
156
+ # FastSerp
157
+
158
+ Types:
159
+
160
+ ```python
161
+ from nimble_python.types import FastSerpRunResponse
162
+ ```
163
+
164
+ Methods:
165
+
166
+ - <code title="post /v1/fast-serp">client.fast_serp.<a href="./src/nimble_python/resources/fast_serp.py">run</a>(\*\*<a href="src/nimble_python/types/fast_serp_run_params.py">params</a>) -> <a href="./src/nimble_python/types/fast_serp_run_response.py">FastSerpRunResponse</a></code>
167
+
156
168
  # TaskAgent
157
169
 
158
170
  Types:
@@ -200,10 +212,9 @@ from nimble_python.types.task_agent import RunListResponse, RunGetResponse, RunG
200
212
  Methods:
201
213
 
202
214
  - <code title="get /v1/task-agents/{agent_id}/runs">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">list</a>(agent_id, \*\*<a href="src/nimble_python/types/task_agent/run_list_params.py">params</a>) -> <a href="./src/nimble_python/types/task_agent/run_list_response.py">RunListResponse</a></code>
203
- - <code title="post /v1/task-agents/{agent_id}/runs/{run_id}/cancel">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">cancel</a>(run_id, \*, agent_id) -> None</code>
204
215
  - <code title="get /v1/task-agents/{agent_id}/runs/{run_id}">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">get</a>(run_id, \*, agent_id) -> <a href="./src/nimble_python/types/task_agent/run_get_response.py">RunGetResponse</a></code>
205
216
  - <code title="get /v1/task-agents/{agent_id}/runs/{run_id}/result">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">get_result</a>(run_id, \*, agent_id) -> <a href="./src/nimble_python/types/task_agent/run_get_result_response.py">RunGetResultResponse</a></code>
206
- - <code title="get /v1/task-agents/{agent_id}/runs/{run_id}/events">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">stream_events</a>(run_id, \*, agent_id) -> object</code>
217
+ - <code title="get /v1/task-agents/{agent_id}/runs/{run_id}/events">client.task_agent.runs.<a href="./src/nimble_python/resources/task_agent/runs.py">stream_events</a>(run_id, \*, agent_id) -> None</code>
207
218
 
208
219
  # Jobs
209
220
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nimble_python"
3
- version = "0.22.0"
3
+ version = "0.24.0"
4
4
  description = "The official Python library for the nimble API"
5
5
  dynamic = ["readme"]
6
6
  license = "Apache-2.0"
@@ -61,13 +61,14 @@ from .types.extract_async_response import ExtractAsyncResponse
61
61
  from .types.extract_batch_response import ExtractBatchResponse
62
62
 
63
63
  if TYPE_CHECKING:
64
- from .resources import jobs, serp, agent, crawl, media, tasks, batches, task_agent, domain_knowledge
64
+ from .resources import jobs, serp, agent, crawl, media, tasks, batches, fast_serp, task_agent, domain_knowledge
65
65
  from .resources.serp import SerpResource, AsyncSerpResource
66
66
  from .resources.agent import AgentResource, AsyncAgentResource
67
67
  from .resources.crawl import CrawlResource, AsyncCrawlResource
68
68
  from .resources.media import MediaResource, AsyncMediaResource
69
69
  from .resources.tasks import TasksResource, AsyncTasksResource
70
70
  from .resources.batches import BatchesResource, AsyncBatchesResource
71
+ from .resources.fast_serp import FastSerpResource, AsyncFastSerpResource
71
72
  from .resources.jobs.jobs import JobsResource, AsyncJobsResource
72
73
  from .resources.domain_knowledge import DomainKnowledgeResource, AsyncDomainKnowledgeResource
73
74
  from .resources.task_agent.task_agent import TaskAgentResource, AsyncTaskAgentResource
@@ -185,6 +186,12 @@ class Nimble(SyncAPIClient):
185
186
 
186
187
  return SerpResource(self)
187
188
 
189
+ @cached_property
190
+ def fast_serp(self) -> FastSerpResource:
191
+ from .resources.fast_serp import FastSerpResource
192
+
193
+ return FastSerpResource(self)
194
+
188
195
  @cached_property
189
196
  def task_agent(self) -> TaskAgentResource:
190
197
  from .resources.task_agent import TaskAgentResource
@@ -3228,7 +3235,6 @@ class Nimble(SyncAPIClient):
3228
3235
  query: str,
3229
3236
  content_type: Optional[SequenceNotStr[str]] | Omit = omit,
3230
3237
  country: str | Omit = omit,
3231
- debug_params: Optional[Dict[str, object]] | Omit = omit,
3232
3238
  deep_search: Optional[bool] | Omit = omit,
3233
3239
  end_date: Optional[str] | Omit = omit,
3234
3240
  exclude_domains: Optional[SequenceNotStr[str]] | Omit = omit,
@@ -3261,8 +3267,6 @@ class Nimble(SyncAPIClient):
3261
3267
 
3262
3268
  country: Country code for geo-targeted results (e.g., 'US', 'GB', 'IL')
3263
3269
 
3264
- debug_params: Internal-only. Gated to allowlisted accounts; ignored otherwise.
3265
-
3266
3270
  deep_search: Deprecated. Use search_depth instead. true maps to 'deep', false maps to 'lite'.
3267
3271
 
3268
3272
  end_date: Filter results before this date (format: YYYY-MM-DD or YYYY)
@@ -3312,7 +3316,6 @@ class Nimble(SyncAPIClient):
3312
3316
  "query": query,
3313
3317
  "content_type": content_type,
3314
3318
  "country": country,
3315
- "debug_params": debug_params,
3316
3319
  "deep_search": deep_search,
3317
3320
  "end_date": end_date,
3318
3321
  "exclude_domains": exclude_domains,
@@ -3479,6 +3482,12 @@ class AsyncNimble(AsyncAPIClient):
3479
3482
 
3480
3483
  return AsyncSerpResource(self)
3481
3484
 
3485
+ @cached_property
3486
+ def fast_serp(self) -> AsyncFastSerpResource:
3487
+ from .resources.fast_serp import AsyncFastSerpResource
3488
+
3489
+ return AsyncFastSerpResource(self)
3490
+
3482
3491
  @cached_property
3483
3492
  def task_agent(self) -> AsyncTaskAgentResource:
3484
3493
  from .resources.task_agent import AsyncTaskAgentResource
@@ -6522,7 +6531,6 @@ class AsyncNimble(AsyncAPIClient):
6522
6531
  query: str,
6523
6532
  content_type: Optional[SequenceNotStr[str]] | Omit = omit,
6524
6533
  country: str | Omit = omit,
6525
- debug_params: Optional[Dict[str, object]] | Omit = omit,
6526
6534
  deep_search: Optional[bool] | Omit = omit,
6527
6535
  end_date: Optional[str] | Omit = omit,
6528
6536
  exclude_domains: Optional[SequenceNotStr[str]] | Omit = omit,
@@ -6555,8 +6563,6 @@ class AsyncNimble(AsyncAPIClient):
6555
6563
 
6556
6564
  country: Country code for geo-targeted results (e.g., 'US', 'GB', 'IL')
6557
6565
 
6558
- debug_params: Internal-only. Gated to allowlisted accounts; ignored otherwise.
6559
-
6560
6566
  deep_search: Deprecated. Use search_depth instead. true maps to 'deep', false maps to 'lite'.
6561
6567
 
6562
6568
  end_date: Filter results before this date (format: YYYY-MM-DD or YYYY)
@@ -6606,7 +6612,6 @@ class AsyncNimble(AsyncAPIClient):
6606
6612
  "query": query,
6607
6613
  "content_type": content_type,
6608
6614
  "country": country,
6609
- "debug_params": debug_params,
6610
6615
  "deep_search": deep_search,
6611
6616
  "end_date": end_date,
6612
6617
  "exclude_domains": exclude_domains,
@@ -6727,6 +6732,12 @@ class NimbleWithRawResponse:
6727
6732
 
6728
6733
  return SerpResourceWithRawResponse(self._client.serp)
6729
6734
 
6735
+ @cached_property
6736
+ def fast_serp(self) -> fast_serp.FastSerpResourceWithRawResponse:
6737
+ from .resources.fast_serp import FastSerpResourceWithRawResponse
6738
+
6739
+ return FastSerpResourceWithRawResponse(self._client.fast_serp)
6740
+
6730
6741
  @cached_property
6731
6742
  def task_agent(self) -> task_agent.TaskAgentResourceWithRawResponse:
6732
6743
  from .resources.task_agent import TaskAgentResourceWithRawResponse
@@ -6804,6 +6815,12 @@ class AsyncNimbleWithRawResponse:
6804
6815
 
6805
6816
  return AsyncSerpResourceWithRawResponse(self._client.serp)
6806
6817
 
6818
+ @cached_property
6819
+ def fast_serp(self) -> fast_serp.AsyncFastSerpResourceWithRawResponse:
6820
+ from .resources.fast_serp import AsyncFastSerpResourceWithRawResponse
6821
+
6822
+ return AsyncFastSerpResourceWithRawResponse(self._client.fast_serp)
6823
+
6807
6824
  @cached_property
6808
6825
  def task_agent(self) -> task_agent.AsyncTaskAgentResourceWithRawResponse:
6809
6826
  from .resources.task_agent import AsyncTaskAgentResourceWithRawResponse
@@ -6881,6 +6898,12 @@ class NimbleWithStreamedResponse:
6881
6898
 
6882
6899
  return SerpResourceWithStreamingResponse(self._client.serp)
6883
6900
 
6901
+ @cached_property
6902
+ def fast_serp(self) -> fast_serp.FastSerpResourceWithStreamingResponse:
6903
+ from .resources.fast_serp import FastSerpResourceWithStreamingResponse
6904
+
6905
+ return FastSerpResourceWithStreamingResponse(self._client.fast_serp)
6906
+
6884
6907
  @cached_property
6885
6908
  def task_agent(self) -> task_agent.TaskAgentResourceWithStreamingResponse:
6886
6909
  from .resources.task_agent import TaskAgentResourceWithStreamingResponse
@@ -6958,6 +6981,12 @@ class AsyncNimbleWithStreamedResponse:
6958
6981
 
6959
6982
  return AsyncSerpResourceWithStreamingResponse(self._client.serp)
6960
6983
 
6984
+ @cached_property
6985
+ def fast_serp(self) -> fast_serp.AsyncFastSerpResourceWithStreamingResponse:
6986
+ from .resources.fast_serp import AsyncFastSerpResourceWithStreamingResponse
6987
+
6988
+ return AsyncFastSerpResourceWithStreamingResponse(self._client.fast_serp)
6989
+
6961
6990
  @cached_property
6962
6991
  def task_agent(self) -> task_agent.AsyncTaskAgentResourceWithStreamingResponse:
6963
6992
  from .resources.task_agent import AsyncTaskAgentResourceWithStreamingResponse
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "nimble_python"
4
- __version__ = "0.22.0" # x-release-please-version
4
+ __version__ = "0.24.0" # x-release-please-version
@@ -56,6 +56,14 @@ from .batches import (
56
56
  BatchesResourceWithStreamingResponse,
57
57
  AsyncBatchesResourceWithStreamingResponse,
58
58
  )
59
+ from .fast_serp import (
60
+ FastSerpResource,
61
+ AsyncFastSerpResource,
62
+ FastSerpResourceWithRawResponse,
63
+ AsyncFastSerpResourceWithRawResponse,
64
+ FastSerpResourceWithStreamingResponse,
65
+ AsyncFastSerpResourceWithStreamingResponse,
66
+ )
59
67
  from .task_agent import (
60
68
  TaskAgentResource,
61
69
  AsyncTaskAgentResource,
@@ -116,6 +124,12 @@ __all__ = [
116
124
  "AsyncSerpResourceWithRawResponse",
117
125
  "SerpResourceWithStreamingResponse",
118
126
  "AsyncSerpResourceWithStreamingResponse",
127
+ "FastSerpResource",
128
+ "AsyncFastSerpResource",
129
+ "FastSerpResourceWithRawResponse",
130
+ "AsyncFastSerpResourceWithRawResponse",
131
+ "FastSerpResourceWithStreamingResponse",
132
+ "AsyncFastSerpResourceWithStreamingResponse",
119
133
  "TaskAgentResource",
120
134
  "AsyncTaskAgentResource",
121
135
  "TaskAgentResourceWithRawResponse",
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ import typing_extensions
5
6
  from typing import Dict, List, Iterable, Optional
6
7
  from typing_extensions import Literal, overload
7
8
 
@@ -56,6 +57,7 @@ class AgentResource(SyncAPIResource):
56
57
  """
57
58
  return AgentResourceWithStreamingResponse(self)
58
59
 
60
+ @typing_extensions.deprecated("deprecated")
59
61
  def list(
60
62
  self,
61
63
  *,
@@ -114,6 +116,7 @@ class AgentResource(SyncAPIResource):
114
116
  cast_to=AgentListResponse,
115
117
  )
116
118
 
119
+ @typing_extensions.deprecated("deprecated")
117
120
  @overload
118
121
  def generate(
119
122
  self,
@@ -121,7 +124,7 @@ class AgentResource(SyncAPIResource):
121
124
  prompt: str,
122
125
  url: str,
123
126
  input_schema: Dict[str, object] | Omit = omit,
124
- metadata: Optional[agent_generate_params.CreateAgentGenerationRequestMetadata] | Omit = omit,
127
+ metadata: Optional[agent_generate_params.CreateTemplateGenerationRequestPublicV1Metadata] | Omit = omit,
125
128
  name: Optional[str] | Omit = omit,
126
129
  output_schema: Dict[str, object] | Omit = omit,
127
130
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -145,6 +148,7 @@ class AgentResource(SyncAPIResource):
145
148
  """
146
149
  ...
147
150
 
151
+ @typing_extensions.deprecated("deprecated")
148
152
  @overload
149
153
  def generate(
150
154
  self,
@@ -172,6 +176,7 @@ class AgentResource(SyncAPIResource):
172
176
  """
173
177
  ...
174
178
 
179
+ @typing_extensions.deprecated("deprecated")
175
180
  @required_args(["prompt", "url"], ["from_agent", "prompt"])
176
181
  def generate(
177
182
  self,
@@ -179,7 +184,7 @@ class AgentResource(SyncAPIResource):
179
184
  prompt: str,
180
185
  url: str | Omit = omit,
181
186
  input_schema: Dict[str, object] | Omit = omit,
182
- metadata: Optional[agent_generate_params.CreateAgentGenerationRequestMetadata] | Omit = omit,
187
+ metadata: Optional[agent_generate_params.CreateTemplateGenerationRequestPublicV1Metadata] | Omit = omit,
183
188
  name: Optional[str] | Omit = omit,
184
189
  output_schema: Dict[str, object] | Omit = omit,
185
190
  from_agent: str | Omit = omit,
@@ -210,6 +215,7 @@ class AgentResource(SyncAPIResource):
210
215
  cast_to=AgentGenerateResponse,
211
216
  )
212
217
 
218
+ @typing_extensions.deprecated("deprecated")
213
219
  def get(
214
220
  self,
215
221
  template_name: str,
@@ -243,6 +249,7 @@ class AgentResource(SyncAPIResource):
243
249
  cast_to=AgentGetResponse,
244
250
  )
245
251
 
252
+ @typing_extensions.deprecated("deprecated")
246
253
  def get_generation(
247
254
  self,
248
255
  generation_id: str,
@@ -447,6 +454,7 @@ class AsyncAgentResource(AsyncAPIResource):
447
454
  """
448
455
  return AsyncAgentResourceWithStreamingResponse(self)
449
456
 
457
+ @typing_extensions.deprecated("deprecated")
450
458
  async def list(
451
459
  self,
452
460
  *,
@@ -505,6 +513,7 @@ class AsyncAgentResource(AsyncAPIResource):
505
513
  cast_to=AgentListResponse,
506
514
  )
507
515
 
516
+ @typing_extensions.deprecated("deprecated")
508
517
  @overload
509
518
  async def generate(
510
519
  self,
@@ -512,7 +521,7 @@ class AsyncAgentResource(AsyncAPIResource):
512
521
  prompt: str,
513
522
  url: str,
514
523
  input_schema: Dict[str, object] | Omit = omit,
515
- metadata: Optional[agent_generate_params.CreateAgentGenerationRequestMetadata] | Omit = omit,
524
+ metadata: Optional[agent_generate_params.CreateTemplateGenerationRequestPublicV1Metadata] | Omit = omit,
516
525
  name: Optional[str] | Omit = omit,
517
526
  output_schema: Dict[str, object] | Omit = omit,
518
527
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -536,6 +545,7 @@ class AsyncAgentResource(AsyncAPIResource):
536
545
  """
537
546
  ...
538
547
 
548
+ @typing_extensions.deprecated("deprecated")
539
549
  @overload
540
550
  async def generate(
541
551
  self,
@@ -563,6 +573,7 @@ class AsyncAgentResource(AsyncAPIResource):
563
573
  """
564
574
  ...
565
575
 
576
+ @typing_extensions.deprecated("deprecated")
566
577
  @required_args(["prompt", "url"], ["from_agent", "prompt"])
567
578
  async def generate(
568
579
  self,
@@ -570,7 +581,7 @@ class AsyncAgentResource(AsyncAPIResource):
570
581
  prompt: str,
571
582
  url: str | Omit = omit,
572
583
  input_schema: Dict[str, object] | Omit = omit,
573
- metadata: Optional[agent_generate_params.CreateAgentGenerationRequestMetadata] | Omit = omit,
584
+ metadata: Optional[agent_generate_params.CreateTemplateGenerationRequestPublicV1Metadata] | Omit = omit,
574
585
  name: Optional[str] | Omit = omit,
575
586
  output_schema: Dict[str, object] | Omit = omit,
576
587
  from_agent: str | Omit = omit,
@@ -601,6 +612,7 @@ class AsyncAgentResource(AsyncAPIResource):
601
612
  cast_to=AgentGenerateResponse,
602
613
  )
603
614
 
615
+ @typing_extensions.deprecated("deprecated")
604
616
  async def get(
605
617
  self,
606
618
  template_name: str,
@@ -634,6 +646,7 @@ class AsyncAgentResource(AsyncAPIResource):
634
646
  cast_to=AgentGetResponse,
635
647
  )
636
648
 
649
+ @typing_extensions.deprecated("deprecated")
637
650
  async def get_generation(
638
651
  self,
639
652
  generation_id: str,
@@ -822,17 +835,25 @@ class AgentResourceWithRawResponse:
822
835
  def __init__(self, agent: AgentResource) -> None:
823
836
  self._agent = agent
824
837
 
825
- self.list = to_raw_response_wrapper(
826
- agent.list,
838
+ self.list = ( # pyright: ignore[reportDeprecated]
839
+ to_raw_response_wrapper(
840
+ agent.list, # pyright: ignore[reportDeprecated],
841
+ )
827
842
  )
828
- self.generate = to_raw_response_wrapper(
829
- agent.generate,
843
+ self.generate = ( # pyright: ignore[reportDeprecated]
844
+ to_raw_response_wrapper(
845
+ agent.generate, # pyright: ignore[reportDeprecated],
846
+ )
830
847
  )
831
- self.get = to_raw_response_wrapper(
832
- agent.get,
848
+ self.get = ( # pyright: ignore[reportDeprecated]
849
+ to_raw_response_wrapper(
850
+ agent.get, # pyright: ignore[reportDeprecated],
851
+ )
833
852
  )
834
- self.get_generation = to_raw_response_wrapper(
835
- agent.get_generation,
853
+ self.get_generation = ( # pyright: ignore[reportDeprecated]
854
+ to_raw_response_wrapper(
855
+ agent.get_generation, # pyright: ignore[reportDeprecated],
856
+ )
836
857
  )
837
858
  self.run = to_raw_response_wrapper(
838
859
  agent.run,
@@ -849,17 +870,25 @@ class AsyncAgentResourceWithRawResponse:
849
870
  def __init__(self, agent: AsyncAgentResource) -> None:
850
871
  self._agent = agent
851
872
 
852
- self.list = async_to_raw_response_wrapper(
853
- agent.list,
873
+ self.list = ( # pyright: ignore[reportDeprecated]
874
+ async_to_raw_response_wrapper(
875
+ agent.list, # pyright: ignore[reportDeprecated],
876
+ )
854
877
  )
855
- self.generate = async_to_raw_response_wrapper(
856
- agent.generate,
878
+ self.generate = ( # pyright: ignore[reportDeprecated]
879
+ async_to_raw_response_wrapper(
880
+ agent.generate, # pyright: ignore[reportDeprecated],
881
+ )
857
882
  )
858
- self.get = async_to_raw_response_wrapper(
859
- agent.get,
883
+ self.get = ( # pyright: ignore[reportDeprecated]
884
+ async_to_raw_response_wrapper(
885
+ agent.get, # pyright: ignore[reportDeprecated],
886
+ )
860
887
  )
861
- self.get_generation = async_to_raw_response_wrapper(
862
- agent.get_generation,
888
+ self.get_generation = ( # pyright: ignore[reportDeprecated]
889
+ async_to_raw_response_wrapper(
890
+ agent.get_generation, # pyright: ignore[reportDeprecated],
891
+ )
863
892
  )
864
893
  self.run = async_to_raw_response_wrapper(
865
894
  agent.run,
@@ -876,17 +905,25 @@ class AgentResourceWithStreamingResponse:
876
905
  def __init__(self, agent: AgentResource) -> None:
877
906
  self._agent = agent
878
907
 
879
- self.list = to_streamed_response_wrapper(
880
- agent.list,
908
+ self.list = ( # pyright: ignore[reportDeprecated]
909
+ to_streamed_response_wrapper(
910
+ agent.list, # pyright: ignore[reportDeprecated],
911
+ )
881
912
  )
882
- self.generate = to_streamed_response_wrapper(
883
- agent.generate,
913
+ self.generate = ( # pyright: ignore[reportDeprecated]
914
+ to_streamed_response_wrapper(
915
+ agent.generate, # pyright: ignore[reportDeprecated],
916
+ )
884
917
  )
885
- self.get = to_streamed_response_wrapper(
886
- agent.get,
918
+ self.get = ( # pyright: ignore[reportDeprecated]
919
+ to_streamed_response_wrapper(
920
+ agent.get, # pyright: ignore[reportDeprecated],
921
+ )
887
922
  )
888
- self.get_generation = to_streamed_response_wrapper(
889
- agent.get_generation,
923
+ self.get_generation = ( # pyright: ignore[reportDeprecated]
924
+ to_streamed_response_wrapper(
925
+ agent.get_generation, # pyright: ignore[reportDeprecated],
926
+ )
890
927
  )
891
928
  self.run = to_streamed_response_wrapper(
892
929
  agent.run,
@@ -903,17 +940,25 @@ class AsyncAgentResourceWithStreamingResponse:
903
940
  def __init__(self, agent: AsyncAgentResource) -> None:
904
941
  self._agent = agent
905
942
 
906
- self.list = async_to_streamed_response_wrapper(
907
- agent.list,
908
- )
909
- self.generate = async_to_streamed_response_wrapper(
910
- agent.generate,
911
- )
912
- self.get = async_to_streamed_response_wrapper(
913
- agent.get,
914
- )
915
- self.get_generation = async_to_streamed_response_wrapper(
916
- agent.get_generation,
943
+ self.list = ( # pyright: ignore[reportDeprecated]
944
+ async_to_streamed_response_wrapper(
945
+ agent.list, # pyright: ignore[reportDeprecated],
946
+ )
947
+ )
948
+ self.generate = ( # pyright: ignore[reportDeprecated]
949
+ async_to_streamed_response_wrapper(
950
+ agent.generate, # pyright: ignore[reportDeprecated],
951
+ )
952
+ )
953
+ self.get = ( # pyright: ignore[reportDeprecated]
954
+ async_to_streamed_response_wrapper(
955
+ agent.get, # pyright: ignore[reportDeprecated],
956
+ )
957
+ )
958
+ self.get_generation = ( # pyright: ignore[reportDeprecated]
959
+ async_to_streamed_response_wrapper(
960
+ agent.get_generation, # pyright: ignore[reportDeprecated],
961
+ )
917
962
  )
918
963
  self.run = async_to_streamed_response_wrapper(
919
964
  agent.run,