agenta 0.103.2__tar.gz → 0.103.4__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 (889) hide show
  1. {agenta-0.103.2 → agenta-0.103.4}/PKG-INFO +3 -3
  2. agenta-0.103.4/agenta/_client/__init__.py +40 -0
  3. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/applications/client.py +58 -47
  4. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/applications/raw_client.py +50 -37
  5. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/environments/client.py +120 -20
  6. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/environments/raw_client.py +148 -14
  7. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/evaluations/client.py +138 -9
  8. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/evaluations/raw_client.py +186 -11
  9. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/evaluators/client.py +60 -47
  10. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/evaluators/raw_client.py +52 -37
  11. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/queries/client.py +101 -8
  12. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/queries/raw_client.py +131 -6
  13. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/client.py +109 -16
  14. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/raw_client.py +137 -12
  15. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/__init__.py +22 -17
  16. agenta-0.103.4/agenta/_client/types/application_revision_input.py +55 -0
  17. agenta-0.103.2/agenta/_client/types/application_revision.py → agenta-0.103.4/agenta/_client/types/application_revision_output.py +2 -2
  18. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_resolve_response.py +2 -2
  19. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_response.py +2 -2
  20. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revisions_response.py +2 -2
  21. agenta-0.103.4/agenta/_client/types/environment_revision_input.py +50 -0
  22. agenta-0.103.2/agenta/_client/types/environment_revision.py → agenta-0.103.4/agenta/_client/types/environment_revision_output.py +2 -2
  23. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revision_resolve_response.py +2 -2
  24. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revision_response.py +2 -2
  25. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revisions_response.py +2 -2
  26. agenta-0.103.4/agenta/_client/types/environment_variant_fork.py +28 -0
  27. agenta-0.103.4/agenta/_client/types/evaluation_metrics_set_request.py +19 -0
  28. agenta-0.103.4/agenta/_client/types/evaluation_results_set_request.py +19 -0
  29. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run.py +2 -2
  30. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_create.py +2 -2
  31. agenta-0.103.2/agenta/_client/types/evaluation_run_data.py → agenta-0.103.4/agenta/_client/types/evaluation_run_data_input.py +3 -3
  32. agenta-0.103.4/agenta/_client/types/evaluation_run_data_output.py +24 -0
  33. agenta-0.103.2/agenta/_client/types/evaluation_run_data_step.py → agenta-0.103.4/agenta/_client/types/evaluation_run_data_step_input.py +9 -7
  34. agenta-0.103.2/agenta/_client/types/evaluation_run_data_step_input.py → agenta-0.103.4/agenta/_client/types/evaluation_run_data_step_input_key.py +1 -1
  35. agenta-0.103.4/agenta/_client/types/evaluation_run_data_step_input_origin.py +5 -0
  36. agenta-0.103.4/agenta/_client/types/evaluation_run_data_step_input_type.py +5 -0
  37. agenta-0.103.4/agenta/_client/types/evaluation_run_data_step_output.py +28 -0
  38. agenta-0.103.4/agenta/_client/types/evaluation_run_data_step_output_origin.py +5 -0
  39. agenta-0.103.4/agenta/_client/types/evaluation_run_data_step_output_type.py +5 -0
  40. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_edit.py +2 -2
  41. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_scenario.py +2 -1
  42. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_scenario_create.py +2 -1
  43. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_scenario_edit.py +5 -1
  44. agenta-0.103.4/agenta/_client/types/evaluator_revision_input.py +55 -0
  45. agenta-0.103.2/agenta/_client/types/evaluator_revision.py → agenta-0.103.4/agenta/_client/types/evaluator_revision_output.py +2 -2
  46. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_resolve_response.py +2 -2
  47. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_response.py +2 -2
  48. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revisions_response.py +2 -2
  49. agenta-0.103.2/agenta/_client/types/variant_fork.py → agenta-0.103.4/agenta/_client/types/query_variant_fork.py +2 -2
  50. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_data.py +1 -0
  51. agenta-0.103.4/agenta/_client/types/simple_queue_ids_response.py +19 -0
  52. agenta-0.103.4/agenta/_client/types/testset_variant_fork.py +28 -0
  53. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/users/client.py +68 -0
  54. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/users/raw_client.py +76 -0
  55. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workflows/client.py +35 -21
  56. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workflows/raw_client.py +31 -15
  57. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/tracing/processors.py +9 -2
  58. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/shared.py +4 -4
  59. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/running/resolver.py +54 -0
  60. {agenta-0.103.2 → agenta-0.103.4}/pyproject.toml +3 -3
  61. agenta-0.103.2/agenta/_client/__init__.py +0 -40
  62. agenta-0.103.2/agenta/_client/types/application_fork.py +0 -39
  63. agenta-0.103.2/agenta/_client/types/application_revision_fork.py +0 -32
  64. agenta-0.103.2/agenta/_client/types/evaluation_run_data_step_origin.py +0 -5
  65. agenta-0.103.2/agenta/_client/types/evaluation_run_data_step_type.py +0 -5
  66. agenta-0.103.2/agenta/_client/types/evaluator_fork.py +0 -39
  67. agenta-0.103.2/agenta/_client/types/evaluator_revision_fork.py +0 -32
  68. agenta-0.103.2/agenta/_client/types/revision_fork.py +0 -30
  69. agenta-0.103.2/agenta/_client/types/workflow_fork.py +0 -32
  70. agenta-0.103.2/agenta/_client/types/workflow_revision_fork.py +0 -32
  71. {agenta-0.103.2 → agenta-0.103.4}/README.md +0 -0
  72. {agenta-0.103.2 → agenta-0.103.4}/agenta/__init__.py +0 -0
  73. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/access/__init__.py +0 -0
  74. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/access/client.py +0 -0
  75. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/access/raw_client.py +0 -0
  76. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/annotations/__init__.py +0 -0
  77. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/annotations/client.py +0 -0
  78. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/annotations/raw_client.py +0 -0
  79. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/applications/__init__.py +0 -0
  80. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/applications/types/__init__.py +0 -0
  81. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/applications/types/query_application_variants_request_order.py +0 -0
  82. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/billing/__init__.py +0 -0
  83. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/billing/client.py +0 -0
  84. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/billing/raw_client.py +0 -0
  85. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/client.py +0 -0
  86. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/__init__.py +0 -0
  87. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/api_error.py +0 -0
  88. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/client_wrapper.py +0 -0
  89. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/datetime_utils.py +0 -0
  90. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/file.py +0 -0
  91. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/force_multipart.py +0 -0
  92. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/http_client.py +0 -0
  93. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/http_response.py +0 -0
  94. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/http_sse/__init__.py +0 -0
  95. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/http_sse/_api.py +0 -0
  96. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/http_sse/_decoders.py +0 -0
  97. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/http_sse/_exceptions.py +0 -0
  98. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/http_sse/_models.py +0 -0
  99. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/jsonable_encoder.py +0 -0
  100. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/pydantic_utilities.py +0 -0
  101. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/query_encoder.py +0 -0
  102. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/remove_none_from_dict.py +0 -0
  103. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/request_options.py +0 -0
  104. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/core/serialization.py +0 -0
  105. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/environment.py +0 -0
  106. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/environments/__init__.py +0 -0
  107. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/environments/types/__init__.py +0 -0
  108. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/environments/types/query_environment_revisions_request_order.py +0 -0
  109. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/environments/types/query_environment_variants_request_order.py +0 -0
  110. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/environments/types/query_environments_request_order.py +0 -0
  111. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/errors/__init__.py +0 -0
  112. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/errors/unprocessable_entity_error.py +0 -0
  113. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/evaluations/__init__.py +0 -0
  114. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/evaluators/__init__.py +0 -0
  115. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/evaluators/types/__init__.py +0 -0
  116. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/evaluators/types/query_evaluator_variants_request_order.py +0 -0
  117. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/events/__init__.py +0 -0
  118. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/events/client.py +0 -0
  119. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/events/raw_client.py +0 -0
  120. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/folders/__init__.py +0 -0
  121. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/folders/client.py +0 -0
  122. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/folders/raw_client.py +0 -0
  123. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/invocations/__init__.py +0 -0
  124. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/invocations/client.py +0 -0
  125. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/invocations/raw_client.py +0 -0
  126. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/keys/__init__.py +0 -0
  127. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/keys/client.py +0 -0
  128. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/keys/raw_client.py +0 -0
  129. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/legacy/__init__.py +0 -0
  130. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/legacy/client.py +0 -0
  131. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/legacy/raw_client.py +0 -0
  132. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/legacy/types/__init__.py +0 -0
  133. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/legacy/types/fetch_legacy_analytics_request_newest.py +0 -0
  134. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/legacy/types/fetch_legacy_analytics_request_oldest.py +0 -0
  135. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/organizations/__init__.py +0 -0
  136. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/organizations/client.py +0 -0
  137. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/organizations/raw_client.py +0 -0
  138. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/projects/__init__.py +0 -0
  139. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/projects/client.py +0 -0
  140. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/projects/raw_client.py +0 -0
  141. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/queries/__init__.py +0 -0
  142. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/queries/types/__init__.py +0 -0
  143. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/queries/types/query_queries_request_order.py +0 -0
  144. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/secrets/__init__.py +0 -0
  145. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/secrets/client.py +0 -0
  146. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/secrets/raw_client.py +0 -0
  147. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/status/__init__.py +0 -0
  148. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/status/client.py +0 -0
  149. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/status/raw_client.py +0 -0
  150. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testcases/__init__.py +0 -0
  151. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testcases/client.py +0 -0
  152. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testcases/raw_client.py +0 -0
  153. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/__init__.py +0 -0
  154. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/types/__init__.py +0 -0
  155. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/types/create_simple_testset_from_file_request_file_type.py +0 -0
  156. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/types/create_testset_revision_from_file_request_file_type.py +0 -0
  157. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/types/edit_simple_testset_from_file_request_file_type.py +0 -0
  158. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/types/fetch_simple_testset_to_file_request_file_type.py +0 -0
  159. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/testsets/types/fetch_testset_revision_to_file_request_file_type.py +0 -0
  160. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/tools/__init__.py +0 -0
  161. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/tools/client.py +0 -0
  162. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/tools/raw_client.py +0 -0
  163. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/traces/__init__.py +0 -0
  164. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/traces/client.py +0 -0
  165. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/traces/raw_client.py +0 -0
  166. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/traces/types/__init__.py +0 -0
  167. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/traces/types/query_spans_analytics_request_newest.py +0 -0
  168. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/traces/types/query_spans_analytics_request_oldest.py +0 -0
  169. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_account_create_options.py +0 -0
  170. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_account_read.py +0 -0
  171. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_accounts_create.py +0 -0
  172. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_accounts_delete.py +0 -0
  173. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_accounts_delete_target.py +0 -0
  174. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_accounts_response.py +0 -0
  175. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_api_key_create.py +0 -0
  176. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_api_key_response.py +0 -0
  177. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_delete_response.py +0 -0
  178. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_deleted_entities.py +0 -0
  179. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_deleted_entity.py +0 -0
  180. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_organization_create.py +0 -0
  181. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_organization_membership_create.py +0 -0
  182. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_organization_membership_read.py +0 -0
  183. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_organization_read.py +0 -0
  184. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_project_create.py +0 -0
  185. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_project_membership_create.py +0 -0
  186. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_project_membership_read.py +0 -0
  187. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_project_read.py +0 -0
  188. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_account_create.py +0 -0
  189. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_account_delete_entry.py +0 -0
  190. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_account_read.py +0 -0
  191. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_api_keys_create.py +0 -0
  192. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_create.py +0 -0
  193. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_delete.py +0 -0
  194. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_organizations_create.py +0 -0
  195. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_organizations_memberships_create.py +0 -0
  196. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_organizations_transfer_ownership.py +0 -0
  197. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_organizations_transfer_ownership_include_projects.py +0 -0
  198. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_organizations_transfer_ownership_include_projects_zero.py +0 -0
  199. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_organizations_transfer_ownership_include_workspaces.py +0 -0
  200. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_organizations_transfer_ownership_include_workspaces_zero.py +0 -0
  201. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_organizations_transfer_ownership_response.py +0 -0
  202. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_projects_create.py +0 -0
  203. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_projects_memberships_create.py +0 -0
  204. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_response.py +0 -0
  205. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_users_create.py +0 -0
  206. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_users_identities_create.py +0 -0
  207. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_users_reset_password.py +0 -0
  208. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_workspaces_create.py +0 -0
  209. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_simple_accounts_workspaces_memberships_create.py +0 -0
  210. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_structured_error.py +0 -0
  211. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_subscription_create.py +0 -0
  212. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_subscription_read.py +0 -0
  213. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_user_create.py +0 -0
  214. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_user_identity_create.py +0 -0
  215. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_user_identity_read.py +0 -0
  216. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_user_identity_read_status.py +0 -0
  217. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_user_read.py +0 -0
  218. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_workspace_create.py +0 -0
  219. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_workspace_membership_create.py +0 -0
  220. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_workspace_membership_read.py +0 -0
  221. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/admin_workspace_read.py +0 -0
  222. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/analytics.py +0 -0
  223. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/analytics_response.py +0 -0
  224. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation.py +0 -0
  225. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_create.py +0 -0
  226. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_create_links.py +0 -0
  227. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_edit.py +0 -0
  228. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_edit_links.py +0 -0
  229. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_link_response.py +0 -0
  230. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_links.py +0 -0
  231. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_query.py +0 -0
  232. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_query_links.py +0 -0
  233. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotation_response.py +0 -0
  234. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/annotations_response.py +0 -0
  235. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application.py +0 -0
  236. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_artifact_flags.py +0 -0
  237. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_artifact_query_flags.py +0 -0
  238. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_catalog_preset.py +0 -0
  239. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_catalog_preset_response.py +0 -0
  240. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_catalog_presets_response.py +0 -0
  241. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_catalog_template.py +0 -0
  242. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_catalog_template_response.py +0 -0
  243. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_catalog_templates_response.py +0 -0
  244. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_catalog_type.py +0 -0
  245. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_catalog_types_response.py +0 -0
  246. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_create.py +0 -0
  247. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_edit.py +0 -0
  248. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_flags.py +0 -0
  249. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_query.py +0 -0
  250. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_response.py +0 -0
  251. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_commit.py +0 -0
  252. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_create.py +0 -0
  253. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_data_input.py +0 -0
  254. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_data_input_headers_value.py +0 -0
  255. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_data_input_runtime.py +0 -0
  256. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_data_output.py +0 -0
  257. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_data_output_headers_value.py +0 -0
  258. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_data_output_runtime.py +0 -0
  259. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_edit.py +0 -0
  260. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_flags.py +0 -0
  261. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_query.py +0 -0
  262. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revision_query_flags.py +0 -0
  263. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_revisions_log.py +0 -0
  264. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_variant.py +0 -0
  265. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_variant_create.py +0 -0
  266. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_variant_edit.py +0 -0
  267. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_variant_flags.py +0 -0
  268. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_variant_fork.py +0 -0
  269. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_variant_response.py +0 -0
  270. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/application_variants_response.py +0 -0
  271. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/applications_response.py +0 -0
  272. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/body_configs_fetch_variants_configs_fetch_post.py +0 -0
  273. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/bucket.py +0 -0
  274. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/collect_status_response.py +0 -0
  275. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/comparison_operator.py +0 -0
  276. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/condition.py +0 -0
  277. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/condition_operator.py +0 -0
  278. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/condition_options.py +0 -0
  279. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/condition_value.py +0 -0
  280. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/config_response_model.py +0 -0
  281. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/custom_model_settings_dto.py +0 -0
  282. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/custom_provider_dto.py +0 -0
  283. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/custom_provider_kind.py +0 -0
  284. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/custom_provider_settings_dto.py +0 -0
  285. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/dict_operator.py +0 -0
  286. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/discover_response.py +0 -0
  287. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/discover_response_methods_value.py +0 -0
  288. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/ee_src_models_api_organization_models_organization.py +0 -0
  289. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/entity_ref.py +0 -0
  290. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment.py +0 -0
  291. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_create.py +0 -0
  292. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_edit.py +0 -0
  293. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_flags.py +0 -0
  294. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_query_flags.py +0 -0
  295. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_response.py +0 -0
  296. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revision_commit.py +0 -0
  297. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revision_create.py +0 -0
  298. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revision_data.py +0 -0
  299. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revision_delta.py +0 -0
  300. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revision_edit.py +0 -0
  301. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_revisions_log.py +0 -0
  302. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_variant.py +0 -0
  303. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_variant_create.py +0 -0
  304. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_variant_edit.py +0 -0
  305. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_variant_response.py +0 -0
  306. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environment_variants_response.py +0 -0
  307. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/environments_response.py +0 -0
  308. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/error_policy.py +0 -0
  309. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_metrics.py +0 -0
  310. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_metrics_create.py +0 -0
  311. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_metrics_ids_response.py +0 -0
  312. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_metrics_query.py +0 -0
  313. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_metrics_query_scenario_ids.py +0 -0
  314. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_metrics_query_timestamps.py +0 -0
  315. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_metrics_refresh.py +0 -0
  316. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_metrics_response.py +0 -0
  317. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue.py +0 -0
  318. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_create.py +0 -0
  319. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_data.py +0 -0
  320. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_edit.py +0 -0
  321. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_flags.py +0 -0
  322. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_id_response.py +0 -0
  323. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_ids_response.py +0 -0
  324. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_query.py +0 -0
  325. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_query_flags.py +0 -0
  326. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_response.py +0 -0
  327. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queue_scenarios_query.py +0 -0
  328. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_queues_response.py +0 -0
  329. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_result.py +0 -0
  330. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_result_create.py +0 -0
  331. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_result_id_response.py +0 -0
  332. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_result_ids_response.py +0 -0
  333. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_result_query.py +0 -0
  334. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_result_response.py +0 -0
  335. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_results_response.py +0 -0
  336. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_data_concurrency.py +0 -0
  337. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_data_mapping.py +0 -0
  338. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_data_mapping_column.py +0 -0
  339. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_data_mapping_step.py +0 -0
  340. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_flags.py +0 -0
  341. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_id_response.py +0 -0
  342. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_ids_request.py +0 -0
  343. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_ids_response.py +0 -0
  344. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_query.py +0 -0
  345. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_query_flags.py +0 -0
  346. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_run_response.py +0 -0
  347. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_runs_response.py +0 -0
  348. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_scenario_id_response.py +0 -0
  349. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_scenario_ids_response.py +0 -0
  350. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_scenario_query.py +0 -0
  351. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_scenario_response.py +0 -0
  352. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_scenarios_response.py +0 -0
  353. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluation_status.py +0 -0
  354. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator.py +0 -0
  355. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_artifact_flags.py +0 -0
  356. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_artifact_query_flags.py +0 -0
  357. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_catalog_preset.py +0 -0
  358. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_catalog_preset_response.py +0 -0
  359. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_catalog_presets_response.py +0 -0
  360. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_catalog_template.py +0 -0
  361. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_catalog_template_response.py +0 -0
  362. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_catalog_templates_response.py +0 -0
  363. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_catalog_type.py +0 -0
  364. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_catalog_types_response.py +0 -0
  365. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_create.py +0 -0
  366. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_edit.py +0 -0
  367. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_flags.py +0 -0
  368. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_query.py +0 -0
  369. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_response.py +0 -0
  370. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_commit.py +0 -0
  371. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_create.py +0 -0
  372. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_data_input.py +0 -0
  373. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_data_input_headers_value.py +0 -0
  374. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_data_input_runtime.py +0 -0
  375. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_data_output.py +0 -0
  376. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_data_output_headers_value.py +0 -0
  377. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_data_output_runtime.py +0 -0
  378. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_edit.py +0 -0
  379. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_flags.py +0 -0
  380. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_query.py +0 -0
  381. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revision_query_flags.py +0 -0
  382. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_revisions_log.py +0 -0
  383. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_template.py +0 -0
  384. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_templates_response.py +0 -0
  385. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_variant.py +0 -0
  386. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_variant_create.py +0 -0
  387. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_variant_edit.py +0 -0
  388. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_variant_flags.py +0 -0
  389. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_variant_fork.py +0 -0
  390. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_variant_response.py +0 -0
  391. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluator_variants_response.py +0 -0
  392. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/evaluators_response.py +0 -0
  393. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/event.py +0 -0
  394. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/event_query.py +0 -0
  395. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/event_type.py +0 -0
  396. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/events_query_response.py +0 -0
  397. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/existence_operator.py +0 -0
  398. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/filtering_input.py +0 -0
  399. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/filtering_input_conditions_item.py +0 -0
  400. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/filtering_output.py +0 -0
  401. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/filtering_output_conditions_item.py +0 -0
  402. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/focus.py +0 -0
  403. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folder.py +0 -0
  404. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folder_create.py +0 -0
  405. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folder_edit.py +0 -0
  406. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folder_id_response.py +0 -0
  407. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folder_kind.py +0 -0
  408. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folder_query.py +0 -0
  409. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folder_query_kinds.py +0 -0
  410. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folder_response.py +0 -0
  411. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/folders_response.py +0 -0
  412. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/format.py +0 -0
  413. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/formatting.py +0 -0
  414. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/full_json_input.py +0 -0
  415. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/full_json_output.py +0 -0
  416. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/header.py +0 -0
  417. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/http_validation_error.py +0 -0
  418. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invite_request.py +0 -0
  419. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation.py +0 -0
  420. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_create.py +0 -0
  421. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_create_links.py +0 -0
  422. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_edit.py +0 -0
  423. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_edit_links.py +0 -0
  424. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_link_response.py +0 -0
  425. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_links.py +0 -0
  426. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_query.py +0 -0
  427. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_query_links.py +0 -0
  428. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocation_response.py +0 -0
  429. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/invocations_response.py +0 -0
  430. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/json_schemas_input.py +0 -0
  431. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/json_schemas_output.py +0 -0
  432. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/label_json_input.py +0 -0
  433. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/label_json_output.py +0 -0
  434. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/legacy_lifecycle_dto.py +0 -0
  435. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/list_api_keys_response.py +0 -0
  436. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/list_operator.py +0 -0
  437. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/list_options.py +0 -0
  438. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/logical_operator.py +0 -0
  439. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/metric_spec.py +0 -0
  440. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/metric_type.py +0 -0
  441. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/metrics_bucket.py +0 -0
  442. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/numeric_operator.py +0 -0
  443. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_event_input.py +0 -0
  444. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_event_input_timestamp.py +0 -0
  445. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_event_output.py +0 -0
  446. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_event_output_timestamp.py +0 -0
  447. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_hash_input.py +0 -0
  448. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_hash_output.py +0 -0
  449. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_link_input.py +0 -0
  450. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_link_output.py +0 -0
  451. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_links_response.py +0 -0
  452. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_reference_input.py +0 -0
  453. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_reference_output.py +0 -0
  454. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_span_kind.py +0 -0
  455. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_status_code.py +0 -0
  456. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_tracing_request.py +0 -0
  457. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/o_tel_tracing_response.py +0 -0
  458. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/old_analytics_response.py +0 -0
  459. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/organization_details.py +0 -0
  460. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/organization_domain_response.py +0 -0
  461. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/organization_provider_response.py +0 -0
  462. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/organization_update.py +0 -0
  463. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/oss_src_models_api_organization_models_organization.py +0 -0
  464. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/permission.py +0 -0
  465. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/projects_response.py +0 -0
  466. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/queries_response.py +0 -0
  467. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query.py +0 -0
  468. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_create.py +0 -0
  469. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_edit.py +0 -0
  470. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_flags.py +0 -0
  471. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_query_flags.py +0 -0
  472. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_response.py +0 -0
  473. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revision.py +0 -0
  474. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revision_commit.py +0 -0
  475. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revision_create.py +0 -0
  476. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revision_data_input.py +0 -0
  477. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revision_data_output.py +0 -0
  478. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revision_edit.py +0 -0
  479. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revision_query.py +0 -0
  480. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revision_response.py +0 -0
  481. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revisions_log.py +0 -0
  482. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_revisions_response.py +0 -0
  483. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_variant.py +0 -0
  484. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_variant_create.py +0 -0
  485. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_variant_edit.py +0 -0
  486. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_variant_query.py +0 -0
  487. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_variant_response.py +0 -0
  488. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/query_variants_response.py +0 -0
  489. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/reference.py +0 -0
  490. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/reference_request_model_input.py +0 -0
  491. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/reference_request_model_output.py +0 -0
  492. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/request_type.py +0 -0
  493. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/resolution_info.py +0 -0
  494. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/retrieval_info.py +0 -0
  495. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/secret_dto.py +0 -0
  496. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/secret_dto_data.py +0 -0
  497. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/secret_kind.py +0 -0
  498. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/secret_response_dto.py +0 -0
  499. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/secret_response_dto_data.py +0 -0
  500. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/session_ids_response.py +0 -0
  501. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application.py +0 -0
  502. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_create.py +0 -0
  503. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_data_input.py +0 -0
  504. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_data_input_headers_value.py +0 -0
  505. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_data_input_runtime.py +0 -0
  506. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_data_output.py +0 -0
  507. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_data_output_headers_value.py +0 -0
  508. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_data_output_runtime.py +0 -0
  509. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_edit.py +0 -0
  510. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_flags.py +0 -0
  511. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_query.py +0 -0
  512. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_query_flags.py +0 -0
  513. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_application_response.py +0 -0
  514. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_applications_response.py +0 -0
  515. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_environment.py +0 -0
  516. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_environment_create.py +0 -0
  517. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_environment_edit.py +0 -0
  518. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_environment_query.py +0 -0
  519. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_environment_response.py +0 -0
  520. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_environments_response.py +0 -0
  521. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation.py +0 -0
  522. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_create.py +0 -0
  523. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data.py +0 -0
  524. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data_application_steps.py +0 -0
  525. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data_application_steps_one_value.py +0 -0
  526. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data_evaluator_steps.py +0 -0
  527. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data_evaluator_steps_one_value.py +0 -0
  528. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data_query_steps.py +0 -0
  529. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data_query_steps_one_value.py +0 -0
  530. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data_testset_steps.py +0 -0
  531. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_data_testset_steps_one_value.py +0 -0
  532. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_edit.py +0 -0
  533. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_id_response.py +0 -0
  534. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_query.py +0 -0
  535. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluation_response.py +0 -0
  536. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluations_response.py +0 -0
  537. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator.py +0 -0
  538. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_create.py +0 -0
  539. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_data_input.py +0 -0
  540. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_data_input_headers_value.py +0 -0
  541. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_data_input_runtime.py +0 -0
  542. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_data_output.py +0 -0
  543. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_data_output_headers_value.py +0 -0
  544. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_data_output_runtime.py +0 -0
  545. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_edit.py +0 -0
  546. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_flags.py +0 -0
  547. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_query.py +0 -0
  548. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_query_flags.py +0 -0
  549. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluator_response.py +0 -0
  550. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_evaluators_response.py +0 -0
  551. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queries_response.py +0 -0
  552. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_query.py +0 -0
  553. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_query_create.py +0 -0
  554. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_query_edit.py +0 -0
  555. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_query_query.py +0 -0
  556. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_query_response.py +0 -0
  557. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue.py +0 -0
  558. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_create.py +0 -0
  559. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_data_evaluators.py +0 -0
  560. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_data_evaluators_one_value.py +0 -0
  561. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_id_response.py +0 -0
  562. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_kind.py +0 -0
  563. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_query.py +0 -0
  564. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_response.py +0 -0
  565. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_scenarios_query.py +0 -0
  566. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_scenarios_response.py +0 -0
  567. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queue_settings.py +0 -0
  568. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_queues_response.py +0 -0
  569. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_testset.py +0 -0
  570. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_testset_create.py +0 -0
  571. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_testset_edit.py +0 -0
  572. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_testset_query.py +0 -0
  573. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_testset_response.py +0 -0
  574. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_testsets_response.py +0 -0
  575. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace.py +0 -0
  576. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_channel.py +0 -0
  577. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_create.py +0 -0
  578. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_create_links.py +0 -0
  579. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_edit.py +0 -0
  580. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_edit_links.py +0 -0
  581. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_kind.py +0 -0
  582. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_link_response.py +0 -0
  583. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_links.py +0 -0
  584. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_origin.py +0 -0
  585. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_query.py +0 -0
  586. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_query_links.py +0 -0
  587. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_references.py +0 -0
  588. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_trace_response.py +0 -0
  589. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_traces_response.py +0 -0
  590. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow.py +0 -0
  591. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_create.py +0 -0
  592. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_data_input.py +0 -0
  593. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_data_input_headers_value.py +0 -0
  594. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_data_input_runtime.py +0 -0
  595. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_data_output.py +0 -0
  596. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_data_output_headers_value.py +0 -0
  597. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_data_output_runtime.py +0 -0
  598. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_edit.py +0 -0
  599. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_flags.py +0 -0
  600. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_query.py +0 -0
  601. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_query_flags.py +0 -0
  602. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflow_response.py +0 -0
  603. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/simple_workflows_response.py +0 -0
  604. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/span_input.py +0 -0
  605. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/span_input_end_time.py +0 -0
  606. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/span_input_start_time.py +0 -0
  607. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/span_output.py +0 -0
  608. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/span_output_end_time.py +0 -0
  609. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/span_output_start_time.py +0 -0
  610. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/span_response.py +0 -0
  611. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/span_type.py +0 -0
  612. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_node_input.py +0 -0
  613. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_node_input_end_time.py +0 -0
  614. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_node_input_spans_value.py +0 -0
  615. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_node_input_start_time.py +0 -0
  616. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_node_output.py +0 -0
  617. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_node_output_end_time.py +0 -0
  618. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_node_output_spans_value.py +0 -0
  619. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_node_output_start_time.py +0 -0
  620. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_response.py +0 -0
  621. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_tree_input.py +0 -0
  622. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_tree_input_spans_value.py +0 -0
  623. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_tree_output.py +0 -0
  624. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/spans_tree_output_spans_value.py +0 -0
  625. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/sso_provider_dto.py +0 -0
  626. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/sso_provider_info.py +0 -0
  627. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/sso_provider_settings_dto.py +0 -0
  628. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/sso_providers.py +0 -0
  629. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/standard_provider_dto.py +0 -0
  630. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/standard_provider_kind.py +0 -0
  631. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/standard_provider_settings_dto.py +0 -0
  632. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/status.py +0 -0
  633. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/string_operator.py +0 -0
  634. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testcase_input.py +0 -0
  635. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testcase_output.py +0 -0
  636. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testcase_response.py +0 -0
  637. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testcases_response.py +0 -0
  638. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset.py +0 -0
  639. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_create.py +0 -0
  640. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_edit.py +0 -0
  641. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_flags.py +0 -0
  642. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_query.py +0 -0
  643. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_response.py +0 -0
  644. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision.py +0 -0
  645. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_commit.py +0 -0
  646. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_create.py +0 -0
  647. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_data_input.py +0 -0
  648. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_data_output.py +0 -0
  649. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_delta.py +0 -0
  650. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_delta_columns.py +0 -0
  651. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_delta_rows.py +0 -0
  652. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_edit.py +0 -0
  653. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_query.py +0 -0
  654. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revision_response.py +0 -0
  655. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revisions_log.py +0 -0
  656. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_revisions_response.py +0 -0
  657. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_variant.py +0 -0
  658. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_variant_create.py +0 -0
  659. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_variant_edit.py +0 -0
  660. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_variant_query.py +0 -0
  661. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_variant_response.py +0 -0
  662. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testset_variants_response.py +0 -0
  663. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/testsets_response.py +0 -0
  664. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/text_options.py +0 -0
  665. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_auth_scheme.py +0 -0
  666. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_call_data.py +0 -0
  667. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_call_function.py +0 -0
  668. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_call_response.py +0 -0
  669. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_action.py +0 -0
  670. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_action_details.py +0 -0
  671. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_action_response.py +0 -0
  672. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_action_response_action.py +0 -0
  673. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_actions_response.py +0 -0
  674. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_actions_response_actions_item.py +0 -0
  675. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_integration.py +0 -0
  676. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_integration_details.py +0 -0
  677. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_integration_response.py +0 -0
  678. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_integration_response_integration.py +0 -0
  679. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_integrations_response.py +0 -0
  680. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_integrations_response_integrations_item.py +0 -0
  681. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_provider.py +0 -0
  682. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_provider_details.py +0 -0
  683. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_provider_response.py +0 -0
  684. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_provider_response_provider.py +0 -0
  685. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_providers_response.py +0 -0
  686. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_catalog_providers_response_providers_item.py +0 -0
  687. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_connection.py +0 -0
  688. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_connection_create.py +0 -0
  689. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_connection_create_data.py +0 -0
  690. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_connection_response.py +0 -0
  691. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_connection_status.py +0 -0
  692. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_connections_response.py +0 -0
  693. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_provider_kind.py +0 -0
  694. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_result.py +0 -0
  695. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tool_result_data.py +0 -0
  696. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_id_response.py +0 -0
  697. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_ids_response.py +0 -0
  698. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_input.py +0 -0
  699. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_input_spans_value.py +0 -0
  700. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_output.py +0 -0
  701. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_output_spans_value.py +0 -0
  702. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_request.py +0 -0
  703. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_response.py +0 -0
  704. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/trace_type.py +0 -0
  705. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/traces_request.py +0 -0
  706. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/traces_response.py +0 -0
  707. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/tracing_query.py +0 -0
  708. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/user_ids_response.py +0 -0
  709. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/validation_error.py +0 -0
  710. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/validation_error_loc_item.py +0 -0
  711. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_deliveries_response.py +0 -0
  712. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_delivery.py +0 -0
  713. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_delivery_create.py +0 -0
  714. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_delivery_data.py +0 -0
  715. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_delivery_query.py +0 -0
  716. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_delivery_response.py +0 -0
  717. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_delivery_response_info.py +0 -0
  718. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_event_type.py +0 -0
  719. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_provider_dto.py +0 -0
  720. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_provider_settings_dto.py +0 -0
  721. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_subscription.py +0 -0
  722. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_subscription_create.py +0 -0
  723. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_subscription_data.py +0 -0
  724. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_subscription_data_auth_mode.py +0 -0
  725. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_subscription_edit.py +0 -0
  726. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_subscription_query.py +0 -0
  727. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_subscription_response.py +0 -0
  728. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/webhook_subscriptions_response.py +0 -0
  729. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/windowing.py +0 -0
  730. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/windowing_order.py +0 -0
  731. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow.py +0 -0
  732. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_artifact_flags.py +0 -0
  733. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_flags.py +0 -0
  734. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_preset.py +0 -0
  735. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_preset_response.py +0 -0
  736. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_presets_response.py +0 -0
  737. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_template.py +0 -0
  738. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_template_response.py +0 -0
  739. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_templates_response.py +0 -0
  740. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_type.py +0 -0
  741. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_type_response.py +0 -0
  742. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_catalog_types_response.py +0 -0
  743. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_create.py +0 -0
  744. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_edit.py +0 -0
  745. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_flags.py +0 -0
  746. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_response.py +0 -0
  747. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_commit.py +0 -0
  748. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_create.py +0 -0
  749. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_data_input.py +0 -0
  750. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_data_input_headers_value.py +0 -0
  751. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_data_input_runtime.py +0 -0
  752. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_data_output.py +0 -0
  753. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_data_output_headers_value.py +0 -0
  754. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_data_output_runtime.py +0 -0
  755. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_edit.py +0 -0
  756. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_flags.py +0 -0
  757. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_input.py +0 -0
  758. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_output.py +0 -0
  759. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_resolve_response.py +0 -0
  760. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revision_response.py +0 -0
  761. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revisions_log.py +0 -0
  762. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_revisions_response.py +0 -0
  763. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_variant.py +0 -0
  764. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_variant_create.py +0 -0
  765. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_variant_edit.py +0 -0
  766. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_variant_flags.py +0 -0
  767. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_variant_fork.py +0 -0
  768. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_variant_response.py +0 -0
  769. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflow_variants_response.py +0 -0
  770. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workflows_response.py +0 -0
  771. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workspace.py +0 -0
  772. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workspace_member_response.py +0 -0
  773. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workspace_permission.py +0 -0
  774. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/types/workspace_response.py +0 -0
  775. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/users/__init__.py +0 -0
  776. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/webhooks/__init__.py +0 -0
  777. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/webhooks/client.py +0 -0
  778. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/webhooks/raw_client.py +0 -0
  779. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/webhooks/types/__init__.py +0 -0
  780. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/webhooks/types/webhook_subscription_test_request_subscription.py +0 -0
  781. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workflows/__init__.py +0 -0
  782. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workflows/types/__init__.py +0 -0
  783. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workflows/types/query_workflow_revisions_request_order.py +0 -0
  784. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workflows/types/query_workflow_variants_request_order.py +0 -0
  785. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workflows/types/query_workflows_request_order.py +0 -0
  786. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workspaces/__init__.py +0 -0
  787. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workspaces/client.py +0 -0
  788. {agenta-0.103.2 → agenta-0.103.4}/agenta/_client/workspaces/raw_client.py +0 -0
  789. {agenta-0.103.2 → agenta-0.103.4}/agenta/client/__init__.py +0 -0
  790. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/__init__.py +0 -0
  791. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/contexts/__init__.py +0 -0
  792. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/contexts/routing.py +0 -0
  793. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/contexts/running.py +0 -0
  794. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/contexts/tracing.py +0 -0
  795. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/decorators/__init__.py +0 -0
  796. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/decorators/routing.py +0 -0
  797. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/decorators/running.py +0 -0
  798. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/decorators/tracing.py +0 -0
  799. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/__init__.py +0 -0
  800. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/__init__.py +0 -0
  801. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/builtin.py +0 -0
  802. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/catalog.py +0 -0
  803. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/errors.py +0 -0
  804. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/handlers.py +0 -0
  805. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/interfaces.py +0 -0
  806. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/registry.py +0 -0
  807. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/runners/__init__.py +0 -0
  808. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/runners/base.py +0 -0
  809. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/runners/daytona.py +0 -0
  810. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/runners/local.py +0 -0
  811. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/runners/registry.py +0 -0
  812. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/sandbox.py +0 -0
  813. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/templates.py +0 -0
  814. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/running/utils.py +0 -0
  815. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/tracing/__init__.py +0 -0
  816. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/tracing/attributes.py +0 -0
  817. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/tracing/conventions.py +0 -0
  818. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/tracing/exporters.py +0 -0
  819. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/tracing/propagation.py +0 -0
  820. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/tracing/spans.py +0 -0
  821. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/engines/tracing/tracing.py +0 -0
  822. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/__init__.py +0 -0
  823. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/metrics.py +0 -0
  824. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/preview/__init__.py +0 -0
  825. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/preview/evaluate.py +0 -0
  826. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/preview/utils.py +0 -0
  827. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/results.py +0 -0
  828. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runs.py +0 -0
  829. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runtime/__init__.py +0 -0
  830. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runtime/adapters.py +0 -0
  831. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runtime/executor.py +0 -0
  832. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runtime/models.py +0 -0
  833. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runtime/planner.py +0 -0
  834. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runtime/processor.py +0 -0
  835. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runtime/status.py +0 -0
  836. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/runtime/topology.py +0 -0
  837. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/evaluations/scenarios.py +0 -0
  838. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/litellm/__init__.py +0 -0
  839. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/litellm/litellm.py +0 -0
  840. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/litellm/mockllm.py +0 -0
  841. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/litellm/mocks/__init__.py +0 -0
  842. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/__init__.py +0 -0
  843. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/applications.py +0 -0
  844. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/apps.py +0 -0
  845. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/config.py +0 -0
  846. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/deployment.py +0 -0
  847. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/evaluations.py +0 -0
  848. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/evaluators.py +0 -0
  849. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/secrets.py +0 -0
  850. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/testsets.py +0 -0
  851. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/variant.py +0 -0
  852. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/managers/vault.py +0 -0
  853. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/__init__.py +0 -0
  854. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/routing/__init__.py +0 -0
  855. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/routing/auth.py +0 -0
  856. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/routing/cors.py +0 -0
  857. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/routing/otel.py +0 -0
  858. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/running/__init__.py +0 -0
  859. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/running/normalizer.py +0 -0
  860. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/middlewares/running/vault.py +0 -0
  861. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/models/__init__.py +0 -0
  862. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/models/blobs.py +0 -0
  863. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/models/evaluations.py +0 -0
  864. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/models/git.py +0 -0
  865. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/models/shared.py +0 -0
  866. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/models/testsets.py +0 -0
  867. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/models/tracing.py +0 -0
  868. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/models/workflows.py +0 -0
  869. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/__init__.py +0 -0
  870. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/assets.py +0 -0
  871. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/cache.py +0 -0
  872. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/client.py +0 -0
  873. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/constants.py +0 -0
  874. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/costs.py +0 -0
  875. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/exceptions.py +0 -0
  876. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/globals.py +0 -0
  877. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/helpers.py +0 -0
  878. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/init.py +0 -0
  879. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/lazy.py +0 -0
  880. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/logging.py +0 -0
  881. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/otel.py +0 -0
  882. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/preinit.py +0 -0
  883. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/references.py +0 -0
  884. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/rendering.py +0 -0
  885. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/resolvers.py +0 -0
  886. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/singleton.py +0 -0
  887. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/templating.py +0 -0
  888. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/timing.py +0 -0
  889. {agenta-0.103.2 → agenta-0.103.4}/agenta/sdk/utils/types.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agenta
