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