agenta 0.33.0a1__tar.gz → 0.33.0a3__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.

Potentially problematic release.


This version of agenta might be problematic. Click here for more details.

Files changed (280) hide show
  1. {agenta-0.33.0a1 → agenta-0.33.0a3}/PKG-INFO +19 -14
  2. {agenta-0.33.0a1 → agenta-0.33.0a3}/README.md +18 -13
  3. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/__init__.py +2 -0
  4. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/__init__.py +35 -23
  5. agenta-0.33.0a3/agenta/client/backend/admin/client.py +576 -0
  6. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/apps/client.py +384 -2
  7. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/client.py +22 -40
  8. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/http_client.py +3 -3
  9. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/evaluations/client.py +0 -6
  10. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/human_evaluations/client.py +2 -6
  11. {agenta-0.33.0a1/agenta/client/backend/observability_v_1 → agenta-0.33.0a3/agenta/client/backend/observability}/client.py +12 -12
  12. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/testsets/client.py +16 -180
  13. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/__init__.py +32 -22
  14. agenta-0.33.0a3/agenta/client/backend/types/account_response.py +24 -0
  15. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/app_variant_revision.py +2 -1
  16. agenta-0.33.0a3/agenta/client/backend/types/legacy_scope_request.py +21 -0
  17. agenta-0.33.0a3/agenta/client/backend/types/legacy_scopes_response.py +29 -0
  18. agenta-0.33.0a3/agenta/client/backend/types/legacy_user_request.py +22 -0
  19. agenta-0.33.0a3/agenta/client/backend/types/legacy_user_response.py +21 -0
  20. agenta-0.33.0a3/agenta/client/backend/types/organization_membership_request.py +25 -0
  21. agenta-0.33.0a3/agenta/client/backend/types/organization_request.py +23 -0
  22. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/permission.py +4 -0
  23. agenta-0.33.0a3/agenta/client/backend/types/project_membership_request.py +26 -0
  24. agenta-0.33.0a3/agenta/client/backend/types/project_request.py +26 -0
  25. agenta-0.33.0a3/agenta/client/backend/types/project_scope.py +29 -0
  26. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/provider_kind.py +1 -1
  27. agenta-0.33.0a3/agenta/client/backend/types/reference.py +22 -0
  28. agenta-0.33.0a3/agenta/client/backend/types/role.py +15 -0
  29. agenta-0.33.0a3/agenta/client/backend/types/scopes_response_model.py +22 -0
  30. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/score.py +1 -1
  31. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/secret_response_dto.py +2 -2
  32. agenta-0.33.0a3/agenta/client/backend/types/user_request.py +22 -0
  33. agenta-0.33.0a3/agenta/client/backend/types/workspace_membership_request.py +26 -0
  34. agenta-0.33.0a3/agenta/client/backend/types/workspace_request.py +25 -0
  35. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/variants/client.py +166 -12
  36. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/vault/client.py +11 -9
  37. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/__init__.py +3 -0
  38. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/agenta_init.py +3 -1
  39. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/decorators/routing.py +97 -13
  40. agenta-0.33.0a3/agenta/sdk/managers/apps.py +64 -0
  41. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/managers/shared.py +2 -2
  42. agenta-0.33.0a3/agenta/sdk/middleware/auth.py +283 -0
  43. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/middleware/config.py +18 -14
  44. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/middleware/inline.py +1 -1
  45. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/middleware/mock.py +1 -1
  46. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/middleware/otel.py +1 -1
  47. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/middleware/vault.py +1 -1
  48. {agenta-0.33.0a1 → agenta-0.33.0a3}/pyproject.toml +1 -4
  49. agenta-0.33.0a1/agenta/client/backend/observability/client.py +0 -1286
  50. agenta-0.33.0a1/agenta/client/backend/types/create_span.py +0 -45
  51. agenta-0.33.0a1/agenta/client/backend/types/create_trace_response.py +0 -22
  52. agenta-0.33.0a1/agenta/client/backend/types/llm_tokens.py +0 -23
  53. agenta-0.33.0a1/agenta/client/backend/types/outputs.py +0 -5
  54. agenta-0.33.0a1/agenta/client/backend/types/span.py +0 -42
  55. agenta-0.33.0a1/agenta/client/backend/types/span_detail.py +0 -44
  56. agenta-0.33.0a1/agenta/client/backend/types/span_status_code.py +0 -5
  57. agenta-0.33.0a1/agenta/client/backend/types/span_variant.py +0 -23
  58. agenta-0.33.0a1/agenta/client/backend/types/trace_detail.py +0 -44
  59. agenta-0.33.0a1/agenta/client/backend/types/with_pagination.py +0 -26
  60. agenta-0.33.0a1/agenta/sdk/middleware/auth.py +0 -184
  61. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/cli/evaluation_commands.py +0 -0
  62. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/cli/helper.py +0 -0
  63. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/cli/main.py +0 -0
  64. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/cli/telemetry.py +0 -0
  65. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/cli/variant_commands.py +0 -0
  66. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/cli/variant_configs.py +0 -0
  67. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/Readme.md +0 -0
  68. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/__init__.py +0 -0
  69. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/api.py +0 -0
  70. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/api_models.py +0 -0
  71. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/access_control/__init__.py +0 -0
  72. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/access_control/client.py +0 -0
  73. {agenta-0.33.0a1/agenta/client/backend/apps → agenta-0.33.0a3/agenta/client/backend/admin}/__init__.py +0 -0
  74. {agenta-0.33.0a1/agenta/client/backend/bases → agenta-0.33.0a3/agenta/client/backend/apps}/__init__.py +0 -0
  75. {agenta-0.33.0a1/agenta/client/backend/configs → agenta-0.33.0a3/agenta/client/backend/bases}/__init__.py +0 -0
  76. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/bases/client.py +0 -0
  77. {agenta-0.33.0a1/agenta/client/backend/environments → agenta-0.33.0a3/agenta/client/backend/configs}/__init__.py +0 -0
  78. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/configs/client.py +0 -0
  79. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/containers/__init__.py +0 -0
  80. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/containers/client.py +0 -0
  81. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/containers/types/__init__.py +0 -0
  82. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/containers/types/container_templates_response.py +0 -0
  83. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/__init__.py +0 -0
  84. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/api_error.py +0 -0
  85. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/client_wrapper.py +0 -0
  86. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/datetime_utils.py +0 -0
  87. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/file.py +0 -0
  88. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/jsonable_encoder.py +0 -0
  89. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/pydantic_utilities.py +0 -0
  90. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/query_encoder.py +0 -0
  91. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/remove_none_from_dict.py +0 -0
  92. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/request_options.py +0 -0
  93. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/core/serialization.py +0 -0
  94. {agenta-0.33.0a1/agenta/client/backend/evaluations → agenta-0.33.0a3/agenta/client/backend/environments}/__init__.py +0 -0
  95. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/environments/client.py +0 -0
  96. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/errors/__init__.py +0 -0
  97. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/errors/unprocessable_entity_error.py +0 -0
  98. {agenta-0.33.0a1/agenta/client/backend/evaluators → agenta-0.33.0a3/agenta/client/backend/evaluations}/__init__.py +0 -0
  99. {agenta-0.33.0a1/agenta/client/backend/human_evaluations → agenta-0.33.0a3/agenta/client/backend/evaluators}/__init__.py +0 -0
  100. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/evaluators/client.py +0 -0
  101. {agenta-0.33.0a1/agenta/client/backend/observability → agenta-0.33.0a3/agenta/client/backend/human_evaluations}/__init__.py +0 -0
  102. {agenta-0.33.0a1/agenta/client/backend/observability_v_1 → agenta-0.33.0a3/agenta/client/backend/observability}/__init__.py +0 -0
  103. {agenta-0.33.0a1/agenta/client/backend/observability_v_1 → agenta-0.33.0a3/agenta/client/backend/observability}/types/__init__.py +0 -0
  104. {agenta-0.33.0a1/agenta/client/backend/observability_v_1 → agenta-0.33.0a3/agenta/client/backend/observability}/types/format.py +0 -0
  105. {agenta-0.33.0a1/agenta/client/backend/observability_v_1 → agenta-0.33.0a3/agenta/client/backend/observability}/types/query_analytics_response.py +0 -0
  106. {agenta-0.33.0a1/agenta/client/backend/observability_v_1 → agenta-0.33.0a3/agenta/client/backend/observability}/types/query_traces_response.py +0 -0
  107. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/scopes/__init__.py +0 -0
  108. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/scopes/client.py +0 -0
  109. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/testsets/__init__.py +0 -0
  110. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/agenta_node_dto.py +0 -0
  111. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/agenta_node_dto_nodes_value.py +0 -0
  112. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/agenta_nodes_response.py +0 -0
  113. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/agenta_root_dto.py +0 -0
  114. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/agenta_roots_response.py +0 -0
  115. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/agenta_tree_dto.py +0 -0
  116. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/agenta_trees_response.py +0 -0
  117. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/aggregated_result.py +0 -0
  118. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/aggregated_result_evaluator_config.py +0 -0
  119. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/analytics_response.py +0 -0
  120. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/app.py +0 -0
  121. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/app_variant_response.py +0 -0
  122. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/base_output.py +0 -0
  123. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/body_import_testset.py +0 -0
  124. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/bucket_dto.py +0 -0
  125. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/collect_status_response.py +0 -0
  126. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/config_db.py +0 -0
  127. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/config_dto.py +0 -0
  128. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/config_response_model.py +0 -0
  129. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/correct_answer.py +0 -0
  130. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/create_app_output.py +0 -0
  131. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/delete_evaluation.py +0 -0
  132. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/docker_env_vars.py +0 -0
  133. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/environment_output.py +0 -0
  134. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/environment_output_extended.py +0 -0
  135. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/environment_revision.py +0 -0
  136. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/error.py +0 -0
  137. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluation.py +0 -0
  138. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluation_scenario.py +0 -0
  139. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluation_scenario_input.py +0 -0
  140. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluation_scenario_output.py +0 -0
  141. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluation_scenario_result.py +0 -0
  142. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluation_status_enum.py +0 -0
  143. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluation_type.py +0 -0
  144. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluator.py +0 -0
  145. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluator_config.py +0 -0
  146. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluator_mapping_output_interface.py +0 -0
  147. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/evaluator_output_interface.py +0 -0
  148. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/exception_dto.py +0 -0
  149. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/get_config_response.py +0 -0
  150. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/header_dto.py +0 -0
  151. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/http_validation_error.py +0 -0
  152. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/human_evaluation.py +0 -0
  153. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/human_evaluation_scenario.py +0 -0
  154. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/human_evaluation_scenario_input.py +0 -0
  155. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/human_evaluation_scenario_output.py +0 -0
  156. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/image.py +0 -0
  157. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/invite_request.py +0 -0
  158. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/legacy_analytics_response.py +0 -0
  159. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/legacy_data_point.py +0 -0
  160. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/lifecycle_dto.py +0 -0
  161. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/link_dto.py +0 -0
  162. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/list_api_keys_response.py +0 -0
  163. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/llm_run_rate_limit.py +0 -0
  164. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/metrics_dto.py +0 -0
  165. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/new_testset.py +0 -0
  166. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/node_dto.py +0 -0
  167. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/node_type.py +0 -0
  168. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/o_tel_context_dto.py +0 -0
  169. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/o_tel_event_dto.py +0 -0
  170. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/o_tel_extra_dto.py +0 -0
  171. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/o_tel_link_dto.py +0 -0
  172. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/o_tel_span_dto.py +0 -0
  173. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/o_tel_span_kind.py +0 -0
  174. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/o_tel_spans_response.py +0 -0
  175. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/o_tel_status_code.py +0 -0
  176. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/organization.py +0 -0
  177. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/organization_output.py +0 -0
  178. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/parent_dto.py +0 -0
  179. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/projects_response.py +0 -0
  180. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/provider_key_dto.py +0 -0
  181. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/reference_dto.py +0 -0
  182. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/reference_request_model.py +0 -0
  183. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/result.py +0 -0
  184. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/root_dto.py +0 -0
  185. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/secret_dto.py +0 -0
  186. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/secret_kind.py +0 -0
  187. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/simple_evaluation_output.py +0 -0
  188. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/span_dto.py +0 -0
  189. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/span_dto_nodes_value.py +0 -0
  190. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/status_code.py +0 -0
  191. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/status_dto.py +0 -0
  192. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/template.py +0 -0
  193. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/template_image_info.py +0 -0
  194. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/test_set_output_response.py +0 -0
  195. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/test_set_simple_response.py +0 -0
  196. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/time_dto.py +0 -0
  197. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/tree_dto.py +0 -0
  198. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/tree_type.py +0 -0
  199. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/update_app_output.py +0 -0
  200. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/uri.py +0 -0
  201. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/validation_error.py +0 -0
  202. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/validation_error_loc_item.py +0 -0
  203. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/variant_action.py +0 -0
  204. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/variant_action_enum.py +0 -0
  205. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/workspace_member_response.py +0 -0
  206. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/workspace_permission.py +0 -0
  207. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/workspace_response.py +0 -0
  208. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/workspace_role.py +0 -0
  209. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/types/workspace_role_response.py +0 -0
  210. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/variants/__init__.py +0 -0
  211. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/variants/types/__init__.py +0 -0
  212. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/variants/types/add_variant_from_base_and_config_response.py +0 -0
  213. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/backend/vault/__init__.py +0 -0
  214. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/client.py +0 -0
  215. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/client/exceptions.py +0 -0
  216. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/config.py +0 -0
  217. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/config.toml +0 -0
  218. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/docker/docker-assets/Dockerfile.cloud.template +0 -0
  219. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/docker/docker-assets/Dockerfile.template +0 -0
  220. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/docker/docker-assets/README.md +0 -0
  221. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/docker/docker-assets/entrypoint.sh +0 -0
  222. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/docker/docker-assets/lambda_function.py +0 -0
  223. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/docker/docker-assets/main.py +0 -0
  224. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/docker/docker_utils.py +0 -0
  225. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/assets.py +0 -0
  226. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/client.py +0 -0
  227. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/context/__init__.py +0 -0
  228. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/context/exporting.py +0 -0
  229. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/context/routing.py +0 -0
  230. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/context/tracing.py +0 -0
  231. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/decorators/__init__.py +0 -0
  232. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/decorators/tracing.py +0 -0
  233. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/litellm/__init__.py +0 -0
  234. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/litellm/litellm.py +0 -0
  235. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/litellm/mockllm.py +0 -0
  236. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/litellm/mocks/__init__.py +0 -0
  237. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/managers/__init__.py +0 -0
  238. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/managers/config.py +0 -0
  239. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/managers/deployment.py +0 -0
  240. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/managers/secrets.py +0 -0
  241. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/managers/variant.py +0 -0
  242. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/managers/vault.py +0 -0
  243. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/middleware/__init__.py +0 -0
  244. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/middleware/cache.py +0 -0
  245. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/middleware/cors.py +0 -0
  246. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/router.py +0 -0
  247. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/tracing/__init__.py +0 -0
  248. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/tracing/attributes.py +0 -0
  249. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/tracing/conventions.py +0 -0
  250. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/tracing/exporters.py +0 -0
  251. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/tracing/inline.py +0 -0
  252. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/tracing/processors.py +0 -0
  253. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/tracing/spans.py +0 -0
  254. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/tracing/tracing.py +0 -0
  255. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/types.py +0 -0
  256. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/__init__.py +0 -0
  257. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/constants.py +0 -0
  258. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/costs.py +0 -0
  259. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/exceptions.py +0 -0
  260. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/globals.py +0 -0
  261. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/helpers.py +0 -0
  262. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/logging.py +0 -0
  263. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/preinit.py +0 -0
  264. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/singleton.py +0 -0
  265. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/sdk/utils/timing.py +0 -0
  266. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/compose_email/README.md +0 -0
  267. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/compose_email/app.py +0 -0
  268. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/compose_email/env.example +0 -0
  269. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/compose_email/requirements.txt +0 -0
  270. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/compose_email/template.toml +0 -0
  271. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/extract_data_to_json/README.md +0 -0
  272. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/extract_data_to_json/app.py +0 -0
  273. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/extract_data_to_json/env.example +0 -0
  274. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/extract_data_to_json/requirements.txt +0 -0
  275. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/extract_data_to_json/template.toml +0 -0
  276. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/simple_prompt/README.md +0 -0
  277. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/simple_prompt/app.py +0 -0
  278. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/simple_prompt/env.example +0 -0
  279. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/simple_prompt/requirements.txt +0 -0
  280. {agenta-0.33.0a1 → agenta-0.33.0a3}/agenta/templates/simple_prompt/template.toml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: agenta