3
- Version: 0.103.2
3
+ Version: 0.103.4
4
4
  Summary: The SDK for agenta is an open-source LLMOps platform.
5
5
  Keywords: LLMOps,LLM,evaluation,prompt engineering
6
6
  Author: Mahmoud Mabrouk, Juan Vega
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3.13
13
13
  Classifier: Topic :: Software Development :: Libraries
14
14
  Requires-Dist: pydantic>=2,<3
15
15
  Requires-Dist: httpx>=0.28,<0.29
16
- Requires-Dist: structlog>=25,<26
16
+ Requires-Dist: structlog>=26,<27
17
17
  Requires-Dist: opentelemetry-api>=1,<2
18
18
  Requires-Dist: opentelemetry-sdk>=1,<2
19
19
  Requires-Dist: opentelemetry-instrumentation>=0.63b1,<0.64
@@ -26,7 +26,7 @@ Requires-Dist: jinja2>=3,<4
26
26
  Requires-Dist: mystace>=1,<2
27
27
  Requires-Dist: orjson>=3,<4
28
28
  Requires-Dist: python-jsonpath>=2,<3
29
- Requires-Dist: daytona>=0.184,<0.185
29
+ Requires-Dist: daytona>=0.187,<0.188
30
30
  Requires-Python: >=3.11, <3.14
