agenta 0.57.1__tar.gz → 0.60.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agenta-0.57.1 → agenta-0.60.0}/PKG-INFO +10 -8
- {agenta-0.57.1 → agenta-0.60.0}/README.md +3 -3
- {agenta-0.57.1 → agenta-0.60.0}/agenta/__init__.py +6 -2
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/__init__.py +4 -4
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/__init__.py +4 -4
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/client.py +56 -48
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/human_evaluations/client.py +2 -2
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/human_evaluations/raw_client.py +2 -2
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/organization/client.py +46 -34
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/organization/raw_client.py +32 -26
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/raw_client.py +26 -26
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/testsets/client.py +18 -18
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/testsets/raw_client.py +30 -30
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/__init__.py +4 -4
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/custom_provider_kind.py +1 -1
- agenta-0.57.1/agenta/client/backend/types/test_set_output_response.py → agenta-0.60.0/agenta/client/backend/types/testset_output_response.py +1 -1
- agenta-0.57.1/agenta/client/backend/types/test_set_simple_response.py → agenta-0.60.0/agenta/client/backend/types/testset_simple_response.py +1 -1
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/client.py +102 -88
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/__init__.py +51 -3
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/agenta_init.py +4 -4
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/assets.py +20 -15
- agenta-0.60.0/agenta/sdk/context/serving.py +39 -0
- agenta-0.60.0/agenta/sdk/context/tracing.py +74 -0
- agenta-0.60.0/agenta/sdk/contexts/routing.py +38 -0
- agenta-0.60.0/agenta/sdk/contexts/running.py +57 -0
- agenta-0.60.0/agenta/sdk/contexts/tracing.py +86 -0
- agenta-0.60.0/agenta/sdk/decorators/routing.py +282 -0
- agenta-0.60.0/agenta/sdk/decorators/running.py +567 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/decorators/serving.py +11 -12
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/decorators/tracing.py +176 -131
- agenta-0.60.0/agenta/sdk/engines/tracing/attributes.py +185 -0
- {agenta-0.57.1/agenta/sdk → agenta-0.60.0/agenta/sdk/engines}/tracing/exporters.py +7 -7
- agenta-0.60.0/agenta/sdk/engines/tracing/inline.py +1154 -0
- {agenta-0.57.1/agenta/sdk → agenta-0.60.0/agenta/sdk/engines}/tracing/processors.py +1 -1
- {agenta-0.57.1/agenta/sdk → agenta-0.60.0/agenta/sdk/engines}/tracing/propagation.py +3 -1
- {agenta-0.57.1/agenta/sdk → agenta-0.60.0/agenta/sdk/engines}/tracing/spans.py +1 -1
- agenta-0.60.0/agenta/sdk/engines/tracing/tracing.py +324 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/litellm/mockllm.py +5 -6
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/litellm/mocks/__init__.py +5 -5
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/managers/config.py +2 -2
- agenta-0.60.0/agenta/sdk/managers/evaluations.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/managers/secrets.py +124 -8
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/managers/vault.py +3 -3
- agenta-0.60.0/agenta/sdk/middleware/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/middleware/auth.py +0 -176
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/middleware/vault.py +1 -1
- agenta-0.60.0/agenta/sdk/middlewares/__init__.py +0 -0
- agenta-0.60.0/agenta/sdk/middlewares/routing/__init__.py +0 -0
- agenta-0.60.0/agenta/sdk/middlewares/routing/auth.py +263 -0
- agenta-0.60.0/agenta/sdk/middlewares/routing/cors.py +30 -0
- agenta-0.60.0/agenta/sdk/middlewares/routing/otel.py +29 -0
- agenta-0.60.0/agenta/sdk/middlewares/running/__init__.py +0 -0
- agenta-0.60.0/agenta/sdk/middlewares/running/normalizer.py +318 -0
- agenta-0.60.0/agenta/sdk/middlewares/running/resolver.py +154 -0
- agenta-0.60.0/agenta/sdk/middlewares/running/vault.py +137 -0
- agenta-0.60.0/agenta/sdk/models/__init__.py +0 -0
- agenta-0.60.0/agenta/sdk/models/shared.py +167 -0
- agenta-0.60.0/agenta/sdk/models/tracing.py +202 -0
- agenta-0.60.0/agenta/sdk/models/workflows.py +237 -0
- agenta-0.60.0/agenta/sdk/tracing/__init__.py +1 -0
- agenta-0.60.0/agenta/sdk/tracing/conventions.py +49 -0
- agenta-0.60.0/agenta/sdk/tracing/exporters.py +182 -0
- agenta-0.60.0/agenta/sdk/tracing/processors.py +287 -0
- agenta-0.60.0/agenta/sdk/tracing/propagation.py +102 -0
- agenta-0.60.0/agenta/sdk/tracing/spans.py +140 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/types.py +169 -14
- agenta-0.60.0/agenta/sdk/utils/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/cache.py +1 -1
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/logging.py +18 -78
- agenta-0.60.0/agenta/sdk/workflows/__init__.py +0 -0
- agenta-0.60.0/agenta/sdk/workflows/builtin.py +600 -0
- agenta-0.60.0/agenta/sdk/workflows/configurations.py +22 -0
- agenta-0.60.0/agenta/sdk/workflows/errors.py +292 -0
- agenta-0.60.0/agenta/sdk/workflows/handlers.py +1779 -0
- agenta-0.60.0/agenta/sdk/workflows/interfaces.py +948 -0
- agenta-0.60.0/agenta/sdk/workflows/sandbox.py +118 -0
- agenta-0.60.0/agenta/sdk/workflows/utils.py +313 -0
- {agenta-0.57.1 → agenta-0.60.0}/pyproject.toml +8 -3
- agenta-0.57.1/agenta/sdk/context/serving.py +0 -27
- agenta-0.57.1/agenta/sdk/context/tracing.py +0 -56
- agenta-0.57.1/agenta/sdk/decorators/running.py +0 -134
- agenta-0.57.1/agenta/sdk/middleware/adapt.py +0 -253
- agenta-0.57.1/agenta/sdk/middleware/base.py +0 -40
- agenta-0.57.1/agenta/sdk/middleware/flags.py +0 -40
- agenta-0.57.1/agenta/sdk/workflows/types.py +0 -472
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/Readme.md +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/access_control/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/access_control/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/access_control/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/admin/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/admin/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/admin/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/api_keys/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/api_keys/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/api_keys/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/apps/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/apps/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/apps/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/bases/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/bases/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/bases/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/billing/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/billing/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/billing/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/configs/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/configs/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/configs/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/containers/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/containers/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/containers/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/api_error.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/client_wrapper.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/datetime_utils.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/file.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/force_multipart.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/http_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/http_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/jsonable_encoder.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/pydantic_utilities.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/query_encoder.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/remove_none_from_dict.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/request_options.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/core/serialization.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/environment.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/environments/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/environments/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/environments/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/errors/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/errors/unprocessable_entity_error.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evals/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evals/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evals/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evaluations/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evaluations/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evaluations/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evaluators/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evaluators/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/evaluators/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/human_evaluations/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/observability/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/observability/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/observability/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/observability/types/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/observability/types/fetch_trace_by_id_request_trace_id.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/observability/types/fetch_trace_by_id_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/observability/types/query_analytics_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/observability/types/query_traces_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/organization/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/scopes/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/scopes/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/scopes/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/testsets/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/testsets/types/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/testsets/types/create_testset_from_file_request_file_type.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/testsets/types/fetch_testset_to_file_request_file_type.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/testsets/types/update_testset_from_file_request_file_type.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/tracing/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/tracing/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/tracing/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/tracing/types/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/tracing/types/fetch_trace_request_trace_id.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/tracing/types/remove_trace_request_trace_id.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/account_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/account_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/agenta_node_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/agenta_node_dto_nodes_value.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/agenta_nodes_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/agenta_root_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/agenta_roots_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/agenta_tree_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/agenta_trees_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/aggregated_result.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/aggregated_result_evaluator_config.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/analytics_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_create.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_edit.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_kind.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_link.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_link_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_query.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_query_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_reference.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_references.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotation_source.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/annotations_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/app.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/app_variant_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/app_variant_revision.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/artifact.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/base_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/body_fetch_workflow_revision.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/body_import_testset.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/bucket_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/collect_status_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/config_db.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/config_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/config_response_model.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/correct_answer.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/create_app_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/custom_model_settings_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/custom_provider_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/custom_provider_settings_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/data.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/delete_evaluation.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/environment_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/environment_output_extended.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/environment_revision.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/error.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluation.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluation_scenario.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluation_scenario_input.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluation_scenario_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluation_scenario_result.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluation_status_enum.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluation_type.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator_config.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator_flags.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator_mapping_output_interface.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator_output_interface.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator_query.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator_query_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluator_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/evaluators_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/exception_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/extended_o_tel_tracing_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/focus.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/format.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/full_json_input.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/full_json_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/get_config_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/header.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/http_validation_error.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/human_evaluation.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/human_evaluation_scenario.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/human_evaluation_scenario_input.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/human_evaluation_scenario_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/invite_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/legacy_analytics_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/legacy_data_point.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/legacy_evaluator.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/legacy_scope_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/legacy_scopes_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/legacy_subscription_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/legacy_user_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/legacy_user_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/lifecycle_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/link_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/list_api_keys_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/llm_run_rate_limit.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/meta_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/metrics_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/new_testset.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/node_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/node_type.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_context_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_event.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_event_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_extra_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_flat_span.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_flat_span_input_end_time.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_flat_span_input_start_time.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_flat_span_output_end_time.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_flat_span_output_start_time.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_link.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_link_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_links_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span_input_end_time.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span_input_spans_value.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span_input_start_time.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span_kind.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span_output_end_time.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span_output_spans_value.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_span_output_start_time.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_spans_tree.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_spans_tree_input_spans_value.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_spans_tree_output_spans_value.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_status_code.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_tracing_data_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_tracing_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/o_tel_tracing_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/organization.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/organization_details.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/organization_membership_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/organization_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/organization_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/parent_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/permission.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/plan.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/project_membership_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/project_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/project_scope.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/projects_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/recursive_types.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/reference.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/reference_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/reference_request_model.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/result.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/role.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/root_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/scopes_response_model.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/score.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/secret_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/secret_kind.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/secret_response_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/simple_evaluation_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/span_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/span_dto_nodes_value.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/standard_provider_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/standard_provider_kind.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/standard_provider_settings_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/status_code.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/status_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/tags_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/testcase_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/testset.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/testset_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/testset_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/testsets_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/time_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/timestamp.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/tree_dto.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/tree_type.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/update_app_output.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/user_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/validation_error.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/validation_error_loc_item.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_artifact.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_data.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_flags.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_revision.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_revision_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_revision_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_revisions_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_variant.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_variant_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_variant_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflow_variants_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workflows_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workspace.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workspace_member_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workspace_membership_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workspace_permission.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workspace_request.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workspace_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workspace_role.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/types/workspace_role_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/variants/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/variants/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/variants/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/variants/types/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/variants/types/add_variant_from_base_and_config_response.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/vault/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/vault/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/vault/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/workflows/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/workflows/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/workflows/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/workspace/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/workspace/client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/backend/workspace/raw_client.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/types/provider_key_dto.py~HEAD +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/types/provider_key_dto.py~feat_model-registry +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/types/provider_kind.py~HEAD +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/types/provider_kind.py~feat_model-registry +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/client/types.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/config.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/config.toml +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/context/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/context/running.py +0 -0
- {agenta-0.57.1/agenta/sdk/decorators → agenta-0.60.0/agenta/sdk/contexts}/__init__.py +0 -0
- {agenta-0.57.1/agenta/sdk/middleware → agenta-0.60.0/agenta/sdk/decorators}/__init__.py +0 -0
- {agenta-0.57.1/agenta/sdk/utils → agenta-0.60.0/agenta/sdk/engines}/__init__.py +0 -0
- {agenta-0.57.1/agenta/sdk/workflows → agenta-0.60.0/agenta/sdk/engines/running}/__init__.py +0 -0
- {agenta-0.57.1/agenta/sdk/workflows → agenta-0.60.0/agenta/sdk/engines/running}/registry.py +0 -0
- {agenta-0.57.1/agenta/sdk/workflows → agenta-0.60.0/agenta/sdk/engines/running}/utils.py +0 -0
- {agenta-0.57.1/agenta/sdk → agenta-0.60.0/agenta/sdk/engines}/tracing/__init__.py +0 -0
- {agenta-0.57.1/agenta/sdk → agenta-0.60.0/agenta/sdk/engines}/tracing/conventions.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/litellm/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/litellm/litellm.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/managers/__init__.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/managers/apps.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/managers/deployment.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/managers/shared.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/managers/variant.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/middleware/config.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/middleware/cors.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/middleware/inline.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/middleware/mock.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/middleware/otel.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/router.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/tracing/attributes.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/tracing/inline.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/tracing/tracing.py +13 -13
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/constants.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/costs.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/exceptions.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/globals.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/helpers.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/otel.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/preinit.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/singleton.py +0 -0
- {agenta-0.57.1 → agenta-0.60.0}/agenta/sdk/utils/timing.py +0 -0
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agenta
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.60.0
|
|
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
|
|
7
7
|
Author-email: mahmoud@agenta.ai
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.11,<4.0
|
|
9
9
|
Classifier: Intended Audience :: Developers
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
16
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
15
|
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
17
|
Classifier: Topic :: Software Development :: Libraries
|
|
19
18
|
Requires-Dist: decorator (>=5.2.1,<6.0.0)
|
|
20
19
|
Requires-Dist: fastapi (>=0.116.0,<0.117.0)
|
|
20
|
+
Requires-Dist: google-auth (>=2.23,<3)
|
|
21
21
|
Requires-Dist: h11 (>=0.16.0,<0.17.0)
|
|
22
22
|
Requires-Dist: httpx (>=0.28.0,<0.29.0)
|
|
23
23
|
Requires-Dist: huggingface-hub (<0.31.0)
|
|
24
24
|
Requires-Dist: importlib-metadata (>=8.0.0,<9.0)
|
|
25
25
|
Requires-Dist: jinja2 (>=3.1.6,<4.0.0)
|
|
26
|
-
Requires-Dist: litellm (==1.
|
|
26
|
+
Requires-Dist: litellm (==1.78.7)
|
|
27
27
|
Requires-Dist: openai (>=1.106.0,<2.0.0)
|
|
28
28
|
Requires-Dist: opentelemetry-api (>=1.27.0,<2.0.0)
|
|
29
29
|
Requires-Dist: opentelemetry-exporter-otlp-proto-http (>=1.27.0,<2.0.0)
|
|
@@ -31,7 +31,9 @@ Requires-Dist: opentelemetry-instrumentation (>=0.56b0)
|
|
|
31
31
|
Requires-Dist: opentelemetry-sdk (>=1.27.0,<2.0.0)
|
|
32
32
|
Requires-Dist: pydantic (>=2,<3)
|
|
33
33
|
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
|
|
34
|
+
Requires-Dist: python-jsonpath (>=2.0.0,<3.0.0)
|
|
34
35
|
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
|
36
|
+
Requires-Dist: restrictedpython (>=8.0,<9.0) ; python_version == "3.11"
|
|
35
37
|
Requires-Dist: starlette (>=0.47.0,<0.48.0)
|
|
36
38
|
Requires-Dist: structlog (>=25.2.0,<26.0.0)
|
|
37
39
|
Requires-Dist: tiktoken (==0.11.0)
|
|
@@ -126,15 +128,15 @@ Agenta is a platform for building production-grade LLM applications. It helps **
|
|
|
126
128
|
Collaborate with Subject Matter Experts (SMEs) on prompt engineering and make sure nothing breaks in production.
|
|
127
129
|
|
|
128
130
|
- **Interactive Playground**: Compare prompts side by side against your test cases
|
|
129
|
-
- **Multi-Model Support**: Experiment with 50+ LLM models or [bring-your-own models](https://docs.agenta.ai/prompt-engineering/playground/
|
|
131
|
+
- **Multi-Model Support**: Experiment with 50+ LLM models or [bring-your-own models](https://docs.agenta.ai/prompt-engineering/playground/custom-providers?utm_source=github&utm_medium=referral&utm_campaign=readme)
|
|
130
132
|
- **Version Control**: Version prompts and configurations with branching and environments
|
|
131
133
|
- **Complex Configurations**: Enable SMEs to collaborate on [complex configuration schemas](https://docs.agenta.ai/custom-workflows/overview?utm_source=github&utm_medium=referral&utm_campaign=readme) beyond simple prompts
|
|
132
134
|
|
|
133
|
-
[Explore prompt management →](https://docs.agenta.ai/prompt-engineering/
|
|
135
|
+
[Explore prompt management →](https://docs.agenta.ai/prompt-engineering/concepts?utm_source=github&utm_medium=referral&utm_campaign=readme)
|
|
134
136
|
|
|
135
137
|
### 📊 Evaluation & Testing
|
|
136
138
|
Evaluate your LLM applications systematically with both human and automated feedback.
|
|
137
|
-
- **Flexible
|
|
139
|
+
- **Flexible Testsets**: Create testcases from production data, playground experiments, or upload CSVs
|
|
138
140
|
- **Pre-built and Custom Evaluators**: Use LLM-as-judge, one of our 20+ pre-built evaluators, or you custom evaluators
|
|
139
141
|
- **UI and API Access**: Run evaluations via UI (for SMEs) or programmatically (for engineers)
|
|
140
142
|
- **Human Feedback Integration**: Collect and incorporate expert annotations
|
|
@@ -83,15 +83,15 @@ Agenta is a platform for building production-grade LLM applications. It helps **
|
|
|
83
83
|
Collaborate with Subject Matter Experts (SMEs) on prompt engineering and make sure nothing breaks in production.
|
|
84
84
|
|
|
85
85
|
- **Interactive Playground**: Compare prompts side by side against your test cases
|
|
86
|
-
- **Multi-Model Support**: Experiment with 50+ LLM models or [bring-your-own models](https://docs.agenta.ai/prompt-engineering/playground/
|
|
86
|
+
- **Multi-Model Support**: Experiment with 50+ LLM models or [bring-your-own models](https://docs.agenta.ai/prompt-engineering/playground/custom-providers?utm_source=github&utm_medium=referral&utm_campaign=readme)
|
|
87
87
|
- **Version Control**: Version prompts and configurations with branching and environments
|
|
88
88
|
- **Complex Configurations**: Enable SMEs to collaborate on [complex configuration schemas](https://docs.agenta.ai/custom-workflows/overview?utm_source=github&utm_medium=referral&utm_campaign=readme) beyond simple prompts
|
|
89
89
|
|
|
90
|
-
[Explore prompt management →](https://docs.agenta.ai/prompt-engineering/
|
|
90
|
+
[Explore prompt management →](https://docs.agenta.ai/prompt-engineering/concepts?utm_source=github&utm_medium=referral&utm_campaign=readme)
|
|
91
91
|
|
|
92
92
|
### 📊 Evaluation & Testing
|
|
93
93
|
Evaluate your LLM applications systematically with both human and automated feedback.
|
|
94
|
-
- **Flexible
|
|
94
|
+
- **Flexible Testsets**: Create testcases from production data, playground experiments, or upload CSVs
|
|
95
95
|
- **Pre-built and Custom Evaluators**: Use LLM-as-judge, one of our 20+ pre-built evaluators, or you custom evaluators
|
|
96
96
|
- **UI and API Access**: Run evaluations via UI (for SMEs) or programmatically (for engineers)
|
|
97
97
|
- **Human Feedback Integration**: Collect and incorporate expert annotations
|
|
@@ -27,8 +27,12 @@ from .sdk.utils.costs import calculate_token_usage
|
|
|
27
27
|
from .sdk.tracing import Tracing, get_tracer
|
|
28
28
|
from .sdk.tracing.conventions import Reference
|
|
29
29
|
from .sdk.decorators.tracing import instrument
|
|
30
|
-
from .sdk.decorators.running import
|
|
31
|
-
|
|
30
|
+
from .sdk.decorators.running import (
|
|
31
|
+
workflow,
|
|
32
|
+
application,
|
|
33
|
+
evaluator,
|
|
34
|
+
)
|
|
35
|
+
from .sdk.decorators.serving import route, app
|
|
32
36
|
from .sdk.context.running import workflow_mode_enabled
|
|
33
37
|
from .sdk.litellm import litellm as callbacks
|
|
34
38
|
from .sdk.managers.apps import AppManager
|
|
@@ -160,8 +160,8 @@ from .backend.types import (
|
|
|
160
160
|
StandardProviderSettingsDto,
|
|
161
161
|
StatusCode,
|
|
162
162
|
StatusDto,
|
|
163
|
-
|
|
164
|
-
|
|
163
|
+
TestsetOutputResponse,
|
|
164
|
+
TestsetSimpleResponse,
|
|
165
165
|
TestcaseResponse,
|
|
166
166
|
Testset,
|
|
167
167
|
TestsetRequest,
|
|
@@ -403,8 +403,8 @@ __all__ = [
|
|
|
403
403
|
"StandardProviderSettingsDto",
|
|
404
404
|
"StatusCode",
|
|
405
405
|
"StatusDto",
|
|
406
|
-
"
|
|
407
|
-
"
|
|
406
|
+
"TestsetOutputResponse",
|
|
407
|
+
"TestsetSimpleResponse",
|
|
408
408
|
"TestcaseResponse",
|
|
409
409
|
"Testset",
|
|
410
410
|
"TestsetRequest",
|
|
@@ -155,8 +155,8 @@ from .types import (
|
|
|
155
155
|
StandardProviderSettingsDto,
|
|
156
156
|
StatusCode,
|
|
157
157
|
StatusDto,
|
|
158
|
-
|
|
159
|
-
|
|
158
|
+
TestsetOutputResponse,
|
|
159
|
+
TestsetSimpleResponse,
|
|
160
160
|
TestcaseResponse,
|
|
161
161
|
Testset,
|
|
162
162
|
TestsetRequest,
|
|
@@ -398,8 +398,8 @@ __all__ = [
|
|
|
398
398
|
"StandardProviderSettingsDto",
|
|
399
399
|
"StatusCode",
|
|
400
400
|
"StatusDto",
|
|
401
|
-
"
|
|
402
|
-
"
|
|
401
|
+
"TestsetOutputResponse",
|
|
402
|
+
"TestsetSimpleResponse",
|
|
403
403
|
"TestcaseResponse",
|
|
404
404
|
"Testset",
|
|
405
405
|
"TestsetRequest",
|
|
@@ -98,13 +98,17 @@ class AgentaApi:
|
|
|
98
98
|
self._client_wrapper = SyncClientWrapper(
|
|
99
99
|
base_url=_get_base_url(base_url=base_url, environment=environment),
|
|
100
100
|
api_key=api_key,
|
|
101
|
-
httpx_client=
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
101
|
+
httpx_client=(
|
|
102
|
+
httpx_client
|
|
103
|
+
if httpx_client is not None
|
|
104
|
+
else (
|
|
105
|
+
httpx.Client(
|
|
106
|
+
timeout=_defaulted_timeout, follow_redirects=follow_redirects
|
|
107
|
+
)
|
|
108
|
+
if follow_redirects is not None
|
|
109
|
+
else httpx.Client(timeout=_defaulted_timeout)
|
|
110
|
+
)
|
|
111
|
+
),
|
|
108
112
|
timeout=_defaulted_timeout,
|
|
109
113
|
)
|
|
110
114
|
self._raw_client = RawAgentaApi(client_wrapper=self._client_wrapper)
|
|
@@ -172,7 +176,7 @@ class AgentaApi:
|
|
|
172
176
|
|
|
173
177
|
def update_organization(
|
|
174
178
|
self,
|
|
175
|
-
|
|
179
|
+
organization_id: str,
|
|
176
180
|
*,
|
|
177
181
|
name: typing.Optional[str] = OMIT,
|
|
178
182
|
description: typing.Optional[str] = OMIT,
|
|
@@ -182,7 +186,7 @@ class AgentaApi:
|
|
|
182
186
|
"""
|
|
183
187
|
Parameters
|
|
184
188
|
----------
|
|
185
|
-
|
|
189
|
+
organization_id : str
|
|
186
190
|
|
|
187
191
|
name : typing.Optional[str]
|
|
188
192
|
|
|
@@ -206,11 +210,11 @@ class AgentaApi:
|
|
|
206
210
|
api_key="YOUR_API_KEY",
|
|
207
211
|
)
|
|
208
212
|
client.update_organization(
|
|
209
|
-
|
|
213
|
+
organization_id="organization_id",
|
|
210
214
|
)
|
|
211
215
|
"""
|
|
212
216
|
_response = self._raw_client.update_organization(
|
|
213
|
-
|
|
217
|
+
organization_id,
|
|
214
218
|
name=name,
|
|
215
219
|
description=description,
|
|
216
220
|
updated_at=updated_at,
|
|
@@ -220,7 +224,7 @@ class AgentaApi:
|
|
|
220
224
|
|
|
221
225
|
def create_workspace(
|
|
222
226
|
self,
|
|
223
|
-
|
|
227
|
+
organization_id: str,
|
|
224
228
|
*,
|
|
225
229
|
name: str,
|
|
226
230
|
description: typing.Optional[str] = OMIT,
|
|
@@ -230,7 +234,7 @@ class AgentaApi:
|
|
|
230
234
|
"""
|
|
231
235
|
Parameters
|
|
232
236
|
----------
|
|
233
|
-
|
|
237
|
+
organization_id : str
|
|
234
238
|
|
|
235
239
|
name : str
|
|
236
240
|
|
|
@@ -254,12 +258,12 @@ class AgentaApi:
|
|
|
254
258
|
api_key="YOUR_API_KEY",
|
|
255
259
|
)
|
|
256
260
|
client.create_workspace(
|
|
257
|
-
|
|
261
|
+
organization_id="organization_id",
|
|
258
262
|
name="name",
|
|
259
263
|
)
|
|
260
264
|
"""
|
|
261
265
|
_response = self._raw_client.create_workspace(
|
|
262
|
-
|
|
266
|
+
organization_id,
|
|
263
267
|
name=name,
|
|
264
268
|
description=description,
|
|
265
269
|
type=type,
|
|
@@ -269,7 +273,7 @@ class AgentaApi:
|
|
|
269
273
|
|
|
270
274
|
def update_workspace(
|
|
271
275
|
self,
|
|
272
|
-
|
|
276
|
+
organization_id: str,
|
|
273
277
|
workspace_id: str,
|
|
274
278
|
*,
|
|
275
279
|
name: typing.Optional[str] = OMIT,
|
|
@@ -280,7 +284,7 @@ class AgentaApi:
|
|
|
280
284
|
"""
|
|
281
285
|
Parameters
|
|
282
286
|
----------
|
|
283
|
-
|
|
287
|
+
organization_id : str
|
|
284
288
|
|
|
285
289
|
workspace_id : str
|
|
286
290
|
|
|
@@ -306,12 +310,12 @@ class AgentaApi:
|
|
|
306
310
|
api_key="YOUR_API_KEY",
|
|
307
311
|
)
|
|
308
312
|
client.update_workspace(
|
|
309
|
-
|
|
313
|
+
organization_id="organization_id",
|
|
310
314
|
workspace_id="workspace_id",
|
|
311
315
|
)
|
|
312
316
|
"""
|
|
313
317
|
_response = self._raw_client.update_workspace(
|
|
314
|
-
|
|
318
|
+
organization_id,
|
|
315
319
|
workspace_id,
|
|
316
320
|
name=name,
|
|
317
321
|
description=description,
|
|
@@ -427,7 +431,7 @@ class AgentaApi:
|
|
|
427
431
|
workspace_id: str,
|
|
428
432
|
*,
|
|
429
433
|
email: str,
|
|
430
|
-
|
|
434
|
+
organization_id: str,
|
|
431
435
|
role: str,
|
|
432
436
|
request_options: typing.Optional[RequestOptions] = None,
|
|
433
437
|
) -> typing.Optional[typing.Any]:
|
|
@@ -437,7 +441,7 @@ class AgentaApi:
|
|
|
437
441
|
Args:
|
|
438
442
|
workspace_id (str): The ID of the workspace.
|
|
439
443
|
email (str): The email of the user to remove the role from.
|
|
440
|
-
|
|
444
|
+
organization_id (str): The ID of the organization.
|
|
441
445
|
role (str): The role to remove from the user.
|
|
442
446
|
request (Request): The FastAPI request object.
|
|
443
447
|
|
|
@@ -454,7 +458,7 @@ class AgentaApi:
|
|
|
454
458
|
|
|
455
459
|
email : str
|
|
456
460
|
|
|
457
|
-
|
|
461
|
+
organization_id : str
|
|
458
462
|
|
|
459
463
|
role : str
|
|
460
464
|
|
|
@@ -476,14 +480,14 @@ class AgentaApi:
|
|
|
476
480
|
client.unassign_role_from_user(
|
|
477
481
|
workspace_id="workspace_id",
|
|
478
482
|
email="email",
|
|
479
|
-
|
|
483
|
+
organization_id="organization_id",
|
|
480
484
|
role="role",
|
|
481
485
|
)
|
|
482
486
|
"""
|
|
483
487
|
_response = self._raw_client.unassign_role_from_user(
|
|
484
488
|
workspace_id,
|
|
485
489
|
email=email,
|
|
486
|
-
|
|
490
|
+
organization_id=organization_id,
|
|
487
491
|
role=role,
|
|
488
492
|
request_options=request_options,
|
|
489
493
|
)
|
|
@@ -657,13 +661,17 @@ class AsyncAgentaApi:
|
|
|
657
661
|
self._client_wrapper = AsyncClientWrapper(
|
|
658
662
|
base_url=_get_base_url(base_url=base_url, environment=environment),
|
|
659
663
|
api_key=api_key,
|
|
660
|
-
httpx_client=
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
664
|
+
httpx_client=(
|
|
665
|
+
httpx_client
|
|
666
|
+
if httpx_client is not None
|
|
667
|
+
else (
|
|
668
|
+
httpx.AsyncClient(
|
|
669
|
+
timeout=_defaulted_timeout, follow_redirects=follow_redirects
|
|
670
|
+
)
|
|
671
|
+
if follow_redirects is not None
|
|
672
|
+
else httpx.AsyncClient(timeout=_defaulted_timeout)
|
|
673
|
+
)
|
|
674
|
+
),
|
|
667
675
|
timeout=_defaulted_timeout,
|
|
668
676
|
)
|
|
669
677
|
self._raw_client = AsyncRawAgentaApi(client_wrapper=self._client_wrapper)
|
|
@@ -743,7 +751,7 @@ class AsyncAgentaApi:
|
|
|
743
751
|
|
|
744
752
|
async def update_organization(
|
|
745
753
|
self,
|
|
746
|
-
|
|
754
|
+
organization_id: str,
|
|
747
755
|
*,
|
|
748
756
|
name: typing.Optional[str] = OMIT,
|
|
749
757
|
description: typing.Optional[str] = OMIT,
|
|
@@ -753,7 +761,7 @@ class AsyncAgentaApi:
|
|
|
753
761
|
"""
|
|
754
762
|
Parameters
|
|
755
763
|
----------
|
|
756
|
-
|
|
764
|
+
organization_id : str
|
|
757
765
|
|
|
758
766
|
name : typing.Optional[str]
|
|
759
767
|
|
|
@@ -782,14 +790,14 @@ class AsyncAgentaApi:
|
|
|
782
790
|
|
|
783
791
|
async def main() -> None:
|
|
784
792
|
await client.update_organization(
|
|
785
|
-
|
|
793
|
+
organization_id="organization_id",
|
|
786
794
|
)
|
|
787
795
|
|
|
788
796
|
|
|
789
797
|
asyncio.run(main())
|
|
790
798
|
"""
|
|
791
799
|
_response = await self._raw_client.update_organization(
|
|
792
|
-
|
|
800
|
+
organization_id,
|
|
793
801
|
name=name,
|
|
794
802
|
description=description,
|
|
795
803
|
updated_at=updated_at,
|
|
@@ -799,7 +807,7 @@ class AsyncAgentaApi:
|
|
|
799
807
|
|
|
800
808
|
async def create_workspace(
|
|
801
809
|
self,
|
|
802
|
-
|
|
810
|
+
organization_id: str,
|
|
803
811
|
*,
|
|
804
812
|
name: str,
|
|
805
813
|
description: typing.Optional[str] = OMIT,
|
|
@@ -809,7 +817,7 @@ class AsyncAgentaApi:
|
|
|
809
817
|
"""
|
|
810
818
|
Parameters
|
|
811
819
|
----------
|
|
812
|
-
|
|
820
|
+
organization_id : str
|
|
813
821
|
|
|
814
822
|
name : str
|
|
815
823
|
|
|
@@ -838,7 +846,7 @@ class AsyncAgentaApi:
|
|
|
838
846
|
|
|
839
847
|
async def main() -> None:
|
|
840
848
|
await client.create_workspace(
|
|
841
|
-
|
|
849
|
+
organization_id="organization_id",
|
|
842
850
|
name="name",
|
|
843
851
|
)
|
|
844
852
|
|
|
@@ -846,7 +854,7 @@ class AsyncAgentaApi:
|
|
|
846
854
|
asyncio.run(main())
|
|
847
855
|
"""
|
|
848
856
|
_response = await self._raw_client.create_workspace(
|
|
849
|
-
|
|
857
|
+
organization_id,
|
|
850
858
|
name=name,
|
|
851
859
|
description=description,
|
|
852
860
|
type=type,
|
|
@@ -856,7 +864,7 @@ class AsyncAgentaApi:
|
|
|
856
864
|
|
|
857
865
|
async def update_workspace(
|
|
858
866
|
self,
|
|
859
|
-
|
|
867
|
+
organization_id: str,
|
|
860
868
|
workspace_id: str,
|
|
861
869
|
*,
|
|
862
870
|
name: typing.Optional[str] = OMIT,
|
|
@@ -867,7 +875,7 @@ class AsyncAgentaApi:
|
|
|
867
875
|
"""
|
|
868
876
|
Parameters
|
|
869
877
|
----------
|
|
870
|
-
|
|
878
|
+
organization_id : str
|
|
871
879
|
|
|
872
880
|
workspace_id : str
|
|
873
881
|
|
|
@@ -898,7 +906,7 @@ class AsyncAgentaApi:
|
|
|
898
906
|
|
|
899
907
|
async def main() -> None:
|
|
900
908
|
await client.update_workspace(
|
|
901
|
-
|
|
909
|
+
organization_id="organization_id",
|
|
902
910
|
workspace_id="workspace_id",
|
|
903
911
|
)
|
|
904
912
|
|
|
@@ -906,7 +914,7 @@ class AsyncAgentaApi:
|
|
|
906
914
|
asyncio.run(main())
|
|
907
915
|
"""
|
|
908
916
|
_response = await self._raw_client.update_workspace(
|
|
909
|
-
|
|
917
|
+
organization_id,
|
|
910
918
|
workspace_id,
|
|
911
919
|
name=name,
|
|
912
920
|
description=description,
|
|
@@ -1038,7 +1046,7 @@ class AsyncAgentaApi:
|
|
|
1038
1046
|
workspace_id: str,
|
|
1039
1047
|
*,
|
|
1040
1048
|
email: str,
|
|
1041
|
-
|
|
1049
|
+
organization_id: str,
|
|
1042
1050
|
role: str,
|
|
1043
1051
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1044
1052
|
) -> typing.Optional[typing.Any]:
|
|
@@ -1048,7 +1056,7 @@ class AsyncAgentaApi:
|
|
|
1048
1056
|
Args:
|
|
1049
1057
|
workspace_id (str): The ID of the workspace.
|
|
1050
1058
|
email (str): The email of the user to remove the role from.
|
|
1051
|
-
|
|
1059
|
+
organization_id (str): The ID of the organization.
|
|
1052
1060
|
role (str): The role to remove from the user.
|
|
1053
1061
|
request (Request): The FastAPI request object.
|
|
1054
1062
|
|
|
@@ -1065,7 +1073,7 @@ class AsyncAgentaApi:
|
|
|
1065
1073
|
|
|
1066
1074
|
email : str
|
|
1067
1075
|
|
|
1068
|
-
|
|
1076
|
+
organization_id : str
|
|
1069
1077
|
|
|
1070
1078
|
role : str
|
|
1071
1079
|
|
|
@@ -1092,7 +1100,7 @@ class AsyncAgentaApi:
|
|
|
1092
1100
|
await client.unassign_role_from_user(
|
|
1093
1101
|
workspace_id="workspace_id",
|
|
1094
1102
|
email="email",
|
|
1095
|
-
|
|
1103
|
+
organization_id="organization_id",
|
|
1096
1104
|
role="role",
|
|
1097
1105
|
)
|
|
1098
1106
|
|
|
@@ -1102,7 +1110,7 @@ class AsyncAgentaApi:
|
|
|
1102
1110
|
_response = await self._raw_client.unassign_role_from_user(
|
|
1103
1111
|
workspace_id,
|
|
1104
1112
|
email=email,
|
|
1105
|
-
|
|
1113
|
+
organization_id=organization_id,
|
|
1106
1114
|
role=role,
|
|
1107
1115
|
request_options=request_options,
|
|
1108
1116
|
)
|
|
@@ -237,7 +237,7 @@ class HumanEvaluationsClient:
|
|
|
237
237
|
Updates an evaluation's status.
|
|
238
238
|
|
|
239
239
|
Raises:
|
|
240
|
-
HTTPException: If the columns in the
|
|
240
|
+
HTTPException: If the columns in the testset do not match with the inputs in the variant.
|
|
241
241
|
|
|
242
242
|
Returns:
|
|
243
243
|
None: A 204 No Content status code, indicating that the update was successful.
|
|
@@ -785,7 +785,7 @@ class AsyncHumanEvaluationsClient:
|
|
|
785
785
|
Updates an evaluation's status.
|
|
786
786
|
|
|
787
787
|
Raises:
|
|
788
|
-
HTTPException: If the columns in the
|
|
788
|
+
HTTPException: If the columns in the testset do not match with the inputs in the variant.
|
|
789
789
|
|
|
790
790
|
Returns:
|
|
791
791
|
None: A 204 No Content status code, indicating that the update was successful.
|
|
@@ -336,7 +336,7 @@ class RawHumanEvaluationsClient:
|
|
|
336
336
|
Updates an evaluation's status.
|
|
337
337
|
|
|
338
338
|
Raises:
|
|
339
|
-
HTTPException: If the columns in the
|
|
339
|
+
HTTPException: If the columns in the testset do not match with the inputs in the variant.
|
|
340
340
|
|
|
341
341
|
Returns:
|
|
342
342
|
None: A 204 No Content status code, indicating that the update was successful.
|
|
@@ -1112,7 +1112,7 @@ class AsyncRawHumanEvaluationsClient:
|
|
|
1112
1112
|
Updates an evaluation's status.
|
|
1113
1113
|
|
|
1114
1114
|
Raises:
|
|
1115
|
-
HTTPException: If the columns in the
|
|
1115
|
+
HTTPException: If the columns in the testset do not match with the inputs in the variant.
|
|
1116
1116
|
|
|
1117
1117
|
Returns:
|
|
1118
1118
|
None: A 204 No Content status code, indicating that the update was successful.
|