3
- Version: 0.33.0a1
3
+ Version: 0.33.0a3
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
@@ -51,7 +51,7 @@ Description-Content-Type: text/markdown
51
51
  <a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ">Slack</a>
52
52
  </p>
53
53
  <div align="center">
54
- <strong> <h2> The Open source LLMOps Platform </h2></strong>
54
+ <strong> <h1> The Open source LLMOps Platform </h1></strong>
55
55
  Prompt playground, prompt management, evaluation, and observability
56
56
  </div>
57
57
  </br>
@@ -122,14 +122,14 @@ Description-Content-Type: text/markdown
122
122
 
123
123
  ---
124
124
 
125
- # What is Agenta?
125
+ ## What is Agenta?
126
126
 
127
127
  Agenta is a platform for building production-grade LLM applications. It helps **engineering and product teams** create reliable LLM apps faster.
128
128
 
129
129
 
130
130
  Agenta provides end-to-end tools for the entire LLMOps workflow: building (**LLM playground**, **evaluation**), deploying (**prompt and configuration management**), and monitoring (**LLM observability and tracing**).
131
131
 
132
- # Features
132
+ ## Features
133
133
  - **Prompt Playground**: Experiment, iterate on prompts, and compare outputs from over 50 LLM models side by side ([docs](https://docs.agenta.ai/prompt-management/using-the-playground?utm_source=github&utm_medium=referral&utm_campaign=readme))
134
134
  - **Custom Workflows**: Build a playground for any custom LLM workflow, such as RAG or agents. Enable all the team to easily iterate on its parameters and evaluate it from the web UI.
135
135
  - **LLM evaluation**: Run evaluation suite from the webUI using predefined evaluators like LLM-as-a-judge, RAG evaluators, or custom code evaluators. ([docs](https://docs.agenta.ai/evaluation/overview?utm_source=github&utm_medium=referral&utm_campaign=readme))
@@ -139,8 +139,8 @@ Agenta provides end-to-end tools for the entire LLMOps workflow: building (**LL
139
139
  - **LLM Monitoring**: Track cost and latency and compare different deployments.
140
140
 
141
141
 
142
- # Getting Started
143
- ## Agenta Cloud:
142
+ ## Getting Started
143
+ ### Agenta Cloud:
144
144
  The easiest way to get started is through Agenta Cloud. It is free to signup, and comes with a generous free-tier.
145
145
 
146
146
  <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
@@ -151,16 +151,21 @@ The easiest way to get started is through Agenta Cloud. It is free to signup, an
151
151
  </picture>
152
152
  </a>
153
153
 
154
- ## Self-host:
155
- ```
154
+
155
+ ### Self-hosting Agenta
156
+
157
+ #### Quick Setup (Port 80)
158
+ ```bash
156
159
  mkdir agenta && cd agenta
157
160
  curl -L https://raw.githubusercontent.com/agenta-ai/agenta/main/docker-compose.gh.yml -o docker-compose.gh.yml
158
161
  docker compose -f docker-compose.gh.yml up -d
159
162
  ```
160
- - Agenta uses port 80, to use a different port set the env var AGENTA_PORT. For instance `export AGENTA_PORT=90`
161
- - Add `--pull always` to the last command to upgrade your version of Agenta.
162
-
163
- # Disabling Anonymized Tracking
163
+
164
+ #### Deployment Options
165
+ - To use a different port or customize your deployment, see our [deployment documentation](https://docs.agenta.ai/self-host/host-locally?utm_source=github&utm_medium=referral&utm_campaign=readme)
166
+ - For deploying on cloud platforms, refer to our guides for [AWS](https://docs.agenta.ai/self-host/deploy_remotly/host-on-aws?utm_source=github&utm_medium=referral&utm_campaign=readme), [GCP](https://docs.agenta.ai/self-host/deploy_remotly/host-on-gcp?utm_source=github&utm_medium=referral&utm_campaign=readme), or [other remote hosting options](https://docs.agenta.ai/self-host/deploy_remotly/host-remotely?utm_source=github&utm_medium=referral&utm_campaign=readme)
167
+
168
+ ## Disabling Anonymized Tracking
164
169
 
165
170
  By default, Agenta automatically reports anonymized basic usage statistics. This helps us understand how Agenta is used and track its overall usage and growth. This data does not include any sensitive information. To disable anonymized telemetry, follow these steps:
166
171
 
@@ -168,7 +173,7 @@ By default, Agenta automatically reports anonymized basic usage statistics. This
168
173
  - For CLI: Set `telemetry_tracking_enabled` to `false` in your `~/.agenta/config.toml` file.
169
174
 
170
175
 
171
- # Contributing
176
+ ## Contributing
172
177
 
173
178
  We warmly welcome contributions to Agenta. Feel free to submit issues, fork the repository, and send pull requests.
174
179
 
@@ -176,7 +181,7 @@ We are usually hanging in our Slack. Feel free to [join our Slack and ask us any
176
181
 
177
182
  Check out our [Contributing Guide](https://docs.agenta.ai/misc/contributing/getting-started?utm_source=github&utm_medium=referral&utm_campaign=readme) for more information.
178
183
 
179
- ## Contributors ✨
184
+ ### Contributors ✨
180
185
 
181
186
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
182
187
  [![All Contributors](https://img.shields.io/badge/all_contributors-49-orange.svg?style=flat-square)](#contributors-)
@@ -13,7 +13,7 @@
13
13
  <a href="https://join.slack.com/t/agenta-hq/shared_invite/zt-2yewk6o2b-DmhyA4h_lkKwecDtIsj1AQ">Slack</a>
14
14
  </p>
15
15
  <div align="center">
16
- <strong> <h2> The Open source LLMOps Platform </h2></strong>
16
+ <strong> <h1> The Open source LLMOps Platform </h1></strong>
17
17
  Prompt playground, prompt management, evaluation, and observability
18
18
  </div>
19
19
  </br>
@@ -84,14 +84,14 @@
84
84
 
85
85
  ---
86
86
 
87
- # What is Agenta?
87
+ ## What is Agenta?
88
88
 
89
89
  Agenta is a platform for building production-grade LLM applications. It helps **engineering and product teams** create reliable LLM apps faster.
90
90
 
91
91
 
92
92
  Agenta provides end-to-end tools for the entire LLMOps workflow: building (**LLM playground**, **evaluation**), deploying (**prompt and configuration management**), and monitoring (**LLM observability and tracing**).
93
93
 
94
- # Features
94
+ ## Features
95
95
  - **Prompt Playground**: Experiment, iterate on prompts, and compare outputs from over 50 LLM models side by side ([docs](https://docs.agenta.ai/prompt-management/using-the-playground?utm_source=github&utm_medium=referral&utm_campaign=readme))
96
96
  - **Custom Workflows**: Build a playground for any custom LLM workflow, such as RAG or agents. Enable all the team to easily iterate on its parameters and evaluate it from the web UI.
97
97
  - **LLM evaluation**: Run evaluation suite from the webUI using predefined evaluators like LLM-as-a-judge, RAG evaluators, or custom code evaluators. ([docs](https://docs.agenta.ai/evaluation/overview?utm_source=github&utm_medium=referral&utm_campaign=readme))
@@ -101,8 +101,8 @@ Agenta provides end-to-end tools for the entire LLMOps workflow: building (**LL
101
101
  - **LLM Monitoring**: Track cost and latency and compare different deployments.
102
102
 
103
103
 
104
- # Getting Started
105
- ## Agenta Cloud:
104
+ ## Getting Started
105
+ ### Agenta Cloud:
106
106
  The easiest way to get started is through Agenta Cloud. It is free to signup, and comes with a generous free-tier.
107
107
 
108
108
  <a href="https://cloud.agenta.ai?utm_source=github&utm_medium=referral&utm_campaign=readme">
@@ -113,16 +113,21 @@ The easiest way to get started is through Agenta Cloud. It is free to signup, an
113
113
  </picture>
114
114
  </a>
115
115
 
116
- ## Self-host:
117
- ```
116
+
117
+ ### Self-hosting Agenta
118
+
119
+ #### Quick Setup (Port 80)
120
+ ```bash
118
121
  mkdir agenta && cd agenta
119
122
  curl -L https://raw.githubusercontent.com/agenta-ai/agenta/main/docker-compose.gh.yml -o docker-compose.gh.yml
120
123
  docker compose -f docker-compose.gh.yml up -d
121
124
  ```
122
- - Agenta uses port 80, to use a different port set the env var AGENTA_PORT. For instance `export AGENTA_PORT=90`
123
- - Add `--pull always` to the last command to upgrade your version of Agenta.
124
-
125
- # Disabling Anonymized Tracking
125
+
126
+ #### Deployment Options
127
+ - To use a different port or customize your deployment, see our [deployment documentation](https://docs.agenta.ai/self-host/host-locally?utm_source=github&utm_medium=referral&utm_campaign=readme)
128
+ - For deploying on cloud platforms, refer to our guides for [AWS](https://docs.agenta.ai/self-host/deploy_remotly/host-on-aws?utm_source=github&utm_medium=referral&utm_campaign=readme), [GCP](https://docs.agenta.ai/self-host/deploy_remotly/host-on-gcp?utm_source=github&utm_medium=referral&utm_campaign=readme), or [other remote hosting options](https://docs.agenta.ai/self-host/deploy_remotly/host-remotely?utm_source=github&utm_medium=referral&utm_campaign=readme)
129
+
130
+ ## Disabling Anonymized Tracking
126
131
 
127
132
  By default, Agenta automatically reports anonymized basic usage statistics. This helps us understand how Agenta is used and track its overall usage and growth. This data does not include any sensitive information. To disable anonymized telemetry, follow these steps:
128
133
 
@@ -130,7 +135,7 @@ By default, Agenta automatically reports anonymized basic usage statistics. This
130
135
  - For CLI: Set `telemetry_tracking_enabled` to `false` in your `~/.agenta/config.toml` file.
131
136
 
132
137
 
133
- # Contributing
138
+ ## Contributing
134
139
 
135
140
  We warmly welcome contributions to Agenta. Feel free to submit issues, fork the repository, and send pull requests.
136
141
 
@@ -138,7 +143,7 @@ We are usually hanging in our Slack. Feel free to [join our Slack and ask us any
138
143
 
139
144
  Check out our [Contributing Guide](https://docs.agenta.ai/misc/contributing/getting-started?utm_source=github&utm_medium=referral&utm_campaign=readme) for more information.
140
145
 
141
- ## Contributors ✨
146
+ ### Contributors ✨
142
147
 
143
148
  <!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
144
149
  [![All Contributors](https://img.shields.io/badge/all_contributors-49-orange.svg?style=flat-square)](#contributors-)
@@ -29,6 +29,7 @@ from .sdk.agenta_init import Config, AgentaSingleton, init as _init
29
29
  from .sdk.utils.costs import calculate_token_usage
30
30
  from .sdk.client import Agenta
31
31
  from .sdk.litellm import litellm as callbacks
32
+ from .sdk.managers.apps import AppManager
32
33
  from .sdk.managers.vault import VaultManager
33
34
  from .sdk.managers.secrets import SecretsManager
34
35
  from .sdk.managers.config import ConfigManager
@@ -36,6 +37,7 @@ from .sdk.managers.variant import VariantManager
36
37
  from .sdk.managers.deployment import DeploymentManager
37
38
  from .sdk import assets as assets
38
39
  from .sdk import tracer
40
+ from .client.exceptions import APIRequestError
39
41
 
40
42
  config = PreInitObject("agenta.config", Config)
41
43
  DEFAULT_AGENTA_SINGLETON_INSTANCE = AgentaSingleton()
@@ -1,6 +1,7 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
3
  from .types import (
4
+ AccountResponse,
4
5
  AgentaNodeDto,
5
6
  AgentaNodeDtoNodesValue,
6
7
  AgentaNodesResponse,
@@ -23,8 +24,6 @@ from .types import (
23
24
  ConfigResponseModel,
24
25
  CorrectAnswer,
25
26
  CreateAppOutput,
26
- CreateSpan,
27
- CreateTraceResponse,
28
27
  DeleteEvaluation,
29
28
  DockerEnvVars,
30
29
  EnvironmentOutput,
@@ -54,11 +53,14 @@ from .types import (
54
53
  InviteRequest,
55
54
  LegacyAnalyticsResponse,
56
55
  LegacyDataPoint,
56
+ LegacyScopeRequest,
57
+ LegacyScopesResponse,
58
+ LegacyUserRequest,
59
+ LegacyUserResponse,
57
60
  LifecycleDto,
58
61
  LinkDto,
59
62
  ListApiKeysResponse,
60
63
  LlmRunRateLimit,
61
- LlmTokens,
62
64
  MetricsDto,
63
65
  NewTestset,
64
66
  NodeDto,
@@ -72,28 +74,31 @@ from .types import (
72
74
  OTelSpansResponse,
73
75
  OTelStatusCode,
74
76
  Organization,
77
+ OrganizationMembershipRequest,
75
78
  OrganizationOutput,
76
- Outputs,
79
+ OrganizationRequest,
77
80
  ParentDto,
78
81
  Permission,
82
+ ProjectMembershipRequest,
83
+ ProjectRequest,
84
+ ProjectScope,
79
85
  ProjectsResponse,
80
86
  ProviderKeyDto,
81
87
  ProviderKind,
88
+ Reference,
82
89
  ReferenceDto,
83
90
  ReferenceRequestModel,
84
91
  Result,
92
+ Role,
85
93
  RootDto,
94
+ ScopesResponseModel,
86
95
  Score,
87
96
  SecretDto,
88
97
  SecretKind,
89
98
  SecretResponseDto,
90
99
  SimpleEvaluationOutput,
91
- Span,
92
- SpanDetail,
93
100
  SpanDto,
94
101
  SpanDtoNodesValue,
95
- SpanStatusCode,
96
- SpanVariant,
97
102
  StatusCode,
98
103
  StatusDto,
99
104
  Template,
@@ -101,18 +106,19 @@ from .types import (
101
106
  TestSetOutputResponse,
102
107
  TestSetSimpleResponse,
103
108
  TimeDto,
104
- TraceDetail,
105
109
  TreeDto,
106
110
  TreeType,
107
111
  UpdateAppOutput,
108
112
  Uri,
113
+ UserRequest,
109
114
  ValidationError,
110
115
  ValidationErrorLocItem,
111
116
  VariantAction,
112
117
  VariantActionEnum,
113
- WithPagination,
114
118
  WorkspaceMemberResponse,
119
+ WorkspaceMembershipRequest,
115
120
  WorkspacePermission,
121
+ WorkspaceRequest,
116
122
  WorkspaceResponse,
117
123
  WorkspaceRole,
118
124
  WorkspaceRoleResponse,
@@ -120,6 +126,7 @@ from .types import (
120
126
  from .errors import UnprocessableEntityError
121
127
  from . import (
122
128
  access_control,
129
+ admin,
123
130
  apps,
124
131
  bases,
125
132
  configs,
@@ -129,7 +136,6 @@ from . import (
129
136
  evaluators,
130
137
  human_evaluations,
131
138
  observability,
132
- observability_v_1,
133
139
  scopes,
134
140
  testsets,
135
141
  variants,
@@ -137,10 +143,11 @@ from . import (
137
143
  )
138
144
  from .client import AgentaApi, AsyncAgentaApi
139
145
  from .containers import ContainerTemplatesResponse
140
- from .observability_v_1 import Format, QueryAnalyticsResponse, QueryTracesResponse
146
+ from .observability import Format, QueryAnalyticsResponse, QueryTracesResponse
141
147
  from .variants import AddVariantFromBaseAndConfigResponse
142
148
 
143
149
  __all__ = [
150
+ "AccountResponse",
144
151
  "AddVariantFromBaseAndConfigResponse",
145
152
  "AgentaApi",
146
153
  "AgentaNodeDto",
@@ -167,8 +174,6 @@ __all__ = [
167
174
  "ContainerTemplatesResponse",
168
175
  "CorrectAnswer",
169
176
  "CreateAppOutput",
170
- "CreateSpan",
171
- "CreateTraceResponse",
172
177
  "DeleteEvaluation",
173
178
  "DockerEnvVars",
174
179
  "EnvironmentOutput",
@@ -199,11 +204,14 @@ __all__ = [
199
204
  "InviteRequest",
200
205
  "LegacyAnalyticsResponse",
201
206
  "LegacyDataPoint",
207
+ "LegacyScopeRequest",
208
+ "LegacyScopesResponse",
209
+ "LegacyUserRequest",
210
+ "LegacyUserResponse",
202
211
  "LifecycleDto",
203
212
  "LinkDto",
204
213
  "ListApiKeysResponse",
205
214
  "LlmRunRateLimit",
206
- "LlmTokens",
207
215
  "MetricsDto",
208
216
  "NewTestset",
209
217
  "NodeDto",
@@ -217,30 +225,33 @@ __all__ = [
217
225
  "OTelSpansResponse",
218
226
  "OTelStatusCode",
219
227
  "Organization",
228
+ "OrganizationMembershipRequest",
220
229
  "OrganizationOutput",
221
- "Outputs",
230
+ "OrganizationRequest",
222
231
  "ParentDto",
223
232
  "Permission",
233
+ "ProjectMembershipRequest",
234
+ "ProjectRequest",
235
+ "ProjectScope",
224
236
  "ProjectsResponse",
225
237
  "ProviderKeyDto",
226
238
  "ProviderKind",
227
239
  "QueryAnalyticsResponse",
228
240
  "QueryTracesResponse",
241
+ "Reference",
229
242
  "ReferenceDto",
230
243
  "ReferenceRequestModel",
231
244
  "Result",
245
+ "Role",
232
246
  "RootDto",
247
+ "ScopesResponseModel",
233
248
  "Score",
234
249
  "SecretDto",
235
250
  "SecretKind",
236
251
  "SecretResponseDto",
237
252
  "SimpleEvaluationOutput",
238
- "Span",
239
- "SpanDetail",
240
253
  "SpanDto",
241
254
  "SpanDtoNodesValue",
242
- "SpanStatusCode",
243
- "SpanVariant",
244
255
  "StatusCode",
245
256
  "StatusDto",
246
257
  "Template",
@@ -248,23 +259,25 @@ __all__ = [
248
259
  "TestSetOutputResponse",
249
260
  "TestSetSimpleResponse",
250
261
  "TimeDto",
251
- "TraceDetail",
252
262
  "TreeDto",
253
263
  "TreeType",
254
264
  "UnprocessableEntityError",
255
265
  "UpdateAppOutput",
256
266
  "Uri",
267
+ "UserRequest",
257
268
  "ValidationError",
258
269
  "ValidationErrorLocItem",
259
270
  "VariantAction",
260
271
  "VariantActionEnum",
261
- "WithPagination",
262
272
  "WorkspaceMemberResponse",
273
+ "WorkspaceMembershipRequest",
263
274
  "WorkspacePermission",
275
+ "WorkspaceRequest",
264
276
  "WorkspaceResponse",
265
277
  "WorkspaceRole",
266
278
  "WorkspaceRoleResponse",
267
279
  "access_control",
280
+ "admin",
268
281
  "apps",
269
282
  "bases",
270
283
  "configs",
@@ -274,7 +287,6 @@ __all__ = [
274
287
  "evaluators",
275
288
  "human_evaluations",
276
289
  "observability",
277
- "observability_v_1",
278
290
  "scopes",
279
291
  "testsets",
280
292
  "variants",