31
31
  Project-URL: Homepage, https://agenta.ai
32
32
  Project-URL: Repository, https://github.com/agenta-ai/agenta
@@ -0,0 +1,40 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ # isort: skip_file
4
+
5
+ import typing
6
+ from importlib import import_module
7
+ if typing.TYPE_CHECKING:
8
+ from .types import AdminAccountCreateOptions, AdminAccountRead, AdminAccountsCreate, AdminAccountsDelete, AdminAccountsDeleteTarget, AdminAccountsResponse, AdminApiKeyCreate, AdminApiKeyResponse, AdminDeleteResponse, AdminDeletedEntities, AdminDeletedEntity, AdminOrganizationCreate, AdminOrganizationMembershipCreate, AdminOrganizationMembershipRead, AdminOrganizationRead, AdminProjectCreate, AdminProjectMembershipCreate, AdminProjectMembershipRead, AdminProjectRead, AdminSimpleAccountCreate, AdminSimpleAccountDeleteEntry, AdminSimpleAccountRead, AdminSimpleAccountsApiKeysCreate, AdminSimpleAccountsCreate, AdminSimpleAccountsDelete, AdminSimpleAccountsOrganizationsCreate, AdminSimpleAccountsOrganizationsMembershipsCreate, AdminSimpleAccountsOrganizationsTransferOwnership, AdminSimpleAccountsOrganizationsTransferOwnershipIncludeProjects, AdminSimpleAccountsOrganizationsTransferOwnershipIncludeProjectsZero, AdminSimpleAccountsOrganizationsTransferOwnershipIncludeWorkspaces, AdminSimpleAccountsOrganizationsTransferOwnershipIncludeWorkspacesZero, AdminSimpleAccountsOrganizationsTransferOwnershipResponse, AdminSimpleAccountsProjectsCreate, AdminSimpleAccountsProjectsMembershipsCreate, AdminSimpleAccountsResponse, AdminSimpleAccountsUsersCreate, AdminSimpleAccountsUsersIdentitiesCreate, AdminSimpleAccountsUsersResetPassword, AdminSimpleAccountsWorkspacesCreate, AdminSimpleAccountsWorkspacesMembershipsCreate, AdminStructuredError, AdminSubscriptionCreate, AdminSubscriptionRead, AdminUserCreate, AdminUserIdentityCreate, AdminUserIdentityRead, AdminUserIdentityReadStatus, AdminUserRead, AdminWorkspaceCreate, AdminWorkspaceMembershipCreate, AdminWorkspaceMembershipRead, AdminWorkspaceRead, Analytics, AnalyticsResponse, Annotation, AnnotationCreate, AnnotationCreateLinks, AnnotationEdit, AnnotationEditLinks, AnnotationLinkResponse, AnnotationLinks, AnnotationQuery, AnnotationQueryLinks, AnnotationResponse, AnnotationsResponse, Application, ApplicationArtifactFlags, ApplicationArtifactQueryFlags, ApplicationCatalogPreset, ApplicationCatalogPresetResponse, ApplicationCatalogPresetsResponse, ApplicationCatalogTemplate, ApplicationCatalogTemplateResponse, ApplicationCatalogTemplatesResponse, ApplicationCatalogType, ApplicationCatalogTypesResponse, ApplicationCreate, ApplicationEdit, ApplicationFlags, ApplicationQuery, ApplicationResponse, ApplicationRevisionCommit, ApplicationRevisionCreate, ApplicationRevisionDataInput, ApplicationRevisionDataInputHeadersValue, ApplicationRevisionDataInputRuntime, ApplicationRevisionDataOutput, ApplicationRevisionDataOutputHeadersValue, ApplicationRevisionDataOutputRuntime, ApplicationRevisionEdit, ApplicationRevisionFlags, ApplicationRevisionInput, ApplicationRevisionOutput, ApplicationRevisionQuery, ApplicationRevisionQueryFlags, ApplicationRevisionResolveResponse, ApplicationRevisionResponse, ApplicationRevisionsLog, ApplicationRevisionsResponse, ApplicationVariant, ApplicationVariantCreate, ApplicationVariantEdit, ApplicationVariantFlags, ApplicationVariantFork, ApplicationVariantResponse, ApplicationVariantsResponse, ApplicationsResponse, BodyConfigsFetchVariantsConfigsFetchPost, Bucket, CollectStatusResponse, ComparisonOperator, Condition, ConditionOperator, ConditionOptions, ConditionValue, ConfigResponseModel, CustomModelSettingsDto, CustomProviderDto, CustomProviderKind, CustomProviderSettingsDto, DictOperator, DiscoverResponse, DiscoverResponseMethodsValue, EeSrcModelsApiOrganizationModelsOrganization, EntityRef, Environment, EnvironmentCreate, EnvironmentEdit, EnvironmentFlags, EnvironmentQueryFlags, EnvironmentResponse, EnvironmentRevisionCommit, EnvironmentRevisionCreate, EnvironmentRevisionData, EnvironmentRevisionDelta, EnvironmentRevisionEdit, EnvironmentRevisionInput, EnvironmentRevisionOutput, EnvironmentRevisionResolveResponse, EnvironmentRevisionResponse, EnvironmentRevisionsLog, EnvironmentRevisionsResponse, EnvironmentVariant, EnvironmentVariantCreate, EnvironmentVariantEdit, EnvironmentVariantFork, EnvironmentVariantResponse, EnvironmentVariantsResponse, EnvironmentsResponse, ErrorPolicy, EvaluationMetrics, EvaluationMetricsCreate, EvaluationMetricsIdsResponse, EvaluationMetricsQuery, EvaluationMetricsQueryScenarioIds, EvaluationMetricsQueryTimestamps, EvaluationMetricsRefresh, EvaluationMetricsResponse, EvaluationMetricsSetRequest, EvaluationQueue, EvaluationQueueCreate, EvaluationQueueData, EvaluationQueueEdit, EvaluationQueueFlags, EvaluationQueueIdResponse, EvaluationQueueIdsResponse, EvaluationQueueQuery, EvaluationQueueQueryFlags, EvaluationQueueResponse, EvaluationQueueScenariosQuery, EvaluationQueuesResponse, EvaluationResult, EvaluationResultCreate, EvaluationResultIdResponse, EvaluationResultIdsResponse, EvaluationResultQuery, EvaluationResultResponse, EvaluationResultsResponse, EvaluationResultsSetRequest, EvaluationRun, EvaluationRunCreate, EvaluationRunDataConcurrency, EvaluationRunDataInput, EvaluationRunDataMapping, EvaluationRunDataMappingColumn, EvaluationRunDataMappingStep, EvaluationRunDataOutput, EvaluationRunDataStepInput, EvaluationRunDataStepInputKey, EvaluationRunDataStepInputOrigin, EvaluationRunDataStepInputType, EvaluationRunDataStepOutput, EvaluationRunDataStepOutputOrigin, EvaluationRunDataStepOutputType, EvaluationRunEdit, EvaluationRunFlags, EvaluationRunIdResponse, EvaluationRunIdsRequest, EvaluationRunIdsResponse, EvaluationRunQuery, EvaluationRunQueryFlags, EvaluationRunResponse, EvaluationRunsResponse, EvaluationScenario, EvaluationScenarioCreate, EvaluationScenarioEdit, EvaluationScenarioIdResponse, EvaluationScenarioIdsResponse, EvaluationScenarioQuery, EvaluationScenarioResponse, EvaluationScenariosResponse, EvaluationStatus, Evaluator, EvaluatorArtifactFlags, EvaluatorArtifactQueryFlags, EvaluatorCatalogPreset, EvaluatorCatalogPresetResponse, EvaluatorCatalogPresetsResponse, EvaluatorCatalogTemplate, EvaluatorCatalogTemplateResponse, EvaluatorCatalogTemplatesResponse, EvaluatorCatalogType, EvaluatorCatalogTypesResponse, EvaluatorCreate, EvaluatorEdit, EvaluatorFlags, EvaluatorQuery, EvaluatorResponse, EvaluatorRevisionCommit, EvaluatorRevisionCreate, EvaluatorRevisionDataInput, EvaluatorRevisionDataInputHeadersValue, EvaluatorRevisionDataInputRuntime, EvaluatorRevisionDataOutput, EvaluatorRevisionDataOutputHeadersValue, EvaluatorRevisionDataOutputRuntime, EvaluatorRevisionEdit, EvaluatorRevisionFlags, EvaluatorRevisionInput, EvaluatorRevisionOutput, EvaluatorRevisionQuery, EvaluatorRevisionQueryFlags, EvaluatorRevisionResolveResponse, EvaluatorRevisionResponse, EvaluatorRevisionsLog, EvaluatorRevisionsResponse, EvaluatorTemplate, EvaluatorTemplatesResponse, EvaluatorVariant, EvaluatorVariantCreate, EvaluatorVariantEdit, EvaluatorVariantFlags, EvaluatorVariantFork, EvaluatorVariantResponse, EvaluatorVariantsResponse, EvaluatorsResponse, Event, EventQuery, EventType, EventsQueryResponse, ExistenceOperator, FilteringInput, FilteringInputConditionsItem, FilteringOutput, FilteringOutputConditionsItem, Focus, Folder, FolderCreate, FolderEdit, FolderIdResponse, FolderKind, FolderQuery, FolderQueryKinds, FolderResponse, FoldersResponse, Format, Formatting, FullJsonInput, FullJsonOutput, Header, HttpValidationError, InviteRequest, Invocation, InvocationCreate, InvocationCreateLinks, InvocationEdit, InvocationEditLinks, InvocationLinkResponse, InvocationLinks, InvocationQuery, InvocationQueryLinks, InvocationResponse, InvocationsResponse, JsonSchemasInput, JsonSchemasOutput, LabelJsonInput, LabelJsonOutput, LegacyLifecycleDto, ListApiKeysResponse, ListOperator, ListOptions, LogicalOperator, MetricSpec, MetricType, MetricsBucket, NumericOperator, OTelEventInput, OTelEventInputTimestamp, OTelEventOutput, OTelEventOutputTimestamp, OTelHashInput, OTelHashOutput, OTelLinkInput, OTelLinkOutput, OTelLinksResponse, OTelReferenceInput, OTelReferenceOutput, OTelSpanKind, OTelStatusCode, OTelTracingRequest, OTelTracingResponse, OldAnalyticsResponse, OrganizationDetails, OrganizationDomainResponse, OrganizationProviderResponse, OrganizationUpdate, OssSrcModelsApiOrganizationModelsOrganization, Permission, ProjectsResponse, QueriesResponse, Query, QueryCreate, QueryEdit, QueryFlags, QueryQueryFlags, QueryResponse, QueryRevision, QueryRevisionCommit, QueryRevisionCreate, QueryRevisionDataInput, QueryRevisionDataOutput, QueryRevisionEdit, QueryRevisionQuery, QueryRevisionResponse, QueryRevisionsLog, QueryRevisionsResponse, QueryVariant, QueryVariantCreate, QueryVariantEdit, QueryVariantFork, QueryVariantQuery, QueryVariantResponse, QueryVariantsResponse, Reference, ReferenceRequestModelInput, ReferenceRequestModelOutput, RequestType, ResolutionInfo, RetrievalInfo, SecretDto, SecretDtoData, SecretKind, SecretResponseDto, SecretResponseDtoData, SessionIdsResponse, SimpleApplication, SimpleApplicationCreate, SimpleApplicationDataInput, SimpleApplicationDataInputHeadersValue, SimpleApplicationDataInputRuntime, SimpleApplicationDataOutput, SimpleApplicationDataOutputHeadersValue, SimpleApplicationDataOutputRuntime, SimpleApplicationEdit, SimpleApplicationFlags, SimpleApplicationQuery, SimpleApplicationQueryFlags, SimpleApplicationResponse, SimpleApplicationsResponse, SimpleEnvironment, SimpleEnvironmentCreate, SimpleEnvironmentEdit, SimpleEnvironmentQuery, SimpleEnvironmentResponse, SimpleEnvironmentsResponse, SimpleEvaluation, SimpleEvaluationCreate, SimpleEvaluationData, SimpleEvaluationDataApplicationSteps, SimpleEvaluationDataApplicationStepsOneValue, SimpleEvaluationDataEvaluatorSteps, SimpleEvaluationDataEvaluatorStepsOneValue, SimpleEvaluationDataQuerySteps, SimpleEvaluationDataQueryStepsOneValue, SimpleEvaluationDataTestsetSteps, SimpleEvaluationDataTestsetStepsOneValue, SimpleEvaluationEdit, SimpleEvaluationIdResponse, SimpleEvaluationQuery, SimpleEvaluationResponse, SimpleEvaluationsResponse, SimpleEvaluator, SimpleEvaluatorCreate, SimpleEvaluatorDataInput, SimpleEvaluatorDataInputHeadersValue, SimpleEvaluatorDataInputRuntime, SimpleEvaluatorDataOutput, SimpleEvaluatorDataOutputHeadersValue, SimpleEvaluatorDataOutputRuntime, SimpleEvaluatorEdit, SimpleEvaluatorFlags, SimpleEvaluatorQuery, SimpleEvaluatorQueryFlags, SimpleEvaluatorResponse, SimpleEvaluatorsResponse, SimpleQueriesResponse, SimpleQuery, SimpleQueryCreate, SimpleQueryEdit, SimpleQueryQuery, SimpleQueryResponse, SimpleQueue, SimpleQueueCreate, SimpleQueueData, SimpleQueueDataEvaluators, SimpleQueueDataEvaluatorsOneValue, SimpleQueueIdResponse, SimpleQueueIdsResponse, SimpleQueueKind, SimpleQueueQuery, SimpleQueueResponse, SimpleQueueScenariosQuery, SimpleQueueScenariosResponse, SimpleQueueSettings, SimpleQueuesResponse, SimpleTestset, SimpleTestsetCreate, SimpleTestsetEdit, SimpleTestsetQuery, SimpleTestsetResponse, SimpleTestsetsResponse, SimpleTrace, SimpleTraceChannel, SimpleTraceCreate, SimpleTraceCreateLinks, SimpleTraceEdit, SimpleTraceEditLinks, SimpleTraceKind, SimpleTraceLinkResponse, SimpleTraceLinks, SimpleTraceOrigin, SimpleTraceQuery, SimpleTraceQueryLinks, SimpleTraceReferences, SimpleTraceResponse, SimpleTracesResponse, SimpleWorkflow, SimpleWorkflowCreate, SimpleWorkflowDataInput, SimpleWorkflowDataInputHeadersValue, SimpleWorkflowDataInputRuntime, SimpleWorkflowDataOutput, SimpleWorkflowDataOutputHeadersValue, SimpleWorkflowDataOutputRuntime, SimpleWorkflowEdit, SimpleWorkflowFlags, SimpleWorkflowQuery, SimpleWorkflowQueryFlags, SimpleWorkflowResponse, SimpleWorkflowsResponse, SpanInput, SpanInputEndTime, SpanInputStartTime, SpanOutput, SpanOutputEndTime, SpanOutputStartTime, SpanResponse, SpanType, SpansNodeInput, SpansNodeInputEndTime, SpansNodeInputSpansValue, SpansNodeInputStartTime, SpansNodeOutput, SpansNodeOutputEndTime, SpansNodeOutputSpansValue, SpansNodeOutputStartTime, SpansResponse, SpansTreeInput, SpansTreeInputSpansValue, SpansTreeOutput, SpansTreeOutputSpansValue, SsoProviderDto, SsoProviderInfo, SsoProviderSettingsDto, SsoProviders, StandardProviderDto, StandardProviderKind, StandardProviderSettingsDto, Status, StringOperator, TestcaseInput, TestcaseOutput, TestcaseResponse, TestcasesResponse, Testset, TestsetCreate, TestsetEdit, TestsetFlags, TestsetQuery, TestsetResponse, TestsetRevision, TestsetRevisionCommit, TestsetRevisionCreate, TestsetRevisionDataInput, TestsetRevisionDataOutput, TestsetRevisionDelta, TestsetRevisionDeltaColumns, TestsetRevisionDeltaRows, TestsetRevisionEdit, TestsetRevisionQuery, TestsetRevisionResponse, TestsetRevisionsLog, TestsetRevisionsResponse, TestsetVariant, TestsetVariantCreate, TestsetVariantEdit, TestsetVariantFork, TestsetVariantQuery, TestsetVariantResponse, TestsetVariantsResponse, TestsetsResponse, TextOptions, ToolAuthScheme, ToolCallData, ToolCallFunction, ToolCallResponse, ToolCatalogAction, ToolCatalogActionDetails, ToolCatalogActionResponse, ToolCatalogActionResponseAction, ToolCatalogActionsResponse, ToolCatalogActionsResponseActionsItem, ToolCatalogIntegration, ToolCatalogIntegrationDetails, ToolCatalogIntegrationResponse, ToolCatalogIntegrationResponseIntegration, ToolCatalogIntegrationsResponse, ToolCatalogIntegrationsResponseIntegrationsItem, ToolCatalogProvider, ToolCatalogProviderDetails, ToolCatalogProviderResponse, ToolCatalogProviderResponseProvider, ToolCatalogProvidersResponse, ToolCatalogProvidersResponseProvidersItem, ToolConnection, ToolConnectionCreate, ToolConnectionCreateData, ToolConnectionResponse, ToolConnectionStatus, ToolConnectionsResponse, ToolProviderKind, ToolResult, ToolResultData, TraceIdResponse, TraceIdsResponse, TraceInput, TraceInputSpansValue, TraceOutput, TraceOutputSpansValue, TraceRequest, TraceResponse, TraceType, TracesRequest, TracesResponse, TracingQuery, UserIdsResponse, ValidationError, ValidationErrorLocItem, WebhookDeliveriesResponse, WebhookDelivery, WebhookDeliveryCreate, WebhookDeliveryData, WebhookDeliveryQuery, WebhookDeliveryResponse, WebhookDeliveryResponseInfo, WebhookEventType, WebhookProviderDto, WebhookProviderSettingsDto, WebhookSubscription, WebhookSubscriptionCreate, WebhookSubscriptionData, WebhookSubscriptionDataAuthMode, WebhookSubscriptionEdit, WebhookSubscriptionQuery, WebhookSubscriptionResponse, WebhookSubscriptionsResponse, Windowing, WindowingOrder, Workflow, WorkflowArtifactFlags, WorkflowCatalogFlags, WorkflowCatalogPreset, WorkflowCatalogPresetResponse, WorkflowCatalogPresetsResponse, WorkflowCatalogTemplate, WorkflowCatalogTemplateResponse, WorkflowCatalogTemplatesResponse, WorkflowCatalogType, WorkflowCatalogTypeResponse, WorkflowCatalogTypesResponse, WorkflowCreate, WorkflowEdit, WorkflowFlags, WorkflowResponse, WorkflowRevisionCommit, WorkflowRevisionCreate, WorkflowRevisionDataInput, WorkflowRevisionDataInputHeadersValue, WorkflowRevisionDataInputRuntime, WorkflowRevisionDataOutput, WorkflowRevisionDataOutputHeadersValue, WorkflowRevisionDataOutputRuntime, WorkflowRevisionEdit, WorkflowRevisionFlags, WorkflowRevisionInput, WorkflowRevisionOutput, WorkflowRevisionResolveResponse, WorkflowRevisionResponse, WorkflowRevisionsLog, WorkflowRevisionsResponse, WorkflowVariant, WorkflowVariantCreate, WorkflowVariantEdit, WorkflowVariantFlags, WorkflowVariantFork, WorkflowVariantResponse, WorkflowVariantsResponse, WorkflowsResponse, Workspace, WorkspaceMemberResponse, WorkspacePermission, WorkspaceResponse
9
+ from .errors import UnprocessableEntityError
10
+ from . import access, annotations, applications, billing, environments, evaluations, evaluators, events, folders, invocations, keys, legacy, organizations, projects, queries, secrets, status, testcases, testsets, tools, traces, users, webhooks, workflows, workspaces
11
+ from .applications import QueryApplicationVariantsRequestOrder
12
+ from .client import AgentaApi, AsyncAgentaApi
13
+ from .environment import AgentaApiEnvironment
14
+ from .environments import QueryEnvironmentRevisionsRequestOrder, QueryEnvironmentVariantsRequestOrder, QueryEnvironmentsRequestOrder
15
+ from .evaluators import QueryEvaluatorVariantsRequestOrder
16
+ from .legacy import FetchLegacyAnalyticsRequestNewest, FetchLegacyAnalyticsRequestOldest
17
+ from .queries import QueryQueriesRequestOrder
18
+ from .testsets import CreateSimpleTestsetFromFileRequestFileType, CreateTestsetRevisionFromFileRequestFileType, EditSimpleTestsetFromFileRequestFileType, FetchSimpleTestsetToFileRequestFileType, FetchTestsetRevisionToFileRequestFileType
19
+ from .traces import QuerySpansAnalyticsRequestNewest, QuerySpansAnalyticsRequestOldest
20
+ from .webhooks import WebhookSubscriptionTestRequestSubscription
21
+ from .workflows import QueryWorkflowRevisionsRequestOrder, QueryWorkflowVariantsRequestOrder, QueryWorkflowsRequestOrder
22
+ _dynamic_imports: typing.Dict[str, str] = {"AdminAccountCreateOptions": ".types", "AdminAccountRead": ".types", "AdminAccountsCreate": ".types", "AdminAccountsDelete": ".types", "AdminAccountsDeleteTarget": ".types", "AdminAccountsResponse": ".types", "AdminApiKeyCreate": ".types", "AdminApiKeyResponse": ".types", "AdminDeleteResponse": ".types", "AdminDeletedEntities": ".types", "AdminDeletedEntity": ".types", "AdminOrganizationCreate": ".types", "AdminOrganizationMembershipCreate": ".types", "AdminOrganizationMembershipRead": ".types", "AdminOrganizationRead": ".types", "AdminProjectCreate": ".types", "AdminProjectMembershipCreate": ".types", "AdminProjectMembershipRead": ".types", "AdminProjectRead": ".types", "AdminSimpleAccountCreate": ".types", "AdminSimpleAccountDeleteEntry": ".types", "AdminSimpleAccountRead": ".types", "AdminSimpleAccountsApiKeysCreate": ".types", "AdminSimpleAccountsCreate": ".types", "AdminSimpleAccountsDelete": ".types", "AdminSimpleAccountsOrganizationsCreate": ".types", "AdminSimpleAccountsOrganizationsMembershipsCreate": ".types", "AdminSimpleAccountsOrganizationsTransferOwnership": ".types", "AdminSimpleAccountsOrganizationsTransferOwnershipIncludeProjects": ".types", "AdminSimpleAccountsOrganizationsTransferOwnershipIncludeProjectsZero": ".types", "AdminSimpleAccountsOrganizationsTransferOwnershipIncludeWorkspaces": ".types", "AdminSimpleAccountsOrganizationsTransferOwnershipIncludeWorkspacesZero": ".types", "AdminSimpleAccountsOrganizationsTransferOwnershipResponse": ".types", "AdminSimpleAccountsProjectsCreate": ".types", "AdminSimpleAccountsProjectsMembershipsCreate": ".types", "AdminSimpleAccountsResponse": ".types", "AdminSimpleAccountsUsersCreate": ".types", "AdminSimpleAccountsUsersIdentitiesCreate": ".types", "AdminSimpleAccountsUsersResetPassword": ".types", "AdminSimpleAccountsWorkspacesCreate": ".types", "AdminSimpleAccountsWorkspacesMembershipsCreate": ".types", "AdminStructuredError": ".types", "AdminSubscriptionCreate": ".types", "AdminSubscriptionRead": ".types", "AdminUserCreate": ".types", "AdminUserIdentityCreate": ".types", "AdminUserIdentityRead": ".types", "AdminUserIdentityReadStatus": ".types", "AdminUserRead": ".types", "AdminWorkspaceCreate": ".types", "AdminWorkspaceMembershipCreate": ".types", "AdminWorkspaceMembershipRead": ".types", "AdminWorkspaceRead": ".types", "AgentaApi": ".client", "AgentaApiEnvironment": ".environment", "Analytics": ".types", "AnalyticsResponse": ".types", "Annotation": ".types", "AnnotationCreate": ".types", "AnnotationCreateLinks": ".types", "AnnotationEdit": ".types", "AnnotationEditLinks": ".types", "AnnotationLinkResponse": ".types", "AnnotationLinks": ".types", "AnnotationQuery": ".types", "AnnotationQueryLinks": ".types", "AnnotationResponse": ".types", "AnnotationsResponse": ".types", "Application": ".types", "ApplicationArtifactFlags": ".types", "ApplicationArtifactQueryFlags": ".types", "ApplicationCatalogPreset": ".types", "ApplicationCatalogPresetResponse": ".types", "ApplicationCatalogPresetsResponse": ".types", "ApplicationCatalogTemplate": ".types", "ApplicationCatalogTemplateResponse": ".types", "ApplicationCatalogTemplatesResponse": ".types", "ApplicationCatalogType": ".types", "ApplicationCatalogTypesResponse": ".types", "ApplicationCreate": ".types", "ApplicationEdit": ".types", "ApplicationFlags": ".types", "ApplicationQuery": ".types", "ApplicationResponse": ".types", "ApplicationRevisionCommit": ".types", "ApplicationRevisionCreate": ".types", "ApplicationRevisionDataInput": ".types", "ApplicationRevisionDataInputHeadersValue": ".types", "ApplicationRevisionDataInputRuntime": ".types", "ApplicationRevisionDataOutput": ".types", "ApplicationRevisionDataOutputHeadersValue": ".types", "ApplicationRevisionDataOutputRuntime": ".types", "ApplicationRevisionEdit": ".types", "ApplicationRevisionFlags": ".types", "ApplicationRevisionInput": ".types", "ApplicationRevisionOutput": ".types", "ApplicationRevisionQuery": ".types", "ApplicationRevisionQueryFlags": ".types", "ApplicationRevisionResolveResponse": ".types", "ApplicationRevisionResponse": ".types", "ApplicationRevisionsLog": ".types", "ApplicationRevisionsResponse": ".types", "ApplicationVariant": ".types", "ApplicationVariantCreate": ".types", "ApplicationVariantEdit": ".types", "ApplicationVariantFlags": ".types", "ApplicationVariantFork": ".types", "ApplicationVariantResponse": ".types", "ApplicationVariantsResponse": ".types", "ApplicationsResponse": ".types", "AsyncAgentaApi": ".client", "BodyConfigsFetchVariantsConfigsFetchPost": ".types", "Bucket": ".types", "CollectStatusResponse": ".types", "ComparisonOperator": ".types", "Condition": ".types", "ConditionOperator": ".types", "ConditionOptions": ".types", "ConditionValue": ".types", "ConfigResponseModel": ".types", "CreateSimpleTestsetFromFileRequestFileType": ".testsets", "CreateTestsetRevisionFromFileRequestFileType": ".testsets", "CustomModelSettingsDto": ".types", "CustomProviderDto": ".types", "CustomProviderKind": ".types", "CustomProviderSettingsDto": ".types", "DictOperator": ".types", "DiscoverResponse": ".types", "DiscoverResponseMethodsValue": ".types", "EditSimpleTestsetFromFileRequestFileType": ".testsets", "EeSrcModelsApiOrganizationModelsOrganization": ".types", "EntityRef": ".types", "Environment": ".types", "EnvironmentCreate": ".types", "EnvironmentEdit": ".types", "EnvironmentFlags": ".types", "EnvironmentQueryFlags": ".types", "EnvironmentResponse": ".types", "EnvironmentRevisionCommit": ".types", "EnvironmentRevisionCreate": ".types", "EnvironmentRevisionData": ".types", "EnvironmentRevisionDelta": ".types", "EnvironmentRevisionEdit": ".types", "EnvironmentRevisionInput": ".types", "EnvironmentRevisionOutput": ".types", "EnvironmentRevisionResolveResponse": ".types", "EnvironmentRevisionResponse": ".types", "EnvironmentRevisionsLog": ".types", "EnvironmentRevisionsResponse": ".types", "EnvironmentVariant": ".types", "EnvironmentVariantCreate": ".types", "EnvironmentVariantEdit": ".types", "EnvironmentVariantFork": ".types", "EnvironmentVariantResponse": ".types", "EnvironmentVariantsResponse": ".types", "EnvironmentsResponse": ".types", "ErrorPolicy": ".types", "EvaluationMetrics": ".types", "EvaluationMetricsCreate": ".types", "EvaluationMetricsIdsResponse": ".types", "EvaluationMetricsQuery": ".types", "EvaluationMetricsQueryScenarioIds": ".types", "EvaluationMetricsQueryTimestamps": ".types", "EvaluationMetricsRefresh": ".types", "EvaluationMetricsResponse": ".types", "EvaluationMetricsSetRequest": ".types", "EvaluationQueue": ".types", "EvaluationQueueCreate": ".types", "EvaluationQueueData": ".types", "EvaluationQueueEdit": ".types", "EvaluationQueueFlags": ".types", "EvaluationQueueIdResponse": ".types", "EvaluationQueueIdsResponse": ".types", "EvaluationQueueQuery": ".types", "EvaluationQueueQueryFlags": ".types", "EvaluationQueueResponse": ".types", "EvaluationQueueScenariosQuery": ".types", "EvaluationQueuesResponse": ".types", "EvaluationResult": ".types", "EvaluationResultCreate": ".types", "EvaluationResultIdResponse": ".types", "EvaluationResultIdsResponse": ".types", "EvaluationResultQuery": ".types", "EvaluationResultResponse": ".types", "EvaluationResultsResponse": ".types", "EvaluationResultsSetRequest": ".types", "EvaluationRun": ".types", "EvaluationRunCreate": ".types", "EvaluationRunDataConcurrency": ".types", "EvaluationRunDataInput": ".types", "EvaluationRunDataMapping": ".types", "EvaluationRunDataMappingColumn": ".types", "EvaluationRunDataMappingStep": ".types", "EvaluationRunDataOutput": ".types", "EvaluationRunDataStepInput": ".types", "EvaluationRunDataStepInputKey": ".types", "EvaluationRunDataStepInputOrigin": ".types", "EvaluationRunDataStepInputType": ".types", "EvaluationRunDataStepOutput": ".types", "EvaluationRunDataStepOutputOrigin": ".types", "EvaluationRunDataStepOutputType": ".types", "EvaluationRunEdit": ".types", "EvaluationRunFlags": ".types", "EvaluationRunIdResponse": ".types", "EvaluationRunIdsRequest": ".types", "EvaluationRunIdsResponse": ".types", "EvaluationRunQuery": ".types", "EvaluationRunQueryFlags": ".types", "EvaluationRunResponse": ".types", "EvaluationRunsResponse": ".types", "EvaluationScenario": ".types", "EvaluationScenarioCreate": ".types", "EvaluationScenarioEdit": ".types", "EvaluationScenarioIdResponse": ".types", "EvaluationScenarioIdsResponse": ".types", "EvaluationScenarioQuery": ".types", "EvaluationScenarioResponse": ".types", "EvaluationScenariosResponse": ".types", "EvaluationStatus": ".types", "Evaluator": ".types", "EvaluatorArtifactFlags": ".types", "EvaluatorArtifactQueryFlags": ".types", "EvaluatorCatalogPreset": ".types", "EvaluatorCatalogPresetResponse": ".types", "EvaluatorCatalogPresetsResponse": ".types", "EvaluatorCatalogTemplate": ".types", "EvaluatorCatalogTemplateResponse": ".types", "EvaluatorCatalogTemplatesResponse": ".types", "EvaluatorCatalogType": ".types", "EvaluatorCatalogTypesResponse": ".types", "EvaluatorCreate": ".types", "EvaluatorEdit": ".types", "EvaluatorFlags": ".types", "EvaluatorQuery": ".types", "EvaluatorResponse": ".types", "EvaluatorRevisionCommit": ".types", "EvaluatorRevisionCreate": ".types", "EvaluatorRevisionDataInput": ".types", "EvaluatorRevisionDataInputHeadersValue": ".types", "EvaluatorRevisionDataInputRuntime": ".types", "EvaluatorRevisionDataOutput": ".types", "EvaluatorRevisionDataOutputHeadersValue": ".types", "EvaluatorRevisionDataOutputRuntime": ".types", "EvaluatorRevisionEdit": ".types", "EvaluatorRevisionFlags": ".types", "EvaluatorRevisionInput": ".types", "EvaluatorRevisionOutput": ".types", "EvaluatorRevisionQuery": ".types", "EvaluatorRevisionQueryFlags": ".types", "EvaluatorRevisionResolveResponse": ".types", "EvaluatorRevisionResponse": ".types", "EvaluatorRevisionsLog": ".types", "EvaluatorRevisionsResponse": ".types", "EvaluatorTemplate": ".types", "EvaluatorTemplatesResponse": ".types", "EvaluatorVariant": ".types", "EvaluatorVariantCreate": ".types", "EvaluatorVariantEdit": ".types", "EvaluatorVariantFlags": ".types", "EvaluatorVariantFork": ".types", "EvaluatorVariantResponse": ".types", "EvaluatorVariantsResponse": ".types", "EvaluatorsResponse": ".types", "Event": ".types", "EventQuery": ".types", "EventType": ".types", "EventsQueryResponse": ".types", "ExistenceOperator": ".types", "FetchLegacyAnalyticsRequestNewest": ".legacy", "FetchLegacyAnalyticsRequestOldest": ".legacy", "FetchSimpleTestsetToFileRequestFileType": ".testsets", "FetchTestsetRevisionToFileRequestFileType": ".testsets", "FilteringInput": ".types", "FilteringInputConditionsItem": ".types", "FilteringOutput": ".types", "FilteringOutputConditionsItem": ".types", "Focus": ".types", "Folder": ".types", "FolderCreate": ".types", "FolderEdit": ".types", "FolderIdResponse": ".types", "FolderKind": ".types", "FolderQuery": ".types", "FolderQueryKinds": ".types", "FolderResponse": ".types", "FoldersResponse": ".types", "Format": ".types", "Formatting": ".types", typing.Any: ".types", typing.Any: ".types", "Header": ".types", "HttpValidationError": ".types", "InviteRequest": ".types", "Invocation": ".types", "InvocationCreate": ".types", "InvocationCreateLinks": ".types", "InvocationEdit": ".types", "InvocationEditLinks": ".types", "InvocationLinkResponse": ".types", "InvocationLinks": ".types", "InvocationQuery": ".types", "InvocationQueryLinks": ".types", "InvocationResponse": ".types", "InvocationsResponse": ".types", "JsonSchemasInput": ".types", "JsonSchemasOutput": ".types", typing.Any: ".types", typing.Any: ".types", "LegacyLifecycleDto": ".types", "ListApiKeysResponse": ".types", "ListOperator": ".types", "ListOptions": ".types", "LogicalOperator": ".types", "MetricSpec": ".types", "MetricType": ".types", "MetricsBucket": ".types", "NumericOperator": ".types", "OTelEventInput": ".types", "OTelEventInputTimestamp": ".types", "OTelEventOutput": ".types", "OTelEventOutputTimestamp": ".types", "OTelHashInput": ".types", "OTelHashOutput": ".types", "OTelLinkInput": ".types", "OTelLinkOutput": ".types", "OTelLinksResponse": ".types", "OTelReferenceInput": ".types", "OTelReferenceOutput": ".types", "OTelSpanKind": ".types", "OTelStatusCode": ".types", "OTelTracingRequest": ".types", "OTelTracingResponse": ".types", "OldAnalyticsResponse": ".types", "OrganizationDetails": ".types", "OrganizationDomainResponse": ".types", "OrganizationProviderResponse": ".types", "OrganizationUpdate": ".types", "OssSrcModelsApiOrganizationModelsOrganization": ".types", "Permission": ".types", "ProjectsResponse": ".types", "QueriesResponse": ".types", "Query": ".types", "QueryApplicationVariantsRequestOrder": ".applications", "QueryCreate": ".types", "QueryEdit": ".types", "QueryEnvironmentRevisionsRequestOrder": ".environments", "QueryEnvironmentVariantsRequestOrder": ".environments", "QueryEnvironmentsRequestOrder": ".environments", "QueryEvaluatorVariantsRequestOrder": ".evaluators", "QueryFlags": ".types", "QueryQueriesRequestOrder": ".queries", "QueryQueryFlags": ".types", "QueryResponse": ".types", "QueryRevision": ".types", "QueryRevisionCommit": ".types", "QueryRevisionCreate": ".types", "QueryRevisionDataInput": ".types", "QueryRevisionDataOutput": ".types", "QueryRevisionEdit": ".types", "QueryRevisionQuery": ".types", "QueryRevisionResponse": ".types", "QueryRevisionsLog": ".types", "QueryRevisionsResponse": ".types", "QuerySpansAnalyticsRequestNewest": ".traces", "QuerySpansAnalyticsRequestOldest": ".traces", "QueryVariant": ".types", "QueryVariantCreate": ".types", "QueryVariantEdit": ".types", "QueryVariantFork": ".types", "QueryVariantQuery": ".types", "QueryVariantResponse": ".types", "QueryVariantsResponse": ".types", "QueryWorkflowRevisionsRequestOrder": ".workflows", "QueryWorkflowVariantsRequestOrder": ".workflows", "QueryWorkflowsRequestOrder": ".workflows", "Reference": ".types", "ReferenceRequestModelInput": ".types", "ReferenceRequestModelOutput": ".types", "RequestType": ".types", "ResolutionInfo": ".types", "RetrievalInfo": ".types", "SecretDto": ".types", "SecretDtoData": ".types", "SecretKind": ".types", "SecretResponseDto": ".types", "SecretResponseDtoData": ".types", "SessionIdsResponse": ".types", "SimpleApplication": ".types", "SimpleApplicationCreate": ".types", "SimpleApplicationDataInput": ".types", "SimpleApplicationDataInputHeadersValue": ".types", "SimpleApplicationDataInputRuntime": ".types", "SimpleApplicationDataOutput": ".types", "SimpleApplicationDataOutputHeadersValue": ".types", "SimpleApplicationDataOutputRuntime": ".types", "SimpleApplicationEdit": ".types", "SimpleApplicationFlags": ".types", "SimpleApplicationQuery": ".types", "SimpleApplicationQueryFlags": ".types", "SimpleApplicationResponse": ".types", "SimpleApplicationsResponse": ".types", "SimpleEnvironment": ".types", "SimpleEnvironmentCreate": ".types", "SimpleEnvironmentEdit": ".types", "SimpleEnvironmentQuery": ".types", "SimpleEnvironmentResponse": ".types", "SimpleEnvironmentsResponse": ".types", "SimpleEvaluation": ".types", "SimpleEvaluationCreate": ".types", "SimpleEvaluationData": ".types", "SimpleEvaluationDataApplicationSteps": ".types", "SimpleEvaluationDataApplicationStepsOneValue": ".types", "SimpleEvaluationDataEvaluatorSteps": ".types", "SimpleEvaluationDataEvaluatorStepsOneValue": ".types", "SimpleEvaluationDataQuerySteps": ".types", "SimpleEvaluationDataQueryStepsOneValue": ".types", "SimpleEvaluationDataTestsetSteps": ".types", "SimpleEvaluationDataTestsetStepsOneValue": ".types", "SimpleEvaluationEdit": ".types", "SimpleEvaluationIdResponse": ".types", "SimpleEvaluationQuery": ".types", "SimpleEvaluationResponse": ".types", "SimpleEvaluationsResponse": ".types", "SimpleEvaluator": ".types", "SimpleEvaluatorCreate": ".types", "SimpleEvaluatorDataInput": ".types", "SimpleEvaluatorDataInputHeadersValue": ".types", "SimpleEvaluatorDataInputRuntime": ".types", "SimpleEvaluatorDataOutput": ".types", "SimpleEvaluatorDataOutputHeadersValue": ".types", "SimpleEvaluatorDataOutputRuntime": ".types", "SimpleEvaluatorEdit": ".types", "SimpleEvaluatorFlags": ".types", "SimpleEvaluatorQuery": ".types", "SimpleEvaluatorQueryFlags": ".types", "SimpleEvaluatorResponse": ".types", "SimpleEvaluatorsResponse": ".types", "SimpleQueriesResponse": ".types", "SimpleQuery": ".types", "SimpleQueryCreate": ".types", "SimpleQueryEdit": ".types", "SimpleQueryQuery": ".types", "SimpleQueryResponse": ".types", "SimpleQueue": ".types", "SimpleQueueCreate": ".types", "SimpleQueueData": ".types", "SimpleQueueDataEvaluators": ".types", "SimpleQueueDataEvaluatorsOneValue": ".types", "SimpleQueueIdResponse": ".types", "SimpleQueueIdsResponse": ".types", "SimpleQueueKind": ".types", "SimpleQueueQuery": ".types", "SimpleQueueResponse": ".types", "SimpleQueueScenariosQuery": ".types", "SimpleQueueScenariosResponse": ".types", "SimpleQueueSettings": ".types", "SimpleQueuesResponse": ".types", "SimpleTestset": ".types", "SimpleTestsetCreate": ".types", "SimpleTestsetEdit": ".types", "SimpleTestsetQuery": ".types", "SimpleTestsetResponse": ".types", "SimpleTestsetsResponse": ".types", "SimpleTrace": ".types", "SimpleTraceChannel": ".types", "SimpleTraceCreate": ".types", "SimpleTraceCreateLinks": ".types", "SimpleTraceEdit": ".types", "SimpleTraceEditLinks": ".types", "SimpleTraceKind": ".types", "SimpleTraceLinkResponse": ".types", "SimpleTraceLinks": ".types", "SimpleTraceOrigin": ".types", "SimpleTraceQuery": ".types", "SimpleTraceQueryLinks": ".types", "SimpleTraceReferences": ".types", "SimpleTraceResponse": ".types", "SimpleTracesResponse": ".types", "SimpleWorkflow": ".types", "SimpleWorkflowCreate": ".types", "SimpleWorkflowDataInput": ".types", "SimpleWorkflowDataInputHeadersValue": ".types", "SimpleWorkflowDataInputRuntime": ".types", "SimpleWorkflowDataOutput": ".types", "SimpleWorkflowDataOutputHeadersValue": ".types", "SimpleWorkflowDataOutputRuntime": ".types", "SimpleWorkflowEdit": ".types", "SimpleWorkflowFlags": ".types", "SimpleWorkflowQuery": ".types", "SimpleWorkflowQueryFlags": ".types", "SimpleWorkflowResponse": ".types", "SimpleWorkflowsResponse": ".types", "SpanInput": ".types", "SpanInputEndTime": ".types", "SpanInputStartTime": ".types", "SpanOutput": ".types", "SpanOutputEndTime": ".types", "SpanOutputStartTime": ".types", "SpanResponse": ".types", "SpanType": ".types", "SpansNodeInput": ".types", "SpansNodeInputEndTime": ".types", "SpansNodeInputSpansValue": ".types", "SpansNodeInputStartTime": ".types", "SpansNodeOutput": ".types", "SpansNodeOutputEndTime": ".types", "SpansNodeOutputSpansValue": ".types", "SpansNodeOutputStartTime": ".types", "SpansResponse": ".types", "SpansTreeInput": ".types", "SpansTreeInputSpansValue": ".types", "SpansTreeOutput": ".types", "SpansTreeOutputSpansValue": ".types", "SsoProviderDto": ".types", "SsoProviderInfo": ".types", "SsoProviderSettingsDto": ".types", "SsoProviders": ".types", "StandardProviderDto": ".types", "StandardProviderKind": ".types", "StandardProviderSettingsDto": ".types", "Status": ".types", "StringOperator": ".types", "TestcaseInput": ".types", "TestcaseOutput": ".types", "TestcaseResponse": ".types", "TestcasesResponse": ".types", "Testset": ".types", "TestsetCreate": ".types", "TestsetEdit": ".types", "TestsetFlags": ".types", "TestsetQuery": ".types", "TestsetResponse": ".types", "TestsetRevision": ".types", "TestsetRevisionCommit": ".types", "TestsetRevisionCreate": ".types", "TestsetRevisionDataInput": ".types", "TestsetRevisionDataOutput": ".types", "TestsetRevisionDelta": ".types", "TestsetRevisionDeltaColumns": ".types", "TestsetRevisionDeltaRows": ".types", "TestsetRevisionEdit": ".types", "TestsetRevisionQuery": ".types", "TestsetRevisionResponse": ".types", "TestsetRevisionsLog": ".types", "TestsetRevisionsResponse": ".types", "TestsetVariant": ".types", "TestsetVariantCreate": ".types", "TestsetVariantEdit": ".types", "TestsetVariantFork": ".types", "TestsetVariantQuery": ".types", "TestsetVariantResponse": ".types", "TestsetVariantsResponse": ".types", "TestsetsResponse": ".types", "TextOptions": ".types", "ToolAuthScheme": ".types", "ToolCallData": ".types", "ToolCallFunction": ".types", "ToolCallResponse": ".types", "ToolCatalogAction": ".types", "ToolCatalogActionDetails": ".types", "ToolCatalogActionResponse": ".types", "ToolCatalogActionResponseAction": ".types", "ToolCatalogActionsResponse": ".types", "ToolCatalogActionsResponseActionsItem": ".types", "ToolCatalogIntegration": ".types", "ToolCatalogIntegrationDetails": ".types", "ToolCatalogIntegrationResponse": ".types", "ToolCatalogIntegrationResponseIntegration": ".types", "ToolCatalogIntegrationsResponse": ".types", "ToolCatalogIntegrationsResponseIntegrationsItem": ".types", "ToolCatalogProvider": ".types", "ToolCatalogProviderDetails": ".types", "ToolCatalogProviderResponse": ".types", "ToolCatalogProviderResponseProvider": ".types", "ToolCatalogProvidersResponse": ".types", "ToolCatalogProvidersResponseProvidersItem": ".types", "ToolConnection": ".types", "ToolConnectionCreate": ".types", "ToolConnectionCreateData": ".types", "ToolConnectionResponse": ".types", "ToolConnectionStatus": ".types", "ToolConnectionsResponse": ".types", "ToolProviderKind": ".types", "ToolResult": ".types", "ToolResultData": ".types", "TraceIdResponse": ".types", "TraceIdsResponse": ".types", "TraceInput": ".types", "TraceInputSpansValue": ".types", "TraceOutput": ".types", "TraceOutputSpansValue": ".types", "TraceRequest": ".types", "TraceResponse": ".types", "TraceType": ".types", "TracesRequest": ".types", "TracesResponse": ".types", "TracingQuery": ".types", "UnprocessableEntityError": ".errors", "UserIdsResponse": ".types", "ValidationError": ".types", "ValidationErrorLocItem": ".types", "WebhookDeliveriesResponse": ".types", "WebhookDelivery": ".types", "WebhookDeliveryCreate": ".types", "WebhookDeliveryData": ".types", "WebhookDeliveryQuery": ".types", "WebhookDeliveryResponse": ".types", "WebhookDeliveryResponseInfo": ".types", "WebhookEventType": ".types", "WebhookProviderDto": ".types", "WebhookProviderSettingsDto": ".types", "WebhookSubscription": ".types", "WebhookSubscriptionCreate": ".types", "WebhookSubscriptionData": ".types", "WebhookSubscriptionDataAuthMode": ".types", "WebhookSubscriptionEdit": ".types", "WebhookSubscriptionQuery": ".types", "WebhookSubscriptionResponse": ".types", "WebhookSubscriptionTestRequestSubscription": ".webhooks", "WebhookSubscriptionsResponse": ".types", "Windowing": ".types", "WindowingOrder": ".types", "Workflow": ".types", "WorkflowArtifactFlags": ".types", "WorkflowCatalogFlags": ".types", "WorkflowCatalogPreset": ".types", "WorkflowCatalogPresetResponse": ".types", "WorkflowCatalogPresetsResponse": ".types", "WorkflowCatalogTemplate": ".types", "WorkflowCatalogTemplateResponse": ".types", "WorkflowCatalogTemplatesResponse": ".types", "WorkflowCatalogType": ".types", "WorkflowCatalogTypeResponse": ".types", "WorkflowCatalogTypesResponse": ".types", "WorkflowCreate": ".types", "WorkflowEdit": ".types", "WorkflowFlags": ".types", "WorkflowResponse": ".types", "WorkflowRevisionCommit": ".types", "WorkflowRevisionCreate": ".types", "WorkflowRevisionDataInput": ".types", "WorkflowRevisionDataInputHeadersValue": ".types", "WorkflowRevisionDataInputRuntime": ".types", "WorkflowRevisionDataOutput": ".types", "WorkflowRevisionDataOutputHeadersValue": ".types", "WorkflowRevisionDataOutputRuntime": ".types", "WorkflowRevisionEdit": ".types", "WorkflowRevisionFlags": ".types", "WorkflowRevisionInput": ".types", "WorkflowRevisionOutput": ".types", "WorkflowRevisionResolveResponse": ".types", "WorkflowRevisionResponse": ".types", "WorkflowRevisionsLog": ".types", "WorkflowRevisionsResponse": ".types", "WorkflowVariant": ".types", "WorkflowVariantCreate": ".types", "WorkflowVariantEdit": ".types", "WorkflowVariantFlags": ".types", "WorkflowVariantFork": ".types", "WorkflowVariantResponse": ".types", "WorkflowVariantsResponse": ".types", "WorkflowsResponse": ".types", "Workspace": ".types", "WorkspaceMemberResponse": ".types", "WorkspacePermission": ".types", "WorkspaceResponse": ".types", "access": ".access", "annotations": ".annotations", "applications": ".applications", "billing": ".billing", "environments": ".environments", "evaluations": ".evaluations", "evaluators": ".evaluators", "events": ".events", "folders": ".folders", "invocations": ".invocations", "keys": ".keys", "legacy": ".legacy", "organizations": ".organizations", "projects": ".projects", "queries": ".queries", "secrets": ".secrets", "status": ".status", "testcases": ".testcases", "testsets": ".testsets", "tools": ".tools", "traces": ".traces", "users": ".users", "webhooks": ".webhooks", "workflows": ".workflows", "workspaces": ".workspaces"}
23
+ def __getattr__(attr_name: str) -> typing.Any:
24
+ module_name = _dynamic_imports.get(attr_name)
25
+ if module_name is None:
26
+ raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
27
+ try:
28
+ module = import_module(module_name, __package__)
29
+ if module_name == f".{attr_name}":
30
+ return module
31
+ else:
32
+ return getattr(module, attr_name)
33
+ except ImportError as e:
34
+ raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
35
+ except AttributeError as e:
36
+ raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
37
+ def __dir__():
38
+ lazy_attrs = list(_dynamic_imports.keys())
39
+ return sorted(lazy_attrs)
40
+ __all__ = ["AdminAccountCreateOptions", "AdminAccountRead", "AdminAccountsCreate", "AdminAccountsDelete", "AdminAccountsDeleteTarget", "AdminAccountsResponse", "AdminApiKeyCreate", "AdminApiKeyResponse", "AdminDeleteResponse", "AdminDeletedEntities", "AdminDeletedEntity", "AdminOrganizationCreate", "AdminOrganizationMembershipCreate", "AdminOrganizationMembershipRead", "AdminOrganizationRead", "AdminProjectCreate", "AdminProjectMembershipCreate", "AdminProjectMembershipRead", "AdminProjectRead", "AdminSimpleAccountCreate", "AdminSimpleAccountDeleteEntry", "AdminSimpleAccountRead", "AdminSimpleAccountsApiKeysCreate", "AdminSimpleAccountsCreate", "AdminSimpleAccountsDelete", "AdminSimpleAccountsOrganizationsCreate", "AdminSimpleAccountsOrganizationsMembershipsCreate", "AdminSimpleAccountsOrganizationsTransferOwnership", "AdminSimpleAccountsOrganizationsTransferOwnershipIncludeProjects", "AdminSimpleAccountsOrganizationsTransferOwnershipIncludeProjectsZero", "AdminSimpleAccountsOrganizationsTransferOwnershipIncludeWorkspaces", "AdminSimpleAccountsOrganizationsTransferOwnershipIncludeWorkspacesZero", "AdminSimpleAccountsOrganizationsTransferOwnershipResponse", "AdminSimpleAccountsProjectsCreate", "AdminSimpleAccountsProjectsMembershipsCreate", "AdminSimpleAccountsResponse", "AdminSimpleAccountsUsersCreate", "AdminSimpleAccountsUsersIdentitiesCreate", "AdminSimpleAccountsUsersResetPassword", "AdminSimpleAccountsWorkspacesCreate", "AdminSimpleAccountsWorkspacesMembershipsCreate", "AdminStructuredError", "AdminSubscriptionCreate", "AdminSubscriptionRead", "AdminUserCreate", "AdminUserIdentityCreate", "AdminUserIdentityRead", "AdminUserIdentityReadStatus", "AdminUserRead", "AdminWorkspaceCreate", "AdminWorkspaceMembershipCreate", "AdminWorkspaceMembershipRead", "AdminWorkspaceRead", "AgentaApi", "AgentaApiEnvironment", "Analytics", "AnalyticsResponse", "Annotation", "AnnotationCreate", "AnnotationCreateLinks", "AnnotationEdit", "AnnotationEditLinks", "AnnotationLinkResponse", "AnnotationLinks", "AnnotationQuery", "AnnotationQueryLinks", "AnnotationResponse", "AnnotationsResponse", "Application", "ApplicationArtifactFlags", "ApplicationArtifactQueryFlags", "ApplicationCatalogPreset", "ApplicationCatalogPresetResponse", "ApplicationCatalogPresetsResponse", "ApplicationCatalogTemplate", "ApplicationCatalogTemplateResponse", "ApplicationCatalogTemplatesResponse", "ApplicationCatalogType", "ApplicationCatalogTypesResponse", "ApplicationCreate", "ApplicationEdit", "ApplicationFlags", "ApplicationQuery", "ApplicationResponse", "ApplicationRevisionCommit", "ApplicationRevisionCreate", "ApplicationRevisionDataInput", "ApplicationRevisionDataInputHeadersValue", "ApplicationRevisionDataInputRuntime", "ApplicationRevisionDataOutput", "ApplicationRevisionDataOutputHeadersValue", "ApplicationRevisionDataOutputRuntime", "ApplicationRevisionEdit", "ApplicationRevisionFlags", "ApplicationRevisionInput", "ApplicationRevisionOutput", "ApplicationRevisionQuery", "ApplicationRevisionQueryFlags", "ApplicationRevisionResolveResponse", "ApplicationRevisionResponse", "ApplicationRevisionsLog", "ApplicationRevisionsResponse", "ApplicationVariant", "ApplicationVariantCreate", "ApplicationVariantEdit", "ApplicationVariantFlags", "ApplicationVariantFork", "ApplicationVariantResponse", "ApplicationVariantsResponse", "ApplicationsResponse", "AsyncAgentaApi", "BodyConfigsFetchVariantsConfigsFetchPost", "Bucket", "CollectStatusResponse", "ComparisonOperator", "Condition", "ConditionOperator", "ConditionOptions", "ConditionValue", "ConfigResponseModel", "CreateSimpleTestsetFromFileRequestFileType", "CreateTestsetRevisionFromFileRequestFileType", "CustomModelSettingsDto", "CustomProviderDto", "CustomProviderKind", "CustomProviderSettingsDto", "DictOperator", "DiscoverResponse", "DiscoverResponseMethodsValue", "EditSimpleTestsetFromFileRequestFileType", "EeSrcModelsApiOrganizationModelsOrganization", "EntityRef", "Environment", "EnvironmentCreate", "EnvironmentEdit", "EnvironmentFlags", "EnvironmentQueryFlags", "EnvironmentResponse", "EnvironmentRevisionCommit", "EnvironmentRevisionCreate", "EnvironmentRevisionData", "EnvironmentRevisionDelta", "EnvironmentRevisionEdit", "EnvironmentRevisionInput", "EnvironmentRevisionOutput", "EnvironmentRevisionResolveResponse", "EnvironmentRevisionResponse", "EnvironmentRevisionsLog", "EnvironmentRevisionsResponse", "EnvironmentVariant", "EnvironmentVariantCreate", "EnvironmentVariantEdit", "EnvironmentVariantFork", "EnvironmentVariantResponse", "EnvironmentVariantsResponse", "EnvironmentsResponse", "ErrorPolicy", "EvaluationMetrics", "EvaluationMetricsCreate", "EvaluationMetricsIdsResponse", "EvaluationMetricsQuery", "EvaluationMetricsQueryScenarioIds", "EvaluationMetricsQueryTimestamps", "EvaluationMetricsRefresh", "EvaluationMetricsResponse", "EvaluationMetricsSetRequest", "EvaluationQueue", "EvaluationQueueCreate", "EvaluationQueueData", "EvaluationQueueEdit", "EvaluationQueueFlags", "EvaluationQueueIdResponse", "EvaluationQueueIdsResponse", "EvaluationQueueQuery", "EvaluationQueueQueryFlags", "EvaluationQueueResponse", "EvaluationQueueScenariosQuery", "EvaluationQueuesResponse", "EvaluationResult", "EvaluationResultCreate", "EvaluationResultIdResponse", "EvaluationResultIdsResponse", "EvaluationResultQuery", "EvaluationResultResponse", "EvaluationResultsResponse", "EvaluationResultsSetRequest", "EvaluationRun", "EvaluationRunCreate", "EvaluationRunDataConcurrency", "EvaluationRunDataInput", "EvaluationRunDataMapping", "EvaluationRunDataMappingColumn", "EvaluationRunDataMappingStep", "EvaluationRunDataOutput", "EvaluationRunDataStepInput", "EvaluationRunDataStepInputKey", "EvaluationRunDataStepInputOrigin", "EvaluationRunDataStepInputType", "EvaluationRunDataStepOutput", "EvaluationRunDataStepOutputOrigin", "EvaluationRunDataStepOutputType", "EvaluationRunEdit", "EvaluationRunFlags", "EvaluationRunIdResponse", "EvaluationRunIdsRequest", "EvaluationRunIdsResponse", "EvaluationRunQuery", "EvaluationRunQueryFlags", "EvaluationRunResponse", "EvaluationRunsResponse", "EvaluationScenario", "EvaluationScenarioCreate", "EvaluationScenarioEdit", "EvaluationScenarioIdResponse", "EvaluationScenarioIdsResponse", "EvaluationScenarioQuery", "EvaluationScenarioResponse", "EvaluationScenariosResponse", "EvaluationStatus", "Evaluator", "EvaluatorArtifactFlags", "EvaluatorArtifactQueryFlags", "EvaluatorCatalogPreset", "EvaluatorCatalogPresetResponse", "EvaluatorCatalogPresetsResponse", "EvaluatorCatalogTemplate", "EvaluatorCatalogTemplateResponse", "EvaluatorCatalogTemplatesResponse", "EvaluatorCatalogType", "EvaluatorCatalogTypesResponse", "EvaluatorCreate", "EvaluatorEdit", "EvaluatorFlags", "EvaluatorQuery", "EvaluatorResponse", "EvaluatorRevisionCommit", "EvaluatorRevisionCreate", "EvaluatorRevisionDataInput", "EvaluatorRevisionDataInputHeadersValue", "EvaluatorRevisionDataInputRuntime", "EvaluatorRevisionDataOutput", "EvaluatorRevisionDataOutputHeadersValue", "EvaluatorRevisionDataOutputRuntime", "EvaluatorRevisionEdit", "EvaluatorRevisionFlags", "EvaluatorRevisionInput", "EvaluatorRevisionOutput", "EvaluatorRevisionQuery", "EvaluatorRevisionQueryFlags", "EvaluatorRevisionResolveResponse", "EvaluatorRevisionResponse", "EvaluatorRevisionsLog", "EvaluatorRevisionsResponse", "EvaluatorTemplate", "EvaluatorTemplatesResponse", "EvaluatorVariant", "EvaluatorVariantCreate", "EvaluatorVariantEdit", "EvaluatorVariantFlags", "EvaluatorVariantFork", "EvaluatorVariantResponse", "EvaluatorVariantsResponse", "EvaluatorsResponse", "Event", "EventQuery", "EventType", "EventsQueryResponse", "ExistenceOperator", "FetchLegacyAnalyticsRequestNewest", "FetchLegacyAnalyticsRequestOldest", "FetchSimpleTestsetToFileRequestFileType", "FetchTestsetRevisionToFileRequestFileType", "FilteringInput", "FilteringInputConditionsItem", "FilteringOutput", "FilteringOutputConditionsItem", "Focus", "Folder", "FolderCreate", "FolderEdit", "FolderIdResponse", "FolderKind", "FolderQuery", "FolderQueryKinds", "FolderResponse", "FoldersResponse", "Format", "Formatting", typing.Any, typing.Any, "Header", "HttpValidationError", "InviteRequest", "Invocation", "InvocationCreate", "InvocationCreateLinks", "InvocationEdit", "InvocationEditLinks", "InvocationLinkResponse", "InvocationLinks", "InvocationQuery", "InvocationQueryLinks", "InvocationResponse", "InvocationsResponse", "JsonSchemasInput", "JsonSchemasOutput", typing.Any, typing.Any, "LegacyLifecycleDto", "ListApiKeysResponse", "ListOperator", "ListOptions", "LogicalOperator", "MetricSpec", "MetricType", "MetricsBucket", "NumericOperator", "OTelEventInput", "OTelEventInputTimestamp", "OTelEventOutput", "OTelEventOutputTimestamp", "OTelHashInput", "OTelHashOutput", "OTelLinkInput", "OTelLinkOutput", "OTelLinksResponse", "OTelReferenceInput", "OTelReferenceOutput", "OTelSpanKind", "OTelStatusCode", "OTelTracingRequest", "OTelTracingResponse", "OldAnalyticsResponse", "OrganizationDetails", "OrganizationDomainResponse", "OrganizationProviderResponse", "OrganizationUpdate", "OssSrcModelsApiOrganizationModelsOrganization", "Permission", "ProjectsResponse", "QueriesResponse", "Query", "QueryApplicationVariantsRequestOrder", "QueryCreate", "QueryEdit", "QueryEnvironmentRevisionsRequestOrder", "QueryEnvironmentVariantsRequestOrder", "QueryEnvironmentsRequestOrder", "QueryEvaluatorVariantsRequestOrder", "QueryFlags", "QueryQueriesRequestOrder", "QueryQueryFlags", "QueryResponse", "QueryRevision", "QueryRevisionCommit", "QueryRevisionCreate", "QueryRevisionDataInput", "QueryRevisionDataOutput", "QueryRevisionEdit", "QueryRevisionQuery", "QueryRevisionResponse", "QueryRevisionsLog", "QueryRevisionsResponse", "QuerySpansAnalyticsRequestNewest", "QuerySpansAnalyticsRequestOldest", "QueryVariant", "QueryVariantCreate", "QueryVariantEdit", "QueryVariantFork", "QueryVariantQuery", "QueryVariantResponse", "QueryVariantsResponse", "QueryWorkflowRevisionsRequestOrder", "QueryWorkflowVariantsRequestOrder", "QueryWorkflowsRequestOrder", "Reference", "ReferenceRequestModelInput", "ReferenceRequestModelOutput", "RequestType", "ResolutionInfo", "RetrievalInfo", "SecretDto", "SecretDtoData", "SecretKind", "SecretResponseDto", "SecretResponseDtoData", "SessionIdsResponse", "SimpleApplication", "SimpleApplicationCreate", "SimpleApplicationDataInput", "SimpleApplicationDataInputHeadersValue", "SimpleApplicationDataInputRuntime", "SimpleApplicationDataOutput", "SimpleApplicationDataOutputHeadersValue", "SimpleApplicationDataOutputRuntime", "SimpleApplicationEdit", "SimpleApplicationFlags", "SimpleApplicationQuery", "SimpleApplicationQueryFlags", "SimpleApplicationResponse", "SimpleApplicationsResponse", "SimpleEnvironment", "SimpleEnvironmentCreate", "SimpleEnvironmentEdit", "SimpleEnvironmentQuery", "SimpleEnvironmentResponse", "SimpleEnvironmentsResponse", "SimpleEvaluation", "SimpleEvaluationCreate", "SimpleEvaluationData", "SimpleEvaluationDataApplicationSteps", "SimpleEvaluationDataApplicationStepsOneValue", "SimpleEvaluationDataEvaluatorSteps", "SimpleEvaluationDataEvaluatorStepsOneValue", "SimpleEvaluationDataQuerySteps", "SimpleEvaluationDataQueryStepsOneValue", "SimpleEvaluationDataTestsetSteps", "SimpleEvaluationDataTestsetStepsOneValue", "SimpleEvaluationEdit", "SimpleEvaluationIdResponse", "SimpleEvaluationQuery", "SimpleEvaluationResponse", "SimpleEvaluationsResponse", "SimpleEvaluator", "SimpleEvaluatorCreate", "SimpleEvaluatorDataInput", "SimpleEvaluatorDataInputHeadersValue", "SimpleEvaluatorDataInputRuntime", "SimpleEvaluatorDataOutput", "SimpleEvaluatorDataOutputHeadersValue", "SimpleEvaluatorDataOutputRuntime", "SimpleEvaluatorEdit", "SimpleEvaluatorFlags", "SimpleEvaluatorQuery", "SimpleEvaluatorQueryFlags", "SimpleEvaluatorResponse", "SimpleEvaluatorsResponse", "SimpleQueriesResponse", "SimpleQuery", "SimpleQueryCreate", "SimpleQueryEdit", "SimpleQueryQuery", "SimpleQueryResponse", "SimpleQueue", "SimpleQueueCreate", "SimpleQueueData", "SimpleQueueDataEvaluators", "SimpleQueueDataEvaluatorsOneValue", "SimpleQueueIdResponse", "SimpleQueueIdsResponse", "SimpleQueueKind", "SimpleQueueQuery", "SimpleQueueResponse", "SimpleQueueScenariosQuery", "SimpleQueueScenariosResponse", "SimpleQueueSettings", "SimpleQueuesResponse", "SimpleTestset", "SimpleTestsetCreate", "SimpleTestsetEdit", "SimpleTestsetQuery", "SimpleTestsetResponse", "SimpleTestsetsResponse", "SimpleTrace", "SimpleTraceChannel", "SimpleTraceCreate", "SimpleTraceCreateLinks", "SimpleTraceEdit", "SimpleTraceEditLinks", "SimpleTraceKind", "SimpleTraceLinkResponse", "SimpleTraceLinks", "SimpleTraceOrigin", "SimpleTraceQuery", "SimpleTraceQueryLinks", "SimpleTraceReferences", "SimpleTraceResponse", "SimpleTracesResponse", "SimpleWorkflow", "SimpleWorkflowCreate", "SimpleWorkflowDataInput", "SimpleWorkflowDataInputHeadersValue", "SimpleWorkflowDataInputRuntime", "SimpleWorkflowDataOutput", "SimpleWorkflowDataOutputHeadersValue", "SimpleWorkflowDataOutputRuntime", "SimpleWorkflowEdit", "SimpleWorkflowFlags", "SimpleWorkflowQuery", "SimpleWorkflowQueryFlags", "SimpleWorkflowResponse", "SimpleWorkflowsResponse", "SpanInput", "SpanInputEndTime", "SpanInputStartTime", "SpanOutput", "SpanOutputEndTime", "SpanOutputStartTime", "SpanResponse", "SpanType", "SpansNodeInput", "SpansNodeInputEndTime", "SpansNodeInputSpansValue", "SpansNodeInputStartTime", "SpansNodeOutput", "SpansNodeOutputEndTime", "SpansNodeOutputSpansValue", "SpansNodeOutputStartTime", "SpansResponse", "SpansTreeInput", "SpansTreeInputSpansValue", "SpansTreeOutput", "SpansTreeOutputSpansValue", "SsoProviderDto", "SsoProviderInfo", "SsoProviderSettingsDto", "SsoProviders", "StandardProviderDto", "StandardProviderKind", "StandardProviderSettingsDto", "Status", "StringOperator", "TestcaseInput", "TestcaseOutput", "TestcaseResponse", "TestcasesResponse", "Testset", "TestsetCreate", "TestsetEdit", "TestsetFlags", "TestsetQuery", "TestsetResponse", "TestsetRevision", "TestsetRevisionCommit", "TestsetRevisionCreate", "TestsetRevisionDataInput", "TestsetRevisionDataOutput", "TestsetRevisionDelta", "TestsetRevisionDeltaColumns", "TestsetRevisionDeltaRows", "TestsetRevisionEdit", "TestsetRevisionQuery", "TestsetRevisionResponse", "TestsetRevisionsLog", "TestsetRevisionsResponse", "TestsetVariant", "TestsetVariantCreate", "TestsetVariantEdit", "TestsetVariantFork", "TestsetVariantQuery", "TestsetVariantResponse", "TestsetVariantsResponse", "TestsetsResponse", "TextOptions", "ToolAuthScheme", "ToolCallData", "ToolCallFunction", "ToolCallResponse", "ToolCatalogAction", "ToolCatalogActionDetails", "ToolCatalogActionResponse", "ToolCatalogActionResponseAction", "ToolCatalogActionsResponse", "ToolCatalogActionsResponseActionsItem", "ToolCatalogIntegration", "ToolCatalogIntegrationDetails", "ToolCatalogIntegrationResponse", "ToolCatalogIntegrationResponseIntegration", "ToolCatalogIntegrationsResponse", "ToolCatalogIntegrationsResponseIntegrationsItem", "ToolCatalogProvider", "ToolCatalogProviderDetails", "ToolCatalogProviderResponse", "ToolCatalogProviderResponseProvider", "ToolCatalogProvidersResponse", "ToolCatalogProvidersResponseProvidersItem", "ToolConnection", "ToolConnectionCreate", "ToolConnectionCreateData", "ToolConnectionResponse", "ToolConnectionStatus", "ToolConnectionsResponse", "ToolProviderKind", "ToolResult", "ToolResultData", "TraceIdResponse", "TraceIdsResponse", "TraceInput", "TraceInputSpansValue", "TraceOutput", "TraceOutputSpansValue", "TraceRequest", "TraceResponse", "TraceType", "TracesRequest", "TracesResponse", "TracingQuery", "UnprocessableEntityError", "UserIdsResponse", "ValidationError", "ValidationErrorLocItem", "WebhookDeliveriesResponse", "WebhookDelivery", "WebhookDeliveryCreate", "WebhookDeliveryData", "WebhookDeliveryQuery", "WebhookDeliveryResponse", "WebhookDeliveryResponseInfo", "WebhookEventType", "WebhookProviderDto", "WebhookProviderSettingsDto", "WebhookSubscription", "WebhookSubscriptionCreate", "WebhookSubscriptionData", "WebhookSubscriptionDataAuthMode", "WebhookSubscriptionEdit", "WebhookSubscriptionQuery", "WebhookSubscriptionResponse", "WebhookSubscriptionTestRequestSubscription", "WebhookSubscriptionsResponse", "Windowing", "WindowingOrder", "Workflow", "WorkflowArtifactFlags", "WorkflowCatalogFlags", "WorkflowCatalogPreset", "WorkflowCatalogPresetResponse", "WorkflowCatalogPresetsResponse", "WorkflowCatalogTemplate", "WorkflowCatalogTemplateResponse", "WorkflowCatalogTemplatesResponse", "WorkflowCatalogType", "WorkflowCatalogTypeResponse", "WorkflowCatalogTypesResponse", "WorkflowCreate", "WorkflowEdit", "WorkflowFlags", "WorkflowResponse", "WorkflowRevisionCommit", "WorkflowRevisionCreate", "WorkflowRevisionDataInput", "WorkflowRevisionDataInputHeadersValue", "WorkflowRevisionDataInputRuntime", "WorkflowRevisionDataOutput", "WorkflowRevisionDataOutputHeadersValue", "WorkflowRevisionDataOutputRuntime", "WorkflowRevisionEdit", "WorkflowRevisionFlags", "WorkflowRevisionInput", "WorkflowRevisionOutput", "WorkflowRevisionResolveResponse", "WorkflowRevisionResponse", "WorkflowRevisionsLog", "WorkflowRevisionsResponse", "WorkflowVariant", "WorkflowVariantCreate", "WorkflowVariantEdit", "WorkflowVariantFlags", "WorkflowVariantFork", "WorkflowVariantResponse", "WorkflowVariantsResponse", "WorkflowsResponse", "Workspace", "WorkspaceMemberResponse", "WorkspacePermission", "WorkspaceResponse", "access", "annotations", "applications", "billing", "environments", "evaluations", "evaluators", "events", "folders", "invocations", "keys", "legacy", "organizations", "projects", "queries", "secrets", "status", "testcases", "testsets", "tools", "traces", "users", "webhooks", "workflows", "workspaces"]
@@ -12,12 +12,12 @@ from ..types.application_catalog_templates_response import ApplicationCatalogTem
12
12
  from ..types.application_catalog_types_response import ApplicationCatalogTypesResponse
