agenta 0.85.2__tar.gz → 0.85.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.
- {agenta-0.85.2 → agenta-0.85.4}/PKG-INFO +1 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/__init__.py +30 -31
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/pydantic_utilities.py +4 -4
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/serialization.py +4 -4
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/types.py +1 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/__init__.py +3 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/agenta_init.py +0 -1
- agenta-0.85.4/agenta/sdk/decorators/__init__.py +1 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/decorators/routing.py +4 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/decorators/running.py +51 -19
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/decorators/serving.py +61 -9
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/decorators/tracing.py +2 -2
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/running/registry.py +1 -1
- agenta-0.85.4/agenta/sdk/engines/tracing/__init__.py +1 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/tracing/attributes.py +1 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/tracing/inline.py +15 -17
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/tracing/processors.py +3 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/tracing/propagation.py +5 -8
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/tracing/tracing.py +1 -1
- agenta-0.85.4/agenta/sdk/evaluations/__init__.py +2 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/evaluations/preview/evaluate.py +3 -4
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/evaluations/preview/utils.py +5 -11
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/evaluations/results.py +1 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/evaluations/runs.py +5 -5
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/evaluations/scenarios.py +1 -1
- agenta-0.85.4/agenta/sdk/litellm/__init__.py +1 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/litellm/litellm.py +2 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/evaluators.py +2 -2
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middleware/auth.py +1 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middleware/config.py +3 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middleware/otel.py +0 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/routing/auth.py +1 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/routing/otel.py +0 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/running/resolver.py +0 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/models/blobs.py +0 -11
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/models/evaluations.py +0 -14
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/models/git.py +1 -16
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/models/testsets.py +0 -24
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/models/workflows.py +1 -4
- agenta-0.85.4/agenta/sdk/tracing/__init__.py +1 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/tracing/attributes.py +1 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/tracing/exporters.py +4 -6
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/tracing/inline.py +15 -17
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/tracing/processors.py +3 -6
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/tracing/propagation.py +5 -5
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/tracing/tracing.py +1 -1
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/types.py +4 -4
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/client.py +2 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/lazy.py +1 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/logging.py +3 -3
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/builtin.py +1 -2
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/handlers.py +2 -5
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/runners/daytona.py +2 -2
- {agenta-0.85.2 → agenta-0.85.4}/pyproject.toml +1 -1
- agenta-0.85.2/agenta/sdk/decorators/__init__.py +0 -1
- agenta-0.85.2/agenta/sdk/engines/tracing/__init__.py +0 -1
- agenta-0.85.2/agenta/sdk/evaluations/__init__.py +0 -2
- agenta-0.85.2/agenta/sdk/litellm/__init__.py +0 -1
- agenta-0.85.2/agenta/sdk/tracing/__init__.py +0 -1
- {agenta-0.85.2 → agenta-0.85.4}/README.md +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/Readme.md +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/access_control/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/access_control/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/access_control/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/admin/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/admin/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/admin/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/annotations/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/annotations/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/annotations/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/api_keys/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/api_keys/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/api_keys/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/applications/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/applications/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/applications/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/apps/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/apps/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/apps/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/auth/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/auth/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/auth/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/billing/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/billing/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/billing/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/configs/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/configs/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/configs/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/containers/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/containers/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/containers/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/api_error.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/client_wrapper.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/datetime_utils.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/file.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/force_multipart.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/http_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/http_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/http_sse/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/http_sse/_api.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/http_sse/_decoders.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/http_sse/_exceptions.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/http_sse/_models.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/jsonable_encoder.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/query_encoder.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/remove_none_from_dict.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/core/request_options.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/environment.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/environments/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/environments/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/environments/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/errors/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/errors/unprocessable_entity_error.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/evaluations/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/evaluations/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/evaluations/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/evaluators/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/evaluators/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/evaluators/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/evaluators/types/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/evaluators/types/query_evaluator_variants_request_order.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/folders/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/folders/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/folders/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/human_evaluations/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/human_evaluations/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/human_evaluations/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/human_evaluations/types/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/human_evaluations/types/human_evaluation_scenario_update_score.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/invocations/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/invocations/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/invocations/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/types/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/types/fetch_analytics_request_newest.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/types/fetch_analytics_request_oldest.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/types/fetch_legacy_analytics_request_newest.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/types/fetch_legacy_analytics_request_oldest.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/types/query_spans_rpc_request_newest.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/observability/types/query_spans_rpc_request_oldest.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/organization/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/organization/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/organization/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/organizations/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/organizations/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/organizations/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/queries/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/queries/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/queries/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/queries/types/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/queries/types/query_queries_request_order.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/scopes/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/scopes/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/scopes/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/secrets/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/secrets/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/secrets/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testcases/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testcases/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testcases/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testsets/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testsets/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testsets/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testsets/types/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testsets/types/create_simple_testset_from_file_request_file_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testsets/types/edit_simple_testset_from_file_request_file_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testsets/types/fetch_simple_testset_to_file_request_file_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/testsets/types/fetch_testset_revision_to_file_request_file_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/account_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/account_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/aggregated_result.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/aggregated_result_evaluator_config.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/analytics.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/analytics_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_create_links.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_edit_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_link_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_links.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_query_links.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotation_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/annotations_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/app.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/app_variant_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/app_variant_revision.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/application_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/application_revision.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/application_revision_data.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/application_revision_data_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/application_revision_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/bucket.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/collect_status_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/comparison_operator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/condition.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/condition_operator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/condition_options.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/condition_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/config_db.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/config_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/config_response_model.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/configs_response_model.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/correct_answer.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/create_app_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/custom_model_settings_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/custom_provider_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/custom_provider_kind.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/custom_provider_settings_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/delete_evaluation.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/dict_operator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/discover_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/discover_response_methods_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/ee_src_services_admin_manager_reference.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/environment_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/environment_output_extended.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/environment_revision.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/error.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics_ids_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics_query_scenario_ids.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics_query_timestamps.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics_refresh.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_metrics_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_data.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_id_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_ids_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queue_scenario_ids_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_queues_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_result.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_result_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_result_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_result_id_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_result_ids_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_result_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_result_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_results_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_mapping.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_mapping_column.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_mapping_step.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_step.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_step_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_step_origin.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_data_step_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_id_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_ids_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_ids_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_query_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_run_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_runs_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_id_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_ids_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenario_result.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_scenarios_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_status.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_status_enum.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluation_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_config.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_fork.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_mapping_output_interface.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_output_interface.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_query_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_commit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_data_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_data_input_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_data_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_data_output_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_fork.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revision_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revisions_log.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_revisions_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_variant.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_variant_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_variant_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_variant_fork.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_variant_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluator_variants_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/evaluators_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/existence_operator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/filtering_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/filtering_input_conditions_item.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/filtering_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/filtering_output_conditions_item.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/focus.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folder.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folder_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folder_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folder_id_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folder_kind.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folder_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folder_query_kinds.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folder_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/folders_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/format.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/formatting.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/full_json_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/full_json_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/get_config_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/header.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/http_validation_error.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/human_evaluation.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/human_evaluation_scenario.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/human_evaluation_scenario_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/human_evaluation_scenario_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/human_evaluation_scenario_score.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invite_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_create_links.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_edit_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_link_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_links.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_query_links.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocation_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/invocations_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/json_schemas_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/json_schemas_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/label_json_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/label_json_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application_data_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application_data_input_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application_data_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application_data_output_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_application_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_evaluator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_lifecycle_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_scope_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_scopes_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_subscription_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_user_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/legacy_user_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/link.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/list_api_keys_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/list_operator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/list_options.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/llm_run_rate_limit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/logical_operator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/metric_spec.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/metric_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/metrics_bucket.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/numeric_operator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_event_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_event_input_timestamp.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_event_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_event_output_timestamp.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_flat_span_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_flat_span_input_end_time.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_flat_span_input_start_time.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_flat_span_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_flat_span_output_end_time.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_flat_span_output_start_time.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_hash_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_hash_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_link_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_link_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_links_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_reference_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_reference_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_input_end_time.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_input_spans_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_input_start_time.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_kind.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_output_end_time.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_output_spans_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_span_output_start_time.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_spans_tree_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_spans_tree_input_spans_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_spans_tree_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_spans_tree_output_spans_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_status_code.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_tracing_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/o_tel_tracing_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/old_analytics_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/organization.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/organization_details.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/organization_domain_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/organization_membership_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/organization_membership_request_role.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/organization_provider_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/organization_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/organization_update.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/oss_src_models_api_evaluation_model_evaluation_scenario.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/oss_src_models_api_organization_models_organization.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/permission.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/plan.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/project_membership_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/project_membership_request_role.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/project_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/project_scope.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/project_scope_role.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/projects_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/queries_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revision.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revision_commit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revision_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revision_data_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revision_data_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revision_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revision_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revision_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revisions_log.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/query_revisions_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/read_app_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/reference.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/reference_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/reference_request_model.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/result.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/revision_fork.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/scopes_response_model.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/secret_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/secret_dto_data.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/secret_kind.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/secret_response_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/secret_response_dto_data.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/session_ids_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data_application_steps.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data_application_steps_one_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data_evaluator_steps.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data_evaluator_steps_one_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data_query_steps.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data_query_steps_one_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data_testset_steps.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_data_testset_steps_one_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_id_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluation_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluations_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_data_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_data_input_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_data_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_data_output_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_query_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluator_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_evaluators_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_queries_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_query_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_query_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_query_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_query_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_testset.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_testset_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_testset_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_testset_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_testset_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_testsets_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_trace_channel.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_trace_kind.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_trace_origin.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/simple_trace_references.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/span_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/sso_provider_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/sso_provider_info.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/sso_provider_settings_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/sso_providers.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/standard_provider_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/standard_provider_kind.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/standard_provider_settings_dto.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/string_operator.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testcase_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testcase_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testcase_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testcases_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_commit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_data_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_data_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_delta.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_delta_columns.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_delta_rows.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revision_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revisions_log.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_revisions_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_variant.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_variant_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_variant_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_variant_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_variant_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testset_variants_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/testsets_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/text_options.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/trace_type.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/tracing_query.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/update_app_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/user_ids_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/user_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/validation_error.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/validation_error_loc_item.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/variant_fork.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/windowing.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/windowing_order.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_flags.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_fork.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_commit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_data_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_data_input_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_data_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_data_output_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_fork.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revision_retrieve_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revisions_log.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_revisions_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_batch_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_configuration_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_configuration_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_interface_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_interface_input_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_interface_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_interface_output_headers_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_data.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_input.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_input_configuration.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_input_interface.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_input_links_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_input_references_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_output.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_output_configuration.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_output_interface.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_output_links_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_request_output_references_value.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_response_data.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_status.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_status_stacktrace.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_service_stream_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_variant.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_variant_create.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_variant_edit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_variant_fork.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_variant_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflow_variants_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workflows_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workspace.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workspace_member_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workspace_membership_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workspace_membership_request_role.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workspace_permission.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workspace_request.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workspace_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/types/workspace_role.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/variants/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/variants/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/variants/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/variants/types/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/variants/types/add_variant_from_base_and_config_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workflows/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workflows/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workflows/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workflows/types/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workflows/types/invoke_workflow_response.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workflows/types/query_workflow_revisions_request_order.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workflows/types/query_workflow_variants_request_order.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workflows/types/query_workflows_request_order.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workspace/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workspace/client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/backend/workspace/raw_client.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/types/provider_key_dto.py~HEAD +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/types/provider_key_dto.py~feat_model-registry +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/types/provider_kind.py~HEAD +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/client/types/provider_kind.py~feat_model-registry +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/assets.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/context/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/context/running.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/context/serving.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/context/tracing.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/contexts/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/contexts/routing.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/contexts/running.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/contexts/tracing.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/running/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/running/utils.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/tracing/conventions.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/tracing/exporters.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/engines/tracing/spans.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/evaluations/metrics.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/evaluations/preview/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/litellm/mockllm.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/litellm/mocks/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/applications.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/apps.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/config.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/deployment.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/evaluations.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/secrets.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/shared.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/testsets.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/variant.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/managers/vault.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middleware/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middleware/cors.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middleware/inline.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middleware/mock.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middleware/vault.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/routing/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/routing/cors.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/running/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/running/normalizer.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/middlewares/running/vault.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/models/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/models/shared.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/models/tracing.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/router.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/tracing/conventions.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/tracing/spans.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/cache.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/constants.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/costs.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/exceptions.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/globals.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/helpers.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/otel.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/preinit.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/references.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/singleton.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/utils/timing.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/configurations.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/errors.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/interfaces.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/runners/__init__.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/runners/base.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/runners/local.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/runners/registry.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/sandbox.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/templates.py +0 -0
- {agenta-0.85.2 → agenta-0.85.4}/agenta/sdk/workflows/utils.py +0 -0
|
@@ -7,43 +7,42 @@ from .sdk import assets as assets
|
|
|
7
7
|
|
|
8
8
|
# evaluations
|
|
9
9
|
from .sdk import testsets as testsets
|
|
10
|
-
from .sdk import tracer
|
|
11
10
|
from .sdk.agenta_init import AgentaSingleton
|
|
12
11
|
from .sdk.agenta_init import init as _init
|
|
13
|
-
from .sdk.context.running import workflow_mode_enabled
|
|
12
|
+
from .sdk.context.running import workflow_mode_enabled # noqa: F401
|
|
14
13
|
from .sdk.decorators.running import (
|
|
15
|
-
application,
|
|
16
|
-
evaluator,
|
|
17
|
-
workflow,
|
|
14
|
+
application, # noqa: F401
|
|
15
|
+
evaluator, # noqa: F401
|
|
16
|
+
workflow, # noqa: F401
|
|
18
17
|
)
|
|
19
|
-
from .sdk.decorators.serving import app, route, create_app
|
|
20
|
-
from .sdk.decorators.tracing import instrument
|
|
21
|
-
from .sdk.managers.apps import AppManager
|
|
22
|
-
from .sdk.managers.config import ConfigManager
|
|
23
|
-
from .sdk.managers.deployment import DeploymentManager
|
|
24
|
-
from .sdk.managers.secrets import SecretsManager
|
|
25
|
-
from .sdk.managers.variant import VariantManager
|
|
26
|
-
from .sdk.managers.vault import VaultManager
|
|
27
|
-
from .sdk.tracing import Tracing, get_tracer
|
|
28
|
-
from .sdk.tracing.conventions import Reference
|
|
18
|
+
from .sdk.decorators.serving import app, route, create_app # noqa: F401
|
|
19
|
+
from .sdk.decorators.tracing import instrument # noqa: F401
|
|
20
|
+
from .sdk.managers.apps import AppManager # noqa: F401
|
|
21
|
+
from .sdk.managers.config import ConfigManager # noqa: F401
|
|
22
|
+
from .sdk.managers.deployment import DeploymentManager # noqa: F401
|
|
23
|
+
from .sdk.managers.secrets import SecretsManager # noqa: F401
|
|
24
|
+
from .sdk.managers.variant import VariantManager # noqa: F401
|
|
25
|
+
from .sdk.managers.vault import VaultManager # noqa: F401
|
|
26
|
+
from .sdk.tracing import Tracing, get_tracer # noqa: F401
|
|
27
|
+
from .sdk.tracing.conventions import Reference # noqa: F401
|
|
29
28
|
from .sdk.types import (
|
|
30
|
-
BinaryParam,
|
|
31
|
-
DictInput,
|
|
32
|
-
FileInputURL,
|
|
33
|
-
FloatParam,
|
|
34
|
-
GroupedMultipleChoiceParam,
|
|
35
|
-
IntParam,
|
|
36
|
-
MCField,
|
|
37
|
-
MessagesInput,
|
|
38
|
-
MultipleChoice,
|
|
39
|
-
MultipleChoiceParam,
|
|
40
|
-
Prompt,
|
|
41
|
-
PromptTemplate,
|
|
42
|
-
TextParam,
|
|
29
|
+
BinaryParam, # noqa: F401
|
|
30
|
+
DictInput, # noqa: F401
|
|
31
|
+
FileInputURL, # noqa: F401
|
|
32
|
+
FloatParam, # noqa: F401
|
|
33
|
+
GroupedMultipleChoiceParam, # noqa: F401
|
|
34
|
+
IntParam, # noqa: F401
|
|
35
|
+
MCField, # noqa: F401
|
|
36
|
+
MessagesInput, # noqa: F401
|
|
37
|
+
MultipleChoice, # noqa: F401
|
|
38
|
+
MultipleChoiceParam, # noqa: F401
|
|
39
|
+
Prompt, # noqa: F401
|
|
40
|
+
PromptTemplate, # noqa: F401
|
|
41
|
+
TextParam, # noqa: F401
|
|
43
42
|
)
|
|
44
|
-
from .sdk.utils.costs import calculate_token_usage
|
|
45
|
-
from .sdk.utils.logging import get_module_logger
|
|
46
|
-
from .sdk.utils.preinit import PreInitObject
|
|
43
|
+
from .sdk.utils.costs import calculate_token_usage # noqa: F401
|
|
44
|
+
from .sdk.utils.logging import get_module_logger # noqa: F401
|
|
45
|
+
from .sdk.utils.preinit import PreInitObject # noqa: F401
|
|
47
46
|
|
|
48
47
|
DEFAULT_AGENTA_SINGLETON_INSTANCE = AgentaSingleton()
|
|
49
48
|
|
|
@@ -43,9 +43,9 @@ else:
|
|
|
43
43
|
from pydantic.typing import is_literal_type as is_literal_type # type: ignore[no-redef]
|
|
44
44
|
from pydantic.typing import is_union as is_union # type: ignore[no-redef]
|
|
45
45
|
|
|
46
|
-
from .datetime_utils import serialize_datetime
|
|
47
|
-
from .serialization import convert_and_respect_annotation_metadata
|
|
48
|
-
from typing_extensions import TypeAlias
|
|
46
|
+
from .datetime_utils import serialize_datetime # noqa: E402
|
|
47
|
+
from .serialization import convert_and_respect_annotation_metadata # noqa: E402
|
|
48
|
+
from typing_extensions import TypeAlias # noqa: E402
|
|
49
49
|
|
|
50
50
|
T = TypeVar("T")
|
|
51
51
|
Model = TypeVar("Model", bound=pydantic.BaseModel)
|
|
@@ -406,7 +406,7 @@ def _get_model_fields(model: Type["Model"]) -> Mapping[str, PydanticField]:
|
|
|
406
406
|
def _get_field_default(field: PydanticField) -> Any:
|
|
407
407
|
try:
|
|
408
408
|
value = field.get_default() # type: ignore[union-attr]
|
|
409
|
-
except:
|
|
409
|
+
except: # noqa: E722
|
|
410
410
|
value = field.default
|
|
411
411
|
if IS_PYDANTIC_V2:
|
|
412
412
|
from pydantic_core import PydanticUndefined
|
|
@@ -74,10 +74,10 @@ def convert_and_respect_annotation_metadata(
|
|
|
74
74
|
|
|
75
75
|
if (
|
|
76
76
|
typing_extensions.get_origin(clean_type) == typing.Dict
|
|
77
|
-
or typing_extensions.get_origin(clean_type) == dict
|
|
77
|
+
or typing_extensions.get_origin(clean_type) == dict # noqa: E721
|
|
78
78
|
or clean_type == typing.Dict
|
|
79
79
|
) and isinstance(object_, typing.Dict):
|
|
80
|
-
key_type = typing_extensions.get_args(clean_type)[0]
|
|
80
|
+
key_type = typing_extensions.get_args(clean_type)[0] # noqa: F841
|
|
81
81
|
value_type = typing_extensions.get_args(clean_type)[1]
|
|
82
82
|
|
|
83
83
|
return {
|
|
@@ -94,7 +94,7 @@ def convert_and_respect_annotation_metadata(
|
|
|
94
94
|
if not isinstance(object_, str):
|
|
95
95
|
if (
|
|
96
96
|
typing_extensions.get_origin(clean_type) == typing.Set
|
|
97
|
-
or typing_extensions.get_origin(clean_type) == set
|
|
97
|
+
or typing_extensions.get_origin(clean_type) == set # noqa: E721
|
|
98
98
|
or clean_type == typing.Set
|
|
99
99
|
) and isinstance(object_, typing.Set):
|
|
100
100
|
inner_type = typing_extensions.get_args(clean_type)[0]
|
|
@@ -110,7 +110,7 @@ def convert_and_respect_annotation_metadata(
|
|
|
110
110
|
elif (
|
|
111
111
|
(
|
|
112
112
|
typing_extensions.get_origin(clean_type) == typing.List
|
|
113
|
-
or typing_extensions.get_origin(clean_type) == list
|
|
113
|
+
or typing_extensions.get_origin(clean_type) == list # noqa: E721
|
|
114
114
|
or clean_type == typing.List
|
|
115
115
|
)
|
|
116
116
|
and isinstance(object_, typing.List)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
from typing import Optional, Callable, Any
|
|
2
2
|
|
|
3
|
-
from .utils.preinit import PreInitObject # always the first import!
|
|
3
|
+
from .utils.preinit import PreInitObject # always the first import! # noqa: F401
|
|
4
4
|
|
|
5
5
|
__all__ = [
|
|
6
6
|
# Decorators
|
|
@@ -60,8 +60,8 @@ from .types import (
|
|
|
60
60
|
FileInputURL,
|
|
61
61
|
BinaryParam,
|
|
62
62
|
Prompt,
|
|
63
|
-
AgentaNodeDto,
|
|
64
|
-
AgentaNodesResponse,
|
|
63
|
+
AgentaNodeDto, # noqa: F401
|
|
64
|
+
AgentaNodesResponse, # noqa: F401
|
|
65
65
|
)
|
|
66
66
|
|
|
67
67
|
from .tracing import Tracing, get_tracer
|
|
@@ -4,7 +4,6 @@ from typing import Any, Callable, Optional
|
|
|
4
4
|
|
|
5
5
|
import httpx
|
|
6
6
|
from agenta.client.backend.client import AgentaApi, AsyncAgentaApi
|
|
7
|
-
from agenta.sdk.contexts.routing import RoutingContext
|
|
8
7
|
from agenta.sdk.tracing import Tracing
|
|
9
8
|
from agenta.sdk.utils.globals import set_global
|
|
10
9
|
from agenta.sdk.utils.helpers import parse_url
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .running import application, evaluator # noqa: F401
|
|
@@ -20,8 +20,7 @@ from agenta.sdk.middlewares.routing.cors import CORSMiddleware
|
|
|
20
20
|
from agenta.sdk.middlewares.routing.auth import AuthMiddleware
|
|
21
21
|
from agenta.sdk.middlewares.routing.otel import OTelMiddleware
|
|
22
22
|
from agenta.sdk.middleware.vault import VaultMiddleware
|
|
23
|
-
from agenta.sdk.contexts.
|
|
24
|
-
from agenta.sdk.contexts.tracing import tracing_context_manager, TracingContext
|
|
23
|
+
from agenta.sdk.contexts.tracing import TracingContext
|
|
25
24
|
from agenta.sdk.decorators.running import auto_workflow, Workflow
|
|
26
25
|
from agenta.sdk.workflows.errors import ErrorStatus
|
|
27
26
|
|
|
@@ -210,18 +209,20 @@ class route:
|
|
|
210
209
|
path: str = "/",
|
|
211
210
|
app: Optional[FastAPI] = None,
|
|
212
211
|
router: Optional[APIRouter] = None,
|
|
212
|
+
flags: Optional[dict] = None,
|
|
213
213
|
):
|
|
214
214
|
path = path.rstrip("/")
|
|
215
215
|
path = path if path else "/"
|
|
216
216
|
path = path if path.startswith("/") else "/" + path
|
|
217
217
|
self.path = path
|
|
218
218
|
self.root = app or router or default_app
|
|
219
|
+
self.flags = flags
|
|
219
220
|
|
|
220
221
|
def __call__(self, foo: Optional[Union[Callable[..., Any], Workflow]] = None):
|
|
221
222
|
if foo is None:
|
|
222
223
|
return self
|
|
223
224
|
|
|
224
|
-
workflow = auto_workflow(foo)
|
|
225
|
+
workflow = auto_workflow(foo, flags=self.flags)
|
|
225
226
|
|
|
226
227
|
async def invoke_endpoint(req: Request, request: WorkflowServiceRequest):
|
|
227
228
|
credentials = req.state.auth.get("credentials")
|
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
# /agenta/sdk/decorators/running.py
|
|
2
2
|
|
|
3
|
-
from typing import Any, Callable, Optional, Protocol, Union, Dict
|
|
3
|
+
from typing import Any, Callable, Optional, Protocol, Union, Dict, cast
|
|
4
4
|
from functools import update_wrapper, wraps
|
|
5
|
-
from typing import Callable, Any
|
|
6
5
|
from inspect import signature
|
|
7
|
-
from uuid import UUID
|
|
6
|
+
from uuid import UUID
|
|
8
7
|
|
|
9
8
|
from agenta.sdk.utils.logging import get_module_logger
|
|
10
9
|
from agenta.sdk.models.workflows import (
|
|
11
|
-
WorkflowRevisionData,
|
|
12
10
|
WorkflowRevision,
|
|
13
11
|
WorkflowServiceRequestData,
|
|
14
|
-
WorkflowServiceResponseData,
|
|
15
12
|
WorkflowServiceRequest,
|
|
16
13
|
WorkflowServiceInterface,
|
|
17
14
|
WorkflowServiceConfiguration,
|
|
@@ -32,7 +29,6 @@ from agenta.sdk.middlewares.running.resolver import (
|
|
|
32
29
|
)
|
|
33
30
|
from agenta.sdk.middlewares.running.vault import (
|
|
34
31
|
VaultMiddleware,
|
|
35
|
-
get_secrets,
|
|
36
32
|
)
|
|
37
33
|
from agenta.sdk.decorators.tracing import auto_instrument
|
|
38
34
|
from agenta.sdk.workflows.utils import (
|
|
@@ -458,14 +454,52 @@ def is_workflow(obj: Any) -> bool:
|
|
|
458
454
|
|
|
459
455
|
|
|
460
456
|
def auto_workflow(obj: Any, **kwargs) -> Workflow:
|
|
457
|
+
flags = kwargs.get("flags")
|
|
458
|
+
|
|
459
|
+
def _merge_flags(
|
|
460
|
+
existing: Optional[dict], incoming: Optional[dict]
|
|
461
|
+
) -> Optional[dict]:
|
|
462
|
+
if incoming is None:
|
|
463
|
+
return existing
|
|
464
|
+
merged = dict(existing or {})
|
|
465
|
+
merged.update(incoming)
|
|
466
|
+
return merged
|
|
467
|
+
|
|
468
|
+
def _apply_flags_to_existing_workflow(
|
|
469
|
+
target: Any, incoming_flags: Optional[dict]
|
|
470
|
+
) -> None:
|
|
471
|
+
if not incoming_flags:
|
|
472
|
+
return
|
|
473
|
+
|
|
474
|
+
# Common case: object exposes the underlying workflow decorator instance.
|
|
475
|
+
try:
|
|
476
|
+
wf = getattr(target, "workflow", None)
|
|
477
|
+
if isinstance(wf, workflow):
|
|
478
|
+
wf.flags = _merge_flags(wf.flags, incoming_flags)
|
|
479
|
+
return
|
|
480
|
+
except Exception:
|
|
481
|
+
pass
|
|
482
|
+
|
|
483
|
+
# If this is an extended Workflow wrapper, its `.invoke` is typically a bound
|
|
484
|
+
# method whose `__self__` is the originating `workflow` instance.
|
|
485
|
+
try:
|
|
486
|
+
invoke = getattr(target, "invoke", None)
|
|
487
|
+
wf_self = getattr(invoke, "__self__", None)
|
|
488
|
+
if isinstance(wf_self, workflow):
|
|
489
|
+
wf_self.flags = _merge_flags(wf_self.flags, incoming_flags)
|
|
490
|
+
except Exception:
|
|
491
|
+
pass
|
|
492
|
+
|
|
461
493
|
if is_workflow(obj):
|
|
462
|
-
|
|
494
|
+
_apply_flags_to_existing_workflow(obj, flags)
|
|
495
|
+
return cast(Workflow, obj)
|
|
496
|
+
|
|
463
497
|
if isinstance(obj, workflow):
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
return obj
|
|
498
|
+
if flags is not None:
|
|
499
|
+
obj.flags = _merge_flags(obj.flags, flags)
|
|
500
|
+
return cast(Workflow, obj())
|
|
467
501
|
|
|
468
|
-
return workflow(**kwargs)(obj)
|
|
502
|
+
return cast(Workflow, workflow(**kwargs)(obj))
|
|
469
503
|
|
|
470
504
|
|
|
471
505
|
async def invoke_workflow(
|
|
@@ -548,12 +582,11 @@ class application(workflow):
|
|
|
548
582
|
# is_human=False, # None / False / missing is the same
|
|
549
583
|
)
|
|
550
584
|
|
|
551
|
-
if
|
|
585
|
+
if "references" not in kwargs or not isinstance(kwargs["references"], dict):
|
|
552
586
|
kwargs["references"] = dict()
|
|
553
587
|
|
|
554
|
-
for key in kwargs["references"]:
|
|
555
|
-
|
|
556
|
-
del kwargs["references"][key]
|
|
588
|
+
for key in [k for k in kwargs["references"] if k.startswith("evaluator_")]:
|
|
589
|
+
del kwargs["references"][key]
|
|
557
590
|
|
|
558
591
|
if slug is not None:
|
|
559
592
|
kwargs["references"]["application"] = {"slug": slug}
|
|
@@ -651,12 +684,11 @@ class evaluator(workflow):
|
|
|
651
684
|
# is_human=False, # None / False / missing is the same
|
|
652
685
|
)
|
|
653
686
|
|
|
654
|
-
if
|
|
687
|
+
if "references" not in kwargs or not isinstance(kwargs["references"], dict):
|
|
655
688
|
kwargs["references"] = dict()
|
|
656
689
|
|
|
657
|
-
for key in kwargs["references"]:
|
|
658
|
-
|
|
659
|
-
del kwargs["references"][key]
|
|
690
|
+
for key in [k for k in kwargs["references"] if k.startswith("application_")]:
|
|
691
|
+
del kwargs["references"][key]
|
|
660
692
|
|
|
661
693
|
if slug is not None:
|
|
662
694
|
kwargs["references"]["evaluator"] = {"slug": slug}
|
|
@@ -15,8 +15,7 @@ from pydantic import BaseModel, HttpUrl, ValidationError
|
|
|
15
15
|
from os import environ
|
|
16
16
|
|
|
17
17
|
if TYPE_CHECKING:
|
|
18
|
-
from fastapi import Request, HTTPException, Body
|
|
19
|
-
from starlette.responses import Response as StarletteResponse, StreamingResponse
|
|
18
|
+
from fastapi import FastAPI, Request, HTTPException, Body
|
|
20
19
|
else:
|
|
21
20
|
# Lazy imports - only loaded when @entrypoint or @route is used
|
|
22
21
|
Request = None
|
|
@@ -31,7 +30,6 @@ from agenta.sdk.contexts.tracing import (
|
|
|
31
30
|
tracing_context_manager,
|
|
32
31
|
TracingContext,
|
|
33
32
|
)
|
|
34
|
-
from agenta.sdk.router import router
|
|
35
33
|
from agenta.sdk.utils.exceptions import suppress, display_exception
|
|
36
34
|
from agenta.sdk.utils.logging import get_module_logger
|
|
37
35
|
from agenta.sdk.utils.helpers import get_current_version
|
|
@@ -40,7 +38,6 @@ from agenta.sdk.types import (
|
|
|
40
38
|
MultipleChoice,
|
|
41
39
|
BaseResponse,
|
|
42
40
|
StreamResponse,
|
|
43
|
-
MCField,
|
|
44
41
|
)
|
|
45
42
|
|
|
46
43
|
import agenta as ag
|
|
@@ -82,7 +79,7 @@ class PathValidator(BaseModel):
|
|
|
82
79
|
url: HttpUrl
|
|
83
80
|
|
|
84
81
|
|
|
85
|
-
def _add_middleware_to_app(target_app: "FastAPI") -> None:
|
|
82
|
+
def _add_middleware_to_app(target_app: "FastAPI") -> None: # noqa: F821
|
|
86
83
|
"""
|
|
87
84
|
Add all required middleware to a FastAPI app.
|
|
88
85
|
|
|
@@ -165,8 +162,10 @@ def create_app():
|
|
|
165
162
|
self,
|
|
166
163
|
path: Optional[str] = "/",
|
|
167
164
|
config_schema: Optional[BaseModel] = None,
|
|
165
|
+
flags: Optional[Dict[str, Any]] = None,
|
|
168
166
|
):
|
|
169
167
|
self.config_schema = config_schema
|
|
168
|
+
self.flags = dict(flags or {})
|
|
170
169
|
path = "/" + path.strip("/").strip()
|
|
171
170
|
path = "" if path == "/" else path
|
|
172
171
|
PathValidator(url=f"http://example.com{path}")
|
|
@@ -178,6 +177,7 @@ def create_app():
|
|
|
178
177
|
f,
|
|
179
178
|
route_path=self.route_path,
|
|
180
179
|
config_schema=self.config_schema,
|
|
180
|
+
flags=self.flags,
|
|
181
181
|
target_app=new_app,
|
|
182
182
|
app_routes=isolated_routes,
|
|
183
183
|
)
|
|
@@ -196,8 +196,10 @@ class route: # pylint: disable=invalid-name
|
|
|
196
196
|
self,
|
|
197
197
|
path: Optional[str] = "/",
|
|
198
198
|
config_schema: Optional[BaseModel] = None,
|
|
199
|
+
flags: Optional[Dict[str, Any]] = None,
|
|
199
200
|
):
|
|
200
201
|
self.config_schema: BaseModel = config_schema
|
|
202
|
+
self.flags = dict(flags or {})
|
|
201
203
|
path = "/" + path.strip("/").strip()
|
|
202
204
|
path = "" if path == "/" else path
|
|
203
205
|
PathValidator(url=f"http://example.com{path}")
|
|
@@ -211,6 +213,7 @@ class route: # pylint: disable=invalid-name
|
|
|
211
213
|
f,
|
|
212
214
|
route_path=self.route_path,
|
|
213
215
|
config_schema=self.config_schema,
|
|
216
|
+
flags=self.flags,
|
|
214
217
|
)
|
|
215
218
|
|
|
216
219
|
return f
|
|
@@ -262,6 +265,7 @@ class entrypoint:
|
|
|
262
265
|
func: Callable[..., Any],
|
|
263
266
|
route_path: str = "",
|
|
264
267
|
config_schema: Optional[BaseModel] = None,
|
|
268
|
+
flags: Optional[Dict[str, Any]] = None,
|
|
265
269
|
target_app: Optional[Any] = None,
|
|
266
270
|
app_routes: Optional[List[Dict[str, Any]]] = None,
|
|
267
271
|
):
|
|
@@ -271,6 +275,7 @@ class entrypoint:
|
|
|
271
275
|
self.func = func
|
|
272
276
|
self.route_path = route_path
|
|
273
277
|
self.config_schema = config_schema
|
|
278
|
+
self.flags = dict(flags or {})
|
|
274
279
|
|
|
275
280
|
# Use provided app/routes or fall back to global defaults
|
|
276
281
|
target_app = target_app if target_app is not None else app
|
|
@@ -325,6 +330,16 @@ class entrypoint:
|
|
|
325
330
|
response_model_exclude_none=True,
|
|
326
331
|
)(run_wrapper)
|
|
327
332
|
|
|
333
|
+
app_routes.append(
|
|
334
|
+
{
|
|
335
|
+
"func": func.__name__,
|
|
336
|
+
"endpoint": run_route,
|
|
337
|
+
"params": signature_parameters,
|
|
338
|
+
"config": None,
|
|
339
|
+
"flags": self.flags,
|
|
340
|
+
}
|
|
341
|
+
)
|
|
342
|
+
|
|
328
343
|
# LEGACY
|
|
329
344
|
# TODO: Removing this implies breaking changes in :
|
|
330
345
|
# - calls to /generate_deployed must be replaced with calls to /run
|
|
@@ -381,6 +396,7 @@ class entrypoint:
|
|
|
381
396
|
"endpoint": test_route,
|
|
382
397
|
"params": signature_parameters,
|
|
383
398
|
"config": config,
|
|
399
|
+
"flags": self.flags,
|
|
384
400
|
}
|
|
385
401
|
)
|
|
386
402
|
|
|
@@ -397,12 +413,15 @@ class entrypoint:
|
|
|
397
413
|
else signature_parameters
|
|
398
414
|
),
|
|
399
415
|
"config": config,
|
|
416
|
+
"flags": self.flags,
|
|
400
417
|
}
|
|
401
418
|
)
|
|
402
419
|
# LEGACY
|
|
403
420
|
|
|
404
421
|
openapi_schema = _generate_openapi(target_app)
|
|
405
422
|
|
|
423
|
+
self.add_flags_to_schema(openapi_schema=openapi_schema, app_routes=app_routes)
|
|
424
|
+
|
|
406
425
|
for _route in app_routes:
|
|
407
426
|
if _route["config"] is not None:
|
|
408
427
|
self.override_config_in_schema(
|
|
@@ -540,7 +559,7 @@ class entrypoint:
|
|
|
540
559
|
result.headers.setdefault("x-ag-span-id", span_id)
|
|
541
560
|
|
|
542
561
|
return result
|
|
543
|
-
except:
|
|
562
|
+
except Exception:
|
|
544
563
|
return result
|
|
545
564
|
|
|
546
565
|
try:
|
|
@@ -552,7 +571,7 @@ class entrypoint:
|
|
|
552
571
|
trace_id=trace_id,
|
|
553
572
|
span_id=span_id,
|
|
554
573
|
)
|
|
555
|
-
except:
|
|
574
|
+
except Exception:
|
|
556
575
|
return StreamingResponse(
|
|
557
576
|
result,
|
|
558
577
|
media_type="text/event-stream",
|
|
@@ -567,7 +586,7 @@ class entrypoint:
|
|
|
567
586
|
trace_id=trace_id,
|
|
568
587
|
span_id=span_id,
|
|
569
588
|
)
|
|
570
|
-
except
|
|
589
|
+
except Exception:
|
|
571
590
|
try:
|
|
572
591
|
return BaseResponse(
|
|
573
592
|
data=data,
|
|
@@ -576,7 +595,7 @@ class entrypoint:
|
|
|
576
595
|
trace_id=trace_id,
|
|
577
596
|
span_id=span_id,
|
|
578
597
|
)
|
|
579
|
-
except
|
|
598
|
+
except Exception:
|
|
580
599
|
return BaseResponse(
|
|
581
600
|
data=data,
|
|
582
601
|
content_type=content_type,
|
|
@@ -882,6 +901,39 @@ class entrypoint:
|
|
|
882
901
|
|
|
883
902
|
return openapi_schema
|
|
884
903
|
|
|
904
|
+
def add_flags_to_schema(
|
|
905
|
+
self,
|
|
906
|
+
openapi_schema: Dict[str, Any],
|
|
907
|
+
app_routes: List[Dict[str, Any]],
|
|
908
|
+
) -> None:
|
|
909
|
+
paths = openapi_schema.get("paths")
|
|
910
|
+
if not paths:
|
|
911
|
+
return
|
|
912
|
+
|
|
913
|
+
for route in app_routes:
|
|
914
|
+
endpoint = route.get("endpoint")
|
|
915
|
+
if not endpoint or ("/run" not in endpoint and "/test" not in endpoint):
|
|
916
|
+
continue
|
|
917
|
+
|
|
918
|
+
methods = paths.get(endpoint)
|
|
919
|
+
if not methods:
|
|
920
|
+
continue
|
|
921
|
+
|
|
922
|
+
flags = dict(route.get("flags") or {})
|
|
923
|
+
for method_data in methods.values():
|
|
924
|
+
# Prefer a single vendor-extension namespace we can evolve over time.
|
|
925
|
+
existing = method_data.get("x-agenta")
|
|
926
|
+
if not isinstance(existing, dict):
|
|
927
|
+
existing = {}
|
|
928
|
+
|
|
929
|
+
existing_flags = existing.get("flags")
|
|
930
|
+
if not isinstance(existing_flags, dict):
|
|
931
|
+
existing_flags = {}
|
|
932
|
+
|
|
933
|
+
# Route-level flags override any previously set flags.
|
|
934
|
+
existing["flags"] = {**existing_flags, **flags}
|
|
935
|
+
method_data["x-agenta"] = existing
|
|
936
|
+
|
|
885
937
|
def override_config_in_schema(
|
|
886
938
|
self,
|
|
887
939
|
openapi_schema: dict,
|
|
@@ -520,14 +520,14 @@ class instrument: # pylint: disable=invalid-name
|
|
|
520
520
|
if self.redact is not None:
|
|
521
521
|
try:
|
|
522
522
|
io = self.redact(name, field, io)
|
|
523
|
-
except: # pylint: disable=bare-except
|
|
523
|
+
except Exception: # pylint: disable=bare-except
|
|
524
524
|
if self.redact_on_error:
|
|
525
525
|
io = {}
|
|
526
526
|
|
|
527
527
|
if ag.tracing.redact is not None:
|
|
528
528
|
try:
|
|
529
529
|
io = ag.tracing.redact(name, field, io)
|
|
530
|
-
except: # pylint: disable=bare-except
|
|
530
|
+
except Exception: # pylint: disable=bare-except
|
|
531
531
|
if ag.tracing.redact_on_error:
|
|
532
532
|
io = {}
|
|
533
533
|
|
|
@@ -27,7 +27,7 @@ async def exact_match_v1(
|
|
|
27
27
|
reference_outputs = dumps(reference_outputs, sort_keys=True)
|
|
28
28
|
success = outputs == reference_outputs
|
|
29
29
|
|
|
30
|
-
except: # pylint: disable=bare-except
|
|
30
|
+
except Exception: # pylint: disable=bare-except
|
|
31
31
|
log.error("Error in exact_match_v1", exc_info=True)
|
|
32
32
|
|
|
33
33
|
return {"success": success}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .tracing import Tracing, get_tracer # noqa: F401
|
|
@@ -31,11 +31,10 @@ class LifecycleDTO(BaseModel):
|
|
|
31
31
|
### services.observability.dtos ###
|
|
32
32
|
### --------------------------- ###
|
|
33
33
|
|
|
34
|
-
from typing import List, Dict, Any, Union, Optional
|
|
34
|
+
from typing import List, Dict, Any, Union, Optional # noqa: E402
|
|
35
35
|
|
|
36
|
-
from
|
|
37
|
-
from
|
|
38
|
-
from uuid import UUID
|
|
36
|
+
from datetime import datetime # noqa: E402
|
|
37
|
+
from uuid import UUID # noqa: E402
|
|
39
38
|
|
|
40
39
|
|
|
41
40
|
class TimeDTO(BaseModel):
|
|
@@ -218,7 +217,7 @@ class OTelSpanDTO(BaseModel):
|
|
|
218
217
|
### services.observability.utils ###
|
|
219
218
|
### ---------------------------- ###
|
|
220
219
|
|
|
221
|
-
from typing import List, Dict
|
|
220
|
+
from typing import List, Dict # noqa: E402
|
|
222
221
|
|
|
223
222
|
|
|
224
223
|
def parse_span_dtos_to_span_idx(
|
|
@@ -415,7 +414,7 @@ def _connect_tree_dfs(
|
|
|
415
414
|
### apis.fastapi.observability.opentelemetry.semconv ###
|
|
416
415
|
### ------------------------------------------------ ###
|
|
417
416
|
|
|
418
|
-
from json import loads
|
|
417
|
+
from json import loads # noqa: E402
|
|
419
418
|
|
|
420
419
|
VERSION = "0.4.1"
|
|
421
420
|
|
|
@@ -525,11 +524,10 @@ CODEX = {"maps": MAPS[VERSION], "keys": KEYS[VERSION]}
|
|
|
525
524
|
### apis.fastapi.observability.utils ###
|
|
526
525
|
### -------------------------------- ###
|
|
527
526
|
|
|
528
|
-
from typing import Optional, Union, Tuple, Any, List, Dict
|
|
529
|
-
from uuid import UUID
|
|
530
|
-
from collections import OrderedDict
|
|
531
|
-
from
|
|
532
|
-
from copy import copy
|
|
527
|
+
from typing import Optional, Union, Tuple, Any, List, Dict # noqa: E402
|
|
528
|
+
from uuid import UUID # noqa: E402
|
|
529
|
+
from collections import OrderedDict # noqa: E402
|
|
530
|
+
from copy import copy # noqa: E402
|
|
533
531
|
|
|
534
532
|
|
|
535
533
|
def _unmarshal_attributes(
|
|
@@ -698,7 +696,7 @@ def _parse_from_semconv(
|
|
|
698
696
|
|
|
699
697
|
attributes[new_key] = new_value
|
|
700
698
|
|
|
701
|
-
except: # pylint: disable=bare-except
|
|
699
|
+
except Exception: # pylint: disable=bare-except
|
|
702
700
|
pass
|
|
703
701
|
|
|
704
702
|
|
|
@@ -821,7 +819,7 @@ def parse_from_otel_span_dto(
|
|
|
821
819
|
node_type = NodeType.TASK
|
|
822
820
|
try:
|
|
823
821
|
node_type = NodeType(types.get("node", "").lower())
|
|
824
|
-
except: # pylint: disable=bare-except
|
|
822
|
+
except Exception: # pylint: disable=bare-except
|
|
825
823
|
pass
|
|
826
824
|
|
|
827
825
|
node = NodeDTO(
|
|
@@ -957,11 +955,11 @@ def parse_to_agenta_span_dto(
|
|
|
957
955
|
########################################
|
|
958
956
|
|
|
959
957
|
|
|
960
|
-
from opentelemetry.sdk.trace import ReadableSpan
|
|
958
|
+
from opentelemetry.sdk.trace import ReadableSpan # noqa: E402
|
|
961
959
|
|
|
962
|
-
from agenta.sdk.utils.lazy import _load_litellm
|
|
960
|
+
from agenta.sdk.utils.lazy import _load_litellm # noqa: E402
|
|
963
961
|
|
|
964
|
-
from agenta.sdk.types import AgentaNodeDto, AgentaNodesResponse
|
|
962
|
+
from agenta.sdk.types import AgentaNodeDto, AgentaNodesResponse # noqa: E402
|
|
965
963
|
|
|
966
964
|
|
|
967
965
|
def parse_inline_trace(
|
|
@@ -1157,5 +1155,5 @@ def calculate_costs(span_idx: Dict[str, SpanDTO]):
|
|
|
1157
1155
|
span.metrics["unit.costs.completion"] = completion_cost
|
|
1158
1156
|
span.metrics["unit.costs.total"] = total_cost
|
|
1159
1157
|
|
|
1160
|
-
except: # pylint: disable=bare-except
|
|
1158
|
+
except Exception: # pylint: disable=bare-except
|
|
1161
1159
|
pass
|