nimble_python 0.23.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 (226) hide show
  1. nimble_python-0.24.0/.release-please-manifest.json +3 -0
  2. {nimble_python-0.23.0 → nimble_python-0.24.0}/CHANGELOG.md +16 -0
  3. {nimble_python-0.23.0 → nimble_python-0.24.0}/PKG-INFO +1 -1
  4. {nimble_python-0.23.0 → nimble_python-0.24.0}/api.md +1 -2
  5. {nimble_python-0.23.0 → nimble_python-0.24.0}/pyproject.toml +1 -1
  6. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_client.py +0 -8
  7. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_version.py +1 -1
  8. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/agent.py +84 -39
  9. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/jobs.py +114 -53
  10. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/runs/artifacts.py +80 -50
  11. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/runs/runs.py +55 -24
  12. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/task_agent/runs.py +80 -137
  13. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/task_agent/task_agent.py +187 -76
  14. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/task_agent/templates.py +37 -30
  15. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_generate_params.py +8 -8
  16. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/client_search_params.py +1 -4
  17. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/job_list_response.py +5 -5
  18. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/run_list_response.py +5 -5
  19. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/artifact_get_response.py +1 -7
  20. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/artifact_list_response.py +1 -7
  21. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/run_get_response.py +10 -18
  22. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/run_get_result_response.py +132 -105
  23. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/run_list_params.py +0 -5
  24. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/run_list_response.py +17 -23
  25. nimble_python-0.24.0/src/nimble_python/types/task_agent/template_get_response.py +89 -0
  26. nimble_python-0.24.0/src/nimble_python/types/task_agent/template_list_params.py +13 -0
  27. nimble_python-0.24.0/src/nimble_python/types/task_agent/template_list_response.py +103 -0
  28. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent_create_params.py +23 -5
  29. nimble_python-0.24.0/src/nimble_python/types/task_agent_create_response.py +122 -0
  30. nimble_python-0.24.0/src/nimble_python/types/task_agent_get_response.py +122 -0
  31. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent_list_params.py +1 -6
  32. nimble_python-0.24.0/src/nimble_python/types/task_agent_list_response.py +144 -0
  33. nimble_python-0.24.0/src/nimble_python/types/task_agent_run_params.py +74 -0
  34. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent_run_response.py +10 -18
  35. nimble_python-0.24.0/src/nimble_python/types/task_agent_update_response.py +122 -0
  36. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/jobs/runs/test_artifacts.py +202 -196
  37. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/jobs/test_runs.py +150 -114
  38. nimble_python-0.24.0/tests/api_resources/task_agent/test_runs.py +486 -0
  39. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/task_agent/test_templates.py +80 -60
  40. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_agent.py +238 -184
  41. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_client.py +0 -2
  42. nimble_python-0.24.0/tests/api_resources/test_jobs.py +686 -0
  43. nimble_python-0.24.0/tests/api_resources/test_task_agent.py +762 -0
  44. nimble_python-0.23.0/.release-please-manifest.json +0 -3
  45. nimble_python-0.23.0/src/nimble_python/types/task_agent/template_get_response.py +0 -66
  46. nimble_python-0.23.0/src/nimble_python/types/task_agent/template_list_params.py +0 -19
  47. nimble_python-0.23.0/src/nimble_python/types/task_agent/template_list_response.py +0 -75
  48. nimble_python-0.23.0/src/nimble_python/types/task_agent_create_response.py +0 -95
  49. nimble_python-0.23.0/src/nimble_python/types/task_agent_get_response.py +0 -95
  50. nimble_python-0.23.0/src/nimble_python/types/task_agent_list_response.py +0 -106
  51. nimble_python-0.23.0/src/nimble_python/types/task_agent_run_params.py +0 -54
  52. nimble_python-0.23.0/src/nimble_python/types/task_agent_update_response.py +0 -95
  53. nimble_python-0.23.0/tests/api_resources/task_agent/test_runs.py +0 -548
  54. nimble_python-0.23.0/tests/api_resources/test_jobs.py +0 -616
  55. nimble_python-0.23.0/tests/api_resources/test_task_agent.py +0 -696
  56. {nimble_python-0.23.0 → nimble_python-0.24.0}/.gitignore +0 -0
  57. {nimble_python-0.23.0 → nimble_python-0.24.0}/CONTRIBUTING.md +0 -0
  58. {nimble_python-0.23.0 → nimble_python-0.24.0}/LICENSE +0 -0
  59. {nimble_python-0.23.0 → nimble_python-0.24.0}/README.md +0 -0
  60. {nimble_python-0.23.0 → nimble_python-0.24.0}/SECURITY.md +0 -0
  61. {nimble_python-0.23.0 → nimble_python-0.24.0}/bin/check-release-environment +0 -0
  62. {nimble_python-0.23.0 → nimble_python-0.24.0}/bin/publish-pypi +0 -0
  63. {nimble_python-0.23.0 → nimble_python-0.24.0}/examples/.keep +0 -0
  64. {nimble_python-0.23.0 → nimble_python-0.24.0}/release-please-config.json +0 -0
  65. {nimble_python-0.23.0 → nimble_python-0.24.0}/requirements-dev.lock +0 -0
  66. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/__init__.py +0 -0
  67. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_base_client.py +0 -0
  68. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_compat.py +0 -0
  69. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_constants.py +0 -0
  70. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_exceptions.py +0 -0
  71. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_files.py +0 -0
  72. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_models.py +0 -0
  73. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_qs.py +0 -0
  74. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_resource.py +0 -0
  75. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_response.py +0 -0
  76. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_streaming.py +0 -0
  77. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_types.py +0 -0
  78. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/__init__.py +0 -0
  79. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_compat.py +0 -0
  80. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_datetime_parse.py +0 -0
  81. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_json.py +0 -0
  82. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_logs.py +0 -0
  83. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_path.py +0 -0
  84. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_proxy.py +0 -0
  85. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_reflection.py +0 -0
  86. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_resources_proxy.py +0 -0
  87. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_streams.py +0 -0
  88. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_sync.py +0 -0
  89. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_transform.py +0 -0
  90. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_typing.py +0 -0
  91. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/_utils/_utils.py +0 -0
  92. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/lib/.keep +0 -0
  93. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/py.typed +0 -0
  94. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/__init__.py +0 -0
  95. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/batches.py +0 -0
  96. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/crawl.py +0 -0
  97. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/domain_knowledge.py +0 -0
  98. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/fast_serp.py +0 -0
  99. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/__init__.py +0 -0
  100. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/jobs/runs/__init__.py +0 -0
  101. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/media.py +0 -0
  102. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/serp.py +0 -0
  103. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/task_agent/__init__.py +0 -0
  104. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/resources/tasks.py +0 -0
  105. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/__init__.py +0 -0
  106. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_generate_response.py +0 -0
  107. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_get_generation_response.py +0 -0
  108. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_get_response.py +0 -0
  109. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_list_params.py +0 -0
  110. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_list_response.py +0 -0
  111. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_async_params.py +0 -0
  112. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_async_response.py +0 -0
  113. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_batch_params.py +0 -0
  114. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_batch_response.py +0 -0
  115. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_params.py +0 -0
  116. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/agent_run_response.py +0 -0
  117. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/batch_get_response.py +0 -0
  118. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/batch_progress_response.py +0 -0
  119. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/client_extract_async_params.py +0 -0
  120. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/client_extract_batch_params.py +0 -0
  121. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/client_extract_params.py +0 -0
  122. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/client_map_params.py +0 -0
  123. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_list_params.py +0 -0
  124. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_list_response.py +0 -0
  125. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_run_params.py +0 -0
  126. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_run_response.py +0 -0
  127. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_status_response.py +0 -0
  128. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/crawl_terminate_response.py +0 -0
  129. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/domain_knowledge_get_driver_params.py +0 -0
  130. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/domain_knowledge_get_driver_response.py +0 -0
  131. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/extract_async_response.py +0 -0
  132. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/extract_batch_response.py +0 -0
  133. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/extract_response.py +0 -0
  134. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/fast_serp_run_params.py +0 -0
  135. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/fast_serp_run_response.py +0 -0
  136. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/job_create_params.py +0 -0
  137. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/job_create_response.py +0 -0
  138. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/job_get_response.py +0 -0
  139. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/job_list_params.py +0 -0
  140. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/job_run_response.py +0 -0
  141. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/job_update_params.py +0 -0
  142. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/job_update_response.py +0 -0
  143. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/__init__.py +0 -0
  144. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/run_cancel_response.py +0 -0
  145. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/run_get_response.py +0 -0
  146. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/run_list_params.py +0 -0
  147. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/__init__.py +0 -0
  148. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/artifact_download_url_response.py +0 -0
  149. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/jobs/runs/artifact_preview_response.py +0 -0
  150. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/map_response.py +0 -0
  151. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/media_run_async_params.py +0 -0
  152. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/media_run_async_response.py +0 -0
  153. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/media_run_params.py +0 -0
  154. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/media_run_response.py +0 -0
  155. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/search_response.py +0 -0
  156. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_async_params.py +0 -0
  157. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_async_response.py +0 -0
  158. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_batch_params.py +0 -0
  159. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_batch_response.py +0 -0
  160. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_params.py +0 -0
  161. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/serp_run_response.py +0 -0
  162. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/__init__.py +0 -0
  163. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/auto_scroll_action.py +0 -0
  164. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/click_action.py +0 -0
  165. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/eval_action.py +0 -0
  166. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/fetch_action.py +0 -0
  167. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/fill_action.py +0 -0
  168. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/get_cookies_action.py +0 -0
  169. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/goto_action.py +0 -0
  170. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/press_action.py +0 -0
  171. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/screenshot_action.py +0 -0
  172. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/scroll_action.py +0 -0
  173. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/wait_action.py +0 -0
  174. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/wait_for_element_action.py +0 -0
  175. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared/wait_for_navigation_action.py +0 -0
  176. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/__init__.py +0 -0
  177. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/auto_scroll_action.py +0 -0
  178. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/click_action.py +0 -0
  179. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/eval_action.py +0 -0
  180. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/fetch_action.py +0 -0
  181. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/fill_action.py +0 -0
  182. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/get_cookies_action.py +0 -0
  183. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/goto_action.py +0 -0
  184. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/press_action.py +0 -0
  185. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/screenshot_action.py +0 -0
  186. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/scroll_action.py +0 -0
  187. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/wait_action.py +0 -0
  188. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/wait_for_element_action.py +0 -0
  189. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/shared_params/wait_for_navigation_action.py +0 -0
  190. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent/__init__.py +0 -0
  191. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_agent_update_params.py +0 -0
  192. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_get_response.py +0 -0
  193. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_list_params.py +0 -0
  194. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_list_response.py +0 -0
  195. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimble_python/types/task_results_response.py +0 -0
  196. {nimble_python-0.23.0 → nimble_python-0.24.0}/src/nimbleway/lib/.keep +0 -0
  197. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/__init__.py +0 -0
  198. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/__init__.py +0 -0
  199. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/jobs/__init__.py +0 -0
  200. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/jobs/runs/__init__.py +0 -0
  201. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/task_agent/__init__.py +0 -0
  202. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_batches.py +0 -0
  203. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_crawl.py +0 -0
  204. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_domain_knowledge.py +0 -0
  205. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_fast_serp.py +0 -0
  206. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_media.py +0 -0
  207. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_serp.py +0 -0
  208. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/api_resources/test_tasks.py +0 -0
  209. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/conftest.py +0 -0
  210. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/sample_file.txt +0 -0
  211. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_client.py +0 -0
  212. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_extract_files.py +0 -0
  213. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_files.py +0 -0
  214. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_models.py +0 -0
  215. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_qs.py +0 -0
  216. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_required_args.py +0 -0
  217. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_response.py +0 -0
  218. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_streaming.py +0 -0
  219. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_transform.py +0 -0
  220. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_utils/test_datetime_parse.py +0 -0
  221. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_utils/test_json.py +0 -0
  222. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_utils/test_path.py +0 -0
  223. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_utils/test_proxy.py +0 -0
  224. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/test_utils/test_typing.py +0 -0
  225. {nimble_python-0.23.0 → nimble_python-0.24.0}/tests/utils.py +0 -0
  226. {nimble_python-0.23.0 → nimble_python-0.24.0}/uv.lock +0 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.24.0"
3
+ }
@@ -1,5 +1,21 @@
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
+
3
19
  ## 0.23.0 (2026-07-13)
4
20
 
5
21
  Full Changelog: [v0.22.0...v0.23.0](https://github.com/Nimbleway/nimble-python/compare/v0.22.0...v0.23.0)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nimble_python
3
- Version: 0.23.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
@@ -212,10 +212,9 @@ from nimble_python.types.task_agent import RunListResponse, RunGetResponse, RunG
212
212
  Methods:
213
213
 
214
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>
215
- - <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>
216
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>
217
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>
218
- - <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>
219
218
 
220
219
  # Jobs
221
220
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nimble_python"
3
- version = "0.23.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"
@@ -3235,7 +3235,6 @@ class Nimble(SyncAPIClient):
3235
3235
  query: str,
3236
3236
  content_type: Optional[SequenceNotStr[str]] | Omit = omit,
3237
3237
  country: str | Omit = omit,
3238
- debug_params: Optional[Dict[str, object]] | Omit = omit,
3239
3238
  deep_search: Optional[bool] | Omit = omit,
3240
3239
  end_date: Optional[str] | Omit = omit,
3241
3240
  exclude_domains: Optional[SequenceNotStr[str]] | Omit = omit,
@@ -3268,8 +3267,6 @@ class Nimble(SyncAPIClient):
3268
3267
 
3269
3268
  country: Country code for geo-targeted results (e.g., 'US', 'GB', 'IL')
3270
3269
 
3271
- debug_params: Internal-only. Gated to allowlisted accounts; ignored otherwise.
3272
-
3273
3270
  deep_search: Deprecated. Use search_depth instead. true maps to 'deep', false maps to 'lite'.
3274
3271
 
3275
3272
  end_date: Filter results before this date (format: YYYY-MM-DD or YYYY)
@@ -3319,7 +3316,6 @@ class Nimble(SyncAPIClient):
3319
3316
  "query": query,
3320
3317
  "content_type": content_type,
3321
3318
  "country": country,
3322
- "debug_params": debug_params,
3323
3319
  "deep_search": deep_search,
3324
3320
  "end_date": end_date,
3325
3321
  "exclude_domains": exclude_domains,
@@ -6535,7 +6531,6 @@ class AsyncNimble(AsyncAPIClient):
6535
6531
  query: str,
6536
6532
  content_type: Optional[SequenceNotStr[str]] | Omit = omit,
6537
6533
  country: str | Omit = omit,
6538
- debug_params: Optional[Dict[str, object]] | Omit = omit,
6539
6534
  deep_search: Optional[bool] | Omit = omit,
6540
6535
  end_date: Optional[str] | Omit = omit,
6541
6536
  exclude_domains: Optional[SequenceNotStr[str]] | Omit = omit,
@@ -6568,8 +6563,6 @@ class AsyncNimble(AsyncAPIClient):
6568
6563
 
6569
6564
  country: Country code for geo-targeted results (e.g., 'US', 'GB', 'IL')
6570
6565
 
6571
- debug_params: Internal-only. Gated to allowlisted accounts; ignored otherwise.
6572
-
6573
6566
  deep_search: Deprecated. Use search_depth instead. true maps to 'deep', false maps to 'lite'.
6574
6567
 
6575
6568
  end_date: Filter results before this date (format: YYYY-MM-DD or YYYY)
@@ -6619,7 +6612,6 @@ class AsyncNimble(AsyncAPIClient):
6619
6612
  "query": query,
6620
6613
  "content_type": content_type,
6621
6614
  "country": country,
6622
- "debug_params": debug_params,
6623
6615
  "deep_search": deep_search,
6624
6616
  "end_date": end_date,
6625
6617
  "exclude_domains": exclude_domains,
@@ -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.23.0" # x-release-please-version
4
+ __version__ = "0.24.0" # x-release-please-version
@@ -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.CrustCreateAgentGenerationRequestMetadata] | 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.CrustCreateAgentGenerationRequestMetadata] | 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.CrustCreateAgentGenerationRequestMetadata] | 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.CrustCreateAgentGenerationRequestMetadata] | 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,