13
13
  from ..types.application_create import ApplicationCreate
14
14
  from ..types.application_edit import ApplicationEdit
15
- from ..types.application_fork import ApplicationFork
16
15
  from ..types.application_query import ApplicationQuery
17
16
  from ..types.application_response import ApplicationResponse
18
17
  from ..types.application_revision_commit import ApplicationRevisionCommit
19
18
  from ..types.application_revision_create import ApplicationRevisionCreate
20
19
  from ..types.application_revision_edit import ApplicationRevisionEdit
20
+ from ..types.application_revision_input import ApplicationRevisionInput
21
21
  from ..types.application_revision_query import ApplicationRevisionQuery
22
22
  from ..types.application_revision_resolve_response import ApplicationRevisionResolveResponse
23
23
  from ..types.application_revision_response import ApplicationRevisionResponse
@@ -25,6 +25,7 @@ from ..types.application_revisions_log import ApplicationRevisionsLog
25
25
  from ..types.application_revisions_response import ApplicationRevisionsResponse
26
26
  from ..types.application_variant_create import ApplicationVariantCreate
27
27
  from ..types.application_variant_edit import ApplicationVariantEdit
28
+ from ..types.application_variant_fork import ApplicationVariantFork
28
29
  from ..types.application_variant_response import ApplicationVariantResponse
