nimble_python 0.23.0__py3-none-any.whl → 1.0.0__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 (95) hide show
  1. nimble_python/_client.py +363 -4588
  2. nimble_python/_version.py +1 -1
  3. nimble_python/resources/__init__.py +28 -28
  4. nimble_python/resources/{task_agent → agents}/__init__.py +14 -14
  5. nimble_python/resources/{task_agent/task_agent.py → agents/agents.py} +180 -261
  6. nimble_python/resources/{task_agent → agents}/runs.py +211 -155
  7. nimble_python/resources/{task_agent → agents}/templates.py +17 -28
  8. nimble_python/resources/batches.py +6 -6
  9. nimble_python/resources/crawl.py +8 -8
  10. nimble_python/resources/domain_knowledge.py +2 -2
  11. nimble_python/resources/extract/__init__.py +33 -0
  12. nimble_python/resources/extract/extract.py +4332 -0
  13. nimble_python/resources/extract/templates/__init__.py +47 -0
  14. nimble_python/resources/extract/templates/generations.py +409 -0
  15. nimble_python/resources/{agent.py → extract/templates/templates.py} +402 -477
  16. nimble_python/resources/extract/templates/versions.py +294 -0
  17. nimble_python/resources/fast_serp.py +2 -2
  18. nimble_python/resources/jobs/jobs.py +34 -129
  19. nimble_python/resources/jobs/runs/artifacts.py +22 -34
  20. nimble_python/resources/jobs/runs/runs.py +99 -30
  21. nimble_python/resources/media.py +4 -4
  22. nimble_python/resources/serp.py +6 -6
  23. nimble_python/resources/tasks.py +6 -6
  24. nimble_python/types/__init__.py +8 -23
  25. nimble_python/types/{task_agent_create_params.py → agent_create_params.py} +25 -7
  26. nimble_python/types/agent_create_response.py +122 -0
  27. nimble_python/types/agent_get_response.py +90 -25
  28. nimble_python/types/agent_list_params.py +2 -11
  29. nimble_python/types/agent_list_response.py +127 -12
  30. nimble_python/types/{task_agent_update_params.py → agent_update_params.py} +2 -2
  31. nimble_python/types/agent_update_response.py +122 -0
  32. nimble_python/types/{task_agent → agents}/__init__.py +3 -1
  33. nimble_python/types/agents/run_create_params.py +74 -0
  34. nimble_python/types/agents/run_create_response.py +54 -0
  35. nimble_python/types/{task_agent → agents}/run_get_response.py +10 -18
  36. nimble_python/types/{task_agent → agents}/run_list_params.py +0 -5
  37. nimble_python/types/{task_agent → agents}/run_list_response.py +17 -23
  38. nimble_python/types/{task_agent/run_get_result_response.py → agents/run_result_response.py} +133 -106
  39. nimble_python/types/agents/template_get_response.py +89 -0
  40. nimble_python/types/agents/template_list_params.py +13 -0
  41. nimble_python/types/agents/template_list_response.py +103 -0
  42. nimble_python/types/client_search_params.py +1 -4
  43. nimble_python/types/extract/__init__.py +15 -0
  44. nimble_python/types/{agent_run_async_params.py → extract/template_async_params.py} +4 -4
  45. nimble_python/types/{agent_run_async_response.py → extract/template_async_response.py} +3 -3
  46. nimble_python/types/{agent_run_batch_params.py → extract/template_batch_params.py} +3 -3
  47. nimble_python/types/{agent_run_batch_response.py → extract/template_batch_response.py} +3 -3
  48. nimble_python/types/extract/template_get_response.py +89 -0
  49. nimble_python/types/extract/template_list_params.py +13 -0
  50. nimble_python/types/extract/template_list_response.py +109 -0
  51. nimble_python/types/{agent_run_params.py → extract/template_run_params.py} +4 -4
  52. nimble_python/types/{extract_response.py → extract/template_run_response.py} +3 -3
  53. nimble_python/types/extract/template_update_params.py +32 -0
  54. nimble_python/types/extract/template_update_response.py +89 -0
  55. nimble_python/types/extract/templates/__init__.py +10 -0
  56. nimble_python/types/extract/templates/generation_create_params.py +61 -0
  57. nimble_python/types/extract/templates/generation_create_response.py +104 -0
  58. nimble_python/types/extract/templates/generation_get_response.py +104 -0
  59. nimble_python/types/extract/templates/version_get_response.py +67 -0
  60. nimble_python/types/extract/templates/version_list_params.py +13 -0
  61. nimble_python/types/extract/templates/version_list_response.py +81 -0
  62. nimble_python/types/{client_extract_async_params.py → extract_async_params.py} +2 -2
  63. nimble_python/types/{client_extract_batch_params.py → extract_batch_params.py} +2 -2
  64. nimble_python/types/{client_extract_params.py → extract_run_params.py} +2 -2
  65. nimble_python/types/{agent_run_response.py → extract_run_response.py} +2 -2
  66. nimble_python/types/job_create_params.py +2 -2
  67. nimble_python/types/job_create_response.py +3 -3
  68. nimble_python/types/job_get_response.py +3 -3
  69. nimble_python/types/job_list_params.py +2 -9
  70. nimble_python/types/job_list_response.py +9 -11
  71. nimble_python/types/job_update_response.py +3 -3
  72. nimble_python/types/jobs/__init__.py +1 -0
  73. nimble_python/types/{job_run_response.py → jobs/run_create_response.py} +3 -3
  74. nimble_python/types/jobs/run_get_response.py +3 -3
  75. nimble_python/types/jobs/run_list_params.py +2 -6
  76. nimble_python/types/jobs/run_list_response.py +6 -8
  77. nimble_python/types/jobs/runs/artifact_get_response.py +1 -7
  78. nimble_python/types/jobs/runs/artifact_list_response.py +1 -7
  79. {nimble_python-0.23.0.dist-info → nimble_python-1.0.0.dist-info}/METADATA +12 -12
  80. {nimble_python-0.23.0.dist-info → nimble_python-1.0.0.dist-info}/RECORD +82 -70
  81. nimble_python/types/agent_generate_params.py +0 -46
  82. nimble_python/types/agent_generate_response.py +0 -72
  83. nimble_python/types/agent_get_generation_response.py +0 -72
  84. nimble_python/types/task_agent/template_get_response.py +0 -66
  85. nimble_python/types/task_agent/template_list_params.py +0 -19
  86. nimble_python/types/task_agent/template_list_response.py +0 -75
  87. nimble_python/types/task_agent_create_response.py +0 -95
  88. nimble_python/types/task_agent_get_response.py +0 -95
  89. nimble_python/types/task_agent_list_params.py +0 -21
  90. nimble_python/types/task_agent_list_response.py +0 -106
  91. nimble_python/types/task_agent_run_params.py +0 -54
  92. nimble_python/types/task_agent_run_response.py +0 -62
  93. nimble_python/types/task_agent_update_response.py +0 -95
  94. {nimble_python-0.23.0.dist-info → nimble_python-1.0.0.dist-info}/WHEEL +0 -0
  95. {nimble_python-0.23.0.dist-info → nimble_python-1.0.0.dist-info}/licenses/LICENSE +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.