29
30
  from ..types.application_variants_response import ApplicationVariantsResponse
30
31
  from ..types.applications_response import ApplicationsResponse
@@ -695,7 +696,7 @@ class ApplicationsClient:
695
696
  _response = self._raw_client.query_application_variants(application_id=application_id, application_ids=application_ids, application_slug=application_slug, application_slugs=application_slugs, application_variant_id=application_variant_id, application_variant_ids=application_variant_ids, application_variant_slug=application_variant_slug, application_variant_slugs=application_variant_slugs, name=name, description=description, flags=flags, tags=tags, meta=meta, include_archived=include_archived, next=next, newest=newest, oldest=oldest, limit=limit, order=order, request_options=request_options)
696
697
  return _response.data
697
698
 
698
- def fork_application_variant(self, *, application: ApplicationFork, application_variant_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None) -> ApplicationVariantResponse:
699
+ def fork_application_variant(self, *, application_variant: ApplicationVariantFork, application_variant_ref: Reference, application_variant_id: typing.Optional[str] = None, application_revision_ref: typing.Optional[Reference] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationVariantResponse:
699
700
  """
700
701
  Fork an existing variant into a new variant on the same application.
701
702
 
@@ -710,11 +711,17 @@ class ApplicationsClient:
710
711
 
711
712
  Parameters
712
713
  ----------
713
- application : ApplicationFork
714
- Fork payload. Must include the source `application_variant_id` (or `application_revision_id`) plus a `variant` object describing the new branch and a `revision` object for the new tip commit.
714
+ application_variant : ApplicationVariantFork
715
+ Config for the new variant (slug, name, description, flags).
716
+
717
+ application_variant_ref : Reference
718
+ Source variant to fork from.
715
719
 
716
720
  application_variant_id : typing.Optional[str]
717
721
 
722
+ application_revision_ref : typing.Optional[Reference]
723
+ Pin the fork to this revision; defaults to the source variant's head.
724
+
718
725
  request_options : typing.Optional[RequestOptions]
719
726
  Request-specific configuration.
720
727
 
@@ -725,16 +732,17 @@ class ApplicationsClient:
725
732
 
726
733
  Examples
727
734
  --------
728
- from agenta import AgentaApi, ApplicationFork
735
+ from agenta import AgentaApi, ApplicationVariantFork, Reference
729
736
 
730
737
  client = AgentaApi(
731
738
  api_key="YOUR_API_KEY",
732
739
  )
733
740
  client.applications.fork_application_variant(
734
- application=ApplicationFork(),
741
+ application_variant=ApplicationVariantFork(),
742
+ application_variant_ref=Reference(),
735
743
  )
736
744
  """
737
- _response = self._raw_client.fork_application_variant(application=application, application_variant_id=application_variant_id, request_options=request_options)
745
+ _response = self._raw_client.fork_application_variant(application_variant=application_variant, application_variant_ref=application_variant_ref, application_variant_id=application_variant_id, application_revision_ref=application_revision_ref, request_options=request_options)
738
746
  return _response.data
739
747
 
740
748
  def retrieve_application_revision(self, *, application_ref: typing.Optional[Reference] = OMIT, application_variant_ref: typing.Optional[Reference] = OMIT, application_revision_ref: typing.Optional[Reference] = OMIT, environment_ref: typing.Optional[Reference] = OMIT, environment_variant_ref: typing.Optional[Reference] = OMIT, environment_revision_ref: typing.Optional[Reference] = OMIT, key: typing.Optional[str] = OMIT, resolve: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResponse:
@@ -1021,7 +1029,7 @@ class ApplicationsClient:
1021
1029
  _response = self._raw_client.unarchive_application_revision(application_revision_id, request_options=request_options)
1022
1030
  return _response.data
1023
1031
 
1024
- def query_application_revisions(self, *, application_revision: typing.Optional[ApplicationRevisionQuery] = OMIT, application_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, application_variant_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, application_revision_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, include_archived: typing.Optional[bool] = OMIT, windowing: typing.Optional[Windowing] = OMIT, resolve: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionsResponse:
1032
+ def query_application_revisions(self, *, application_revision: typing.Optional[ApplicationRevisionQuery] = OMIT, application_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, application_variant_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, application_revision_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, include_archived: typing.Optional[bool] = OMIT, windowing: typing.Optional[Windowing] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionsResponse:
1025
1033
  """
1026
1034
  Query revisions across one or more applications or variants.
1027
1035
 
@@ -1029,8 +1037,6 @@ class ApplicationsClient:
1029
1037
  query, or filter on commit metadata (`author`, `date`, `message`) via
1030
1038
  the `application_revision` object. For the ordered history of a
1031
1039
  single variant, `POST /applications/revisions/log` is more direct.
1032
- Set `resolve: true` to inline embedded references in each revision's
1033
- `data`.
1034
1040
 
1035
1041
  Parameters
1036
1042
  ----------
@@ -1052,9 +1058,6 @@ class ApplicationsClient:
1052
1058
  windowing : typing.Optional[Windowing]
1053
1059
  Cursor pagination and time-range controls.
1054
1060
 
1055
- resolve : typing.Optional[bool]
1056
- When `true`, resolve embedded references in each returned revision's `data` (for example, snippet references). Defaults to `false`.
1057
-
1058
1061
  request_options : typing.Optional[RequestOptions]
1059
1062
  Request-specific configuration.
1060
1063
 
@@ -1072,10 +1075,10 @@ class ApplicationsClient:
1072
1075
  )
1073
1076
  client.applications.query_application_revisions()
1074
1077
  """
1075
- _response = self._raw_client.query_application_revisions(application_revision=application_revision, application_refs=application_refs, application_variant_refs=application_variant_refs, application_revision_refs=application_revision_refs, include_archived=include_archived, windowing=windowing, resolve=resolve, request_options=request_options)
1078
+ _response = self._raw_client.query_application_revisions(application_revision=application_revision, application_refs=application_refs, application_variant_refs=application_variant_refs, application_revision_refs=application_revision_refs, include_archived=include_archived, windowing=windowing, request_options=request_options)
1076
1079
  return _response.data
1077
1080
 
1078
- def commit_application_revision(self, *, application_revision_commit: ApplicationRevisionCommit, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResponse:
1081
+ def commit_application_revision(self, *, application_revision: ApplicationRevisionCommit, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResponse:
1079
1082
  """
1080
1083
  Commit a new revision on a variant.
1081
1084
 
@@ -1086,7 +1089,7 @@ class ApplicationsClient:
1086
1089
 
1087
1090
  Parameters
1088
1091
  ----------
1089
- application_revision_commit : ApplicationRevisionCommit
1092
+ application_revision : ApplicationRevisionCommit
1090
1093
  Commit payload. Must include `application_variant_id` and `data`. `message` is a human-readable commit message. `slug` is optional; if omitted, the server generates one.
1091
1094
 
1092
1095
  request_options : typing.Optional[RequestOptions]
@@ -1105,13 +1108,13 @@ class ApplicationsClient:
1105
1108
  api_key="YOUR_API_KEY",
1106
1109
  )
1107
1110
  client.applications.commit_application_revision(
1108
- application_revision_commit=ApplicationRevisionCommit(),
1111
+ application_revision=ApplicationRevisionCommit(),
1109
1112
  )
1110
1113
  """
1111
- _response = self._raw_client.commit_application_revision(application_revision_commit=application_revision_commit, request_options=request_options)
1114
+ _response = self._raw_client.commit_application_revision(application_revision=application_revision, request_options=request_options)
1112
1115
  return _response.data
1113
1116
 
1114
- def log_application_revisions(self, *, application: ApplicationRevisionsLog, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionsResponse:
1117
+ def log_application_revisions(self, *, application_revisions: ApplicationRevisionsLog, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionsResponse:
1115
1118
  """
1116
1119
  Return the ordered revision log for a variant.
1117
1120
 
@@ -1122,7 +1125,7 @@ class ApplicationsClient:
1122
1125
 
1123
1126
  Parameters
1124
1127
  ----------
1125
- application : ApplicationRevisionsLog
1128
+ application_revisions : ApplicationRevisionsLog
1126
1129
  Filter for the log. Typically set `application_variant_id` to list the revision history of a single variant; optionally set `application_revision_id` + `depth` to walk back a bounded number of commits from a specific revision.
1127
1130
 
1128
1131
  request_options : typing.Optional[RequestOptions]
@@ -1141,13 +1144,13 @@ class ApplicationsClient:
1141
1144
  api_key="YOUR_API_KEY",
1142
1145
  )
1143
1146
  client.applications.log_application_revisions(
1144
- application=ApplicationRevisionsLog(),
1147
+ application_revisions=ApplicationRevisionsLog(),
1145
1148
  )
1146
1149
  """
1147
- _response = self._raw_client.log_application_revisions(application=application, request_options=request_options)
1150
+ _response = self._raw_client.log_application_revisions(application_revisions=application_revisions, request_options=request_options)
1148
1151
  return _response.data
1149
1152
 
1150
- def resolve_application_revision(self, *, application_ref: typing.Optional[Reference] = OMIT, application_variant_ref: typing.Optional[Reference] = OMIT, application_revision_ref: typing.Optional[Reference] = OMIT, max_depth: typing.Optional[int] = OMIT, max_embeds: typing.Optional[int] = OMIT, error_policy: typing.Optional[ErrorPolicy] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResolveResponse:
1153
+ def resolve_application_revision(self, *, application_ref: typing.Optional[Reference] = OMIT, application_variant_ref: typing.Optional[Reference] = OMIT, application_revision_ref: typing.Optional[Reference] = OMIT, application_revision: typing.Optional[ApplicationRevisionInput] = OMIT, max_depth: typing.Optional[int] = OMIT, max_embeds: typing.Optional[int] = OMIT, error_policy: typing.Optional[ErrorPolicy] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResolveResponse:
1151
1154
  """
1152
1155
  Fetch a revision with embedded references inlined.
1153
1156
 
@@ -1168,6 +1171,9 @@ class ApplicationsClient:
1168
1171
  application_revision_ref : typing.Optional[Reference]
1169
1172
  Revision reference; resolves that exact revision.
1170
1173
 
1174
+ application_revision : typing.Optional[ApplicationRevisionInput]
1175
+ Resolve the references embedded in this revision payload directly, without fetching it first. Only `data` is used; id and metadata are ignored.
1176
+
1171
1177
  max_depth : typing.Optional[int]
1172
1178
  Maximum nesting depth for embedded references. Protects against runaway recursion. Defaults to `10`.
1173
1179
 
@@ -1194,7 +1200,7 @@ class ApplicationsClient:
1194
1200
  )
1195
1201
  client.applications.resolve_application_revision()
1196
1202
  """
1197
- _response = self._raw_client.resolve_application_revision(application_ref=application_ref, application_variant_ref=application_variant_ref, application_revision_ref=application_revision_ref, max_depth=max_depth, max_embeds=max_embeds, error_policy=error_policy, request_options=request_options)
1203
+ _response = self._raw_client.resolve_application_revision(application_ref=application_ref, application_variant_ref=application_variant_ref, application_revision_ref=application_revision_ref, application_revision=application_revision, max_depth=max_depth, max_embeds=max_embeds, error_policy=error_policy, request_options=request_options)
1198
1204
  return _response.data
1199
1205
 
1200
1206
  def create_simple_application(self, *, application: SimpleApplicationCreate, application_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None) -> SimpleApplicationResponse:
@@ -2212,7 +2218,7 @@ class AsyncApplicationsClient:
2212
2218
  _response = await self._raw_client.query_application_variants(application_id=application_id, application_ids=application_ids, application_slug=application_slug, application_slugs=application_slugs, application_variant_id=application_variant_id, application_variant_ids=application_variant_ids, application_variant_slug=application_variant_slug, application_variant_slugs=application_variant_slugs, name=name, description=description, flags=flags, tags=tags, meta=meta, include_archived=include_archived, next=next, newest=newest, oldest=oldest, limit=limit, order=order, request_options=request_options)
2213
2219
  return _response.data
2214
2220
 
2215
- async def fork_application_variant(self, *, application: ApplicationFork, application_variant_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None) -> ApplicationVariantResponse:
2221
+ async def fork_application_variant(self, *, application_variant: ApplicationVariantFork, application_variant_ref: Reference, application_variant_id: typing.Optional[str] = None, application_revision_ref: typing.Optional[Reference] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationVariantResponse:
2216
2222
  """
2217
2223
  Fork an existing variant into a new variant on the same application.
2218
2224
 
@@ -2227,11 +2233,17 @@ class AsyncApplicationsClient:
2227
2233
 
2228
2234
  Parameters
2229
2235
  ----------
2230
- application : ApplicationFork
2231
- Fork payload. Must include the source `application_variant_id` (or `application_revision_id`) plus a `variant` object describing the new branch and a `revision` object for the new tip commit.
2236
+ application_variant : ApplicationVariantFork
2237
+ Config for the new variant (slug, name, description, flags).
2238
+
2239
+ application_variant_ref : Reference
2240
+ Source variant to fork from.
2232
2241
 
2233
2242
  application_variant_id : typing.Optional[str]
2234
2243
 
2244
+ application_revision_ref : typing.Optional[Reference]
2245
+ Pin the fork to this revision; defaults to the source variant's head.
2246
+
2235
2247
  request_options : typing.Optional[RequestOptions]
2236
2248
  Request-specific configuration.
2237
2249
 
@@ -2244,7 +2256,7 @@ class AsyncApplicationsClient:
2244
2256
  --------
2245
2257
  import asyncio
2246
2258
 
2247
- from agenta import ApplicationFork, AsyncAgentaApi
2259
+ from agenta import ApplicationVariantFork, AsyncAgentaApi, Reference
2248
2260
 
2249
2261
  client = AsyncAgentaApi(
2250
2262
  api_key="YOUR_API_KEY",
@@ -2253,13 +2265,14 @@ class AsyncApplicationsClient:
2253
2265
 
2254
2266
  async def main() -> None:
2255
2267
  await client.applications.fork_application_variant(
2256
- application=ApplicationFork(),
2268
+ application_variant=ApplicationVariantFork(),
2269
+ application_variant_ref=Reference(),
2257
2270
  )
2258
2271
 
2259
2272
 
2260
2273
  asyncio.run(main())
2261
2274
  """
2262
- _response = await self._raw_client.fork_application_variant(application=application, application_variant_id=application_variant_id, request_options=request_options)
2275
+ _response = await self._raw_client.fork_application_variant(application_variant=application_variant, application_variant_ref=application_variant_ref, application_variant_id=application_variant_id, application_revision_ref=application_revision_ref, request_options=request_options)
2263
2276
  return _response.data
2264
2277
 
2265
2278
  async def retrieve_application_revision(self, *, application_ref: typing.Optional[Reference] = OMIT, application_variant_ref: typing.Optional[Reference] = OMIT, application_revision_ref: typing.Optional[Reference] = OMIT, environment_ref: typing.Optional[Reference] = OMIT, environment_variant_ref: typing.Optional[Reference] = OMIT, environment_revision_ref: typing.Optional[Reference] = OMIT, key: typing.Optional[str] = OMIT, resolve: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResponse:
@@ -2602,7 +2615,7 @@ class AsyncApplicationsClient:
2602
2615
  _response = await self._raw_client.unarchive_application_revision(application_revision_id, request_options=request_options)
2603
2616
  return _response.data
2604
2617
 
2605
- async def query_application_revisions(self, *, application_revision: typing.Optional[ApplicationRevisionQuery] = OMIT, application_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, application_variant_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, application_revision_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, include_archived: typing.Optional[bool] = OMIT, windowing: typing.Optional[Windowing] = OMIT, resolve: typing.Optional[bool] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionsResponse:
2618
+ async def query_application_revisions(self, *, application_revision: typing.Optional[ApplicationRevisionQuery] = OMIT, application_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, application_variant_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, application_revision_refs: typing.Optional[typing.Sequence[Reference]] = OMIT, include_archived: typing.Optional[bool] = OMIT, windowing: typing.Optional[Windowing] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionsResponse:
2606
2619
  """
2607
2620
  Query revisions across one or more applications or variants.
2608
2621
 
@@ -2610,8 +2623,6 @@ class AsyncApplicationsClient:
2610
2623
  query, or filter on commit metadata (`author`, `date`, `message`) via
2611
2624
  the `application_revision` object. For the ordered history of a
2612
2625
  single variant, `POST /applications/revisions/log` is more direct.
2613
- Set `resolve: true` to inline embedded references in each revision's
2614
- `data`.
2615
2626
 
2616
2627
  Parameters
2617
2628
  ----------
@@ -2633,9 +2644,6 @@ class AsyncApplicationsClient:
2633
2644
  windowing : typing.Optional[Windowing]
2634
2645
  Cursor pagination and time-range controls.
2635
2646
 
2636
- resolve : typing.Optional[bool]
2637
- When `true`, resolve embedded references in each returned revision's `data` (for example, snippet references). Defaults to `false`.
2638
-
2639
2647
  request_options : typing.Optional[RequestOptions]
2640
2648
  Request-specific configuration.
2641
2649
 
@@ -2661,10 +2669,10 @@ class AsyncApplicationsClient:
2661
2669
 
2662
2670
  asyncio.run(main())
2663
2671
  """
2664
- _response = await self._raw_client.query_application_revisions(application_revision=application_revision, application_refs=application_refs, application_variant_refs=application_variant_refs, application_revision_refs=application_revision_refs, include_archived=include_archived, windowing=windowing, resolve=resolve, request_options=request_options)
2672
+ _response = await self._raw_client.query_application_revisions(application_revision=application_revision, application_refs=application_refs, application_variant_refs=application_variant_refs, application_revision_refs=application_revision_refs, include_archived=include_archived, windowing=windowing, request_options=request_options)
2665
2673
  return _response.data
2666
2674
 
2667
- async def commit_application_revision(self, *, application_revision_commit: ApplicationRevisionCommit, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResponse:
2675
+ async def commit_application_revision(self, *, application_revision: ApplicationRevisionCommit, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResponse:
2668
2676
  """
2669
2677
  Commit a new revision on a variant.
2670
2678
 
@@ -2675,7 +2683,7 @@ class AsyncApplicationsClient:
2675
2683
 
2676
2684
  Parameters
2677
2685
  ----------
2678
- application_revision_commit : ApplicationRevisionCommit
2686
+ application_revision : ApplicationRevisionCommit
2679
2687
  Commit payload. Must include `application_variant_id` and `data`. `message` is a human-readable commit message. `slug` is optional; if omitted, the server generates one.
2680
2688
 
2681
2689
  request_options : typing.Optional[RequestOptions]
@@ -2699,16 +2707,16 @@ class AsyncApplicationsClient:
2699
2707
 
2700
2708
  async def main() -> None:
2701
2709
  await client.applications.commit_application_revision(
2702
- application_revision_commit=ApplicationRevisionCommit(),
2710
+ application_revision=ApplicationRevisionCommit(),
2703
2711
  )
2704
2712
 
2705
2713
 
2706
2714
  asyncio.run(main())
2707
2715
  """
2708
- _response = await self._raw_client.commit_application_revision(application_revision_commit=application_revision_commit, request_options=request_options)
2716
+ _response = await self._raw_client.commit_application_revision(application_revision=application_revision, request_options=request_options)
2709
2717
  return _response.data
2710
2718
 
2711
- async def log_application_revisions(self, *, application: ApplicationRevisionsLog, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionsResponse:
2719
+ async def log_application_revisions(self, *, application_revisions: ApplicationRevisionsLog, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionsResponse:
2712
2720
  """
2713
2721
  Return the ordered revision log for a variant.
2714
2722
 
@@ -2719,7 +2727,7 @@ class AsyncApplicationsClient:
2719
2727
 
2720
2728
  Parameters
2721
2729
  ----------
2722
- application : ApplicationRevisionsLog
2730
+ application_revisions : ApplicationRevisionsLog
2723
2731
  Filter for the log. Typically set `application_variant_id` to list the revision history of a single variant; optionally set `application_revision_id` + `depth` to walk back a bounded number of commits from a specific revision.
2724
2732
 
2725
2733
  request_options : typing.Optional[RequestOptions]
@@ -2743,16 +2751,16 @@ class AsyncApplicationsClient:
2743
2751
 
2744
2752
  async def main() -> None:
2745
2753
  await client.applications.log_application_revisions(
2746
- application=ApplicationRevisionsLog(),
2754
+ application_revisions=ApplicationRevisionsLog(),
2747
2755
  )
2748
2756
 
2749
2757
 
2750
2758
  asyncio.run(main())
2751
2759
  """
2752
- _response = await self._raw_client.log_application_revisions(application=application, request_options=request_options)
2760
+ _response = await self._raw_client.log_application_revisions(application_revisions=application_revisions, request_options=request_options)
2753
2761
  return _response.data
2754
2762
 
2755
- async def resolve_application_revision(self, *, application_ref: typing.Optional[Reference] = OMIT, application_variant_ref: typing.Optional[Reference] = OMIT, application_revision_ref: typing.Optional[Reference] = OMIT, max_depth: typing.Optional[int] = OMIT, max_embeds: typing.Optional[int] = OMIT, error_policy: typing.Optional[ErrorPolicy] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResolveResponse:
2763
+ async def resolve_application_revision(self, *, application_ref: typing.Optional[Reference] = OMIT, application_variant_ref: typing.Optional[Reference] = OMIT, application_revision_ref: typing.Optional[Reference] = OMIT, application_revision: typing.Optional[ApplicationRevisionInput] = OMIT, max_depth: typing.Optional[int] = OMIT, max_embeds: typing.Optional[int] = OMIT, error_policy: typing.Optional[ErrorPolicy] = OMIT, request_options: typing.Optional[RequestOptions] = None) -> ApplicationRevisionResolveResponse:
2756
2764
  """
2757
2765
  Fetch a revision with embedded references inlined.
2758
2766
 
@@ -2773,6 +2781,9 @@ class AsyncApplicationsClient:
2773
2781
  application_revision_ref : typing.Optional[Reference]
2774
2782
  Revision reference; resolves that exact revision.
2775
2783
 
2784
+ application_revision : typing.Optional[ApplicationRevisionInput]
2785
+ Resolve the references embedded in this revision payload directly, without fetching it first. Only `data` is used; id and metadata are ignored.
2786
+
2776
2787
  max_depth : typing.Optional[int]
2777
2788
  Maximum nesting depth for embedded references. Protects against runaway recursion. Defaults to `10`.
2778
2789
 
@@ -2807,7 +2818,7 @@ class AsyncApplicationsClient:
2807
2818
 
2808
2819
  asyncio.run(main())
2809
2820
  """
2810
- _response = await self._raw_client.resolve_application_revision(application_ref=application_ref, application_variant_ref=application_variant_ref, application_revision_ref=application_revision_ref, max_depth=max_depth, max_embeds=max_embeds, error_policy=error_policy, request_options=request_options)
2821
+ _response = await self._raw_client.resolve_application_revision(application_ref=application_ref, application_variant_ref=application_variant_ref, application_revision_ref=application_revision_ref, application_revision=application_revision, max_depth=max_depth, max_embeds=max_embeds, error_policy=error_policy, request_options=request_options)
2811
2822
  return _response.data
2812
2823
 
2813
2824
  async def create_simple_application(self, *, application: SimpleApplicationCreate, application_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None) -> SimpleApplicationResponse: