From 442757a7186118907744ec5bab217207afec6103 Mon Sep 17 00:00:00 2001 From: GitHub CI Date: Wed, 5 Nov 2025 18:28:03 +0000 Subject: [PATCH 1/2] release/v0.60.0 --- README.md | 2 +- .../core/data_migrations/projects.py | 4 +- .../core/data_migrations/testsets.py | 10 +- api/ee/docker/Dockerfile.dev | 5 +- api/ee/docker/Dockerfile.gh | 5 +- api/ee/src/models/db_models.py | 4 +- .../extended/deprecated_transfer_models.py | 2 +- api/ee/src/routers/evaluation_router.py | 2 +- api/ee/src/routers/human_evaluation_router.py | 6 +- api/ee/src/services/db_manager_ee.py | 12 +- api/ee/src/services/evaluation_service.py | 14 +- api/ee/src/services/llm_apps_service.py | 20 +- api/ee/src/tasks/evaluations/batch.py | 3 +- api/ee/src/tasks/evaluations/legacy.py | 339 +- api/ee/src/tasks/evaluations/live.py | 256 +- api/ee/tests/manual/evaluations/sdk/client.py | 32 - .../manual/evaluations/sdk/definitions.py | 1818 -- .../tests/manual/evaluations/sdk/entities.py | 447 - .../tests/manual/evaluations/sdk/evaluate.py | 340 - .../manual/evaluations/sdk/evaluations.py | 208 - api/ee/tests/manual/evaluations/sdk/loop.py | 97 - .../manual/evaluations/sdk/mock_entities.py | 90 - .../tests/manual/evaluations/sdk/services.py | 375 - api/entrypoint.py | 6 +- .../core/data_migrations/projects.py | 6 +- .../core/data_migrations/testsets.py | 10 +- api/oss/docker/Dockerfile.dev | 5 +- api/oss/docker/Dockerfile.gh | 1 + .../src/apis/fastapi/evaluations/router.py | 15 + api/oss/src/apis/fastapi/evaluators/router.py | 27 +- api/oss/src/apis/fastapi/evaluators/utils.py | 7 +- .../adapters/default_agenta_adapter.py | 11 + .../observability/extractors/normalizer.py | 4 +- .../extractors/span_data_builders.py | 7 +- .../observability/opentelemetry/otlp.py | 6 + .../src/apis/fastapi/observability/router.py | 7 + .../observability/utils/serialization.py | 2 +- api/oss/src/apis/fastapi/testsets/router.py | 2 +- api/oss/src/apis/fastapi/testsets/utils.py | 4 +- api/oss/src/apis/fastapi/tracing/router.py | 4 +- api/oss/src/apis/fastapi/tracing/utils.py | 8 + api/oss/src/apis/fastapi/workflows/router.py | 125 +- api/oss/src/apis/fastapi/workflows/utils.py | 7 +- api/oss/src/core/annotations/service.py | 13 +- api/oss/src/core/annotations/types.py | 11 +- api/oss/src/core/applications/dtos.py | 4 +- api/oss/src/core/applications/service.py | 123 +- api/oss/src/core/evaluations/interfaces.py | 3 + api/oss/src/core/evaluations/service.py | 75 +- api/oss/src/core/evaluations/types.py | 40 +- api/oss/src/core/evaluations/utils.py | 32 +- api/oss/src/core/evaluators/dtos.py | 33 +- api/oss/src/core/evaluators/service.py | 158 +- api/oss/src/core/invocations/service.py | 6 +- api/oss/src/core/queries/dtos.py | 3 +- api/oss/src/core/queries/service.py | 28 +- api/oss/src/core/services/registry.py | 45 - api/oss/src/core/services/v0.py | 1792 -- api/oss/src/core/shared/dtos.py | 212 +- api/oss/src/core/testsets/service.py | 28 +- api/oss/src/core/workflows/dtos.py | 75 +- api/oss/src/core/workflows/helpers.py | 104 - api/oss/src/core/workflows/service.py | 170 +- api/oss/src/core/workflows/status.py | 14 - api/oss/src/dbs/postgres/evaluations/dao.py | 14 +- api/oss/src/dbs/postgres/git/dao.py | 2 +- api/oss/src/dbs/postgres/tracing/dao.py | 7 +- api/oss/src/dbs/postgres/tracing/utils.py | 36 +- api/oss/src/models/api/api_models.py | 2 +- api/oss/src/models/api/evaluation_model.py | 1 + api/oss/src/models/api/testset_model.py | 4 +- api/oss/src/models/converters.py | 24 +- api/oss/src/models/db/models.py | 4 +- api/oss/src/models/db_models.py | 4 +- api/oss/src/models/deprecated_models.py | 2 +- .../src/resources/evaluators/evaluators.py | 170 +- api/oss/src/routers/app_router.py | 8 +- api/oss/src/routers/testset_router.py | 101 +- api/oss/src/services/analytics_service.py | 6 +- api/oss/src/services/db_manager.py | 87 +- api/oss/src/services/evaluators_service.py | 541 +- api/oss/src/services/variants_manager.py | 8 +- api/oss/src/utils/common.py | 16 + api/oss/src/utils/logging.py | 161 +- api/oss/tests/legacy/old_tests/conftest.py | 2 +- api/oss/tests/legacy/old_tests/models.py | 4 +- .../test_variant_evaluators_router.py | 6 +- .../test_variant_testset_router.py | 8 +- api/oss/tests/manual/workflows/interface.py | 764 - .../testsets/legacy/test_testsets_basics.py | 4 +- .../pytest/testsets/test_testcases_basics.py | 8 +- .../pytest/testsets/test_testsets_basics.py | 28 +- .../pytest/testsets/test_testsets_files.py | 22 +- .../pytest/testsets/test_testsets_queries.py | 8 +- api/poetry.lock | 760 +- api/pyproject.toml | 5 +- .../entries/more-reliable-evaluations.mdx | 2 - docs/blog/entries/new-onboarding-flow.mdx | 2 - ...thentication-for-deployed-applications.mdx | 1 - docs/blog/main.mdx | 5 - .../_evaluation-from-sdk/01-quick-start.mdx | 4 - .../05-llm-as-a-judge.mdx | 50 +- .../evaluation-from-ui/03-viewing-results.mdx | 2 +- .../evaluation-from-ui/04-comparing-runs.mdx | 2 +- docs/docs/getting-started/01-introduction.mdx | 3 - .../prompt-engineering/01-quick-start.mdx | 2 +- .../reference/api/accept-invitation.api.mdx | 377 +- docs/docs/reference/api/add-trace.api.mdx | 1032 - .../add-variant-from-base-and-config.api.mdx | 681 +- .../api/add-variant-from-key.api.mdx | 394 +- .../api/add-variant-from-url.api.mdx | 394 +- .../api/admin-cancel-subscription.api.mdx | 301 +- .../api/admin-create-checkout.api.mdx | 329 +- .../reference/api/admin-create-portal.api.mdx | 301 +- .../reference/api/admin-report-usage.api.mdx | 87 +- .../reference/api/admin-switch-plans.api.mdx | 320 +- docs/docs/reference/api/agenta-api.info.mdx | 95 + .../reference/api/agenta-backend.info.mdx | 73 - docs/docs/reference/api/apps.tag.mdx | 7 + .../api/archive-evaluator-revision.api.mdx | 71 + .../api/archive-evaluator-variant.api.mdx | 71 + .../reference/api/archive-evaluator.api.mdx | 1002 +- .../api/archive-query-revision.api.mdx | 71 + docs/docs/reference/api/archive-query.api.mdx | 71 + .../api/archive-simple-evaluator.api.mdx | 71 + .../api/archive-simple-query.api.mdx | 71 + .../api/archive-simple-testset.api.mdx | 71 + .../api/archive-testset-revision.api.mdx | 71 + .../api/archive-testset-variant.api.mdx | 71 + .../reference/api/archive-testset.api.mdx | 869 +- .../api/archive-workflow-revision-rpc.api.mdx | 2034 +- .../api/archive-workflow-variant.api.mdx | 1043 +- .../reference/api/archive-workflow.api.mdx | 633 +- .../reference/api/assign-role-to-user.api.mdx | 368 +- docs/docs/reference/api/bases.tag.mdx | 7 + docs/docs/reference/api/cancel-plan.api.mdx | 87 +- ...aluations-evaluation-id-close-post.api.mdx | 71 + ...evaluations-runs-run-id-close-post.api.mdx | 71 + ...review-evaluations-runs-close-post.api.mdx | 71 + .../api/commit-evaluator-revision.api.mdx | 71 + .../api/commit-query-revision.api.mdx | 71 + .../api/commit-testset-revision.api.mdx | 71 + ...it-workflow-revision-by-variant-id.api.mdx | 5443 ----- .../api/commit-workflow-revision.api.mdx | 5450 +---- docs/docs/reference/api/configs-add.api.mdx | 1973 +- .../docs/reference/api/configs-commit.api.mdx | 2980 +-- .../docs/reference/api/configs-delete.api.mdx | 519 +- .../docs/reference/api/configs-deploy.api.mdx | 2085 +- docs/docs/reference/api/configs-fetch.api.mdx | 2119 +- docs/docs/reference/api/configs-fork.api.mdx | 2114 +- .../reference/api/configs-history.api.mdx | 2008 +- docs/docs/reference/api/configs-list.api.mdx | 1901 +- docs/docs/reference/api/configs.tag.mdx | 7 + .../reference/api/container-templates.api.mdx | 90 +- docs/docs/reference/api/containers.tag.mdx | 7 + .../docs/reference/api/create-account.api.mdx | 933 +- .../reference/api/create-accounts.api.mdx | 2269 +- .../reference/api/create-annotation.api.mdx | 1913 +- .../docs/reference/api/create-api-key.api.mdx | 100 +- docs/docs/reference/api/create-app.api.mdx | 419 +- .../reference/api/create-checkout.api.mdx | 320 +- ...on-preview-simple-evaluations-post.api.mdx | 71 + .../reference/api/create-evaluation.api.mdx | 1466 -- .../api/create-evaluator-revision.api.mdx | 71 + .../api/create-evaluator-variant.api.mdx | 71 + .../reference/api/create-evaluator.api.mdx | 992 +- .../api/create-human-evaluation.api.mdx | 425 +- .../reference/api/create-invocation.api.mdx | 71 + .../api/create-legacy-application.api.mdx | 71 + ...s-preview-evaluations-metrics-post.api.mdx | 71 + ...tor-config-evaluators-configs-post.api.mdx | 381 +- docs/docs/reference/api/create-portal.api.mdx | 87 +- .../api/create-query-revision.api.mdx | 71 + docs/docs/reference/api/create-query.api.mdx | 71 + ...es-preview-evaluations-queues-post.api.mdx | 71 + ...s-preview-evaluations-results-post.api.mdx | 71 + ...runs-preview-evaluations-runs-post.api.mdx | 71 + ...preview-evaluations-scenarios-post.api.mdx | 71 + docs/docs/reference/api/create-secret.api.mdx | 1198 +- .../api/create-simple-evaluator.api.mdx | 71 + .../reference/api/create-simple-query.api.mdx | 71 + .../create-simple-testset-from-file.api.mdx | 71 + .../api/create-simple-testset.api.mdx | 71 + .../api/create-testset-from-file.api.mdx | 937 - .../api/create-testset-revision.api.mdx | 71 + .../api/create-testset-variant.api.mdx | 71 + .../docs/reference/api/create-testset.api.mdx | 364 +- docs/docs/reference/api/create-trace.api.mdx | 71 + .../api/create-workflow-revision.api.mdx | 3471 +-- .../api/create-workflow-variant.api.mdx | 1695 +- .../reference/api/create-workflow.api.mdx | 912 +- .../reference/api/create-workspace.api.mdx | 837 +- .../api/delete-annotation-by-trace-id.api.mdx | 71 + .../reference/api/delete-annotation.api.mdx | 363 +- .../docs/reference/api/delete-api-key.api.mdx | 335 +- ...e-evaluations-evaluation-id-delete.api.mdx | 71 + ...aluations-human-evaluations-delete.api.mdx | 353 +- .../reference/api/delete-evaluations.api.mdx | 344 - ...configs-evaluator-config-id-delete.api.mdx | 311 +- .../api/delete-invocation-by-trace-id.api.mdx | 71 + .../reference/api/delete-invocation.api.mdx | 71 + .../api/delete-legacy-evaluations.api.mdx | 77 + ...preview-evaluations-metrics-delete.api.mdx | 71 + ...evaluations-queues-queue-id-delete.api.mdx | 71 + ...-preview-evaluations-queues-delete.api.mdx | 71 + ...aluations-results-result-id-delete.api.mdx | 71 + ...preview-evaluations-results-delete.api.mdx | 71 + ...iew-evaluations-runs-run-id-delete.api.mdx | 71 + ...ns-preview-evaluations-runs-delete.api.mdx | 71 + ...tions-scenarios-scenario-id-delete.api.mdx | 71 + ...eview-evaluations-scenarios-delete.api.mdx | 71 + docs/docs/reference/api/delete-secret.api.mdx | 275 +- .../reference/api/delete-testsets.api.mdx | 351 +- docs/docs/reference/api/delete-trace.api.mdx | 71 + docs/docs/reference/api/delete-traces.api.mdx | 342 +- .../api/deploy-to-environment.api.mdx | 342 +- .../api/edit-annotation-by-trace-id.api.mdx | 71 + .../reference/api/edit-annotation.api.mdx | 71 + ...le-evaluations-evaluation-id-patch.api.mdx | 71 + .../api/edit-evaluator-revision.api.mdx | 71 + .../api/edit-evaluator-variant.api.mdx | 71 + .../docs/reference/api/edit-evaluator.api.mdx | 1013 +- .../api/edit-invocation-by-trace-id.api.mdx | 71 + .../reference/api/edit-invocation.api.mdx | 71 + .../api/edit-legacy-application.api.mdx | 71 + ...-preview-evaluations-metrics-patch.api.mdx | 71 + .../reference/api/edit-query-revision.api.mdx | 71 + docs/docs/reference/api/edit-query.api.mdx | 71 + ...-evaluations-queues-queue-id-patch.api.mdx | 71 + ...s-preview-evaluations-queues-patch.api.mdx | 71 + ...valuations-results-result-id-patch.api.mdx | 71 + ...-preview-evaluations-results-patch.api.mdx | 71 + ...view-evaluations-runs-run-id-patch.api.mdx | 71 + ...uns-preview-evaluations-runs-patch.api.mdx | 71 + ...ations-scenarios-scenario-id-patch.api.mdx | 71 + ...review-evaluations-scenarios-patch.api.mdx | 71 + .../api/edit-simple-evaluator.api.mdx | 71 + .../reference/api/edit-simple-query.api.mdx | 71 + .../api/edit-simple-testset-from-file.api.mdx | 71 + .../reference/api/edit-simple-testset.api.mdx | 71 + .../api/edit-testset-revision.api.mdx | 71 + .../api/edit-testset-variant.api.mdx | 71 + docs/docs/reference/api/edit-testset.api.mdx | 1391 +- docs/docs/reference/api/edit-trace.api.mdx | 933 +- .../api/edit-workflow-revision.api.mdx | 3489 +-- .../api/edit-workflow-variant.api.mdx | 1713 +- docs/docs/reference/api/edit-workflow.api.mdx | 930 +- .../api/environment-revisions.api.mdx | 778 +- docs/docs/reference/api/environments.tag.mdx | 7 + docs/docs/reference/api/evaluations.tag.mdx | 7 + ...uator-data-map-evaluators-map-post.api.mdx | 409 +- ...-evaluators-evaluator-key-run-post.api.mdx | 363 +- docs/docs/reference/api/evaluators.tag.mdx | 7 + .../reference/api/fetch-analytics.api.mdx | 71 + .../api/fetch-annotation-by-trace-id.api.mdx | 71 + .../reference/api/fetch-annotation.api.mdx | 1169 +- ...on-ids-evaluations-by-resource-get.api.mdx | 362 +- ...mple-evaluations-evaluation-id-get.api.mdx | 71 + .../api/fetch-evaluation-results.api.mdx | 303 - ...n-scenarios-comparison-results-get.api.mdx | 305 - .../api/fetch-evaluation-scenarios.api.mdx | 771 - .../api/fetch-evaluation-status.api.mdx | 307 +- .../reference/api/fetch-evaluation.api.mdx | 957 - .../api/fetch-evaluator-revision.api.mdx | 71 + .../api/fetch-evaluator-variant.api.mdx | 71 + .../reference/api/fetch-evaluator.api.mdx | 676 +- ...uman-evaluations-evaluation-id-get.api.mdx | 437 +- .../fetch-human-evaluation-scenarios.api.mdx | 674 +- .../api/fetch-invocation-by-trace-id.api.mdx | 71 + .../reference/api/fetch-invocation.api.mdx | 71 + .../api/fetch-legacy-application.api.mdx | 71 + .../fetch-legacy-evaluation-results.api.mdx | 78 + ...ation-scenarios-comparison-results.api.mdx | 80 + .../fetch-legacy-evaluation-scenarios.api.mdx | 80 + .../api/fetch-legacy-evaluation.api.mdx | 77 + .../api/fetch-legacy-evaluations.api.mdx | 77 + ...h-list-evaluations-evaluations-get.api.mdx | 980 - ...-evaluations-human-evaluations-get.api.mdx | 463 +- .../reference/api/fetch-new-analytics.api.mdx | 71 + .../api/fetch-organization-details.api.mdx | 351 +- docs/docs/reference/api/fetch-plans.api.mdx | 90 +- .../api/fetch-query-revision.api.mdx | 71 + docs/docs/reference/api/fetch-query.api.mdx | 71 + ...ew-evaluations-queues-queue-id-get.api.mdx | 71 + ...ions-queues-queue-id-scenarios-get.api.mdx | 71 + ...-evaluations-results-result-id-get.api.mdx | 71 + docs/docs/reference/api/fetch-results.api.mdx | 305 +- ...review-evaluations-runs-run-id-get.api.mdx | 71 + ...luations-scenarios-scenario-id-get.api.mdx | 71 + .../api/fetch-simple-evaluator.api.mdx | 71 + .../reference/api/fetch-simple-query.api.mdx | 71 + .../api/fetch-simple-testset-to-file.api.mdx | 71 + .../api/fetch-simple-testset.api.mdx | 71 + .../reference/api/fetch-subscription.api.mdx | 90 +- ...-preview-testcases-testcase-id-get.api.mdx | 71 + .../docs/reference/api/fetch-testcase.api.mdx | 258 - .../api/fetch-testset-revision.api.mdx | 71 + .../api/fetch-testset-to-file.api.mdx | 856 - .../api/fetch-testset-variant.api.mdx | 71 + docs/docs/reference/api/fetch-testset.api.mdx | 869 +- .../reference/api/fetch-trace-by-id.api.mdx | 4371 +--- docs/docs/reference/api/fetch-trace.api.mdx | 935 +- docs/docs/reference/api/fetch-usage.api.mdx | 90 +- .../reference/api/fetch-user-profile.api.mdx | 90 +- .../api/fetch-workflow-revision.api.mdx | 2228 +- .../api/fetch-workflow-variant.api.mdx | 1043 +- .../docs/reference/api/fetch-workflow.api.mdx | 633 +- .../api/fork-evaluator-variant.api.mdx | 71 + ...rk-workflow-variant-by-revision-id.api.mdx | 2491 --- .../api/fork-workflow-variant.api.mdx | 2522 +-- .../api/get-all-workspace-permissions.api.mdx | 155 +- .../api/get-all-workspace-roles.api.mdx | 136 +- .../get-config-deployment-revision.api.mdx | 301 +- docs/docs/reference/api/get-config.api.mdx | 394 +- ...o-evaluation-scenario-id-score-get.api.mdx | 324 +- ...rs-configs-evaluator-config-id-get.api.mdx | 333 +- ...tor-configs-evaluators-configs-get.api.mdx | 358 +- ...evaluators-endpoint-evaluators-get.api.mdx | 291 +- docs/docs/reference/api/get-own-org.api.mdx | 118 +- docs/docs/reference/api/get-projects.api.mdx | 325 +- .../reference/api/get-single-testset.api.mdx | 308 +- docs/docs/reference/api/get-testsets.api.mdx | 159 +- .../reference/api/get-variant-by-env.api.mdx | 582 +- .../api/get-variant-revision.api.mdx | 476 +- .../api/get-variant-revisions.api.mdx | 490 +- docs/docs/reference/api/get-variant.api.mdx | 568 +- docs/docs/reference/api/get-workspace.api.mdx | 235 +- docs/docs/reference/api/handle-events.api.mdx | 87 +- docs/docs/reference/api/health-check.api.mdx | 90 +- .../reference/api/human-evaluations.tag.mdx | 7 + .../docs/reference/api/import-testset.api.mdx | 387 +- .../reference/api/ingest-spans-rpc.api.mdx | 933 +- docs/docs/reference/api/ingest-spans.api.mdx | 933 +- .../reference/api/inspect-workflow.api.mdx | 71 + .../api/invite-user-to-workspace.api.mdx | 416 +- .../reference/api/invoke-workflow.api.mdx | 71 + docs/docs/reference/api/list-api-keys.api.mdx | 205 +- .../reference/api/list-app-variants.api.mdx | 592 +- docs/docs/reference/api/list-apps.api.mdx | 402 +- docs/docs/reference/api/list-bases.api.mdx | 377 +- .../reference/api/list-environments.api.mdx | 576 +- .../reference/api/list-evaluators.api.mdx | 1040 - .../reference/api/list-organizations.api.mdx | 203 +- docs/docs/reference/api/list-secrets.api.mdx | 646 +- docs/docs/reference/api/list-testsets.api.mdx | 1124 - .../api/list-workflow-revisions.api.mdx | 2062 -- .../api/list-workflow-variants.api.mdx | 1092 - .../docs/reference/api/list-workflows.api.mdx | 668 - .../api/log-evaluator-revisions.api.mdx | 71 + .../reference/api/log-query-revisions.api.mdx | 71 + .../api/log-testset-revisions.api.mdx | 71 + .../api/log-workflow-revisions.api.mdx | 2249 +- .../api/mark-variant-as-hidden.api.mdx | 305 +- .../mark-variant-revision-as-hidden.api.mdx | 316 +- docs/docs/reference/api/observability.tag.mdx | 7 + ...valuations-evaluation-id-open-post.api.mdx | 71 + ...-evaluations-runs-run-id-open-post.api.mdx | 71 + ...preview-evaluations-runs-open-post.api.mdx | 71 + docs/docs/reference/api/otlp-receiver.api.mdx | 115 +- docs/docs/reference/api/otlp-status.api.mdx | 115 +- .../reference/api/otlp-v-1-traces.api.mdx | 118 +- .../reference/api/query-analytics.api.mdx | 1170 +- .../reference/api/query-annotations.api.mdx | 1674 +- ...view-simple-evaluations-query-post.api.mdx | 71 + .../api/query-evaluator-revisions.api.mdx | 71 + .../api/query-evaluator-variants.api.mdx | 71 + .../reference/api/query-evaluators.api.mdx | 1071 +- .../reference/api/query-invocations.api.mdx | 71 + ...iew-evaluations-metrics-query-post.api.mdx | 71 + docs/docs/reference/api/query-queries.api.mdx | 71 + .../api/query-query-revisions.api.mdx | 71 + ...view-evaluations-queues-query-post.api.mdx | 71 + ...iew-evaluations-results-query-post.api.mdx | 71 + ...review-evaluations-runs-query-post.api.mdx | 71 + ...w-evaluations-scenarios-query-post.api.mdx | 71 + .../api/query-simple-evaluators.api.mdx | 71 + .../api/query-simple-queries.api.mdx | 71 + .../api/query-simple-testsets.api.mdx | 71 + .../reference/api/query-spans-rpc.api.mdx | 999 +- docs/docs/reference/api/query-spans.api.mdx | 968 - ...cases-preview-testcases-query-post.api.mdx | 71 + .../api/query-testset-revisions.api.mdx | 71 + .../api/query-testset-variants.api.mdx | 71 + .../docs/reference/api/query-testsets.api.mdx | 1176 +- docs/docs/reference/api/query-traces.api.mdx | 4442 +--- .../api/query-workflow-revisions.api.mdx | 2093 +- .../api/query-workflow-variants.api.mdx | 1123 +- .../reference/api/query-workflows.api.mdx | 699 +- docs/docs/reference/api/read-secret.api.mdx | 796 +- ...w-evaluations-metrics-refresh-post.api.mdx | 71 + ...dmin-evaluations-runs-refresh-post.api.mdx | 71 + docs/docs/reference/api/remove-app.api.mdx | 306 +- docs/docs/reference/api/remove-trace.api.mdx | 324 - .../api/remove-user-from-workspace.api.mdx | 328 +- .../reference/api/resend-invitation.api.mdx | 346 +- .../reference/api/reset-user-password.api.mdx | 301 +- .../api/retrieve-application-revision.api.mdx | 71 + .../api/retrieve-evaluator-revision.api.mdx | 71 + .../api/retrieve-query-revision.api.mdx | 71 + .../api/retrieve-testset-revision.api.mdx | 71 + .../api/retrieve-workflow-revision.api.mdx | 71 + .../api/revert-deployment-revision.api.mdx | 301 +- docs/docs/reference/api/sidebar.ts | 1278 +- ...aluations-evaluation-id-start-post.api.mdx | 71 + .../reference/api/start-evaluation.api.mdx | 71 + ...valuations-evaluation-id-stop-post.api.mdx | 71 + docs/docs/reference/api/switch-plans.api.mdx | 314 +- docs/docs/reference/api/testsets.tag.mdx | 7 + .../api/transfer-simple-evaluator.api.mdx | 71 + .../api/transfer-simple-testset.api.mdx | 71 + .../api/unarchive-evaluator-revision.api.mdx | 71 + .../api/unarchive-evaluator-variant.api.mdx | 71 + .../reference/api/unarchive-evaluator.api.mdx | 676 +- .../api/unarchive-query-revision.api.mdx | 71 + .../reference/api/unarchive-query.api.mdx | 71 + .../api/unarchive-simple-evaluator.api.mdx | 71 + .../api/unarchive-simple-query.api.mdx | 71 + .../api/unarchive-simple-testset.api.mdx | 71 + .../api/unarchive-testset-revision.api.mdx | 71 + .../api/unarchive-testset-variant.api.mdx | 71 + .../reference/api/unarchive-testset.api.mdx | 869 +- .../unarchive-workflow-revision-rpc.api.mdx | 2034 +- .../api/unarchive-workflow-variant.api.mdx | 1043 +- .../reference/api/unarchive-workflow.api.mdx | 633 +- .../api/unassign-role-from-user.api.mdx | 358 +- docs/docs/reference/api/update-app.api.mdx | 368 +- ...on-scenario-id-evaluation-type-put.api.mdx | 561 +- ...o-evaluation-scenario-id-score-put.api.mdx | 333 +- ...rs-configs-evaluator-config-id-put.api.mdx | 400 +- .../api/update-human-evaluation.api.mdx | 353 +- .../reference/api/update-organization.api.mdx | 378 +- docs/docs/reference/api/update-secret.api.mdx | 1234 +- .../api/update-testset-from-file.api.mdx | 867 - .../docs/reference/api/update-testset.api.mdx | 344 +- .../api/update-variant-parameters.api.mdx | 377 +- .../reference/api/update-variant-url.api.mdx | 341 +- .../reference/api/update-workspace.api.mdx | 857 +- docs/docs/reference/api/upload-file.api.mdx | 378 +- docs/docs/reference/api/variants.tag.mdx | 7 + .../reference/api/verify-permissions.api.mdx | 355 +- docs/docs/reference/openapi.json | 18046 +--------------- ...views.mdx => _AI-powered-code-reviews.mdx} | 0 .../{RAG-QA-docs.mdx => _RAG-QA-docs.mdx} | 0 ...te-with-SDK.mdx => _evaluate-with-SDK.mdx} | 0 docs/docusaurus.config.ts | 69 +- docs/package-lock.json | 12840 +++++------ docs/package.json | 23 +- docs/sidebars.ts | 15 +- docs/src/css/custom.css | 74 +- docs/src/data/roadmap.ts | 823 +- docs/src/icons/library.tsx | 253 + docs/src/theme/Navbar/Content/index.tsx | 106 + .../theme/Navbar/Content/styles.module.css | 98 + docs/src/theme/Navbar/Layout/index.tsx | 57 + .../src/theme/Navbar/Layout/styles.module.css | 7 + docs/src/theme/Navbar/index.tsx | 11 + .../DefaultNavbarItem/Desktop/index.tsx | 61 + .../DefaultNavbarItem/Mobile/index.tsx | 51 + .../NavbarItem/DefaultNavbarItem/index.tsx | 37 + .../DefaultNavbarItem/styles.module.css | 20 + docs/src/theme/ResponseSamples/index.tsx | 47 + examples/jupyter/evaluations_with_sdk.ipynb | 14 +- .../custom_workflows/rag-docs-qa/README.md | 2 +- ...nerate_test_set.py => generate_testset.py} | 4 +- .../rag-docs-qa/{test_set.csv => testset.csv} | 20 +- .../{test_set_small.csv => testset_small.csv} | 0 .../docker-compose/ee/docker-compose.dev.yml | 10 +- .../docker-compose/oss/docker-compose.dev.yml | 6 +- sdk/README.md | 2 +- sdk/agenta/__init__.py | 8 +- sdk/agenta/client/__init__.py | 8 +- sdk/agenta/client/backend/__init__.py | 8 +- .../backend/human_evaluations/client.py | 4 +- .../backend/human_evaluations/raw_client.py | 4 +- sdk/agenta/client/backend/testsets/client.py | 36 +- .../client/backend/testsets/raw_client.py | 60 +- sdk/agenta/client/backend/types/__init__.py | 8 +- ...response.py => testset_output_response.py} | 2 +- ...response.py => testset_simple_response.py} | 2 +- sdk/agenta/sdk/__init__.py | 54 +- sdk/agenta/sdk/agenta_init.py | 8 +- sdk/agenta/sdk/context/serving.py | 28 +- sdk/agenta/sdk/context/tracing.py | 62 +- .../agenta/sdk/contexts}/__init__.py | 0 sdk/agenta/sdk/contexts/routing.py | 38 + sdk/agenta/sdk/contexts/running.py | 57 + sdk/agenta/sdk/contexts/tracing.py | 86 + sdk/agenta/sdk/decorators/routing.py | 282 + sdk/agenta/sdk/decorators/running.py | 629 +- sdk/agenta/sdk/decorators/serving.py | 23 +- sdk/agenta/sdk/decorators/tracing.py | 307 +- sdk/agenta/sdk/engines/__init__.py | 0 sdk/agenta/sdk/engines/running/__init__.py | 0 .../running}/registry.py | 0 .../agenta/sdk/engines/running}/utils.py | 4 +- sdk/agenta/sdk/engines/tracing/__init__.py | 1 + sdk/agenta/sdk/engines/tracing/attributes.py | 185 + sdk/agenta/sdk/engines/tracing/conventions.py | 49 + sdk/agenta/sdk/engines/tracing/exporters.py | 130 + sdk/agenta/sdk/engines/tracing/inline.py | 1154 + sdk/agenta/sdk/engines/tracing/processors.py | 190 + sdk/agenta/sdk/engines/tracing/propagation.py | 102 + sdk/agenta/sdk/engines/tracing/spans.py | 136 + sdk/agenta/sdk/engines/tracing/tracing.py | 324 + sdk/agenta/sdk/litellm/mockllm.py | 11 +- sdk/agenta/sdk/litellm/mocks/__init__.py | 10 +- sdk/agenta/sdk/managers/config.py | 4 +- sdk/agenta/sdk/managers/evaluations.py | 0 sdk/agenta/sdk/managers/secrets.py | 104 +- sdk/agenta/sdk/managers/vault.py | 6 +- .../vault.cpython-310.pyc.281472971036736 | Bin 3645 -> 0 bytes sdk/agenta/sdk/middleware/adapt.py | 253 - sdk/agenta/sdk/middleware/auth.py | 176 - sdk/agenta/sdk/middleware/base.py | 40 - sdk/agenta/sdk/middleware/flags.py | 40 - sdk/agenta/sdk/middlewares/__init__.py | 0 .../sdk/middlewares/routing/__init__.py | 0 sdk/agenta/sdk/middlewares/routing/auth.py | 263 + sdk/agenta/sdk/middlewares/routing/cors.py | 30 + sdk/agenta/sdk/middlewares/routing/otel.py | 29 + .../sdk/middlewares/running/__init__.py | 0 .../sdk/middlewares/running/normalizer.py | 318 + .../sdk/middlewares/running/resolver.py | 154 + sdk/agenta/sdk/middlewares/running/vault.py | 137 + sdk/agenta/sdk/models/__init__.py | 0 sdk/agenta/sdk/models/shared.py | 167 + sdk/agenta/sdk/models/tracing.py | 202 + sdk/agenta/sdk/models/workflows.py | 237 + sdk/agenta/sdk/tracing/exporters.py | 88 +- sdk/agenta/sdk/tracing/processors.py | 97 + sdk/agenta/sdk/tracing/propagation.py | 4 +- sdk/agenta/sdk/tracing/spans.py | 4 + sdk/agenta/sdk/tracing/tracing.py | 26 +- sdk/agenta/sdk/types.py | 192 +- sdk/agenta/sdk/utils/logging.py | 96 +- sdk/agenta/sdk/workflows/builtin.py | 600 + sdk/agenta/sdk/workflows/configurations.py | 22 + .../agenta/sdk}/workflows/errors.py | 150 +- sdk/agenta/sdk/workflows/handlers.py | 1779 ++ sdk/agenta/sdk/workflows/interfaces.py | 948 + sdk/agenta/sdk/workflows/sandbox.py | 118 + sdk/agenta/sdk/workflows/types.py | 472 - sdk/agenta/sdk/workflows/utils.py | 308 +- sdk/poetry.lock | 743 +- sdk/pyproject.toml | 8 +- .../legacy/annotations/agenta_instrumented.py | 8 +- sdk/tests/legacy/baggage/config.toml | 2 +- .../legacy/custom_workflows/chat_custom.py | 8 +- .../custom_workflows/completion_custom.py | 8 +- .../custom_workflows/exception_workflow.py | 8 +- .../custom_workflows/noinstrument_custom.py | 8 +- .../legacy/debugging/simple-app/config.toml | 2 +- sdk/tests/legacy/management/conftest.py | 2 +- sdk/tests/legacy/pytest.ini | 2 +- sdk/tests/legacy/run_sdk_cli_tests.sh | 2 +- sdk/tests/manual/workflows/interface.py | 32 +- sdk/tests/manual/workflows/sdk_test.py | 7 +- sdk/tests/unit/TESTING_PATTERNS.md | 6 +- sdk/tests/unit/test_tracing_decorators.py | 4 +- services/chat/ee/docker/Dockerfile.dev | 18 + services/chat/ee/docker/Dockerfile.gh | 4 +- services/chat/oss/docker/Dockerfile.dev | 2 +- services/chat/oss/docker/Dockerfile.gh | 4 +- services/chat/requirements.txt | 3 +- services/completion/ee/docker/Dockerfile.dev | 18 + services/completion/ee/docker/Dockerfile.gh | 4 +- services/completion/oss/docker/Dockerfile.dev | 2 +- services/completion/oss/docker/Dockerfile.gh | 4 +- services/completion/requirements.txt | 3 +- web/ee/package.json | 2 +- .../assets/AutoEvalRunSkeleton.tsx | 6 +- .../AutoEvalRun/assets/EvalNameTag.tsx | 174 +- .../AutoEvalRun/assets/types.ts | 2 +- .../components/EvalRunCompareMenu/index.tsx | 9 +- .../FocusDrawerContent/assets/RunOutput.tsx | 130 +- .../assets/RunTraceHeader.tsx | 271 +- .../assets/FocusDrawerContent/index.tsx | 1815 +- .../assets/FocusDrawerContent/lib/helpers.ts | 401 + .../assets/FocusDrawerHeader/index.tsx | 127 +- .../components/EvalRunHeader/index.tsx | 283 +- .../assets/PromptConfigCard.tsx | 19 - .../EvalRunPromptConfigViewer/index.tsx | 27 - .../components/EvalRunScoreTable/index.tsx | 328 +- .../index.tsx | 6 +- .../assets/EvalRunTestcaseViewerSkeleton.tsx} | 8 +- .../index.tsx | 12 +- .../EvaluatorMetricsChart/TimeSeriesChart.tsx | 999 + .../EvaluatorMetricsChart/index.tsx | 185 +- .../components/shared/BarChartPlaceholder.tsx | 31 + .../components/shared/PlaceholderOverlay.tsx | 58 + .../shared/SpiderChartPlaceholder.tsx | 41 + .../EvalRunDetails/AutoEvalRun/index.tsx | 10 +- .../components/EvalRunBatchActions.tsx | 4 +- .../EvalRunScenarioCardTitle/index.tsx | 2 +- .../OnlineEvalRun/OnlineUrlSync.tsx | 56 + .../components/ConfigurationViewer/index.tsx | 577 + .../components/TracesViewer/index.tsx | 44 + .../EvalRunDetails/OnlineEvalRun/index.tsx | 57 + .../src/components/EvalRunDetails/UrlSync.tsx | 93 +- .../assets/renderChatMessages.tsx | 45 + .../EvalRunOverviewViewer/index.tsx | 1125 +- .../EvalRunScenarioNavigator/index.tsx | 24 +- .../assets/constants.ts | 8 +- .../EvalRunScenariosViewSelector/index.tsx | 44 +- .../assets/SaveDataModalContent.tsx | 2 +- .../components/SaveDataModal/index.tsx | 2 +- .../ComparisonScenarioTable.tsx | 8 +- .../ScenarioTable.tsx | 238 +- .../assets/ActionCell.tsx | 19 +- .../assets/CellComponents.tsx | 776 +- .../CollapsedAnnotationValueCell.tsx | 46 +- .../MetricCell/CollapsedMetricValueCell.tsx | 108 +- .../assets/MetricCell/MetricCell.tsx | 278 +- .../assets/MetricCell/helpers.ts | 299 + .../assets/MetricCell/types.ts | 1 + .../assets/ScenarioTraceSummary.tsx | 307 + .../assets/TimestampCell.tsx | 125 + .../assets/atoms/evaluatorFailures.ts | 70 + .../assets/constants.ts | 4 +- .../assets/dataSourceBuilder.ts | 207 +- .../assets/evaluatorNameUtils.ts | 86 + .../assets/evaluatorSchemaUtils.ts | 159 + .../VirtualizedScenarioTable/assets/utils.tsx | 451 +- .../useExpandableComparisonDataSource.tsx | 222 +- .../hooks/useTableDataSource.ts | 282 +- .../VirtualizedScenarioTable/types.ts | 6 + .../hooks/useCachedScenarioSteps.ts | 66 + .../hooks/useMetricStepError.ts | 120 + .../src/components/EvalRunDetails/index.tsx | 351 +- .../EvalRunDetails/state/evalType.ts | 11 +- .../EvalRunDetails/state/urlState.ts | 58 +- .../ABTestingEvaluationTable.tsx | 2 +- .../SingleModelEvaluationTable.tsx | 4 +- .../SelectEvaluatorModalContent/index.tsx | 29 +- .../HumanEvaluationModal.tsx | 8 +- .../HumanEvaluations/AbTestingEvaluation.tsx | 6 +- .../assets/EvaluationStatusCell.tsx | 54 +- .../MetricDetailsPopover/assets/utils.ts | 49 +- .../assets/MetricDetailsPopover/index.tsx | 3 + .../assets/MetricDetailsPopover/types.ts | 2 +- .../SingleModelEvaluationHeader/index.tsx | 2 +- .../assets/TableDropdownMenu/index.tsx | 2 +- .../HumanEvaluations/assets/utils.tsx | 50 +- .../SaveTestsetModal/SaveTestsetModal.tsx | 4 +- .../pages/evaluations/EvaluationsView.tsx | 79 +- .../Components/AdvancedSettings.tsx | 2 +- .../Components/NewEvaluationModalContent.tsx | 10 +- .../Components/SelectTestsetSection.tsx | 30 +- .../pages/evaluations/NewEvaluation/index.tsx | 12 +- .../pages/evaluations/NewEvaluation/types.ts | 4 +- .../autoEvaluation/AutoEvaluation.tsx | 14 +- .../ConfigureEvaluator/AdvancedSettings.tsx | 140 +- .../ConfigureEvaluator/DebugSection.tsx | 210 +- .../ConfigureEvaluator/DynamicFormField.tsx | 14 + .../EvaluatorTestcaseModal.tsx | 16 +- .../JSONSchema/JSONSchemaEditor.tsx | 449 + .../JSONSchema/JSONSchemaGenerator.ts | 152 + .../ConfigureEvaluator/JSONSchema/index.ts | 3 + .../ConfigureEvaluator/JSONSchema/types.ts | 38 + .../ConfigureEvaluator/index.tsx | 147 +- .../EvaluatorsModal/NewEvaluator/index.tsx | 2 + .../cellRenderers/cellRenderers.tsx | 129 +- .../customEvaluation/CustomEvaluation.tsx | 307 + .../evaluationCompare/EvaluationCompare.tsx | 4 +- .../onlineEvaluation/OnlineEvaluation.tsx | 746 + .../OnlineEvaluationDrawer.tsx | 663 + .../onlineEvaluation/assets/helpers.ts | 126 + .../onlineEvaluation/assets/state.ts | 72 + .../onlineEvaluation/assets/styles.ts | 43 + .../components/EvaluatorDetailsPreview.tsx | 172 + .../components/EvaluatorTypeTag.tsx | 27 + .../components/FiltersPreview.tsx | 161 + .../components/OnlineEvaluationRowActions.tsx | 165 + .../components/PromptPreview.tsx | 79 + .../components/QueryFiltersCell.tsx | 109 + .../components/QueryFiltersSummaryCard.tsx | 93 + .../components/ReadOnlyBox.tsx | 19 + .../components/SamplingRateControl.tsx | 66 + .../evaluations/onlineEvaluation/constants.ts | 45 + .../hooks/useEvaluatorDetails.ts | 109 + .../hooks/useEvaluatorSelection.tsx | 195 + .../hooks/useEvaluatorTypeFromConfigs.ts | 125 + .../hooks/useEvaluatorTypeMeta.ts | 53 + .../hooks/useOnlineEvaluations.ts | 65 + .../evaluations/onlineEvaluation/types.ts | 38 + .../utils/evaluatorDetails.ts | 783 + web/ee/src/contexts/RunIdContext.tsx | 2 +- web/ee/src/lib/helpers/evaluate.ts | 22 +- web/ee/src/lib/helpers/traceUtils.ts | 35 +- .../lib/hooks/useEvalScenarioQueue/index.ts | 1 - .../assets/atoms/bulkFetch.ts | 26 +- .../assets/atoms/progress.ts | 67 +- .../assets/atoms/runScopedAtoms.ts | 1 + .../assets/atoms/runScopedMetrics.ts | 82 +- .../assets/atoms/runScopedScenarios.ts | 78 +- .../assets/atoms/utils.ts | 2 +- .../useEvaluationRunData/assets/constants.ts | 1 + .../assets/helpers/buildRunIndex.ts | 58 +- .../helpers/fetchScenarioListViaWorker.ts | 1 + .../assets/helpers/workerContext/types.ts | 4 +- .../lib/hooks/useEvaluationRunData/index.ts | 80 +- .../useEvaluationRunData/refreshLiveRun.ts | 92 + .../lib/hooks/useEvaluationRunData/types.ts | 5 +- .../useEvalRunScenarioData.tsx | 24 +- .../useScenarioStepSnapshot.ts | 82 + .../useEvaluationRunScenarioSteps/types.ts | 4 +- web/ee/src/lib/hooks/useEvaluations.ts | 60 +- .../lib/hooks/useInvocationResult/index.ts | 148 +- .../usePreviewEvaluations/assets/utils.ts | 138 +- .../lib/hooks/usePreviewEvaluations/index.ts | 96 +- .../lib/hooks/usePreviewEvaluations/types.ts | 4 +- web/ee/src/lib/metricColumnFactory.tsx | 9 +- web/ee/src/lib/metricUtils.ts | 31 +- .../evalRunner/fetchRunMetrics.worker.ts | 16 +- .../lib/workers/evalRunner/pureEnrichment.ts | 57 +- .../workers/evalRunner/runMetricsWorker.ts | 1 + .../workers/evalRunner/scenarioListWorker.ts | 77 +- .../src/lib/workers/evalRunner/workerFetch.ts | 102 +- .../results/[evaluation_id]/index.tsx | 11 +- .../results/[evaluation_id]/index.tsx | 11 +- .../src/services/evaluationRuns/api/index.ts | 12 +- .../src/services/evaluationRuns/api/types.ts | 8 +- web/ee/src/services/evaluations/api/index.ts | 4 +- web/ee/src/services/onlineEvaluations/api.ts | 188 + web/ee/src/services/runMetrics/api/index.ts | 13 +- .../tests/6-auto-evaluation/assets/README.md | 2 +- web/ee/tests/6-auto-evaluation/index.ts | 2 +- web/ee/tests/9-human-annotation/index.ts | 2 +- web/ee/tests/9-human-annotation/tests.ts | 10 +- web/oss/package.json | 2 +- .../plugins/code/utils/validationUtils.ts | 12 +- .../EditorViews/SimpleSharedEditor/index.tsx | 7 +- .../EditorViews/SimpleSharedEditor/types.ts | 1 + .../Filters/EditColumns/assets/helper.ts | 2 +- web/oss/src/components/Filters/Filters.tsx | 146 +- .../components/Layout/assets/Breadcrumbs.tsx | 2 +- .../Drawers/TraceDrawer/TraceDrawer.tsx | 37 +- .../index.tsx | 4 +- .../assets/LoadTestsetModalContent/index.tsx | 4 +- .../assets/LoadTestsetModalFooter/index.tsx | 8 +- .../LoadTestsetModal/assets/testsetCsvData.ts | 4 +- .../Modals/LoadTestsetModal/assets/types.ts | 6 +- .../hooks/useInputsVsColumns.ts | 6 +- .../hooks/useTestsetInputsAnalysis.ts | 4 +- .../Modals/LoadTestsetModal/index.tsx | 12 +- .../GenerationComparisonHeader/index.tsx | 4 +- .../assets/GenerationCompletion/index.tsx | 2 +- .../assets/PromptMessageContentOptions.tsx | 2 +- .../Components/ToolCallView/index.tsx | 2 +- .../adapters/TurnMessageHeaderOptions.tsx | 2 +- .../GenerationFocusDrawerHeader/index.tsx | 2 +- .../Sidebar/hooks/useSidebarConfig/index.tsx | 2 +- .../EditRowModal.tsx | 0 .../InsertTestsetNameModal.tsx | 4 +- .../TableCellsRenderer.tsx | 0 .../TableHeaderComponent.tsx | 0 .../TestsetTable.tsx | 54 +- .../assets/DeploymentDrawerTitle/index.tsx | 15 +- .../assets/VariantDrawerTitle/index.tsx | 10 +- .../Drawers/VariantDrawer/assets/types.d.ts | 4 + .../Drawers/VariantDrawer/index.tsx | 19 +- .../modals/SetupTracingModal/index.tsx | 2 +- .../assets/ObservabilityHeader/index.tsx | 4 +- .../assets/filters/referenceUtils.ts | 125 + .../assets/getObservabilityColumns.tsx | 12 +- .../assets/CreateNewMetric/index.tsx | 6 +- .../assets/CreateEvaluator/index.tsx | 11 +- .../AnnotateDrawer/assets/transforms.ts | 4 +- .../drawer/TestsetDrawer/TestsetDrawer.tsx | 36 +- .../drawer/TraceContent/index.tsx | 4 +- .../drawer/TraceHeader/index.tsx | 4 +- .../pages/testset/modals/CreateTestset.tsx | 12 +- .../testset/modals/CreateTestsetFromApi.tsx | 8 +- .../modals/CreateTestsetFromScratch.tsx | 26 +- .../pages/testset/modals/UploadTestset.tsx | 14 +- web/oss/src/lib/Types.ts | 16 +- web/oss/src/lib/enums.ts | 1 + .../src/lib/hooks/useAppVariantRevisions.ts | 11 +- web/oss/src/lib/hooks/useEvaluators/index.ts | 5 +- web/oss/src/lib/hooks/useEvaluators/types.ts | 27 +- .../src/lib/shared/variant/valueHelpers.ts | 16 +- .../testsets/[testset_id]/index.tsx | 2 +- .../p/[project_id]/testsets/index.tsx | 22 +- web/oss/src/services/evaluators/index.ts | 14 + web/oss/src/services/onlineEvaluations/api.ts | 20 + web/oss/src/services/queries/api/index.ts | 52 + web/oss/src/services/queries/api/types.ts | 42 + web/oss/src/services/testsets/api/index.ts | 8 +- web/oss/src/state/evaluators/atoms.ts | 93 +- .../state/newObservability/atoms/controls.ts | 1 - .../state/newObservability/atoms/queries.ts | 116 +- web/oss/src/state/newPlayground/index.ts | 2 +- web/oss/src/state/newPlayground/types.ts | 2 +- .../src/state/projectVariantConfig/atoms.ts | 3 +- web/oss/src/state/queries/atoms/fetcher.ts | 124 + web/oss/src/state/queries/index.ts | 1 + web/oss/src/state/testset/atoms/fetcher.ts | 2 +- web/oss/src/state/testset/hooks/useTestset.ts | 8 +- web/oss/src/state/testset/index.tsx | 201 +- web/oss/src/styles/human-evals.css | 16 +- web/oss/tests/2-app/assets/README.md | 2 +- web/oss/tests/3-playground/tests.spec.ts | 8 +- web/oss/tests/5-testsset/index.ts | 8 +- .../datalayer/utils/shared-test-setup.ts | 2 +- web/package.json | 2 +- web/tests/README.md | 2 +- web/tests/playwright/config/testTags.ts | 2 +- web/tests/playwright/config/types.d.ts | 4 +- .../base.fixture/apiHelpers/README.md | 2 +- web/tsconfig.tsbuildinfo | 2 +- 810 files changed, 55808 insertions(+), 177752 deletions(-) delete mode 100644 api/ee/tests/manual/evaluations/sdk/client.py delete mode 100644 api/ee/tests/manual/evaluations/sdk/definitions.py delete mode 100644 api/ee/tests/manual/evaluations/sdk/entities.py delete mode 100644 api/ee/tests/manual/evaluations/sdk/evaluate.py delete mode 100644 api/ee/tests/manual/evaluations/sdk/evaluations.py delete mode 100644 api/ee/tests/manual/evaluations/sdk/loop.py delete mode 100644 api/ee/tests/manual/evaluations/sdk/mock_entities.py delete mode 100644 api/ee/tests/manual/evaluations/sdk/services.py delete mode 100644 api/oss/src/core/services/registry.py delete mode 100644 api/oss/src/core/services/v0.py delete mode 100644 api/oss/src/core/workflows/helpers.py delete mode 100644 api/oss/src/core/workflows/status.py delete mode 100644 api/oss/tests/manual/workflows/interface.py delete mode 100644 docs/docs/reference/api/add-trace.api.mdx create mode 100644 docs/docs/reference/api/agenta-api.info.mdx delete mode 100644 docs/docs/reference/api/agenta-backend.info.mdx create mode 100644 docs/docs/reference/api/archive-evaluator-revision.api.mdx create mode 100644 docs/docs/reference/api/archive-evaluator-variant.api.mdx create mode 100644 docs/docs/reference/api/archive-query-revision.api.mdx create mode 100644 docs/docs/reference/api/archive-query.api.mdx create mode 100644 docs/docs/reference/api/archive-simple-evaluator.api.mdx create mode 100644 docs/docs/reference/api/archive-simple-query.api.mdx create mode 100644 docs/docs/reference/api/archive-simple-testset.api.mdx create mode 100644 docs/docs/reference/api/archive-testset-revision.api.mdx create mode 100644 docs/docs/reference/api/archive-testset-variant.api.mdx create mode 100644 docs/docs/reference/api/close-evaluation-preview-simple-evaluations-evaluation-id-close-post.api.mdx create mode 100644 docs/docs/reference/api/close-run-preview-evaluations-runs-run-id-close-post.api.mdx create mode 100644 docs/docs/reference/api/close-runs-preview-evaluations-runs-close-post.api.mdx create mode 100644 docs/docs/reference/api/commit-evaluator-revision.api.mdx create mode 100644 docs/docs/reference/api/commit-query-revision.api.mdx create mode 100644 docs/docs/reference/api/commit-testset-revision.api.mdx delete mode 100644 docs/docs/reference/api/commit-workflow-revision-by-variant-id.api.mdx create mode 100644 docs/docs/reference/api/create-evaluation-preview-simple-evaluations-post.api.mdx delete mode 100644 docs/docs/reference/api/create-evaluation.api.mdx create mode 100644 docs/docs/reference/api/create-evaluator-revision.api.mdx create mode 100644 docs/docs/reference/api/create-evaluator-variant.api.mdx create mode 100644 docs/docs/reference/api/create-invocation.api.mdx create mode 100644 docs/docs/reference/api/create-legacy-application.api.mdx create mode 100644 docs/docs/reference/api/create-metrics-preview-evaluations-metrics-post.api.mdx create mode 100644 docs/docs/reference/api/create-query-revision.api.mdx create mode 100644 docs/docs/reference/api/create-query.api.mdx create mode 100644 docs/docs/reference/api/create-queues-preview-evaluations-queues-post.api.mdx create mode 100644 docs/docs/reference/api/create-results-preview-evaluations-results-post.api.mdx create mode 100644 docs/docs/reference/api/create-runs-preview-evaluations-runs-post.api.mdx create mode 100644 docs/docs/reference/api/create-scenarios-preview-evaluations-scenarios-post.api.mdx create mode 100644 docs/docs/reference/api/create-simple-evaluator.api.mdx create mode 100644 docs/docs/reference/api/create-simple-query.api.mdx create mode 100644 docs/docs/reference/api/create-simple-testset-from-file.api.mdx create mode 100644 docs/docs/reference/api/create-simple-testset.api.mdx delete mode 100644 docs/docs/reference/api/create-testset-from-file.api.mdx create mode 100644 docs/docs/reference/api/create-testset-revision.api.mdx create mode 100644 docs/docs/reference/api/create-testset-variant.api.mdx create mode 100644 docs/docs/reference/api/create-trace.api.mdx create mode 100644 docs/docs/reference/api/delete-annotation-by-trace-id.api.mdx create mode 100644 docs/docs/reference/api/delete-evaluation-preview-simple-evaluations-evaluation-id-delete.api.mdx delete mode 100644 docs/docs/reference/api/delete-evaluations.api.mdx create mode 100644 docs/docs/reference/api/delete-invocation-by-trace-id.api.mdx create mode 100644 docs/docs/reference/api/delete-invocation.api.mdx create mode 100644 docs/docs/reference/api/delete-legacy-evaluations.api.mdx create mode 100644 docs/docs/reference/api/delete-metrics-preview-evaluations-metrics-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-queue-preview-evaluations-queues-queue-id-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-queues-preview-evaluations-queues-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-result-preview-evaluations-results-result-id-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-results-preview-evaluations-results-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-run-preview-evaluations-runs-run-id-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-runs-preview-evaluations-runs-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-scenario-preview-evaluations-scenarios-scenario-id-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-scenarios-preview-evaluations-scenarios-delete.api.mdx create mode 100644 docs/docs/reference/api/delete-trace.api.mdx create mode 100644 docs/docs/reference/api/edit-annotation-by-trace-id.api.mdx create mode 100644 docs/docs/reference/api/edit-annotation.api.mdx create mode 100644 docs/docs/reference/api/edit-evaluation-preview-simple-evaluations-evaluation-id-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-evaluator-revision.api.mdx create mode 100644 docs/docs/reference/api/edit-evaluator-variant.api.mdx create mode 100644 docs/docs/reference/api/edit-invocation-by-trace-id.api.mdx create mode 100644 docs/docs/reference/api/edit-invocation.api.mdx create mode 100644 docs/docs/reference/api/edit-legacy-application.api.mdx create mode 100644 docs/docs/reference/api/edit-metrics-preview-evaluations-metrics-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-query-revision.api.mdx create mode 100644 docs/docs/reference/api/edit-query.api.mdx create mode 100644 docs/docs/reference/api/edit-queue-preview-evaluations-queues-queue-id-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-queues-preview-evaluations-queues-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-result-preview-evaluations-results-result-id-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-results-preview-evaluations-results-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-run-preview-evaluations-runs-run-id-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-runs-preview-evaluations-runs-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-scenario-preview-evaluations-scenarios-scenario-id-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-scenarios-preview-evaluations-scenarios-patch.api.mdx create mode 100644 docs/docs/reference/api/edit-simple-evaluator.api.mdx create mode 100644 docs/docs/reference/api/edit-simple-query.api.mdx create mode 100644 docs/docs/reference/api/edit-simple-testset-from-file.api.mdx create mode 100644 docs/docs/reference/api/edit-simple-testset.api.mdx create mode 100644 docs/docs/reference/api/edit-testset-revision.api.mdx create mode 100644 docs/docs/reference/api/edit-testset-variant.api.mdx create mode 100644 docs/docs/reference/api/fetch-analytics.api.mdx create mode 100644 docs/docs/reference/api/fetch-annotation-by-trace-id.api.mdx create mode 100644 docs/docs/reference/api/fetch-evaluation-preview-simple-evaluations-evaluation-id-get.api.mdx delete mode 100644 docs/docs/reference/api/fetch-evaluation-results.api.mdx delete mode 100644 docs/docs/reference/api/fetch-evaluation-scenarios-evaluations-evaluation-scenarios-comparison-results-get.api.mdx delete mode 100644 docs/docs/reference/api/fetch-evaluation-scenarios.api.mdx delete mode 100644 docs/docs/reference/api/fetch-evaluation.api.mdx create mode 100644 docs/docs/reference/api/fetch-evaluator-revision.api.mdx create mode 100644 docs/docs/reference/api/fetch-evaluator-variant.api.mdx create mode 100644 docs/docs/reference/api/fetch-invocation-by-trace-id.api.mdx create mode 100644 docs/docs/reference/api/fetch-invocation.api.mdx create mode 100644 docs/docs/reference/api/fetch-legacy-application.api.mdx create mode 100644 docs/docs/reference/api/fetch-legacy-evaluation-results.api.mdx create mode 100644 docs/docs/reference/api/fetch-legacy-evaluation-scenarios-comparison-results.api.mdx create mode 100644 docs/docs/reference/api/fetch-legacy-evaluation-scenarios.api.mdx create mode 100644 docs/docs/reference/api/fetch-legacy-evaluation.api.mdx create mode 100644 docs/docs/reference/api/fetch-legacy-evaluations.api.mdx delete mode 100644 docs/docs/reference/api/fetch-list-evaluations-evaluations-get.api.mdx create mode 100644 docs/docs/reference/api/fetch-new-analytics.api.mdx create mode 100644 docs/docs/reference/api/fetch-query-revision.api.mdx create mode 100644 docs/docs/reference/api/fetch-query.api.mdx create mode 100644 docs/docs/reference/api/fetch-queue-preview-evaluations-queues-queue-id-get.api.mdx create mode 100644 docs/docs/reference/api/fetch-queue-scenarios-preview-evaluations-queues-queue-id-scenarios-get.api.mdx create mode 100644 docs/docs/reference/api/fetch-result-preview-evaluations-results-result-id-get.api.mdx create mode 100644 docs/docs/reference/api/fetch-run-preview-evaluations-runs-run-id-get.api.mdx create mode 100644 docs/docs/reference/api/fetch-scenario-preview-evaluations-scenarios-scenario-id-get.api.mdx create mode 100644 docs/docs/reference/api/fetch-simple-evaluator.api.mdx create mode 100644 docs/docs/reference/api/fetch-simple-query.api.mdx create mode 100644 docs/docs/reference/api/fetch-simple-testset-to-file.api.mdx create mode 100644 docs/docs/reference/api/fetch-simple-testset.api.mdx create mode 100644 docs/docs/reference/api/fetch-testcase-preview-testcases-testcase-id-get.api.mdx delete mode 100644 docs/docs/reference/api/fetch-testcase.api.mdx create mode 100644 docs/docs/reference/api/fetch-testset-revision.api.mdx delete mode 100644 docs/docs/reference/api/fetch-testset-to-file.api.mdx create mode 100644 docs/docs/reference/api/fetch-testset-variant.api.mdx create mode 100644 docs/docs/reference/api/fork-evaluator-variant.api.mdx delete mode 100644 docs/docs/reference/api/fork-workflow-variant-by-revision-id.api.mdx create mode 100644 docs/docs/reference/api/inspect-workflow.api.mdx create mode 100644 docs/docs/reference/api/invoke-workflow.api.mdx delete mode 100644 docs/docs/reference/api/list-evaluators.api.mdx delete mode 100644 docs/docs/reference/api/list-testsets.api.mdx delete mode 100644 docs/docs/reference/api/list-workflow-revisions.api.mdx delete mode 100644 docs/docs/reference/api/list-workflow-variants.api.mdx delete mode 100644 docs/docs/reference/api/list-workflows.api.mdx create mode 100644 docs/docs/reference/api/log-evaluator-revisions.api.mdx create mode 100644 docs/docs/reference/api/log-query-revisions.api.mdx create mode 100644 docs/docs/reference/api/log-testset-revisions.api.mdx create mode 100644 docs/docs/reference/api/open-evaluation-preview-simple-evaluations-evaluation-id-open-post.api.mdx create mode 100644 docs/docs/reference/api/open-run-preview-evaluations-runs-run-id-open-post.api.mdx create mode 100644 docs/docs/reference/api/open-runs-preview-evaluations-runs-open-post.api.mdx create mode 100644 docs/docs/reference/api/query-evaluations-preview-simple-evaluations-query-post.api.mdx create mode 100644 docs/docs/reference/api/query-evaluator-revisions.api.mdx create mode 100644 docs/docs/reference/api/query-evaluator-variants.api.mdx create mode 100644 docs/docs/reference/api/query-invocations.api.mdx create mode 100644 docs/docs/reference/api/query-metrics-preview-evaluations-metrics-query-post.api.mdx create mode 100644 docs/docs/reference/api/query-queries.api.mdx create mode 100644 docs/docs/reference/api/query-query-revisions.api.mdx create mode 100644 docs/docs/reference/api/query-queues-preview-evaluations-queues-query-post.api.mdx create mode 100644 docs/docs/reference/api/query-results-preview-evaluations-results-query-post.api.mdx create mode 100644 docs/docs/reference/api/query-runs-preview-evaluations-runs-query-post.api.mdx create mode 100644 docs/docs/reference/api/query-scenarios-preview-evaluations-scenarios-query-post.api.mdx create mode 100644 docs/docs/reference/api/query-simple-evaluators.api.mdx create mode 100644 docs/docs/reference/api/query-simple-queries.api.mdx create mode 100644 docs/docs/reference/api/query-simple-testsets.api.mdx delete mode 100644 docs/docs/reference/api/query-spans.api.mdx create mode 100644 docs/docs/reference/api/query-testcases-preview-testcases-query-post.api.mdx create mode 100644 docs/docs/reference/api/query-testset-revisions.api.mdx create mode 100644 docs/docs/reference/api/query-testset-variants.api.mdx create mode 100644 docs/docs/reference/api/refresh-metrics-preview-evaluations-metrics-refresh-post.api.mdx create mode 100644 docs/docs/reference/api/refresh-runs-admin-evaluations-runs-refresh-post.api.mdx delete mode 100644 docs/docs/reference/api/remove-trace.api.mdx create mode 100644 docs/docs/reference/api/retrieve-application-revision.api.mdx create mode 100644 docs/docs/reference/api/retrieve-evaluator-revision.api.mdx create mode 100644 docs/docs/reference/api/retrieve-query-revision.api.mdx create mode 100644 docs/docs/reference/api/retrieve-testset-revision.api.mdx create mode 100644 docs/docs/reference/api/retrieve-workflow-revision.api.mdx create mode 100644 docs/docs/reference/api/start-evaluation-preview-simple-evaluations-evaluation-id-start-post.api.mdx create mode 100644 docs/docs/reference/api/start-evaluation.api.mdx create mode 100644 docs/docs/reference/api/stop-evaluation-preview-simple-evaluations-evaluation-id-stop-post.api.mdx create mode 100644 docs/docs/reference/api/transfer-simple-evaluator.api.mdx create mode 100644 docs/docs/reference/api/transfer-simple-testset.api.mdx create mode 100644 docs/docs/reference/api/unarchive-evaluator-revision.api.mdx create mode 100644 docs/docs/reference/api/unarchive-evaluator-variant.api.mdx create mode 100644 docs/docs/reference/api/unarchive-query-revision.api.mdx create mode 100644 docs/docs/reference/api/unarchive-query.api.mdx create mode 100644 docs/docs/reference/api/unarchive-simple-evaluator.api.mdx create mode 100644 docs/docs/reference/api/unarchive-simple-query.api.mdx create mode 100644 docs/docs/reference/api/unarchive-simple-testset.api.mdx create mode 100644 docs/docs/reference/api/unarchive-testset-revision.api.mdx create mode 100644 docs/docs/reference/api/unarchive-testset-variant.api.mdx delete mode 100644 docs/docs/reference/api/update-testset-from-file.api.mdx rename docs/docs/tutorials/cookbooks/{AI-powered-code-reviews.mdx => _AI-powered-code-reviews.mdx} (100%) rename docs/docs/tutorials/cookbooks/{RAG-QA-docs.mdx => _RAG-QA-docs.mdx} (100%) rename docs/docs/tutorials/sdk/{evaluate-with-SDK.mdx => _evaluate-with-SDK.mdx} (100%) create mode 100644 docs/src/icons/library.tsx create mode 100644 docs/src/theme/Navbar/Content/index.tsx create mode 100644 docs/src/theme/Navbar/Content/styles.module.css create mode 100644 docs/src/theme/Navbar/Layout/index.tsx create mode 100644 docs/src/theme/Navbar/Layout/styles.module.css create mode 100644 docs/src/theme/Navbar/index.tsx create mode 100644 docs/src/theme/NavbarItem/DefaultNavbarItem/Desktop/index.tsx create mode 100644 docs/src/theme/NavbarItem/DefaultNavbarItem/Mobile/index.tsx create mode 100644 docs/src/theme/NavbarItem/DefaultNavbarItem/index.tsx create mode 100644 docs/src/theme/NavbarItem/DefaultNavbarItem/styles.module.css create mode 100644 docs/src/theme/ResponseSamples/index.tsx rename examples/python/custom_workflows/rag-docs-qa/{generate_test_set.py => generate_testset.py} (97%) rename examples/python/custom_workflows/rag-docs-qa/{test_set.csv => testset.csv} (97%) rename examples/python/custom_workflows/rag-docs-qa/{test_set_small.csv => testset_small.csv} (100%) rename sdk/agenta/client/backend/types/{test_set_output_response.py => testset_output_response.py} (93%) rename sdk/agenta/client/backend/types/{test_set_simple_response.py => testset_simple_response.py} (91%) rename {api/oss/src/core/services => sdk/agenta/sdk/contexts}/__init__.py (100%) create mode 100644 sdk/agenta/sdk/contexts/routing.py create mode 100644 sdk/agenta/sdk/contexts/running.py create mode 100644 sdk/agenta/sdk/contexts/tracing.py create mode 100644 sdk/agenta/sdk/decorators/routing.py create mode 100644 sdk/agenta/sdk/engines/__init__.py create mode 100644 sdk/agenta/sdk/engines/running/__init__.py rename sdk/agenta/sdk/{workflows => engines/running}/registry.py (100%) rename {api/oss/src/core/services => sdk/agenta/sdk/engines/running}/utils.py (68%) create mode 100644 sdk/agenta/sdk/engines/tracing/__init__.py create mode 100644 sdk/agenta/sdk/engines/tracing/attributes.py create mode 100644 sdk/agenta/sdk/engines/tracing/conventions.py create mode 100644 sdk/agenta/sdk/engines/tracing/exporters.py create mode 100644 sdk/agenta/sdk/engines/tracing/inline.py create mode 100644 sdk/agenta/sdk/engines/tracing/processors.py create mode 100644 sdk/agenta/sdk/engines/tracing/propagation.py create mode 100644 sdk/agenta/sdk/engines/tracing/spans.py create mode 100644 sdk/agenta/sdk/engines/tracing/tracing.py create mode 100644 sdk/agenta/sdk/managers/evaluations.py delete mode 100644 sdk/agenta/sdk/middleware/__pycache__/vault.cpython-310.pyc.281472971036736 delete mode 100644 sdk/agenta/sdk/middleware/adapt.py delete mode 100644 sdk/agenta/sdk/middleware/base.py delete mode 100644 sdk/agenta/sdk/middleware/flags.py create mode 100644 sdk/agenta/sdk/middlewares/__init__.py create mode 100644 sdk/agenta/sdk/middlewares/routing/__init__.py create mode 100644 sdk/agenta/sdk/middlewares/routing/auth.py create mode 100644 sdk/agenta/sdk/middlewares/routing/cors.py create mode 100644 sdk/agenta/sdk/middlewares/routing/otel.py create mode 100644 sdk/agenta/sdk/middlewares/running/__init__.py create mode 100644 sdk/agenta/sdk/middlewares/running/normalizer.py create mode 100644 sdk/agenta/sdk/middlewares/running/resolver.py create mode 100644 sdk/agenta/sdk/middlewares/running/vault.py create mode 100644 sdk/agenta/sdk/models/__init__.py create mode 100644 sdk/agenta/sdk/models/shared.py create mode 100644 sdk/agenta/sdk/models/tracing.py create mode 100644 sdk/agenta/sdk/models/workflows.py create mode 100644 sdk/agenta/sdk/workflows/builtin.py create mode 100644 sdk/agenta/sdk/workflows/configurations.py rename {api/oss/src/core => sdk/agenta/sdk}/workflows/errors.py (53%) create mode 100644 sdk/agenta/sdk/workflows/handlers.py create mode 100644 sdk/agenta/sdk/workflows/interfaces.py create mode 100644 sdk/agenta/sdk/workflows/sandbox.py delete mode 100644 sdk/agenta/sdk/workflows/types.py create mode 100644 services/chat/ee/docker/Dockerfile.dev create mode 100644 services/completion/ee/docker/Dockerfile.dev create mode 100644 web/ee/src/components/EvalRunDetails/AutoEvalRun/components/EvalRunFocusDrawer/assets/FocusDrawerContent/lib/helpers.ts rename web/ee/src/components/EvalRunDetails/AutoEvalRun/components/{EvalRunTestCaseViewUtilityOptions => EvalRunTestcaseViewUtilityOptions}/index.tsx (99%) rename web/ee/src/components/EvalRunDetails/AutoEvalRun/components/{EvalRunTestCaseViewer/assets/EvalRunTestCaseViewerSkeleton.tsx => EvalRunTestcaseViewer/assets/EvalRunTestcaseViewerSkeleton.tsx} (93%) rename web/ee/src/components/EvalRunDetails/AutoEvalRun/components/{EvalRunTestCaseViewer => EvalRunTestcaseViewer}/index.tsx (71%) create mode 100644 web/ee/src/components/EvalRunDetails/AutoEvalRun/components/EvaluatorMetricsChart/TimeSeriesChart.tsx create mode 100644 web/ee/src/components/EvalRunDetails/AutoEvalRun/components/shared/BarChartPlaceholder.tsx create mode 100644 web/ee/src/components/EvalRunDetails/AutoEvalRun/components/shared/PlaceholderOverlay.tsx create mode 100644 web/ee/src/components/EvalRunDetails/AutoEvalRun/components/shared/SpiderChartPlaceholder.tsx create mode 100644 web/ee/src/components/EvalRunDetails/OnlineEvalRun/OnlineUrlSync.tsx create mode 100644 web/ee/src/components/EvalRunDetails/OnlineEvalRun/components/ConfigurationViewer/index.tsx create mode 100644 web/ee/src/components/EvalRunDetails/OnlineEvalRun/components/TracesViewer/index.tsx create mode 100644 web/ee/src/components/EvalRunDetails/OnlineEvalRun/index.tsx create mode 100644 web/ee/src/components/EvalRunDetails/components/VirtualizedScenarioTable/assets/MetricCell/helpers.ts create mode 100644 web/ee/src/components/EvalRunDetails/components/VirtualizedScenarioTable/assets/ScenarioTraceSummary.tsx create mode 100644 web/ee/src/components/EvalRunDetails/components/VirtualizedScenarioTable/assets/TimestampCell.tsx create mode 100644 web/ee/src/components/EvalRunDetails/components/VirtualizedScenarioTable/assets/atoms/evaluatorFailures.ts create mode 100644 web/ee/src/components/EvalRunDetails/components/VirtualizedScenarioTable/assets/evaluatorNameUtils.ts create mode 100644 web/ee/src/components/EvalRunDetails/components/VirtualizedScenarioTable/assets/evaluatorSchemaUtils.ts create mode 100644 web/ee/src/components/EvalRunDetails/hooks/useCachedScenarioSteps.ts create mode 100644 web/ee/src/components/EvalRunDetails/hooks/useMetricStepError.ts create mode 100644 web/ee/src/components/pages/evaluations/autoEvaluation/EvaluatorsModal/ConfigureEvaluator/JSONSchema/JSONSchemaEditor.tsx create mode 100644 web/ee/src/components/pages/evaluations/autoEvaluation/EvaluatorsModal/ConfigureEvaluator/JSONSchema/JSONSchemaGenerator.ts create mode 100644 web/ee/src/components/pages/evaluations/autoEvaluation/EvaluatorsModal/ConfigureEvaluator/JSONSchema/index.ts create mode 100644 web/ee/src/components/pages/evaluations/autoEvaluation/EvaluatorsModal/ConfigureEvaluator/JSONSchema/types.ts create mode 100644 web/ee/src/components/pages/evaluations/customEvaluation/CustomEvaluation.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/OnlineEvaluation.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/OnlineEvaluationDrawer.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/assets/helpers.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/assets/state.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/assets/styles.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/EvaluatorDetailsPreview.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/EvaluatorTypeTag.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/FiltersPreview.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/OnlineEvaluationRowActions.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/PromptPreview.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/QueryFiltersCell.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/QueryFiltersSummaryCard.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/ReadOnlyBox.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/components/SamplingRateControl.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/constants.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/hooks/useEvaluatorDetails.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/hooks/useEvaluatorSelection.tsx create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/hooks/useEvaluatorTypeFromConfigs.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/hooks/useEvaluatorTypeMeta.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/hooks/useOnlineEvaluations.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/types.ts create mode 100644 web/ee/src/components/pages/evaluations/onlineEvaluation/utils/evaluatorDetails.ts create mode 100644 web/ee/src/lib/hooks/useEvaluationRunData/refreshLiveRun.ts create mode 100644 web/ee/src/lib/hooks/useEvaluationRunData/useScenarioStepSnapshot.ts create mode 100644 web/ee/src/services/onlineEvaluations/api.ts rename web/oss/src/components/{TestSetTable => TestsetTable}/EditRowModal.tsx (100%) rename web/oss/src/components/{TestSetTable => TestsetTable}/InsertTestsetNameModal.tsx (89%) rename web/oss/src/components/{TestSetTable => TestsetTable}/TableCellsRenderer.tsx (100%) rename web/oss/src/components/{TestSetTable => TestsetTable}/TableHeaderComponent.tsx (100%) rename web/oss/src/components/{TestSetTable => TestsetTable}/TestsetTable.tsx (87%) create mode 100644 web/oss/src/components/pages/observability/assets/filters/referenceUtils.ts create mode 100644 web/oss/src/services/onlineEvaluations/api.ts create mode 100644 web/oss/src/services/queries/api/index.ts create mode 100644 web/oss/src/services/queries/api/types.ts create mode 100644 web/oss/src/state/queries/atoms/fetcher.ts create mode 100644 web/oss/src/state/queries/index.ts diff --git a/README.md b/README.md index e1ca6f49e6..ce25044ae8 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ Collaborate with Subject Matter Experts (SMEs) on prompt engineering and make su ### 📊 Evaluation & Testing Evaluate your LLM applications systematically with both human and automated feedback. -- **Flexible Test Sets**: Create test cases from production data, playground experiments, or upload CSVs +- **Flexible Testsets**: Create testcases from production data, playground experiments, or upload CSVs - **Pre-built and Custom Evaluators**: Use LLM-as-judge, one of our 20+ pre-built evaluators, or you custom evaluators - **UI and API Access**: Run evaluations via UI (for SMEs) or programmatically (for engineers) - **Human Feedback Integration**: Collect and incorporate expert annotations diff --git a/api/ee/databases/postgres/migrations/core/data_migrations/projects.py b/api/ee/databases/postgres/migrations/core/data_migrations/projects.py index 293b05f52a..f3178a3085 100644 --- a/api/ee/databases/postgres/migrations/core/data_migrations/projects.py +++ b/api/ee/databases/postgres/migrations/core/data_migrations/projects.py @@ -21,7 +21,7 @@ EvaluatorConfigDB, HumanEvaluationDB, HumanEvaluationScenarioDB, - TestSetDB, + TestsetDB, ) @@ -38,7 +38,7 @@ EvaluatorConfigDB, # have workspace_id HumanEvaluationDB, # have workspace_id HumanEvaluationScenarioDB, # have workspace_id - TestSetDB, # have workspace_id + TestsetDB, # have workspace_id ] diff --git a/api/ee/databases/postgres/migrations/core/data_migrations/testsets.py b/api/ee/databases/postgres/migrations/core/data_migrations/testsets.py index add9acf809..35a8e82cb1 100644 --- a/api/ee/databases/postgres/migrations/core/data_migrations/testsets.py +++ b/api/ee/databases/postgres/migrations/core/data_migrations/testsets.py @@ -21,7 +21,7 @@ ) from oss.src.dbs.postgres.git.dao import GitDAO from oss.src.core.testcases.service import TestcasesService -from oss.src.models.deprecated_models import DeprecatedTestSetDB +from oss.src.models.deprecated_models import DeprecatedTestsetDB from oss.src.core.testsets.service import TestsetsService, SimpleTestsetsService @@ -81,8 +81,8 @@ async def migration_old_testsets_to_new_testsets( # Count total rows with a non-null project_id total_query = ( select(func.count()) - .select_from(DeprecatedTestSetDB) - .filter(DeprecatedTestSetDB.project_id.isnot(None)) + .select_from(DeprecatedTestsetDB) + .filter(DeprecatedTestsetDB.project_id.isnot(None)) ) result = await connection.execute(total_query) total_rows = result.scalar() @@ -98,8 +98,8 @@ async def migration_old_testsets_to_new_testsets( while offset < total_testsets: # STEP 1: Fetch evaluator configurations with non-null project_id result = await connection.execute( - select(DeprecatedTestSetDB) - .filter(DeprecatedTestSetDB.project_id.isnot(None)) + select(DeprecatedTestsetDB) + .filter(DeprecatedTestsetDB.project_id.isnot(None)) .offset(offset) .limit(DEFAULT_BATCH_SIZE) ) diff --git a/api/ee/docker/Dockerfile.dev b/api/ee/docker/Dockerfile.dev index a650319e31..814cbec3ff 100644 --- a/api/ee/docker/Dockerfile.dev +++ b/api/ee/docker/Dockerfile.dev @@ -18,12 +18,13 @@ RUN pip install --upgrade pip \ COPY ./ee /app/ee/ COPY ./oss /app/oss/ COPY ./entrypoint.py ./pyproject.toml /app/ +# RUN poetry config virtualenvs.create false \ && poetry install --no-interaction --no-ansi - # && pip install -e /sdk/ +# -# ENV PYTHONPATH=/sdk:$PYTHONPATH +ENV PYTHONPATH=/sdk:$PYTHONPATH COPY ./ee/src/crons/meters.sh /meters.sh COPY ./ee/src/crons/meters.txt /etc/cron.d/meters-cron diff --git a/api/ee/docker/Dockerfile.gh b/api/ee/docker/Dockerfile.gh index 8e8e6ec936..c3652a59df 100644 --- a/api/ee/docker/Dockerfile.gh +++ b/api/ee/docker/Dockerfile.gh @@ -18,10 +18,11 @@ RUN pip install --upgrade pip \ COPY ./ee /app/ee/ COPY ./oss /app/oss/ COPY ./entrypoint.py ./pyproject.toml /app/ +COPY ./sdk /sdk/ RUN poetry config virtualenvs.create false \ - && poetry install --no-interaction --no-ansi -# + && poetry install --no-interaction --no-ansi \ + && pip install --force-reinstall --upgrade /sdk/ # diff --git a/api/ee/src/models/db_models.py b/api/ee/src/models/db_models.py index f09b9e0324..b5a4c194da 100644 --- a/api/ee/src/models/db_models.py +++ b/api/ee/src/models/db_models.py @@ -304,7 +304,7 @@ class HumanEvaluationDB(Base): DateTime(timezone=True), default=lambda: datetime.now(timezone.utc) ) - testset = relationship("TestSetDB") + testset = relationship("TestsetDB") evaluation_variant = relationship( "HumanEvaluationVariantDB", cascade=CASCADE_ALL_DELETE, @@ -430,7 +430,7 @@ class EvaluationDB(Base): ) project = relationship("ee.src.models.db_models.ProjectDB") - testset = relationship("TestSetDB") + testset = relationship("TestsetDB") variant = relationship("AppVariantDB") variant_revision = relationship("AppVariantRevisionsDB") aggregated_results = relationship( diff --git a/api/ee/src/models/extended/deprecated_transfer_models.py b/api/ee/src/models/extended/deprecated_transfer_models.py index 3657dddacd..bf8a4a3038 100644 --- a/api/ee/src/models/extended/deprecated_transfer_models.py +++ b/api/ee/src/models/extended/deprecated_transfer_models.py @@ -325,7 +325,7 @@ class HumanEvaluationScenarioDB(DeprecatedBase): ) -class TestSetDB(DeprecatedBase): +class TestsetDB(DeprecatedBase): __tablename__ = "testsets" __table_args__ = {"extend_existing": True} diff --git a/api/ee/src/routers/evaluation_router.py b/api/ee/src/routers/evaluation_router.py index 2cf6dc1da0..a01679d161 100644 --- a/api/ee/src/routers/evaluation_router.py +++ b/api/ee/src/routers/evaluation_router.py @@ -515,5 +515,5 @@ async def start_evaluation( raise HTTPException( status_code=400, - detail="Columns in the test set should match the names of the inputs in the variant", + detail="Columns in the testset should match the names of the inputs in the variant", ) from e diff --git a/api/ee/src/routers/human_evaluation_router.py b/api/ee/src/routers/human_evaluation_router.py index 3b2904062c..eb8e7e27f8 100644 --- a/api/ee/src/routers/human_evaluation_router.py +++ b/api/ee/src/routers/human_evaluation_router.py @@ -79,7 +79,7 @@ async def create_human_evaluation( except KeyError: raise HTTPException( status_code=400, - detail="columns in the test set should match the names of the inputs in the variant", + detail="columns in the testset should match the names of the inputs in the variant", ) @@ -209,7 +209,7 @@ async def update_human_evaluation( """Updates an evaluation's status. Raises: - HTTPException: If the columns in the test set do not match with the inputs in the variant. + HTTPException: If the columns in the testset do not match with the inputs in the variant. Returns: None: A 204 No Content status code, indicating that the update was successful. @@ -241,7 +241,7 @@ async def update_human_evaluation( except KeyError: raise HTTPException( status_code=400, - detail="columns in the test set should match the names of the inputs in the variant", + detail="columns in the testset should match the names of the inputs in the variant", ) diff --git a/api/ee/src/services/db_manager_ee.py b/api/ee/src/services/db_manager_ee.py index 86d144cc62..b101f7b68d 100644 --- a/api/ee/src/services/db_manager_ee.py +++ b/api/ee/src/services/db_manager_ee.py @@ -48,7 +48,7 @@ AppVariantDB, UserDB, AppDB, - TestSetDB, + TestsetDB, InvitationDB, EvaluatorConfigDB, AppVariantRevisionsDB, @@ -1418,7 +1418,7 @@ async def fetch_evaluation_by_id( id=uuid.UUID(evaluation_id), ) query = base_query.options( - joinedload(EvaluationDB.testset.of_type(TestSetDB)).load_only(TestSetDB.id, TestSetDB.name), # type: ignore + joinedload(EvaluationDB.testset.of_type(TestsetDB)).load_only(TestsetDB.id, TestsetDB.name), # type: ignore ) result = await session.execute( @@ -1451,7 +1451,7 @@ async def list_human_evaluations(app_id: str, project_id: str): .filter(HumanEvaluationDB.testset_id.isnot(None)) ) query = base_query.options( - joinedload(HumanEvaluationDB.testset.of_type(TestSetDB)).load_only(TestSetDB.id, TestSetDB.name), # type: ignore + joinedload(HumanEvaluationDB.testset.of_type(TestsetDB)).load_only(TestsetDB.id, TestsetDB.name), # type: ignore ) result = await session.execute(query) @@ -1583,7 +1583,7 @@ async def fetch_human_evaluation_by_id( async with engine.core_session() as session: base_query = select(HumanEvaluationDB).filter_by(id=uuid.UUID(evaluation_id)) query = base_query.options( - joinedload(HumanEvaluationDB.testset.of_type(TestSetDB)).load_only(TestSetDB.id, TestSetDB.name), # type: ignore + joinedload(HumanEvaluationDB.testset.of_type(TestsetDB)).load_only(TestsetDB.id, TestsetDB.name), # type: ignore ) result = await session.execute(query) evaluation = result.scalars().first() @@ -1811,7 +1811,7 @@ async def fetch_human_evaluation_scenario_by_evaluation_id( async def create_new_evaluation( app: AppDB, project_id: str, - testset: TestSetDB, + testset: TestsetDB, status: Result, variant: str, variant_revision: str, @@ -1859,7 +1859,7 @@ async def list_evaluations(app_id: str, project_id: str): app_id=uuid.UUID(app_id), project_id=uuid.UUID(project_id) ) query = base_query.options( - joinedload(EvaluationDB.testset.of_type(TestSetDB)).load_only(TestSetDB.id, TestSetDB.name), # type: ignore + joinedload(EvaluationDB.testset.of_type(TestsetDB)).load_only(TestsetDB.id, TestsetDB.name), # type: ignore ) result = await session.execute( diff --git a/api/ee/src/services/evaluation_service.py b/api/ee/src/services/evaluation_service.py index e2cd9a2d8f..9d7b61cb3d 100644 --- a/api/ee/src/services/evaluation_service.py +++ b/api/ee/src/services/evaluation_service.py @@ -59,7 +59,7 @@ async def prepare_csvdata_and_create_evaluation_scenario( """ for datum in csvdata: - # Check whether the inputs in the test set match the inputs in the variant + # Check whether the inputs in the testset match the inputs in the variant try: inputs = [ {"input_name": name, "input_value": datum[name]} @@ -70,9 +70,9 @@ async def prepare_csvdata_and_create_evaluation_scenario( evaluation_id=str(new_evaluation.id) ) msg = f""" - Columns in the test set should match the names of the inputs in the variant. + Columns in the testset should match the names of the inputs in the variant. Inputs names in variant are: {[variant_input for variant_input in payload_inputs]} while - columns in test set are: {[col for col in datum.keys() if col != 'correct_answer']} + columns in testset are: {[col for col in datum.keys() if col != 'correct_answer']} """ raise HTTPException( status_code=400, @@ -396,7 +396,11 @@ async def create_new_evaluation( """ app = await db_manager.fetch_app_by_id(app_id=app_id) - testset = await db_manager.fetch_testset_by_id(testset_id=testset_id) + testset = await db_manager.fetch_testset_by_id( + project_id=project_id, + # + testset_id=testset_id, + ) variant_revision = await db_manager.fetch_app_variant_revision_by_id( variant_revision_id=revision_id ) @@ -405,6 +409,8 @@ async def create_new_evaluation( variant_revision and variant_revision.revision is not None ), f"Variant revision with {revision_id} cannot be None" + assert testset is not None, f"Testset with id {testset_id} does not exist" + evaluation_db = await db_manager_ee.create_new_evaluation( app=app, project_id=project_id, diff --git a/api/ee/src/services/llm_apps_service.py b/api/ee/src/services/llm_apps_service.py index 15267ec378..b1d8ab5995 100644 --- a/api/ee/src/services/llm_apps_service.py +++ b/api/ee/src/services/llm_apps_service.py @@ -202,6 +202,7 @@ async def invoke_app( openapi_parameters: List[Dict], user_id: str, project_id: str, + scenario_id: Optional[str] = None, **kwargs, ) -> InvokationResult: """ @@ -247,7 +248,14 @@ async def invoke_app( app_response = {} try: - log.info("Invoking workflow...", url=url) + log.info( + "Invoking application...", + scenario_id=scenario_id, + testcase_id=( + datapoint["testcase_id"] if "testcase_id" in datapoint else None + ), + url=url, + ) response = await client.post( url, json=payload, @@ -268,6 +276,12 @@ async def invoke_app( trace_id = app_response.get("trace_id", None) span_id = app_response.get("span_id", None) + log.info( + "Invoked application. ", + scenario_id=scenario_id, + trace_id=trace_id, + ) + return InvokationResult( result=Result( type=kind, @@ -328,6 +342,7 @@ async def run_with_retry( openapi_parameters: List[Dict], user_id: str, project_id: str, + scenario_id: Optional[str] = None, **kwargs, ) -> InvokationResult: """ @@ -364,6 +379,7 @@ async def run_with_retry( openapi_parameters, user_id, project_id, + scenario_id, **kwargs, ) return result @@ -403,6 +419,7 @@ async def batch_invoke( rate_limit_config: Dict, user_id: str, project_id: str, + scenarios: Optional[List[Dict]] = None, **kwargs, ) -> List[InvokationResult]: """ @@ -497,6 +514,7 @@ async def batch_invoke( openapi_parameters, user_id, project_id, + scenarios[index].get("id") if scenarios else None, **kwargs, ) ) diff --git a/api/ee/src/tasks/evaluations/batch.py b/api/ee/src/tasks/evaluations/batch.py index cf65107b6a..5fdef15b3c 100644 --- a/api/ee/src/tasks/evaluations/batch.py +++ b/api/ee/src/tasks/evaluations/batch.py @@ -95,7 +95,8 @@ TracingQuery, ) from oss.src.core.workflows.dtos import ( - WorkflowServiceData, + WorkflowServiceRequestData, + WorkflowServiceResponseData, WorkflowServiceRequest, WorkflowServiceResponse, WorkflowServiceInterface, diff --git a/api/ee/src/tasks/evaluations/legacy.py b/api/ee/src/tasks/evaluations/legacy.py index 50d211f713..579c6853b9 100644 --- a/api/ee/src/tasks/evaluations/legacy.py +++ b/api/ee/src/tasks/evaluations/legacy.py @@ -1,4 +1,4 @@ -from typing import Dict, List, Optional +from typing import Dict, List, Optional, Any from uuid import UUID from json import dumps from asyncio import get_event_loop @@ -93,7 +93,8 @@ from oss.src.core.shared.dtos import Reference from oss.src.core.workflows.dtos import ( - WorkflowServiceData, + WorkflowServiceRequestData, + WorkflowServiceResponseData, WorkflowServiceRequest, WorkflowServiceResponse, WorkflowServiceInterface, @@ -109,9 +110,10 @@ Query, ) -from oss.src.core.workflows.dtos import Tree - -from oss.src.core.evaluations.utils import get_metrics_keys_from_schema +from oss.src.core.evaluations.utils import ( + get_metrics_keys_from_schema, + fetch_trace, +) log = get_module_logger(__name__) @@ -246,35 +248,31 @@ async def setup_evaluation( try: # create evaluation run ------------------------------------------------ - runs_create = [ - EvaluationRunCreate( - name=name, - description=description, - # - flags=( - EvaluationRunFlags( - is_closed=None, - is_live=True, - is_active=True, - ) - if query_id - else None - ), - # - status=EvaluationStatus.PENDING, - ) - ] + run_create = EvaluationRunCreate( + name=name, + description=description, + # + flags=( + EvaluationRunFlags( + is_closed=None, + is_live=True, + is_active=True, + ) + if query_id + else None + ), + # + status=EvaluationStatus.PENDING, + ) - runs = await evaluations_service.create_runs( + run = await evaluations_service.create_run( project_id=project_id, user_id=user_id, # - runs=runs_create, + run=run_create, ) - assert len(runs) == 1, "Failed to create evaluation run." - - run = runs[0] + assert run is not None, "Failed to create evaluation run." # ---------------------------------------------------------------------- # just-in-time transfer of testset ------------------------------------- @@ -1002,7 +1000,7 @@ def annotate( # ---------------------------------------------------------------------- # create input steps --------------------------------------------------- - steps_create = [ + results_create = [ EvaluationResultCreate( run_id=run_id, scenario_id=scenario.id, @@ -1020,7 +1018,7 @@ def annotate( project_id=project_id, user_id=user_id, # - results=steps_create, + results=results_create, ) ) @@ -1057,12 +1055,19 @@ def annotate( "application_variant": {"id": str(variant.id)}, "application_revision": {"id": str(revision.id)}, }, + scenarios=[ + s.model_dump( + mode="json", + exclude_none=True, + ) + for s in scenarios + ], ) ) # ---------------------------------------------------------------------- - # create invocation steps ---------------------------------------------- - steps_create = [ + # create invocation results -------------------------------------------- + results_create = [ EvaluationResultCreate( run_id=run_id, scenario_id=scenario.id, @@ -1089,7 +1094,7 @@ def annotate( project_id=project_id, user_id=user_id, # - results=steps_create, + results=results_create, ) ) @@ -1106,6 +1111,7 @@ def annotate( scenario = scenarios[idx] testcase = testcases[idx] invocation = invocations[idx] + invocation_step_key = invocation_steps_keys[0] scenario_has_errors = 0 scenario_status = EvaluationStatus.SUCCESS @@ -1126,6 +1132,58 @@ def annotate( # proceed with the evaluation otherwise ---------------------------- else: + if not invocation.trace_id: + log.warn(f"invocation trace_id is missing.") + scenario_has_errors += 1 + scenario_status = EvaluationStatus.ERRORS + continue + + trace = None + if invocation.trace_id: + trace = loop.run_until_complete( + fetch_trace( + tracing_router=tracing_router, + request=request, + trace_id=invocation.trace_id, + ) + ) + + if trace: + log.info( + f"Trace found ", + scenario_id=scenario.id, + step_key=invocation_step_key, + trace_id=invocation.trace_id, + ) + else: + log.warn( + f"Trace missing", + scenario_id=scenario.id, + step_key=invocation_step_key, + trace_id=invocation.trace_id, + ) + scenario_has_errors += 1 + scenario_status = EvaluationStatus.ERRORS + continue + + if not isinstance(trace.spans, dict): + log.warn( + f"Trace with id {invocation.trace_id} has no root spans", + ) + scenario_has_errors += 1 + scenario_status = EvaluationStatus.ERRORS + continue + + root_span = list(trace.spans.values())[0] + + if isinstance(root_span, list): + log.warn( + f"More than one root span for trace with id {invocation.trace_id}.", + ) + scenario_has_errors += 1 + scenario_status = EvaluationStatus.ERRORS + continue + # run the evaluators if no error in the invocation ------------- for jdx in range(nof_annotations): annotation_step_key = annotation_steps_keys[jdx] @@ -1133,12 +1191,12 @@ def annotate( step_has_errors = 0 step_status = EvaluationStatus.SUCCESS - references = { + references: Dict[str, Any] = { **evaluator_references[annotation_step_key], "testset": {"id": testset_id}, "testcase": {"id": str(testcase.id)}, } - links = { + links: Dict[str, Any] = { invocation_steps_keys[0]: { "trace_id": invocation.trace_id, "span_id": invocation.span_id, @@ -1146,51 +1204,140 @@ def annotate( } # invoke annotation workflow ------------------------------- - workflow_revision = evaluators[annotation_step_key] + evaluator_revision = evaluators[annotation_step_key] - workflows_service_request = WorkflowServiceRequest( + if not evaluator_revision: + log.error( + f"Evaluator revision for {annotation_step_key} not found!" + ) + step_has_errors += 1 + scenario_has_errors += 1 + run_has_errors += 1 + step_status = EvaluationStatus.FAILURE + scenario_status = EvaluationStatus.ERRORS + run_status = EvaluationStatus.ERRORS + continue + + _revision = evaluator_revision.model_dump( + mode="json", + exclude_none=True, + ) + interface = ( + dict( + uri=evaluator_revision.data.uri, + url=evaluator_revision.data.url, + headers=evaluator_revision.data.headers, + schemas=evaluator_revision.data.schemas, + ) + if evaluator_revision.data + else dict() + ) + configuration = ( + dict( + script=evaluator_revision.data.script, + parameters=evaluator_revision.data.parameters, + ) + if evaluator_revision.data + else dict() + ) + parameters = configuration.get("parameters") + + _testcase = testcase.model_dump(mode="json") + inputs = testcase.data + if isinstance(inputs, dict): + if "testcase_dedup_id" in inputs: + del inputs["testcase_dedup_id"] + + _trace: Optional[dict] = ( + trace.model_dump( + mode="json", + exclude_none=True, + ) + if trace + else None + ) + + _root_span = root_span.model_dump(mode="json", exclude_none=True) + testcase_data = testcase.data + + root_span_attributes: dict = _root_span.get("attributes") or {} + root_span_attributes_ag: dict = root_span_attributes.get("ag") or {} + root_span_attributes_ag_data: dict = ( + root_span_attributes_ag.get("data") or {} + ) + root_span_attributes_ag_data_outputs = ( + root_span_attributes_ag_data.get("outputs") + ) + root_span_attributes_ag_data_inputs = ( + root_span_attributes_ag_data.get("inputs") + ) + + outputs = root_span_attributes_ag_data_outputs + inputs = testcase_data or root_span_attributes_ag_data_inputs + + workflow_service_request_data = WorkflowServiceRequestData( + revision=_revision, + parameters=parameters, + # + testcase=_testcase, + inputs=inputs, + # + trace=_trace, + outputs=outputs, + ) + + flags = ( + evaluator_revision.flags.model_dump( + mode="json", + exclude_none=True, + exclude_unset=True, + ) + if evaluator_revision.flags + else None + ) + + workflow_service_request = WorkflowServiceRequest( version="2025.07.14", - flags={ - "is_annotation": True, - "inline": True, - }, - tags=None, - meta=None, - data=WorkflowServiceData( - inputs=testcase.data, - # trace= - trace_parameters=revision_parameters, - trace_outputs=invocation.result.value["data"], - tree=( - Tree( - version=invocation.result.value.get("version"), - nodes=invocation.result.value["tree"].get("nodes"), - ) - if "tree" in invocation.result.value - else None - ), - ), + # + flags=flags, + # + interface=interface, + configuration=configuration, + # + data=workflow_service_request_data, + # references=references, links=links, - credentials=credentials, - secrets=secrets, ) + log.info( + "Invoking evaluator... ", + scenario_id=scenario.id, + testcase_id=testcase.id, + trace_id=invocation.trace_id, + uri=interface.get("uri"), + ) workflows_service_response = loop.run_until_complete( workflows_service.invoke_workflow( project_id=project_id, user_id=user_id, # - request=workflows_service_request, - revision=workflow_revision, + request=workflow_service_request, + # + annotate=True, ) ) + log.info( + "Invoked evaluator ", + scenario_id=scenario.id, + trace_id=workflows_service_response.trace_id, + ) # ---------------------------------------------------------- # run evaluator -------------------------------------------- - trace_id = None - error = None + trace_id = workflows_service_response.trace_id + error = None has_error = workflows_service_response.status.code != 200 # if error in evaluator, no annotation, only step ---------- @@ -1214,36 +1361,52 @@ def annotate( # else, first annotation, then step ------------------------ else: - outputs = workflows_service_response.data.outputs or {} - - annotation_create_request = AnnotationCreateRequest( - annotation=AnnotationCreate( - origin=AnnotationOrigin.AUTO, - kind=AnnotationKind.EVAL, - channel=AnnotationChannel.API, # hardcoded - # - data={"outputs": outputs}, - # - references=references, - links=links, - ) + outputs = ( + workflows_service_response.data.outputs + if workflows_service_response.data + else None ) - annotation_response = loop.run_until_complete( - annotations_router.create_annotation( - request=request, - annotation_create_request=annotation_create_request, - ) - ) + annotation = workflows_service_response + + trace_id = annotation.trace_id + + if not annotation.trace_id: + log.warn(f"annotation trace_id is missing.") + scenario_has_errors += 1 + scenario_status = EvaluationStatus.ERRORS + continue - assert ( - annotation_response.count != 0 - ), f"Failed to create annotation for invocation {invocation.trace_id} and evaluator {references.get('evaluator').get('id')}" + trace = None + if annotation.trace_id: + trace = loop.run_until_complete( + fetch_trace( + tracing_router=tracing_router, + request=request, + trace_id=annotation.trace_id, + ) + ) - trace_id = annotation_response.annotation.trace_id + if trace: + log.info( + f"Trace found ", + scenario_id=scenario.id, + step_key=annotation_step_key, + trace_id=annotation.trace_id, + ) + else: + log.warn( + f"Trace missing", + scenario_id=scenario.id, + step_key=annotation_step_key, + trace_id=annotation.trace_id, + ) + scenario_has_errors += 1 + scenario_status = EvaluationStatus.ERRORS + continue # ---------------------------------------------------------- - steps_create = [ + results_create = [ EvaluationResultCreate( run_id=run_id, scenario_id=scenario.id, @@ -1261,7 +1424,7 @@ def annotate( project_id=project_id, user_id=user_id, # - results=steps_create, + results=results_create, ) ) diff --git a/api/ee/src/tasks/evaluations/live.py b/api/ee/src/tasks/evaluations/live.py index 0095206d42..43208bd42d 100644 --- a/api/ee/src/tasks/evaluations/live.py +++ b/api/ee/src/tasks/evaluations/live.py @@ -1,4 +1,4 @@ -from typing import List, Dict, Any +from typing import List, Dict, Any, Optional from uuid import UUID import asyncio from datetime import datetime @@ -82,16 +82,23 @@ SimpleTraceReferences, ) from oss.src.core.workflows.dtos import ( - WorkflowServiceData, + WorkflowServiceRequestData, + WorkflowServiceResponseData, WorkflowServiceRequest, + WorkflowServiceResponse, ) from oss.src.core.queries.dtos import ( + QueryRevisionData, QueryRevision, ) from oss.src.core.evaluators.dtos import ( + EvaluatorRevisionData, EvaluatorRevision, ) +from oss.src.core.evaluations.utils import fetch_trace + + log = get_module_logger(__name__) @@ -229,31 +236,6 @@ def evaluate( ) # ---------------------------------------------------------------------- - # fetch project -------------------------------------------------------- - project = loop.run_until_complete( - get_project_by_id(project_id=str(project_id)), - ) - # ---------------------------------------------------------------------- - - # fetch provider keys from secrets ------------------------------------- - secrets = loop.run_until_complete( - get_llm_providers_secrets(str(project_id)), - ) - # ---------------------------------------------------------------------- - - # prepare credentials -------------------------------------------------- - secret_token = loop.run_until_complete( - sign_secret_token( - user_id=str(user_id), - project_id=str(project_id), - workspace_id=str(project.workspace_id), - organization_id=str(project.organization_id), - ) - ) - - credentials = f"Secret {secret_token}" - # ---------------------------------------------------------------------- - # fetch evaluation run ------------------------------------------------- run = loop.run_until_complete( evaluations_service.fetch_run( @@ -337,6 +319,9 @@ def evaluate( ) ) + if query_revision and not query_revision.data: + query_revision.data = QueryRevisionData() + if ( not query_revision or not query_revision.id @@ -367,6 +352,9 @@ def evaluate( ) ) + if evaluator_revision and not evaluator_revision.data: + evaluator_revision.data = EvaluatorRevisionData() + if ( not evaluator_revision or not evaluator_revision.id @@ -482,7 +470,7 @@ def evaluate( run_id=run_id, scenario_id=scenario_id, step_key=query_step_key, - repeat_idx=1, + repeat_idx=0, timestamp=timestamp, interval=interval, # @@ -548,82 +536,151 @@ def evaluate( ) # run evaluator revisions -------------------------------------- - for ( - evaluator_step_key, - evaluator_revision, - ) in evaluator_revisions.items(): + for jdx in range(nof_annotations): + annotation_step_key = annotation_steps_keys[jdx] + step_has_errors = 0 step_status = EvaluationStatus.SUCCESS - references: dict = evaluator_references[evaluator_step_key] - links: dict = dict( - query_step_key=Link( + references: Dict[str, Any] = { + **evaluator_references[annotation_step_key], + } + links: Dict[str, Any] = { + query_step_key: dict( trace_id=query_trace_id, span_id=query_span_id, ) - ) + } - parameters: dict = ( - evaluator_revision.data.parameters or {} + # invoke annotation workflow ------------------------------- + evaluator_revision = evaluator_revisions[annotation_step_key] + + if not evaluator_revision: + log.error( + f"Evaluator revision for {annotation_step_key} not found!" + ) + step_has_errors += 1 + scenario_has_errors[idx] += 1 + # run_has_errors += 1 + step_status = EvaluationStatus.FAILURE + scenario_status[idx] = EvaluationStatus.ERRORS + # run_status = EvaluationStatus.ERRORS + continue + + _revision = evaluator_revision.model_dump( + mode="json", + exclude_none=True, + ) + interface = ( + dict( + uri=evaluator_revision.data.uri, + url=evaluator_revision.data.url, + headers=evaluator_revision.data.headers, + schemas=evaluator_revision.data.schemas, + ) if evaluator_revision.data - else {} + else dict() ) - inputs: dict = {} - outputs: Any = None + configuration = ( + dict( + script=evaluator_revision.data.script, + parameters=evaluator_revision.data.parameters, + ) + if evaluator_revision.data + else dict() + ) + parameters = configuration.get("parameters") - trace_attributes: dict = root_span.attributes or {} - trace_ag_attributes: dict = trace_attributes.get("ag", {}) - trace_data: dict = trace_ag_attributes.get("data", {}) - trace_parameters: dict = trace_data.get("parameters", {}) - trace_inputs: dict = trace_data.get("inputs", {}) - trace_outputs: Any = trace_data.get("outputs") + _testcase = None + inputs = None - workflow_service_data = WorkflowServiceData( - # + _trace: Optional[dict] = ( + trace.model_dump( + mode="json", + exclude_none=True, + ) + if trace + else None + ) + + _root_span = root_span.model_dump(mode="json", exclude_none=True) + testcase_data = None + + root_span_attributes: dict = _root_span.get("attributes") or {} + root_span_attributes_ag: dict = root_span_attributes.get("ag") or {} + root_span_attributes_ag_data: dict = ( + root_span_attributes_ag.get("data") or {} + ) + root_span_attributes_ag_data_outputs = ( + root_span_attributes_ag_data.get("outputs") + ) + root_span_attributes_ag_data_inputs = ( + root_span_attributes_ag_data.get("inputs") + ) + + outputs = root_span_attributes_ag_data_outputs + inputs = testcase_data or root_span_attributes_ag_data_inputs + + workflow_service_request_data = WorkflowServiceRequestData( + revision=_revision, parameters=parameters, - inputs=inputs, # - trace_parameters=trace_parameters, - trace_inputs=trace_inputs, - trace_outputs=trace_outputs, + testcase=_testcase, + inputs=inputs, # - trace=trace, + trace=_trace, + outputs=outputs, + ) + + flags = ( + evaluator_revision.flags.model_dump( + mode="json", + exclude_none=True, + exclude_unset=True, + ) + if evaluator_revision.flags + else None ) workflow_service_request = WorkflowServiceRequest( version="2025.07.14", # - flags={ - "is_annotation": True, - "inline": True, - }, - tags=None, - meta=None, + flags=flags, + # + interface=interface, + configuration=configuration, # - data=workflow_service_data, + data=workflow_service_request_data, # references=references, links=links, - # - credentials=credentials, - secrets=secrets, ) - workflow_revision = evaluator_revision - + log.info( + "Invoking evaluator... ", + scenario_id=scenario.id, + trace_id=query_trace_id, + uri=interface.get("uri"), + ) workflows_service_response = loop.run_until_complete( workflows_service.invoke_workflow( project_id=project_id, user_id=user_id, # request=workflow_service_request, - revision=workflow_revision, + # + annotate=True, ) ) + log.info( + "Invoked evaluator ", + scenario_id=scenario.id, + trace_id=workflows_service_response.trace_id, + ) - evaluator_trace_id = None - error = None + trace_id = workflows_service_response.trace_id + error = None has_error = workflows_service_response.status.code != 200 # if error in evaluator, no annotation, only step ---------- @@ -651,54 +708,57 @@ def evaluate( else None ) - annotation_create_request = AnnotationCreateRequest( - annotation=AnnotationCreate( - origin=AnnotationOrigin.AUTO, - kind=AnnotationKind.EVAL, - channel=AnnotationChannel.API, - # - data={"outputs": outputs}, - # - references=SimpleTraceReferences(**references), - links=links, - ) - ) + annotation = workflows_service_response + + trace_id = annotation.trace_id - annotation_response = loop.run_until_complete( - annotations_router.create_annotation( - request=request, - annotation_create_request=annotation_create_request, + if not annotation.trace_id: + log.warn(f"annotation trace_id is missing.") + scenario_has_errors[idx] += 1 + scenario_status[idx] = EvaluationStatus.ERRORS + continue + + trace = None + if annotation.trace_id: + trace = loop.run_until_complete( + fetch_trace( + tracing_router=tracing_router, + request=request, + trace_id=annotation.trace_id, + ) ) - ) - if ( - not annotation_response.count - or not annotation_response.annotation - ): + if trace: + log.info( + f"Trace found ", + scenario_id=scenario.id, + step_key=annotation_step_key, + trace_id=annotation.trace_id, + ) + else: log.warn( - f"Failed to create annotation for query {query_trace_id} and evaluator {evaluator_revision.id}" + f"Trace missing", + scenario_id=scenario.id, + step_key=annotation_step_key, + trace_id=annotation.trace_id, ) - step_has_errors += 1 - step_status = EvaluationStatus.FAILURE scenario_has_errors[idx] += 1 scenario_status[idx] = EvaluationStatus.ERRORS continue - - evaluator_trace_id = annotation_response.annotation.trace_id # ---------------------------------------------------------- results_create = [ EvaluationResultCreate( run_id=run_id, scenario_id=scenario_id, - step_key=evaluator_step_key, - repeat_idx=1, + step_key=annotation_step_key, + # timestamp=timestamp, interval=interval, # status=step_status, # - trace_id=evaluator_trace_id, + trace_id=trace_id, error=error, ) ] diff --git a/api/ee/tests/manual/evaluations/sdk/client.py b/api/ee/tests/manual/evaluations/sdk/client.py deleted file mode 100644 index c930eee323..0000000000 --- a/api/ee/tests/manual/evaluations/sdk/client.py +++ /dev/null @@ -1,32 +0,0 @@ -from os import getenv - -import requests - -BASE_TIMEOUT = 10 - -AGENTA_API_KEY = getenv("AGENTA_API_KEY") -AGENTA_API_URL = getenv("AGENTA_API_URL") - - -def authed_api(): - """ - Preconfigured requests for authenticated endpoints (supports all methods). - """ - - api_url = AGENTA_API_URL - credentials = f"ApiKey {AGENTA_API_KEY}" - - def _request(method: str, endpoint: str, **kwargs): - url = f"{api_url}{endpoint}" - headers = kwargs.pop("headers", {}) - headers.setdefault("Authorization", credentials) - - return requests.request( - method=method, - url=url, - headers=headers, - timeout=BASE_TIMEOUT, - **kwargs, - ) - - return _request diff --git a/api/ee/tests/manual/evaluations/sdk/definitions.py b/api/ee/tests/manual/evaluations/sdk/definitions.py deleted file mode 100644 index 4768515ef3..0000000000 --- a/api/ee/tests/manual/evaluations/sdk/definitions.py +++ /dev/null @@ -1,1818 +0,0 @@ -from enum import Enum -from uuid import UUID, uuid4 -from re import match -from datetime import datetime -from typing import Dict, List, Optional, Union, Literal, Callable, Any, TypeAliasType - -from pydantic import BaseModel, field_validator, Field - -# oss.src.core.shared.dtos ----------------------------------------------------- - -from typing import Optional, Dict, List, Union, Literal -from uuid import UUID -from datetime import datetime -from re import match - -from pydantic import BaseModel, field_validator - -from typing_extensions import TypeAliasType - - -BoolJson: TypeAliasType = TypeAliasType( # type: ignore - "BoolJson", - Union[bool, Dict[str, "BoolJson"]], # type: ignore -) - -StringJson: TypeAliasType = TypeAliasType( # type: ignore - "StringJson", - Union[str, Dict[str, "StringJson"]], # type: ignore -) - -FullJson: TypeAliasType = TypeAliasType( # type: ignore - "FullJson", - Union[str, int, float, bool, None, Dict[str, "FullJson"], List["FullJson"]], # type: ignore -) - -NumericJson: TypeAliasType = TypeAliasType( # type: ignore - "NumericJson", - Union[int, float, Dict[str, "NumericJson"]], # type: ignore -) - -NoListJson: TypeAliasType = TypeAliasType( # type: ignore - "NoListJson", - Union[str, int, float, bool, None, Dict[str, "NoListJson"]], # type: ignore -) - -Json = Dict[str, FullJson] # type: ignore - -Data = Dict[str, FullJson] # type: ignore - -Flags = Dict[str, bool | str] - -Tags = Dict[str, NoListJson] # type: ignore - -Meta = Dict[str, FullJson] # type: ignore - -Hashes = Dict[str, StringJson] # type: ignore - - -class Metadata(BaseModel): - flags: Optional[Flags] = None # type: ignore - meta: Optional[Meta] = None # type: ignore - tags: Optional[Tags] = None # type: ignore - - -class Windowing(BaseModel): - # RANGE - newest: Optional[datetime] = None - oldest: Optional[datetime] = None - # TOKEN - next: Optional[UUID] = None - # LIMIT - limit: Optional[int] = None - # ORDER - order: Optional[Literal["ascending", "descending"]] = None - # SAMPLES - rate: Optional[float] = None - # BUCKETS - interval: Optional[int] = None - - @field_validator("rate") - def check_rate(cls, v): - if v is not None and (v < 0.0 or v > 1.0): - raise ValueError("Sampling rate must be between 0.0 and 1.0.") - return v - - @field_validator("interval") - def check_interval(cls, v): - if v is not None and v <= 0: - raise ValueError("Bucket interval must be a positive integer.") - return v - - -class Lifecycle(BaseModel): - created_at: Optional[datetime] = None - updated_at: Optional[datetime] = None - deleted_at: Optional[datetime] = None - - created_by_id: Optional[UUID] = None - updated_by_id: Optional[UUID] = None - deleted_by_id: Optional[UUID] = None - - -class TraceID(BaseModel): - trace_id: Optional[str] = None - - -class SpanID(BaseModel): - span_id: Optional[str] = None - - -class Identifier(BaseModel): - id: Optional[UUID] = None - - -class Slug(BaseModel): - slug: Optional[str] = None - - @field_validator("slug") - def check_url_safety(cls, v): - if v is not None: - if not match(r"^[a-zA-Z0-9_-]+$", v): - raise ValueError("slug must be URL-safe.") - return v - - -class Version(BaseModel): - version: Optional[str] = None - - -class Header(BaseModel): - name: Optional[str] = None - description: Optional[str] = None - - -class Commit(BaseModel): - author: Optional[UUID] = None - date: Optional[datetime] = None - message: Optional[str] = None - - -class Reference(Identifier, Slug, Version): - pass - - -class Link(TraceID, SpanID): - pass - - -def sync_alias(primary: str, alias: str, instance: BaseModel) -> None: - primary_val = getattr(instance, primary) - alias_val = getattr(instance, alias) - if primary_val and alias_val is None: - object.__setattr__(instance, alias, primary_val) - elif alias_val and primary_val is None: - object.__setattr__(instance, primary, alias_val) - - -class AliasConfig(BaseModel): - model_config = { - "populate_by_name": True, - "from_attributes": True, - } - - -Metrics = Dict[str, NumericJson] # type: ignore - - -class LegacyLifecycleDTO(BaseModel): - created_at: Optional[str] = None - updated_at: Optional[str] = None - updated_by_id: Optional[str] = None - # DEPRECATING - updated_by: Optional[str] = None # email - - -class Status(BaseModel): - code: Optional[int] = 500 - type: Optional[str] = None - message: Optional[str] = "An unexpected error occurred. Please try again later." - stacktrace: Optional[str] = None - - -Mappings = Dict[str, str] - -Schema = Dict[str, FullJson] # type: ignore - -# ------------------------------------------------------------------------------ - -# oss.src.core.git.dtos -------------------------------------------------------- - -from typing import Optional, List -from uuid import UUID - -from pydantic import BaseModel - - -# artifacts -------------------------------------------------------------------- - - -class Artifact(Identifier, Slug, Lifecycle, Header, Metadata): - pass - - -class ArtifactCreate(Slug, Header, Metadata): - pass - - -class ArtifactEdit(Identifier, Header, Metadata): - pass - - -class ArtifactQuery(Metadata): - pass - - -# variants --------------------------------------------------------------------- - - -class Variant(Identifier, Slug, Lifecycle, Header, Metadata): - artifact_id: Optional[UUID] = None - - -class VariantCreate(Slug, Header, Metadata): - artifact_id: Optional[UUID] = None - - -class VariantEdit(Identifier, Header, Metadata): - pass - - -class VariantQuery(Metadata): - pass - - -# revisions -------------------------------------------------------------------- - - -class Revision(Identifier, Slug, Version, Lifecycle, Header, Metadata, Commit): - data: Optional[Data] = None - - artifact_id: Optional[UUID] = None - variant_id: Optional[UUID] = None - - -class RevisionCreate(Slug, Header, Metadata): - artifact_id: Optional[UUID] = None - variant_id: Optional[UUID] = None - - -class RevisionEdit(Identifier, Header, Metadata): - pass - - -class RevisionQuery(Metadata): - authors: Optional[List[UUID]] = None - - -class RevisionCommit(Slug, Header, Metadata): - data: Optional[Data] = None - - message: Optional[str] = None - - artifact_id: Optional[UUID] = None - variant_id: Optional[UUID] = None - - -class RevisionsLog(BaseModel): - artifact_id: Optional[UUID] = None - variant_id: Optional[UUID] = None - revision_id: Optional[UUID] = None - - depth: Optional[int] = None - - -# forks ------------------------------------------------------------------------ - - -class RevisionFork(Slug, Header, Metadata): - data: Optional[Data] = None - - message: Optional[str] = None - - -class VariantFork(Slug, Header, Metadata): - pass - - -class ArtifactFork(RevisionsLog): - variant: Optional[VariantFork] = None - revision: Optional[RevisionFork] = None - - -# ------------------------------------------------------------------------------ - - -Origin = Literal["custom", "human", "auto"] -# Target = Union[List[UUID], Dict[UUID, Origin], List[Callable]] -Target = Union[ - List[List[Dict[str, Any]]], # testcases_data - List[Callable], # workflow_handlers - List[UUID], # entity_ids - Dict[UUID, Origin], # entity_ids with origins -] - - -# oss.src.core.evaluations.types - - -class EvaluationStatus(str, Enum): - PENDING = "pending" - QUEUED = "queued" - RUNNING = "running" - SUCCESS = "success" - FAILURE = "failure" - ERRORS = "errors" - CANCELLED = "cancelled" - - -class EvaluationRunFlags(BaseModel): - is_closed: Optional[bool] = None # Indicates if the run is modifiable - is_live: Optional[bool] = None # Indicates if the run has live queries - is_active: Optional[bool] = None # Indicates if the run is currently active - - -class SimpleEvaluationFlags(EvaluationRunFlags): - pass - - -SimpleEvaluationStatus = EvaluationStatus - - -class SimpleEvaluationData(BaseModel): - status: Optional[SimpleEvaluationStatus] = None - - query_steps: Optional[Target] = None - testset_steps: Optional[Target] = None - application_steps: Optional[Target] = None - evaluator_steps: Optional[Target] = None - - repeats: Optional[int] = None - - -class EvaluationRun(BaseModel): - id: UUID - - -class EvaluationScenario(BaseModel): - id: UUID - - run_id: UUID - - -class EvaluationResult(BaseModel): - id: UUID - - run_id: UUID - scenario_id: UUID - step_key: str - - testcase_id: Optional[UUID] = None - trace_id: Optional[UUID] = None - error: Optional[dict] = None - - flags: Optional[Dict[str, Any]] = None - tags: Optional[Dict[str, Any]] = None - meta: Optional[Dict[str, Any]] = None - - -class EvaluationMetrics(Identifier, Lifecycle): - flags: Optional[Dict[str, Any]] = None - tags: Optional[Dict[str, Any]] = None - meta: Optional[Dict[str, Any]] = None - - status: Optional[EvaluationStatus] = None - - timestamp: Optional[datetime] = None - interval: Optional[int] = None - - data: Optional[Data] = None - - scenario_id: Optional[UUID] = None - - run_id: UUID - - -# oss.src.core.tracing.dtos - -import random -import string -from enum import Enum -from datetime import datetime, timezone -from typing import List, Dict, Any, Union, Optional, Literal -from uuid import UUID - -from pydantic import BaseModel, model_validator, Field - - -class TraceType(Enum): - INVOCATION = "invocation" - ANNOTATION = "annotation" - # - UNKNOWN = "unknown" - - -class SpanType(Enum): - AGENT = "agent" - CHAIN = "chain" - WORKFLOW = "workflow" - TASK = "task" - TOOL = "tool" - EMBEDDING = "embedding" - QUERY = "query" - LLM = "llm" - COMPLETION = "completion" - CHAT = "chat" - RERANK = "rerank" - # - UNKNOWN = "unknown" - - -class AgMetricEntryAttributes(BaseModel): - # cumulative: 'cum' can't be used though - cumulative: Optional[Metrics] = None - # incremental 'inc' could be used, since 'unit' may be confusing - incremental: Optional[Metrics] = None - - model_config = {"ser_json_exclude_none": True} - - -class AgMetricsAttributes(BaseModel): - duration: Optional[AgMetricEntryAttributes] = None - errors: Optional[AgMetricEntryAttributes] = None - tokens: Optional[AgMetricEntryAttributes] = None - costs: Optional[AgMetricEntryAttributes] = None - - model_config = {"ser_json_exclude_none": True} - - -class AgTypeAttributes(BaseModel): - trace: Optional[TraceType] = TraceType.INVOCATION - span: Optional[SpanType] = SpanType.TASK - - -class AgDataAttributes(BaseModel): - parameters: Optional[Dict[str, Any]] = None - inputs: Optional[Dict[str, Any]] = None - outputs: Optional[Any] = None - internals: Optional[Dict[str, Any]] = None - - model_config = {"ser_json_exclude_none": True} - - -class AgAttributes(BaseModel): - type: AgTypeAttributes = Field(default_factory=AgTypeAttributes) - data: AgDataAttributes = Field(default_factory=AgDataAttributes) - - metrics: Optional[AgMetricsAttributes] = None - flags: Optional[Flags] = None # type: ignore - tags: Optional[Tags] = None # type: ignore - meta: Optional[Meta] = None # type: ignore - exception: Optional[Data] = None # type: ignore - references: Optional[Dict[str, "OTelReference"]] = None - unsupported: Optional[Data] = None # type: ignore - - model_config = {"ser_json_exclude_none": True} - - -## --- SUB-ENTITIES --- ## - - -class OTelStatusCode(Enum): - STATUS_CODE_UNSET = "STATUS_CODE_UNSET" - STATUS_CODE_OK = "STATUS_CODE_OK" - STATUS_CODE_ERROR = "STATUS_CODE_ERROR" - - -class OTelSpanKind(Enum): - SPAN_KIND_UNSPECIFIED = "SPAN_KIND_UNSPECIFIED" - SPAN_KIND_INTERNAL = "SPAN_KIND_INTERNAL" - SPAN_KIND_SERVER = "SPAN_KIND_SERVER" - SPAN_KIND_CLIENT = "SPAN_KIND_CLIENT" - SPAN_KIND_PRODUCER = "SPAN_KIND_PRODUCER" - SPAN_KIND_CONSUMER = "SPAN_KIND_CONSUMER" - - -OTelAttributes = Json # type: ignore -OTelMetrics = Metrics # type: ignore -OTelTags = Tags # type: ignore - -Attributes = OTelAttributes # type: ignore - - -class OTelEvent(BaseModel): - name: str - timestamp: Union[datetime, int] - - attributes: Optional[OTelAttributes] = None - - -OTelEvents = List[OTelEvent] - - -class OTelHash(Identifier): - attributes: Optional[OTelAttributes] = None - - -OTelHashes = List[OTelHash] - - -class OTelLink(TraceID, SpanID): - attributes: Optional[OTelAttributes] = None - - -OTelLinks = List[OTelLink] - - -class OTelReference(Reference): - attributes: Optional[OTelAttributes] = None - - -OTelReferences = List[OTelReference] - - -class OTelSpansTree(BaseModel): - spans: Optional["OTelNestedSpans"] = None - - -OTelSpansTrees = List[OTelSpansTree] - - -class OTelFlatSpan(Lifecycle): - trace_id: str - span_id: str - parent_id: Optional[str] = None - - trace_type: Optional[TraceType] = None - span_type: Optional[SpanType] = None - - span_kind: Optional[OTelSpanKind] = None - span_name: Optional[str] = None - - start_time: Optional[Union[datetime, int]] = None - end_time: Optional[Union[datetime, int]] = None - - status_code: Optional[OTelStatusCode] = None - status_message: Optional[str] = None - - attributes: Optional[OTelAttributes] = None - references: Optional[OTelReferences] = None - links: Optional[OTelLinks] = None - hashes: Optional[OTelHashes] = None - - exception: Optional[Data] = None # type: ignore - - events: Optional[OTelEvents] = None - - @model_validator(mode="after") - def set_defaults(self): - if self.trace_type is None: - self.trace_type = TraceType.INVOCATION - if self.span_type is None: - self.span_type = SpanType.TASK - if self.span_kind is None: - self.span_kind = OTelSpanKind.SPAN_KIND_UNSPECIFIED - if self.status_code is None: - self.status_code = OTelStatusCode.STATUS_CODE_UNSET - if self.end_time is None and self.start_time is not None: - self.end_time = self.start_time - if self.start_time is None and self.end_time is not None: - self.start_time = self.end_time - if self.start_time is None and self.end_time is None: - now = datetime.now(timezone.utc) - self.start_time = now - self.end_time = now - if self.span_name is None: - self.span_name = "".join( - random.choices(string.ascii_letters + string.digits, k=8) - ) - return self - - -class OTelSpan(OTelFlatSpan, OTelSpansTree): - pass - - -OTelFlatSpans = List[OTelFlatSpan] -OTelNestedSpans = Dict[str, Union[OTelSpan, List[OTelSpan]]] -OTelTraceTree = Dict[str, OTelSpansTree] -OTelTraceTrees = List[OTelTraceTree] -OTelSpans = List[OTelSpan] - - -class Fields(str, Enum): - TRACE_ID = "trace_id" - SPAN_ID = "span_id" - PARENT_ID = "parent_id" - SPAN_NAME = "span_name" - SPAN_KIND = "span_kind" - START_TIME = "start_time" - END_TIME = "end_time" - STATUS_CODE = "status_code" - STATUS_MESSAGE = "status_message" - ATTRIBUTES = "attributes" - EVENTS = "events" - LINKS = "links" - REFERENCES = "references" - CREATED_AT = "created_at" - UPDATED_AT = "updated_at" - DELETED_AT = "deleted_at" - CREATED_BY_ID = "created_by_id" - UPDATED_BY_ID = "updated_by_id" - DELETED_BY_ID = "deleted_by_id" - CONTENT = "content" - - -class LogicalOperator(str, Enum): - AND = "and" - OR = "or" - NOT = "not" - NAND = "nand" - NOR = "nor" - - -class ComparisonOperator(str, Enum): - IS = "is" - IS_NOT = "is_not" - - -class NumericOperator(str, Enum): - EQ = "eq" - NEQ = "neq" - GT = "gt" - LT = "lt" - GTE = "gte" - LTE = "lte" - BETWEEN = "btwn" - - -class StringOperator(str, Enum): - STARTSWITH = "startswith" - ENDSWITH = "endswith" - CONTAINS = "contains" - MATCHES = "matches" - LIKE = "like" - - -class DictOperator(str, Enum): - HAS = "has" - HAS_NOT = "has_not" - - -class ListOperator(str, Enum): - IN = "in" - NOT_IN = "not_in" - - -class ExistenceOperator(str, Enum): - EXISTS = "exists" - NOT_EXISTS = "not_exists" - - -class TextOptions(BaseModel): - case_sensitive: Optional[bool] = False - exact_match: Optional[bool] = False - - -class ListOptions(BaseModel): - all: Optional[bool] = False - - -class Condition(BaseModel): - field: str - key: Optional[str] = None - value: Optional[Union[str, int, float, bool, list, dict]] = None - operator: Optional[ - Union[ - ComparisonOperator, - NumericOperator, - StringOperator, - ListOperator, - DictOperator, - ExistenceOperator, - ] - ] = ComparisonOperator.IS - options: Optional[Union[TextOptions, ListOptions]] = None - - -class Filtering(BaseModel): - operator: Optional[LogicalOperator] = LogicalOperator.AND - conditions: List[Union[Condition, "Filtering"]] = list() - - -class Focus(str, Enum): - TRACE = "trace" - SPAN = "span" - - -class Format(str, Enum): - AGENTA = "agenta" - OPENTELEMETRY = "opentelemetry" - - -class Formatting(BaseModel): - focus: Optional[Focus] = Focus.SPAN - format: Optional[Format] = Format.AGENTA - - -class TracingQuery(BaseModel): - formatting: Optional[Formatting] = None - windowing: Optional[Windowing] = None - filtering: Optional[Filtering] = None - - -_C_OPS = list(ComparisonOperator) -_N_OPS = list(NumericOperator) -_S_OPS = list(StringOperator) -_L_OPS = list(ListOperator) -_D_OPS = list(DictOperator) -_E_OPS = list(ExistenceOperator) - - -class FilteringException(Exception): - pass - - -class Analytics(BaseModel): - count: Optional[int] = 0 - duration: Optional[float] = 0.0 - costs: Optional[float] = 0.0 - tokens: Optional[float] = 0.0 - - def plus(self, other: "Analytics") -> "Analytics": - self.count += other.count - self.duration += other.duration - self.costs += other.costs - self.tokens += other.tokens - - return self - - -class Bucket(BaseModel): - timestamp: datetime - interval: int - total: Analytics - errors: Analytics - - -Trace = OTelSpansTree - -# oss.src.core.observability.dtos - -from enum import Enum -from uuid import UUID -from datetime import datetime -from typing import List, Dict, Any, Union, Optional - -from pydantic import BaseModel - - -## --- SUB-ENTITIES --- ## - - -class RootDTO(BaseModel): - id: UUID - - -class TreeType(Enum): - INVOCATION = "invocation" - ANNOTATION = "annotation" - # - UNKNOWN = "unknown" - - -class TreeDTO(BaseModel): - id: UUID - type: Optional[TreeType] = None - - -class NodeType(Enum): - # --- VARIANTS --- # - ## SPAN_KIND_SERVER - AGENT = "agent" - WORKFLOW = "workflow" - CHAIN = "chain" - ## SPAN_KIND_INTERNAL - TASK = "task" - ## SPAN_KIND_CLIENT - TOOL = "tool" - EMBEDDING = "embedding" - QUERY = "query" - COMPLETION = "completion" # LEGACY - CHAT = "chat" - RERANK = "rerank" - # --- VARIANTS --- # - - -class NodeDTO(BaseModel): - id: UUID - name: str - type: Optional[NodeType] = None - - -class ParentDTO(BaseModel): - id: UUID - - -class TimeDTO(BaseModel): - start: datetime - end: datetime - - -class StatusCode(Enum): - UNSET = "UNSET" - OK = "OK" - ERROR = "ERROR" - - -class StatusDTO(BaseModel): - code: StatusCode - message: Optional[str] = None - - class Config: - use_enum_values = True - - -Attributes = Dict[str, Any] - - -class ExceptionDTO(BaseModel): - timestamp: datetime - type: str - message: Optional[str] = None - stacktrace: Optional[str] = None - attributes: Optional[Attributes] = None - - class Config: - json_encoders = { - UUID: lambda v: str(v), # pylint: disable=unnecessary-lambda - datetime: lambda dt: dt.isoformat(), - } - - -Data = Dict[str, Any] -Metrics = Dict[str, Any] -Meta = Dict[str, Any] -Refs = Dict[str, Any] - - -class LinkDTO(BaseModel): - type: TreeType # Yes, this is correct - id: UUID # node_id, this is correct - tree_id: Optional[UUID] = None - - class Config: - use_enum_values = True - json_encoders = { - UUID: lambda v: str(v), # pylint: disable=unnecessary-lambda - } - - -class OTelSpanKind(Enum): - SPAN_KIND_UNSPECIFIED = "SPAN_KIND_UNSPECIFIED" - # INTERNAL - SPAN_KIND_INTERNAL = "SPAN_KIND_INTERNAL" - # SYNCHRONOUS - SPAN_KIND_SERVER = "SPAN_KIND_SERVER" - SPAN_KIND_CLIENT = "SPAN_KIND_CLIENT" - # ASYNCHRONOUS - SPAN_KIND_PRODUCER = "SPAN_KIND_PRODUCER" - SPAN_KIND_CONSUMER = "SPAN_KIND_CONSUMER" - - -class OTelStatusCode(Enum): - STATUS_CODE_OK = "STATUS_CODE_OK" - STATUS_CODE_ERROR = "STATUS_CODE_ERROR" - STATUS_CODE_UNSET = "STATUS_CODE_UNSET" - - -class OTelContextDTO(BaseModel): - trace_id: str - span_id: str - - -class OTelEventDTO(BaseModel): - name: str - timestamp: str - - attributes: Optional[Attributes] = None - - -class OTelLinkDTO(BaseModel): - context: OTelContextDTO - - attributes: Optional[Attributes] = None - - -class OTelExtraDTO(BaseModel): - kind: Optional[str] = None - - attributes: Optional[Attributes] = None - events: Optional[List[OTelEventDTO]] = None - links: Optional[List[OTelLinkDTO]] = None - - -## --- ENTITIES --- ## - - -class SpanDTO(BaseModel): - trace_id: str - span_id: str - - lifecycle: Optional[LegacyLifecycleDTO] = None - - root: RootDTO - tree: TreeDTO - node: NodeDTO - - parent: Optional[ParentDTO] = None - - time: TimeDTO - status: StatusDTO - - exception: Optional[ExceptionDTO] = None - - data: Optional[Data] = None - metrics: Optional[Metrics] = None - meta: Optional[Meta] = None - refs: Optional[Refs] = None - - links: Optional[List[LinkDTO]] = None - - otel: Optional[OTelExtraDTO] = None - - nodes: Optional[Dict[str, Union["SpanDTO", List["SpanDTO"]]]] = None - - model_config = { - "json_encoders": { - UUID: lambda v: str(v), - datetime: lambda dt: dt.isoformat(), - }, - } - - def encode(self, data: Any) -> Any: - if isinstance(data, dict): - return {k: self.encode(v) for k, v in data.items()} - elif isinstance(data, list): - return [self.encode(item) for item in data] - for type_, encoder in self.model_config["json_encoders"].items(): # type: ignore - if isinstance(data, type_): - return encoder(data) - return data - - def model_dump(self, *args, **kwargs) -> dict: - return self.encode( - super().model_dump( - *args, - **kwargs, - exclude_none=True, - ) - ) - - -class OTelSpanDTO(BaseModel): - context: OTelContextDTO - - name: str - kind: OTelSpanKind = OTelSpanKind.SPAN_KIND_UNSPECIFIED - - start_time: datetime - end_time: datetime - - status_code: OTelStatusCode = OTelStatusCode.STATUS_CODE_UNSET - status_message: Optional[str] = None - - attributes: Optional[Attributes] = None - events: Optional[List[OTelEventDTO]] = None - - parent: Optional[OTelContextDTO] = None - links: Optional[List[OTelLinkDTO]] = None - - -# oss.src.apis.fastapi.observability.models - -from typing import List, Optional -from datetime import datetime - - -class AgentaNodeDTO(SpanDTO): - pass - - -class Tree(BaseModel): - version: str - nodes: List[AgentaNodeDTO] - - -# oss.src.core.blobs.dtos - - -class Blob(Identifier, Lifecycle): - flags: Optional[Flags] = None # type: ignore - tags: Optional[Tags] = None # type: ignore - meta: Optional[Meta] = None # type: ignore - - data: Optional[Data] = None # type: ignore - - set_id: Optional[UUID] = None - - -# oss.src.core.testcases.dtos -# oss.src.core.testsets.dtos - - -class TestsetIdAlias(AliasConfig): - testset_id: Optional[UUID] = None - set_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="testset_id", - ) - - -class TestsetVariantIdAlias(AliasConfig): - testset_variant_id: Optional[UUID] = None - variant_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="testset_variant_id", - ) - - -class Testcase(Blob, TestsetIdAlias): - def model_post_init(self, __context) -> None: - sync_alias("testset_id", "set_id", self) - - -class TestsetFlags(BaseModel): - has_testcases: Optional[bool] = None - has_traces: Optional[bool] = None - - -class TestsetRevisionData(BaseModel): - testcase_ids: Optional[List[UUID]] = None - testcases: Optional[List[Testcase]] = None - - -class SimpleTestset( - Identifier, - Slug, - Lifecycle, - Header, -): - flags: Optional[TestsetFlags] = None - tags: Optional[Tags] = None # type: ignore - meta: Optional[Meta] = None # type: ignore - - data: Optional[TestsetRevisionData] = None - - -class Testset(Artifact): - flags: Optional[TestsetFlags] = None # type: ignore - - -class TestsetRevision( - Revision, - TestsetIdAlias, - TestsetVariantIdAlias, -): - flags: Optional[TestsetFlags] = None # type: ignore - - data: Optional[TestsetRevisionData] = None # type: ignore - - def model_post_init(self, __context) -> None: - sync_alias("testset_id", "artifact_id", self) - sync_alias("testset_variant_id", "variant_id", self) - - -class SimpleTestsetCreate(Slug, Header): - tags: Optional[Tags] = None # type: ignore - meta: Optional[Meta] = None # type: ignore - data: Optional[TestsetRevisionData] = None - - -class SimpleTestsetEdit( - Identifier, - Header, -): - # flags: Optional[TestsetFlags] = None - tags: Optional[Tags] = None # type: ignore - meta: Optional[Meta] = None # type: ignore - - data: Optional[TestsetRevisionData] = None - - -class TestsetResponse(BaseModel): - count: int = 0 - testset: Optional[Testset] = None - - -class TestsetRevisionResponse(BaseModel): - count: int = 0 - testset_revision: Optional[TestsetRevision] = None - - -class SimpleTestsetResponse(BaseModel): - count: int = 0 - testset: Optional[SimpleTestset] = None - - -# oss.src.core.workflows.dtos -from typing import Optional, Dict, Any -from uuid import UUID, uuid4 -from urllib.parse import urlparse - -from pydantic import ( - BaseModel, - Field, - model_validator, - ValidationError, -) - -from jsonschema import ( - Draft202012Validator, - Draft201909Validator, - Draft7Validator, - Draft4Validator, - Draft6Validator, -) -from jsonschema.exceptions import SchemaError - -# aliases ---------------------------------------------------------------------- - - -class WorkflowIdAlias(AliasConfig): - workflow_id: Optional[UUID] = None - artifact_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="workflow_id", - ) - - -class WorkflowVariantIdAlias(AliasConfig): - workflow_variant_id: Optional[UUID] = None - variant_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="workflow_variant_id", - ) - - -class WorkflowRevisionIdAlias(AliasConfig): - workflow_revision_id: Optional[UUID] = None - revision_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="workflow_revision_id", - ) - - -# globals ---------------------------------------------------------------------- - - -class WorkflowFlags(BaseModel): - is_custom: Optional[bool] = None - is_evaluator: Optional[bool] = None - is_human: Optional[bool] = None - - -# workflows -------------------------------------------------------------------- - - -class Workflow(Artifact): - flags: Optional[WorkflowFlags] = None - - -class WorkflowCreate(ArtifactCreate): - flags: Optional[WorkflowFlags] = None - - -class WorkflowEdit(ArtifactEdit): - flags: Optional[WorkflowFlags] = None - - -# workflow variants ------------------------------------------------------------ - - -class WorkflowVariant( - Variant, - WorkflowIdAlias, -): - flags: Optional[WorkflowFlags] = None - - def model_post_init(self, __context) -> None: - sync_alias("workflow_id", "artifact_id", self) - - -class WorkflowVariantCreate( - VariantCreate, - WorkflowIdAlias, -): - flags: Optional[WorkflowFlags] = None - - def model_post_init(self, __context) -> None: - sync_alias("workflow_id", "artifact_id", self) - - -class WorkflowVariantEdit(VariantEdit): - flags: Optional[WorkflowFlags] = None - - -class WorkflowVariantQuery(VariantQuery): - flags: Optional[WorkflowFlags] = None - - -# workflow revisions ----------------------------------------------------------- - - -class WorkflowServiceVersion(BaseModel): - version: Optional[str] = None - - -class WorkflowServiceInterface(WorkflowServiceVersion): - uri: Optional[str] = None # str (Enum) w/ validation - url: Optional[str] = None # str w/ validation - headers: Optional[Dict[str, Reference | str]] = None # either hardcoded or a secret - handler: Optional[Callable] = None - - schemas: Optional[Dict[str, Schema]] = None # json-schema instead of pydantic - mappings: Optional[Mappings] = None # used in the workflow interface - - -class WorkflowServiceConfiguration(WorkflowServiceInterface): - script: Optional[str] = None # str w/ validation - parameters: Optional[Data] = None # configuration values - - -class WorkflowRevisionData(WorkflowServiceConfiguration): - # LEGACY FIELDS - service: Optional[dict] = None # url, schema, kind, etc - configuration: Optional[dict] = None # parameters, variables, etc - - @model_validator(mode="after") - def validate_all(self) -> "WorkflowRevisionData": - errors = [] - - if self.service and self.service.get("agenta") and self.service.get("format"): - _format = self.service.get("format") # pylint: disable=redefined-builtin - - try: - validator_class = self._get_validator_class_from_schema(_format) # type: ignore - validator_class.check_schema(_format) # type: ignore - except SchemaError as e: - errors.append( - { - "loc": ("format",), - "msg": f"Invalid JSON Schema: {e.message}", - "type": "value_error", - "ctx": {"error": str(e)}, - "input": _format, - } - ) - - if self.service and self.service.get("agenta") and self.service.get("url"): - url = self.service.get("url") - - if not self._is_valid_http_url(url): - errors.append( - { - "loc": ("url",), - "msg": "Invalid HTTP(S) URL", - "type": "value_error.url", - "ctx": {"error": "Invalid URL format"}, - "input": url, - } - ) - - if errors: - raise ValidationError.from_exception_data( - self.__class__.__name__, - errors, - ) - - return self - - @staticmethod - def _get_validator_class_from_schema(schema: dict): - """Detect JSON Schema draft from $schema or fallback to 2020-12.""" - schema_uri = schema.get( - "$schema", "https://json-schema.org/draft/2020-12/schema" - ) - - if "2020-12" in schema_uri: - return Draft202012Validator - elif "2019-09" in schema_uri: - return Draft201909Validator - elif "draft-07" in schema_uri: - return Draft7Validator - elif "draft-06" in schema_uri: - return Draft6Validator - elif "draft-04" in schema_uri: - return Draft4Validator - else: - # fallback default if unknown $schema - return Draft202012Validator - - @staticmethod - def _is_valid_http_url(url: str) -> bool: - parsed = urlparse(url) - return parsed.scheme in ("http", "https") and bool(parsed.netloc) - - -class WorkflowRevision( - Revision, - WorkflowIdAlias, - WorkflowVariantIdAlias, -): - flags: Optional[WorkflowFlags] = None - - data: Optional[WorkflowRevisionData] = None - - def model_post_init(self, __context) -> None: - sync_alias("workflow_id", "artifact_id", self) - sync_alias("workflow_variant_id", "variant_id", self) - - -class WorkflowRevisionCreate( - RevisionCreate, - WorkflowIdAlias, - WorkflowVariantIdAlias, -): - flags: Optional[WorkflowFlags] = None - - def model_post_init(self, __context) -> None: - sync_alias("workflow_id", "artifact_id", self) - sync_alias("workflow_variant_id", "variant_id", self) - - -class WorkflowRevisionEdit(RevisionEdit): - flags: Optional[WorkflowFlags] = None - - -class WorkflowRevisionQuery(RevisionQuery): - flags: Optional[WorkflowFlags] = None - - -class WorkflowRevisionCommit( - RevisionCommit, - WorkflowIdAlias, - WorkflowVariantIdAlias, -): - flags: Optional[WorkflowFlags] = None - - data: Optional[WorkflowRevisionData] = None - - def model_post_init(self, __context) -> None: - sync_alias("workflow_id", "artifact_id", self) - sync_alias("workflow_variant_id", "variant_id", self) - - -class WorkflowRevisionsLog( - RevisionsLog, - WorkflowIdAlias, - WorkflowVariantIdAlias, - WorkflowRevisionIdAlias, -): - def model_post_init(self, __context) -> None: - sync_alias("workflow_id", "artifact_id", self) - sync_alias("workflow_variant_id", "variant_id", self) - sync_alias("workflow_revision_id", "revision_id", self) - - -# forks ------------------------------------------------------------------------ - - -class WorkflowRevisionFork(RevisionFork): - flags: Optional[WorkflowFlags] = None - - data: Optional[WorkflowRevisionData] = None - - -class WorkflowRevisionForkAlias(AliasConfig): - workflow_revision: Optional[WorkflowRevisionFork] = None - - revision: Optional[RevisionFork] = Field( - default=None, - exclude=True, - alias="workflow_revision", - ) - - -class WorkflowVariantFork(VariantFork): - flags: Optional[WorkflowFlags] = None - - -class WorkflowVariantForkAlias(AliasConfig): - workflow_variant: Optional[WorkflowVariantFork] = None - - variant: Optional[VariantFork] = Field( - default=None, - exclude=True, - alias="workflow_variant", - ) - - -class WorkflowFork( - ArtifactFork, - WorkflowIdAlias, - WorkflowVariantIdAlias, - WorkflowVariantForkAlias, - WorkflowRevisionIdAlias, - WorkflowRevisionForkAlias, -): - def model_post_init(self, __context) -> None: - sync_alias("workflow_id", "artifact_id", self) - sync_alias("workflow_variant_id", "variant_id", self) - sync_alias("workflow_variant", "variant", self) - sync_alias("workflow_revision_id", "revision_id", self) - sync_alias("workflow_revision", "revision", self) - - -# workflow services ------------------------------------------------------------ - - -class WorkflowServiceData(BaseModel): - parameters: Optional[Data] = None - inputs: Optional[Data] = None - outputs: Optional[Data | str] = None - # - trace_parameters: Optional[Data] = None - trace_inputs: Optional[Data] = None - trace_outputs: Optional[Data | str] = None - # - trace: Optional[Trace] = None - # LEGACY -- used for workflow execution traces - tree: Optional[Tree] = None - - -class WorkflowServiceRequest(Version, Metadata): - tags: Optional[Tags] = None - meta: Optional[Meta] = None - - data: Optional[WorkflowServiceData] = None - - references: Optional[Dict[str, Reference]] = None - links: Optional[Dict[str, Link]] = None - - credentials: Optional[str] = None # Fix typing - secrets: Optional[Dict[str, Any]] = None # Fix typing - - -class WorkflowServiceResponse(Identifier, Version): - data: Optional[WorkflowServiceData] = None - - links: Optional[Dict[str, Link]] = None - - trace_id: Optional[str] = None - - status: Status = Status() - - def __init__(self, **data): - super().__init__(**data) - - self.id = uuid4() if not self.id else self.id - self.version = "2025.07.14" if not self.version else self.version - - -class SuccessStatus(Status): - code: int = 200 - - -class HandlerNotFoundStatus(Status): - code: int = 501 - type: str = "https://docs.agenta.ai/errors#v1:uri:handler-not-found" - - def __init__(self, uri: Optional[str] = None): - super().__init__() - self.message = f"The handler at '{uri}' is not implemented or not available." - - -class RevisionDataNotFoundStatus(Status): - code: int = 404 - type: str = "https://docs.agenta.ai/errors#v1:uri:revision-data-not-found" - - def __init__(self, uri: Optional[str] = None): - super().__init__() - self.message = f"The revision data at '{uri}' could not be found." - - -class RequestDataNotFoundStatus(Status): - code: int = 404 - type: str = "https://docs.agenta.ai/errors#v1:uri:request-data-not-found" - - def __init__(self, uri: Optional[str] = None): - super().__init__() - self.message = f"The request data at '{uri}' could not be found." - - -ERRORS_BASE_URL = "https://docs.agenta.ai/errors" - - -class ErrorStatus(Exception): - code: int - type: str - message: str - stacktrace: Optional[str] = None - - def __init__( - self, - code: int, - type: str, - message: str, - stacktrace: Optional[str] = None, - ): - super().__init__() - self.code = code - self.type = type - self.message = message - self.stacktrace = stacktrace - - def __str__(self): - return f"[EVAL] {self.code} - {self.message} ({self.type})" + ( - f"\nStacktrace: {self.stacktrace}" if self.stacktrace else "" - ) - - def __repr__(self): - return f"ErrorStatus(code={self.code}, type='{self.type}', message='{self.message}')" - - -# ------------------------------------------------------------------------------ - - -class EvaluatorRevision(BaseModel): - id: Optional[UUID] = None - slug: Optional[str] = None - version: Optional[str] = None - - data: Optional[WorkflowRevisionData] = None - - -class ApplicationServiceRequest(WorkflowServiceRequest): - pass - - -class ApplicationServiceResponse(WorkflowServiceResponse): - pass - - -class EvaluatorServiceRequest(WorkflowServiceRequest): - pass - - -class EvaluatorServiceResponse(WorkflowServiceResponse): - pass - - -# oss.src.core.evaluators.dtos - - -class EvaluatorIdAlias(AliasConfig): - evaluator_id: Optional[UUID] = None - workflow_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="evaluator_id", - ) - - -class EvaluatorVariantIdAlias(AliasConfig): - evaluator_variant_id: Optional[UUID] = None - workflow_variant_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="evaluator_variant_id", - ) - - -class EvaluatorRevisionData(WorkflowRevisionData): - pass - - -class EvaluatorFlags(WorkflowFlags): - def __init__(self, **data): - data["is_evaluator"] = True - - super().__init__(**data) - - -class SimpleEvaluatorFlags(EvaluatorFlags): - pass - - -class SimpleEvaluatorData(EvaluatorRevisionData): - pass - - -class Evaluator(Workflow): - flags: Optional[EvaluatorFlags] = None - - -class SimpleEvaluatorRevision( - WorkflowRevision, - EvaluatorIdAlias, - EvaluatorVariantIdAlias, -): - flags: Optional[EvaluatorFlags] = None - - data: Optional[EvaluatorRevisionData] = None - - -class SimpleEvaluator(Identifier, Slug, Lifecycle, Header, Metadata): - flags: Optional[SimpleEvaluatorFlags] = None - - data: Optional[SimpleEvaluatorData] = None - - -class SimpleEvaluatorCreate(Slug, Header, Metadata): - flags: Optional[SimpleEvaluatorFlags] = None - - data: Optional[SimpleEvaluatorData] = None - - -class SimpleEvaluatorEdit(Identifier, Header, Metadata): - flags: Optional[SimpleEvaluatorFlags] = None - - data: Optional[SimpleEvaluatorData] = None - - -class SimpleEvaluatorResponse(BaseModel): - count: int = 0 - evaluator: Optional[SimpleEvaluator] = None - - -class EvaluatorRevisionResponse(BaseModel): - count: int = 0 - evaluator_revision: Optional[EvaluatorRevision] = None - - -# oss.src.core.applications.dtos - -# aliases ---------------------------------------------------------------------- - - -class ApplicationIdAlias(AliasConfig): - application_id: Optional[UUID] = None - workflow_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="application_id", - ) - - -class ApplicationVariantIdAlias(AliasConfig): - application_variant_id: Optional[UUID] = None - workflow_variant_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="application_variant_id", - ) - - -class ApplicationRevisionIdAlias(AliasConfig): - application_revision_id: Optional[UUID] = None - workflow_revision_id: Optional[UUID] = Field( - default=None, - exclude=True, - alias="application_revision_id", - ) - - -# globals ---------------------------------------------------------------------- - - -class ApplicationFlags(WorkflowFlags): - def __init__(self, **data): - data["is_evaluator"] = True - - super().__init__(**data) - - -# applications ------------------------------------------------------------------- - - -class Application(Workflow): - flags: Optional[ApplicationFlags] = None - - -class ApplicationCreate(WorkflowCreate): - flags: Optional[ApplicationFlags] = None - - -class ApplicationEdit(WorkflowEdit): - flags: Optional[ApplicationFlags] = None - - -# application variants ----------------------------------------------------------- - - -class ApplicationVariant( - WorkflowVariant, - ApplicationIdAlias, -): - flags: Optional[ApplicationFlags] = None - - def model_post_init(self, __context) -> None: - sync_alias("application_id", "workflow_id", self) - - -class ApplicationVariantCreate( - WorkflowVariantCreate, - ApplicationIdAlias, -): - flags: Optional[ApplicationFlags] = None - - def model_post_init(self, __context) -> None: - sync_alias("application_id", "workflow_id", self) - - -class ApplicationVariantEdit(WorkflowVariantEdit): - flags: Optional[ApplicationFlags] = None - - -# application revisions ----------------------------------------------------- - - -class ApplicationRevisionData(WorkflowRevisionData): - pass - - -class ApplicationRevision( - WorkflowRevision, - ApplicationIdAlias, - ApplicationVariantIdAlias, -): - flags: Optional[ApplicationFlags] = None - - data: Optional[ApplicationRevisionData] = None - - def model_post_init(self, __context) -> None: - sync_alias("application_id", "workflow_id", self) - sync_alias("application_variant_id", "workflow_variant_id", self) - - -class ApplicationRevisionCreate( - WorkflowRevisionCreate, - ApplicationIdAlias, - ApplicationVariantIdAlias, -): - flags: Optional[ApplicationFlags] = None - - def model_post_init(self, __context) -> None: - sync_alias("application_id", "workflow_id", self) - sync_alias("application_variant_id", "workflow_variant_id", self) - - -class ApplicationRevisionEdit(WorkflowRevisionEdit): - flags: Optional[ApplicationFlags] = None - - -class ApplicationRevisionCommit( - WorkflowRevisionCommit, - ApplicationIdAlias, - ApplicationVariantIdAlias, -): - flags: Optional[ApplicationFlags] = None - - data: Optional[ApplicationRevisionData] = None - - def model_post_init(self, __context) -> None: - sync_alias("application_id", "workflow_id", self) - sync_alias("application_variant_id", "workflow_variant_id", self) - - -class ApplicationRevisionResponse(BaseModel): - count: int = 0 - application_revision: Optional[ApplicationRevision] = None - - -class ApplicationRevisionsResponse(BaseModel): - count: int = 0 - application_revisions: List[ApplicationRevision] = [] - - -# simple applications ------------------------------------------------------------ - - -class LegacyApplicationFlags(WorkflowFlags): - pass - - -class LegacyApplicationData(WorkflowRevisionData): - pass - - -class LegacyApplication(Identifier, Slug, Lifecycle, Header, Metadata): - flags: Optional[LegacyApplicationFlags] = None - - data: Optional[LegacyApplicationData] = None - - -class LegacyApplicationCreate(Slug, Header, Metadata): - flags: Optional[LegacyApplicationFlags] = None - - data: Optional[LegacyApplicationData] = None - - -class LegacyApplicationEdit(Identifier, Header, Metadata): - flags: Optional[LegacyApplicationFlags] = None - - data: Optional[LegacyApplicationData] = None - - -class LegacyApplicationResponse(BaseModel): - count: int = 0 - application: Optional[LegacyApplication] = None - - -# end of oss.src.core.applications.dtos diff --git a/api/ee/tests/manual/evaluations/sdk/entities.py b/api/ee/tests/manual/evaluations/sdk/entities.py deleted file mode 100644 index 12c714db95..0000000000 --- a/api/ee/tests/manual/evaluations/sdk/entities.py +++ /dev/null @@ -1,447 +0,0 @@ -import asyncio -from typing import List, Dict, Any, Callable, Optional -from uuid import uuid4, UUID - -from definitions import ( - Testcase, - TestsetRevisionData, - TestsetRevision, - ApplicationRevision, - EvaluatorRevision, - # - SimpleTestsetCreate, - SimpleTestsetEdit, - # - SimpleTestsetResponse, - TestsetRevisionResponse, - # - Evaluator, - # - SimpleEvaluatorData, - SimpleEvaluatorCreate, - SimpleEvaluatorEdit, - # - EvaluatorRevisionData, - SimpleEvaluatorResponse, - EvaluatorRevisionResponse, - # - ApplicationRevisionResponse, - # - LegacyApplicationData, - LegacyApplicationCreate, - LegacyApplicationEdit, - # - LegacyApplicationResponse, -) -from services import ( - REGISTRY, - register_handler, - retrieve_handler, -) - -from client import authed_api - - -client = authed_api() - -APPLICATION_REVISION_ID = uuid4() -APPLICATION_REVISION = ApplicationRevision( - id=APPLICATION_REVISION_ID, - slug=str(APPLICATION_REVISION_ID)[-12:], - version="0", -) - -EVALUATOR_REVISION_ID = uuid4() -EVALUATOR_REVISION = EvaluatorRevision( - id=EVALUATOR_REVISION_ID, - slug=str(EVALUATOR_REVISION_ID)[-12:], - version="0", -) - - -async def _retrieve_testset( - testset_id: Optional[UUID] = None, - testset_revision_id: Optional[UUID] = None, -) -> Optional[TestsetRevision]: - response = client( - method="POST", - endpoint="/preview/testsets/revisions/retrieve", - params={ - "testset_id": testset_id, - "testset_revision_id": testset_revision_id, - }, - ) - - response.raise_for_status() - - testset_revision_response = TestsetRevisionResponse(**response.json()) - - testset_revision = testset_revision_response.testset_revision - - return testset_revision - - -async def retrieve_testset( - testset_revision_id: Optional[UUID] = None, -) -> Optional[TestsetRevision]: - response = await _retrieve_testset( - testset_revision_id=testset_revision_id, - ) - - return response - - -async def upsert_testset( - testcases_data: List[Dict[str, Any]], - # - testset_revision_id: Optional[UUID] = None, - # - testset_id: Optional[UUID] = None, - testset_name: Optional[str] = None, - testset_description: Optional[str] = None, -) -> Optional[UUID]: - testset_revision_data = TestsetRevisionData( - testcases=[ - Testcase( - data=testcase_data, - ) - for testcase_data in testcases_data - ] - ) - - retrieve_response = None - - if testset_revision_id: - retrieve_response = await _retrieve_testset( - testset_revision_id=testset_revision_id, - ) - elif testset_id: - retrieve_response = await _retrieve_testset( - testset_id=testset_id, - ) - - if retrieve_response and retrieve_response.id: - testset_edit_request = SimpleTestsetEdit( - id=testset_id, - name=testset_name, - description=testset_description, - data=testset_revision_data, - ) - - response = client( - method="PUT", - endpoint=f"/preview/simple/testsets/{testset_id}", - json={ - "testset": testset_edit_request.model_dump( - mode="json", - exclude_none=True, - ) - }, - ) - - try: - response.raise_for_status() - except Exception as e: - print(f"[ERROR]: Failed to update testset: {e}") - return None - - else: - testset_create_request = SimpleTestsetCreate( - name=testset_name, - description=testset_description, - slug=uuid4().hex, - data=testset_revision_data, - ) - - response = client( - method="POST", - endpoint="/preview/simple/testsets/", - json={ - "testset": testset_create_request.model_dump( - mode="json", - exclude_none=True, - ) - }, - ) - - try: - response.raise_for_status() - except Exception as e: - print(f"[ERROR]: Failed to create testset: {e}") - return None - - testset_response = SimpleTestsetResponse(**response.json()) - - testset = testset_response.testset - - if not testset or not testset.id: - return None - - testset_revision = await _retrieve_testset( - testset_id=testset.id, - ) - - if not testset_revision or not testset_revision.id: - return None - - return testset_revision.id - - -async def _retrieve_application( - application_id: Optional[UUID] = None, - application_revision_id: Optional[UUID] = None, -) -> Optional[ApplicationRevision]: - response = client( - method="POST", - endpoint=f"/preview/legacy/applications/revisions/retrieve", - params={ - "application_id": application_id, - "application_revision_id": application_revision_id, - }, - ) - response.raise_for_status() - - application_revision_response = ApplicationRevisionResponse(**response.json()) - - application_revision = application_revision_response.application_revision - - if not application_revision or not application_revision.id: - return None - - if not application_revision.data or not application_revision.data.uri: - return None - - application_revision.data.handler = retrieve_handler(application_revision.data.uri) - - return application_revision - - -async def retrieve_application( - application_revision_id: Optional[UUID] = None, -) -> Optional[ApplicationRevision]: - response = await _retrieve_application( - application_revision_id=application_revision_id, - ) - - return response - - -async def upsert_application( - application_handler: Callable, - application_script: Optional[str] = None, - application_parameters: Optional[Dict[str, Any]] = None, - # - application_revision_id: Optional[UUID] = None, - # - application_id: Optional[UUID] = None, - application_name: Optional[str] = None, - application_description: Optional[str] = None, -) -> Optional[UUID]: - legacy_application_data = LegacyApplicationData( - uri=register_handler(application_handler), - script=application_script, - parameters=application_parameters, - ) - - retrieve_response = None - - if application_revision_id: - retrieve_response = await _retrieve_application( - application_revision_id=application_revision_id, - ) - elif application_id: - retrieve_response = await _retrieve_application( - application_id=application_id, - ) - - if retrieve_response and retrieve_response.id: - application_edit_request = LegacyApplicationEdit( - id=application_id, - name=application_name, - description=application_description, - data=legacy_application_data, - ) - - response = client( - method="PUT", - endpoint=f"/preview/legacy/applications/{application_id}", - json={ - "application": application_edit_request.model_dump( - mode="json", - exclude_none=True, - ) - }, - ) - - try: - response.raise_for_status() - except Exception as e: - print("[ERROR]: Failed to update application:", e) - return None - - else: - application_create_request = LegacyApplicationCreate( - name=application_name, - description=application_description, - slug=uuid4().hex, - data=legacy_application_data, - ) - - response = client( - method="POST", - endpoint="/preview/legacy/applications/", - json={ - "application": application_create_request.model_dump( - mode="json", - exclude_none=True, - ) - }, - ) - - try: - response.raise_for_status() - except Exception as e: - print("[ERROR]: Failed to create application:", e) - return None - - application_response = LegacyApplicationResponse(**response.json()) - - application = application_response.application - - if not application or not application.id: - return None - - application_revision = await _retrieve_application( - application_id=application.id, - ) - - if not application_revision or not application_revision.id: - return None - - return application_revision.id - - -async def _retrieve_evaluator( - evaluator_id: Optional[UUID] = None, - evaluator_revision_id: Optional[UUID] = None, -) -> Optional[EvaluatorRevision]: - response = client( - method="POST", - endpoint=f"/preview/evaluators/revisions/retrieve", - params={ - "evaluator_id": evaluator_id, - "evaluator_revision_id": evaluator_revision_id, - }, - ) - response.raise_for_status() - - evaluator_revision_response = EvaluatorRevisionResponse(**response.json()) - - evaluator_revision = evaluator_revision_response.evaluator_revision - - return evaluator_revision - - -async def retrieve_evaluator( - evaluator_revision_id: Optional[UUID] = None, -) -> Optional[EvaluatorRevision]: - response = await _retrieve_evaluator( - evaluator_revision_id=evaluator_revision_id, - ) - - return response - - -async def upsert_evaluator( - evaluator_handler: Callable, - evaluator_script: Optional[str] = None, - evaluator_parameters: Optional[Dict[str, Any]] = None, - # - evaluator_revision_id: Optional[UUID] = None, - # - evaluator_id: Optional[UUID] = None, - evaluator_name: Optional[str] = None, - evaluator_description: Optional[str] = None, -) -> Optional[UUID]: - simple_evaluator_data = SimpleEvaluatorData( - uri=register_handler(evaluator_handler), - script=evaluator_script, - parameters=evaluator_parameters, - ) - - retrieve_response = None - - if evaluator_revision_id: - retrieve_response = await _retrieve_evaluator( - evaluator_revision_id=evaluator_revision_id, - ) - elif evaluator_id: - retrieve_response = await _retrieve_evaluator( - evaluator_id=evaluator_id, - ) - - if retrieve_response and retrieve_response.id: - evaluator_edit_request = SimpleEvaluatorEdit( - id=evaluator_id, - name=evaluator_name, - description=evaluator_description, - data=simple_evaluator_data, - ) - - response = client( - method="PUT", - endpoint=f"/preview/simple/evaluators/{evaluator_id}", - json={ - "evaluator": evaluator_edit_request.model_dump( - mode="json", - exclude_none=True, - ) - }, - ) - - try: - response.raise_for_status() - except Exception as e: - print("[ERROR]: Failed to update evaluator:", e) - return None - - else: - evaluator_create_request = SimpleEvaluatorCreate( - name=evaluator_name, - description=evaluator_description, - slug=uuid4().hex, - data=simple_evaluator_data, - ) - - response = client( - method="POST", - endpoint="/preview/simple/evaluators/", - json={ - "evaluator": evaluator_create_request.model_dump( - mode="json", - exclude_none=True, - ) - }, - ) - - try: - response.raise_for_status() - except Exception as e: - print("[ERROR]: Failed to create evaluator:", e) - return None - - evaluator_response = SimpleEvaluatorResponse(**response.json()) - - evaluator = evaluator_response.evaluator - - if not evaluator or not evaluator.id: - return None - - evaluator_revision = await _retrieve_evaluator( - evaluator_id=evaluator.id, - ) - - if not evaluator_revision or not evaluator_revision.id: - return None - - return evaluator_revision.id diff --git a/api/ee/tests/manual/evaluations/sdk/evaluate.py b/api/ee/tests/manual/evaluations/sdk/evaluate.py deleted file mode 100644 index e312474144..0000000000 --- a/api/ee/tests/manual/evaluations/sdk/evaluate.py +++ /dev/null @@ -1,340 +0,0 @@ -from typing import Dict, List -from uuid import UUID -from copy import deepcopy - -from definitions import ( - Origin, - Link, - Reference, - SimpleEvaluationFlags, - SimpleEvaluationStatus, - SimpleEvaluationData, - TestsetRevision, - ApplicationRevision, - EvaluatorRevision, - WorkflowServiceData, - ApplicationServiceRequest, - ApplicationServiceResponse, - EvaluatorServiceRequest, - EvaluatorServiceResponse, -) -from evaluations import ( - create_run, - add_scenario, - log_result, - compute_metrics, - get_slug_from_name_and_id, -) - -# from mock_entities import ( -# upsert_testset, -# retrieve_testset, -# upsert_application, -# retrieve_application, -# upsert_evaluator, -# retrieve_evaluator, -# ) - -from entities import ( - upsert_testset, - retrieve_testset, - upsert_application, - retrieve_application, - upsert_evaluator, - retrieve_evaluator, -) - -from services import ( - invoke_application, - invoke_evaluator, -) - -EvaluateSpecs = SimpleEvaluationData - - -# @debug -async def evaluate( - data: SimpleEvaluationData, -): - data = deepcopy(data) - - if data.testset_steps: - if isinstance(data.testset_steps, list): - testset_steps: Dict[str, Origin] = {} - - if all( - isinstance(testset_revision_id, UUID) - for testset_revision_id in data.testset_steps - ): - for testset_revision_id in data.testset_steps: - if isinstance(testset_revision_id, UUID): - testset_steps[str(testset_revision_id)] = "custom" - - elif all( - isinstance(testcases_data, List) - for testcases_data in data.testset_steps - ): - for testcases_data in data.testset_steps: - if isinstance(testcases_data, List): - if all(isinstance(step, Dict) for step in testcases_data): - testset_revision_id = await upsert_testset( - testcases_data=testcases_data, - ) - testset_steps[str(testset_revision_id)] = "custom" - - data.testset_steps = testset_steps - - if not data.testset_steps or not isinstance(data.testset_steps, dict): - print("[failure] missing or invalid testset steps") - return None - - if data.application_steps: - if isinstance(data.application_steps, list): - application_steps: Dict[str, Origin] = {} - - if all( - isinstance(application_revision_id, UUID) - for application_revision_id in data.application_steps - ): - for application_revision_id in data.application_steps: - if isinstance(application_revision_id, UUID): - application_steps[str(application_revision_id)] = "custom" - - elif all( - callable(application_handler) - for application_handler in data.application_steps - ): - for application_handler in data.application_steps: - if callable(application_handler): - application_revision_id = await upsert_application( - application_handler=application_handler, - ) - application_steps[str(application_revision_id)] = "custom" - - data.application_steps = application_steps - - if not data.application_steps or not isinstance(data.application_steps, dict): - print("[failure] missing or invalid application steps") - return None - - if data.evaluator_steps: - if isinstance(data.evaluator_steps, list): - evaluator_steps: Dict[str, Origin] = {} - - if all( - isinstance(evaluator_revision_id, UUID) - for evaluator_revision_id in data.evaluator_steps - ): - for evaluator_revision_id in data.evaluator_steps: - if isinstance(evaluator_revision_id, UUID): - evaluator_steps[str(evaluator_revision_id)] = "custom" - - elif all( - callable(evaluator_handler) - for evaluator_handler in data.evaluator_steps - ): - for evaluator_handler in data.evaluator_steps: - if callable(evaluator_handler): - evaluator_revision_id = await upsert_evaluator( - evaluator_handler=evaluator_handler, - ) - evaluator_steps[str(evaluator_revision_id)] = "custom" - - data.evaluator_steps = evaluator_steps - - if not data.evaluator_steps or not isinstance(data.evaluator_steps, dict): - print("[failure] missing or invalid evaluator steps") - return None - - testsets: Dict[UUID, TestsetRevision] = {} - for testset_revision_id, origin in data.testset_steps.items(): - testset_revision = await retrieve_testset( - testset_revision_id=testset_revision_id, - ) - - if not testset_revision: - continue - - testsets[testset_revision_id] = testset_revision - - applications: Dict[UUID, ApplicationRevision] = {} - for application_revision_id, origin in data.application_steps.items(): - application_revision = await retrieve_application( - application_revision_id=application_revision_id, - ) - - if not application_revision: - continue - - applications[application_revision_id] = application_revision - - evaluators: Dict[UUID, EvaluatorRevision] = {} - for evaluator_revision_id, origin in data.evaluator_steps.items(): - evaluator_revision = await retrieve_evaluator( - evaluator_revision_id=evaluator_revision_id, - ) - - if not evaluator_revision: - continue - - evaluators[evaluator_revision_id] = evaluator_revision - - run = await create_run( - testset_steps=data.testset_steps, - application_steps=data.application_steps, - evaluator_steps=data.evaluator_steps, - ) - - if not run.id: - print("[failure] could not create evaluation") - return None - - scenarios = list() - - for testset_revision_id, testset_revision in testsets.items(): - if not testset_revision.data or not testset_revision.data.testcases: - continue - - testcases = testset_revision.data.testcases - - print() - print(f"From testset_id={str(testset_revision.testset_id)}") - - for testcase in testcases: - print(f"Evaluating testcase_id={str(testcase.id)}") - scenario = await add_scenario( - run_id=run.id, - ) - - results = dict() - - result = await log_result( - run_id=run.id, - scenario_id=scenario.id, - step_key="testset-" + testset_revision.slug, # type: ignore - testcase_id=testcase.id, - ) - - results[testset_revision.slug] = result - - for application_revision_id, application_revision in applications.items(): - if not application_revision or not application_revision.data: - print("Missing or invalid application revision") - continue - - application_request = ApplicationServiceRequest( - data=WorkflowServiceData( - parameters=application_revision.data.parameters, - inputs=testcase.data, - ), - references=dict( - testset_revision=Reference( - id=testset_revision.id, - slug=testset_revision.slug, - version=testset_revision.version, - ), - application_revision=Reference( - id=application_revision.id, - slug=application_revision.slug, - version=application_revision.version, - ), - ), - ) - - application_response = await invoke_application( - request=application_request, - revision=application_revision, - ) - - if ( - not application_response - or not application_response.data - or not application_response.trace_id - ): - print("Missing or invalid application response") - continue - - trace_id = application_response.trace_id - - if not application_revision.id or not application_revision.name: - print("Missing application revision ID or name") - continue - - application_slug = get_slug_from_name_and_id( - name=application_revision.name, - id=application_revision.id, - ) - - result = await log_result( - run_id=run.id, - scenario_id=scenario.id, - step_key="application-" + application_slug, # type: ignore - trace_id=trace_id, - ) - - results[application_slug] = result - - for evaluator_revision_id, evaluator_revision in evaluators.items(): - if not evaluator_revision or not evaluator_revision.data: - print("Missing or invalid evaluator revision") - continue - - evaluator_request = EvaluatorServiceRequest( - data=WorkflowServiceData( - parameters=evaluator_revision.data.parameters, - inputs=testcase.data, - # - trace_outputs=application_response.data.outputs, - trace=application_response.data.trace, - ), - references=dict( - testset_revision=Reference( - id=testset_revision.id, - slug=testset_revision.slug, - version=testset_revision.version, - ), - evaluator_revision=Reference( - id=evaluator_revision.id, - slug=evaluator_revision.slug, - version=evaluator_revision.version, - ), - ), - links=application_response.links, - ) - - evaluator_response = await invoke_evaluator( - request=evaluator_request, - revision=evaluator_revision, - ) - - if not evaluator_response or not evaluator_response.data: - print("Missing or invalid evaluator response") - continue - - trace_id = evaluator_response.trace_id - - result = await log_result( - run_id=run.id, - scenario_id=scenario.id, - step_key="evaluator-" + evaluator_revision.slug, # type: ignore - trace_id=trace_id, - ) - - results[evaluator_revision.slug] = result - - scenarios.append( - { - "scenario": scenario, - "results": results, - }, - ) - - metrics = await compute_metrics( - run_id=run.id, - ) - - return dict( - run=run, - scenarios=scenarios, - metrics=metrics, - ) diff --git a/api/ee/tests/manual/evaluations/sdk/evaluations.py b/api/ee/tests/manual/evaluations/sdk/evaluations.py deleted file mode 100644 index 70720dc583..0000000000 --- a/api/ee/tests/manual/evaluations/sdk/evaluations.py +++ /dev/null @@ -1,208 +0,0 @@ -from typing import Optional, Dict, Any -from uuid import uuid4, UUID - -import unicodedata -import re - -from definitions import ( - EvaluationRun, - EvaluationScenario, - EvaluationResult, - EvaluationMetrics, - Origin, - Target, -) - -from client import authed_api - - -client = authed_api() - - -async def create_run( - *, - flags: Optional[Dict[str, Any]] = None, - tags: Optional[Dict[str, Any]] = None, - meta: Optional[Dict[str, Any]] = None, - # - query_steps: Optional[Target] = None, - testset_steps: Optional[Target] = None, - application_steps: Optional[Target] = None, - evaluator_steps: Optional[Target] = None, - repeats: Optional[int] = None, -) -> EvaluationRun: - payload = dict( - evaluation=dict( - flags=flags, - tags=tags, - meta=meta, - # - data=dict( - status="running", - query_steps=query_steps, - testset_steps=testset_steps, - application_steps=application_steps, - evaluator_steps=evaluator_steps, - repeats=repeats, - ), - ) - ) - - response = client( - method="POST", - endpoint=f"/preview/simple/evaluations/", - json=payload, - ) - - try: - response.raise_for_status() - except: - print(response.text) - raise - - response = response.json() - - run = EvaluationRun(id=UUID(response["evaluation"]["id"])) - - return run - - -async def add_scenario( - *, - flags: Optional[Dict[str, Any]] = None, - tags: Optional[Dict[str, Any]] = None, - meta: Optional[Dict[str, Any]] = None, - # - run_id: UUID, -) -> EvaluationScenario: - payload = dict( - scenarios=[ - dict( - flags=flags, - tags=tags, - meta=meta, - # - run_id=str(run_id), - ) - ] - ) - - response = client( - method="POST", - endpoint=f"/preview/evaluations/scenarios/", - json=payload, - ) - - try: - response.raise_for_status() - except: - print(response.text) - raise - - response = response.json() - - scenario = EvaluationScenario(**response["scenarios"][0]) - - return scenario - - -async def log_result( - *, - flags: Optional[Dict[str, Any]] = None, - tags: Optional[Dict[str, Any]] = None, - meta: Optional[Dict[str, Any]] = None, - # - testcase_id: Optional[UUID] = None, - trace_id: Optional[str] = None, - error: Optional[dict] = None, - # - # timestamp: datetime, - # repeat_idx: str, - step_key: str, - run_id: UUID, - scenario_id: UUID, -) -> EvaluationResult: - payload = dict( - results=[ - dict( - flags=flags, - tags=tags, - meta=meta, - # - testcase_id=str(testcase_id) if testcase_id else None, - trace_id=trace_id, - error=error, - # - # interval=interval, - # timestamp=timestamp, - # repeat_idx=repeat_idx, - step_key=step_key, - run_id=str(run_id), - scenario_id=str(scenario_id), - ) - ] - ) - - response = client( - method="POST", - endpoint=f"/preview/evaluations/results/", - json=payload, - ) - - try: - response.raise_for_status() - except: - print(response.text) - raise - - response = response.json() - - result = EvaluationResult(**response["results"][0]) - - return result - - -async def compute_metrics( - run_id: UUID, -) -> EvaluationMetrics: - payload = dict( - run_id=str(run_id), - ) - - response = client( - method="POST", - endpoint=f"/preview/evaluations/metrics/refresh", - params=payload, - ) - - try: - response.raise_for_status() - except: - print(response.text) - raise - - response = response.json() - - metrics = EvaluationMetrics(**response["metrics"][0]) - - return metrics - - -def get_slug_from_name_and_id( - name: str, - id: UUID, # pylint: disable=redefined-builtin -) -> str: - # Normalize Unicode (e.g., é → e) - name = unicodedata.normalize("NFKD", name) - # Remove non-ASCII characters - name = name.encode("ascii", "ignore").decode("ascii") - # Lowercase and remove non-word characters except hyphens and spaces - name = re.sub(r"[^\w\s-]", "", name.lower()) - # Replace any sequence of hyphens or whitespace with a single hyphen - name = re.sub(r"[-\s]+", "-", name) - # Trim leading/trailing hyphens - name = name.strip("-") - # Last 12 characters of the ID - slug = f"{name}-{id.hex[-12:]}" - - return slug.lower() diff --git a/api/ee/tests/manual/evaluations/sdk/loop.py b/api/ee/tests/manual/evaluations/sdk/loop.py deleted file mode 100644 index 9e166b5fde..0000000000 --- a/api/ee/tests/manual/evaluations/sdk/loop.py +++ /dev/null @@ -1,97 +0,0 @@ -import asyncio -import random -import json - -from evaluate import ( - evaluate, - EvaluateSpecs, -) -from definitions import ( - ApplicationRevision, - ApplicationServiceRequest, - EvaluatorRevision, - EvaluatorServiceRequest, -) - - -dataset = [ - {"country": "Germany", "capital": "Berlin"}, - {"country": "France", "capital": "Paris"}, - {"country": "Spain", "capital": "Madrid"}, - {"country": "Italy", "capital": "Rome"}, -] - - -async def my_application( - revision: ApplicationRevision, - request: ApplicationServiceRequest, - **kwargs, -): - inputs: dict = request.data.inputs # type:ignore - chance = random.choice([True, False]) - outputs = { - "capital": (inputs.get("capital") if chance else "Aloha"), - } - - return outputs - - -async def my_evaluator( - revision: EvaluatorRevision, - request: EvaluatorServiceRequest, - **kwargs, -): - inputs: dict = request.data.inputs # type:ignore - trace_outputs: dict = request.data.trace_outputs # type:ignore - outputs = { - "success": trace_outputs.get("capital") == inputs.get("capital"), - } - - return outputs - - -async def run_evaluation(): - specs = EvaluateSpecs( - testset_steps=[dataset], - application_steps=[my_application], - evaluator_steps=[my_evaluator], - ) - - eval = await evaluate(specs) - - return eval - - -# export AGENTA_API_URL=http://localhost/api -# export AGENTA_API_KEY=xxxxxxxx - -if __name__ == "__main__": - eval = asyncio.run(run_evaluation()) - - if not eval: - exit(1) - - print() - print("Displaying evaluation") - print(f"run_id={eval['run'].id}") # type:ignore - - for scenario in eval["scenarios"]: - print(" " f"scenario_id={scenario['scenario'].id}") # type:ignore - for step_key, result in scenario["results"].items(): # type:ignore - if result.testcase_id: - print( - " " - f"step_key={str(step_key).ljust(32)}, testcase_id={result.testcase_id}", - ) - elif result.trace_id: - print( - " " - f"step_key={str(step_key).ljust(32)}, trace_id={result.trace_id}", - ) - else: - print( - " " - f"step_key={str(step_key).ljust(32)}, error={result.error}", - ) - - print(f"metrics={json.dumps(eval['metrics'].data, indent=4)}") # type:ignore diff --git a/api/ee/tests/manual/evaluations/sdk/mock_entities.py b/api/ee/tests/manual/evaluations/sdk/mock_entities.py deleted file mode 100644 index 8d1d9e5ab4..0000000000 --- a/api/ee/tests/manual/evaluations/sdk/mock_entities.py +++ /dev/null @@ -1,90 +0,0 @@ -from typing import List, Dict, Any, Callable -from uuid import uuid4, UUID - -from definitions import ( - Testcase, - TestsetRevisionData, - TestsetRevision, - ApplicationRevision, - ApplicationRevisionData, - EvaluatorRevision, - WorkflowRevisionData, -) - -from services import register_handler - -TESTSET_REVISION_ID = uuid4() -TESTSET_REVISION = TestsetRevision( - id=TESTSET_REVISION_ID, - slug=str(TESTSET_REVISION_ID)[-12:], - data=TestsetRevisionData( - testcases=[ - Testcase( - id=uuid4(), - data={"country": "Germany", "capital": "Berlin"}, - ), - Testcase( - id=uuid4(), - data={"country": "France", "capital": "Paris"}, - ), - ] - ), -) - -APPLICATION_REVISION_ID = uuid4() -APPLICATION_REVISION = ApplicationRevision( - id=APPLICATION_REVISION_ID, - slug=str(APPLICATION_REVISION_ID)[-12:], - version="0", - data=ApplicationRevisionData(), -) - -EVALUATOR_REVISION_ID = uuid4() -EVALUATOR_REVISION = EvaluatorRevision( - id=EVALUATOR_REVISION_ID, - slug=str(EVALUATOR_REVISION_ID)[-12:], - version="0", - data=WorkflowRevisionData(), -) - -MOCK_URI = None - - -async def upsert_testset( - testcases_data: List[Dict[str, Any]], -) -> UUID: - return TESTSET_REVISION_ID - - -async def retrieve_testset( - testset_revision_id: UUID, -) -> TestsetRevision: - return TESTSET_REVISION - - -async def upsert_application( - application_handler: Callable, -) -> UUID: - global MOCK_URI - MOCK_URI = register_handler(application_handler) - return APPLICATION_REVISION_ID - - -async def retrieve_application( - application_revision_id: UUID, -) -> ApplicationRevision: - application_revision = APPLICATION_REVISION - application_revision.data.uri = MOCK_URI - return application_revision - - -async def upsert_evaluator( - evaluator_handler: Callable, -) -> UUID: - return EVALUATOR_REVISION_ID - - -async def retrieve_evaluator( - evaluator_revision_id: UUID, -) -> EvaluatorRevision: - return EVALUATOR_REVISION diff --git a/api/ee/tests/manual/evaluations/sdk/services.py b/api/ee/tests/manual/evaluations/sdk/services.py deleted file mode 100644 index fee8836401..0000000000 --- a/api/ee/tests/manual/evaluations/sdk/services.py +++ /dev/null @@ -1,375 +0,0 @@ -from typing import Callable, Dict, Optional, Any -from uuid import uuid4, UUID - -from definitions import ( - Status, - WorkflowServiceData, - ApplicationRevision, - ApplicationServiceRequest, - ApplicationServiceResponse, - EvaluatorRevision, - EvaluatorServiceRequest, - EvaluatorServiceResponse, - SuccessStatus, - HandlerNotFoundStatus, - ErrorStatus, - RevisionDataNotFoundStatus, - RequestDataNotFoundStatus, - Link, -) - -from client import authed_api - - -client = authed_api() - - -REGISTRY: Dict[str, Dict[str, Dict[str, Dict[str, Callable]]]] = dict( - user=dict( - custom=dict(), - ), -) - - -def register_handler(fn: Callable) -> str: - global REGISTRY - - key = f"{fn.__module__}.{fn.__name__}" - - if not REGISTRY["user"]["custom"].get(key): - REGISTRY["user"]["custom"][key] = dict() - - REGISTRY["user"]["custom"][key]["latest"] = fn - - uri = f"user:custom:{key}:latest" - - return uri - - -def retrieve_handler(uri: Optional[str] = None) -> Optional[Callable]: - if not uri: - return None - - parts = uri.split(":") - - return REGISTRY[parts[0]][parts[1]].get(parts[2], {}).get(parts[3], None) - - -async def invoke_application( - *, - request: ApplicationServiceRequest, - revision: ApplicationRevision, -) -> ApplicationServiceResponse: - try: - if not revision.data: - return ApplicationServiceResponse( - status=RevisionDataNotFoundStatus(), - ) - - if not request.data: - return ApplicationServiceResponse( - status=RequestDataNotFoundStatus(), - ) - - handler = retrieve_handler(revision.data.uri) - - if not handler: - return ApplicationServiceResponse( - status=HandlerNotFoundStatus( - uri=revision.data.uri, - ), - ) - - outputs = await handler( - revision=revision, - request=request, - # - parameters=revision.data.parameters, - inputs=request.data.inputs, - # - trace_parameters=request.data.trace_parameters, - trace_inputs=request.data.trace_inputs, - trace_outputs=request.data.trace_outputs, - # - trace=request.data.trace, - tree=request.data.tree, - ) - - data = dict( - parameters=revision.data.parameters, - inputs=request.data.inputs, - outputs=outputs, - ) - - references = ( - { - k: ref.model_dump( - mode="json", - ) - for k, ref in request.references.items() - } - if request.references - else None - ) - - links = ( - { - k: ref.model_dump( - mode="json", - ) - for k, ref in request.links.items() - } - if request.links - else None - ) - - link = None - - try: - link = await _invocations_create( - tags=request.tags, - meta=request.meta, - # - data=data, - # - references=references, - links=links, - ) - except Exception as ex: - print(ex) - - response = ApplicationServiceResponse( - status=SuccessStatus(message=""), - data=WorkflowServiceData( - outputs=outputs, - ), - trace_id=link.trace_id if link else None, - links=({revision.slug or uuid4().hex: link} if link else {}), - ) - - return response - - except ErrorStatus as error: - return ApplicationServiceResponse( - status=Status( - code=error.code, - type=error.type, - message=error.message, - stacktrace=error.stacktrace, - ), - ) - - except Exception as ex: - return ApplicationServiceResponse( - status=Status( - code=500, - message=str(ex), - ), - ) - - -async def invoke_evaluator( - *, - request: EvaluatorServiceRequest, - revision: EvaluatorRevision, -) -> EvaluatorServiceResponse: - try: - if not revision.data: - return EvaluatorServiceResponse( - status=RevisionDataNotFoundStatus(), - ) - - if not request.data: - return EvaluatorServiceResponse( - status=RequestDataNotFoundStatus(), - ) - - handler = retrieve_handler(revision.data.uri) - - if not handler: - return EvaluatorServiceResponse( - status=HandlerNotFoundStatus( - uri=revision.data.uri, - ), - ) - - outputs = await handler( - revision=revision, - request=request, - # - parameters=revision.data.parameters, - inputs=request.data.inputs, - # - trace_parameters=request.data.trace_parameters, - trace_inputs=request.data.trace_inputs, - trace_outputs=request.data.trace_outputs, - # - trace=request.data.trace, - tree=request.data.tree, - ) - - data = dict( - parameters=revision.data.parameters, - inputs=request.data.inputs, - outputs=outputs, - ) - - references = ( - { - k: ref.model_dump( - mode="json", - ) - for k, ref in request.references.items() - } - if request.references - else None - ) - - links = ( - { - k: ref.model_dump( - mode="json", - ) - for k, ref in request.links.items() - } - if request.links - else None - ) - - link = None - - try: - link = await _annotations_create( - tags=request.tags, - meta=request.meta, - # - data=data, - # - references=references, - links=links, - ) - except Exception as ex: - print(ex) - - response = EvaluatorServiceResponse( - status=SuccessStatus(message=""), - data=WorkflowServiceData( - outputs=outputs, - ), - trace_id=link.trace_id if link else None, - links=({revision.slug or uuid4().hex: link} if link else {}), - ) - - return response - - except ErrorStatus as error: - return EvaluatorServiceResponse( - status=Status( - code=error.code, - type=error.type, - message=error.message, - stacktrace=error.stacktrace, - ), - ) - - except Exception as ex: - return EvaluatorServiceResponse( - status=Status( - code=500, - message=str(ex), - ), - ) - - -async def _invocations_create( - tags: Optional[Dict[str, Any]] = None, - meta: Optional[Dict[str, Any]] = None, - data: Optional[Dict[str, Any]] = None, - references: Optional[Dict[str, Any]] = None, - links: Optional[Dict[str, Any]] = None, -) -> Optional[Link]: - response = client( - method="POST", - endpoint=f"/preview/invocations/", - json=dict( - invocation=dict( - origin="custom", - kind="eval", - channel="api", - data=data, - tags=tags, - meta=meta, - references=references, - links=links, - ) - ), - ) - - try: - response.raise_for_status() - except: - print(response.text) - raise - - response = response.json() - - trace_id = response.get("invocation", {}).get("trace_id", None) - span_id = response.get("invocation", {}).get("span_id", None) - - link = ( - Link( - trace_id=trace_id, - span_id=span_id, - ) - if trace_id and span_id - else None - ) - - return link - - -async def _annotations_create( - tags: Optional[Dict[str, Any]] = None, - meta: Optional[Dict[str, Any]] = None, - data: Optional[Dict[str, Any]] = None, - references: Optional[Dict[str, Any]] = None, - links: Optional[Dict[str, Any]] = None, -) -> Optional[Link]: - response = client( - method="POST", - endpoint=f"/preview/annotations/", - json=dict( - annotation=dict( - origin="custom", - kind="eval", - channel="api", - data=data, - tags=tags, - meta=meta, - references=references, - links=links, - ) - ), - ) - - try: - response.raise_for_status() - except: - print(response.text) - raise - - response = response.json() - - trace_id = response.get("annotation", {}).get("trace_id", None) - span_id = response.get("annotation", {}).get("span_id", None) - - link = ( - Link( - trace_id=trace_id, - span_id=span_id, - ) - if trace_id and span_id - else None - ) - - return link diff --git a/api/entrypoint.py b/api/entrypoint.py index d004962b25..aa50cf2de1 100644 --- a/api/entrypoint.py +++ b/api/entrypoint.py @@ -108,9 +108,13 @@ container_router, ) +from oss.src.utils.env import env + import agenta as ag -ag.init() +ag.init( + api_url=env.AGENTA_API_URL, +) ee = None if is_ee(): diff --git a/api/oss/databases/postgres/migrations/core/data_migrations/projects.py b/api/oss/databases/postgres/migrations/core/data_migrations/projects.py index f5b870c4e5..5ed91ee5f9 100644 --- a/api/oss/databases/postgres/migrations/core/data_migrations/projects.py +++ b/api/oss/databases/postgres/migrations/core/data_migrations/projects.py @@ -27,7 +27,7 @@ VariantBaseDB, DeploymentDB, AppEnvironmentDB, - TestSetDB, + TestsetDB, ) @@ -45,7 +45,7 @@ EvaluatorConfigDB, HumanEvaluationDB, HumanEvaluationScenarioDB, - TestSetDB, + TestsetDB, ] @@ -101,7 +101,7 @@ def add_completion_testset_to_project(session: Session, project_id: str): "name": f"completion_testset", "csvdata": csvdata, } - testset_db = TestSetDB( + testset_db = TestsetDB( **testset, project_id=uuid.UUID(project_id), ) diff --git a/api/oss/databases/postgres/migrations/core/data_migrations/testsets.py b/api/oss/databases/postgres/migrations/core/data_migrations/testsets.py index da657b7e03..38ec03bc24 100644 --- a/api/oss/databases/postgres/migrations/core/data_migrations/testsets.py +++ b/api/oss/databases/postgres/migrations/core/data_migrations/testsets.py @@ -23,7 +23,7 @@ from oss.src.core.testcases.service import TestcasesService from oss.src.core.testsets.service import TestsetsService, SimpleTestsetsService from oss.src.models.deprecated_models import ( - DeprecatedTestSetDB, + DeprecatedTestsetDB, DeprecatedOrganizationDB, ) @@ -84,8 +84,8 @@ async def migration_old_testsets_to_new_testsets( # Count total rows with a non-null project_id total_query = ( select(func.count()) - .select_from(DeprecatedTestSetDB) - .filter(DeprecatedTestSetDB.project_id.isnot(None)) + .select_from(DeprecatedTestsetDB) + .filter(DeprecatedTestsetDB.project_id.isnot(None)) ) result = await connection.execute(total_query) total_rows = result.scalar() @@ -101,8 +101,8 @@ async def migration_old_testsets_to_new_testsets( while offset < total_testsets: # STEP 1: Fetch evaluator configurations with non-null project_id result = await connection.execute( - select(DeprecatedTestSetDB) - .filter(DeprecatedTestSetDB.project_id.isnot(None)) + select(DeprecatedTestsetDB) + .filter(DeprecatedTestsetDB.project_id.isnot(None)) .offset(offset) .limit(DEFAULT_BATCH_SIZE) ) diff --git a/api/oss/docker/Dockerfile.dev b/api/oss/docker/Dockerfile.dev index da2ee0f82d..647b46c960 100644 --- a/api/oss/docker/Dockerfile.dev +++ b/api/oss/docker/Dockerfile.dev @@ -18,12 +18,13 @@ RUN pip install --upgrade pip \ # COPY ./oss /app/oss/ COPY ./entrypoint.py ./pyproject.toml /app/ +# RUN poetry config virtualenvs.create false \ && poetry install --no-interaction --no-ansi - # && pip install -e /sdk/ +# -# ENV PYTHONPATH=/sdk:$PYTHONPATH +ENV PYTHONPATH=/sdk:$PYTHONPATH # # diff --git a/api/oss/docker/Dockerfile.gh b/api/oss/docker/Dockerfile.gh index a245cfcfa6..cf9817f0b0 100644 --- a/api/oss/docker/Dockerfile.gh +++ b/api/oss/docker/Dockerfile.gh @@ -18,6 +18,7 @@ RUN pip install --upgrade pip \ # COPY ./oss /app/oss/ COPY ./entrypoint.py ./pyproject.toml /app/ +# RUN poetry config virtualenvs.create false \ && poetry install --no-interaction --no-ansi diff --git a/api/oss/src/apis/fastapi/evaluations/router.py b/api/oss/src/apis/fastapi/evaluations/router.py index 781922da95..0c31333196 100644 --- a/api/oss/src/apis/fastapi/evaluations/router.py +++ b/api/oss/src/apis/fastapi/evaluations/router.py @@ -13,6 +13,7 @@ QueriesService, ) from oss.src.core.evaluations.service import ( + EvaluationStatus, EvaluationsService, SimpleEvaluationsService, ) @@ -201,6 +202,15 @@ def __init__( response_model_exclude_none=True, ) + # POST /api/evaluations/runs/{run_id}/close/{status} + self.router.add_api_route( + path="/runs/{run_id}/close/{status}", + methods=["POST"], + endpoint=self.close_run, + response_model=EvaluationRunResponse, + response_model_exclude_none=True, + ) + # POST /api/evaluations/runs/{run_id}/open self.router.add_api_route( path="/runs/{run_id}/open", @@ -768,12 +778,15 @@ async def delete_run( return run_id_response # POST /evaluations/runs/{run_id}/close + # POST /evaluations/runs/{run_id}/close/{status} @intercept_exceptions() async def close_run( self, request: Request, *, run_id: UUID, + # + status: Optional[EvaluationStatus] = None, ) -> EvaluationRunResponse: if is_ee(): if not await check_action_access( # type: ignore @@ -788,6 +801,8 @@ async def close_run( user_id=UUID(request.state.user_id), # run_id=run_id, + # + status=status, ) run_response = EvaluationRunResponse( diff --git a/api/oss/src/apis/fastapi/evaluators/router.py b/api/oss/src/apis/fastapi/evaluators/router.py index f4d1764454..15e3265c2a 100644 --- a/api/oss/src/apis/fastapi/evaluators/router.py +++ b/api/oss/src/apis/fastapi/evaluators/router.py @@ -13,6 +13,7 @@ ) from oss.src.core.evaluators.dtos import ( EvaluatorFlags, + EvaluatorQueryFlags, # EvaluatorQuery, # @@ -21,7 +22,9 @@ SimpleEvaluatorData, SimpleEvaluatorQuery, SimpleEvaluator, + # SimpleEvaluatorFlags, + SimpleEvaluatorQueryFlags, ) from oss.src.core.evaluators.service import ( SimpleEvaluatorsService, @@ -1260,7 +1263,11 @@ async def archive_simple_evaluator( # TODO: FIX ME simple_evaluator_flags = ( SimpleEvaluatorFlags( - **evaluator.flags.model_dump(mode="json"), + **evaluator.flags.model_dump( + mode="json", + exclude_none=True, + exclude_unset=True, + ), ) if evaluator.flags else SimpleEvaluatorFlags() @@ -1351,7 +1358,11 @@ async def unarchive_simple_evaluator( # TODO: FIX ME simple_evaluator_flags = ( SimpleEvaluatorFlags( - **evaluator.flags.model_dump(mode="json"), + **evaluator.flags.model_dump( + mode="json", + exclude_none=True, + exclude_unset=True, + ), ) if evaluator.flags else SimpleEvaluatorFlags() @@ -1391,7 +1402,7 @@ async def list_simple_evaluators( ) -> SimpleEvaluatorsResponse: simple_evaluator_query_request = SimpleEvaluatorQueryRequest( evaluator=SimpleEvaluatorQuery( - flags=SimpleEvaluatorFlags( + flags=SimpleEvaluatorQueryFlags( is_evaluator=True, ) ) @@ -1425,11 +1436,11 @@ async def query_simple_evaluators( # TODO: FIX ME else None ) - flags = EvaluatorFlags( - is_evaluator=True, + flags = EvaluatorQueryFlags( is_custom=( simple_evaluator_flags.is_custom if simple_evaluator_flags else None ), + is_evaluator=True, is_human=( simple_evaluator_flags.is_human if simple_evaluator_flags else None ), @@ -1494,7 +1505,11 @@ async def query_simple_evaluators( # TODO: FIX ME simple_evaluator_flags = ( SimpleEvaluatorFlags( - **evaluator.flags.model_dump(mode="json"), + **evaluator.flags.model_dump( + mode="json", + exclude_none=True, + exclude_unset=True, + ), ) if evaluator.flags else SimpleEvaluatorFlags() diff --git a/api/oss/src/apis/fastapi/evaluators/utils.py b/api/oss/src/apis/fastapi/evaluators/utils.py index c277db32f4..04b46dc7e8 100644 --- a/api/oss/src/apis/fastapi/evaluators/utils.py +++ b/api/oss/src/apis/fastapi/evaluators/utils.py @@ -12,6 +12,7 @@ ) from oss.src.core.evaluators.dtos import ( EvaluatorFlags, + EvaluatorQueryFlags, # EvaluatorQuery, EvaluatorVariantQuery, @@ -55,7 +56,7 @@ def parse_evaluator_query_request_from_params( ) -> EvaluatorQueryRequest: _flags, _tags, _meta = parse_metadata(flags, tags, meta) - __flags = EvaluatorFlags(**_flags) if _flags else None + __flags = EvaluatorQueryFlags(**_flags) if _flags else None evaluator = ( EvaluatorQuery( @@ -201,7 +202,7 @@ def parse_evaluator_variant_query_request_from_params( ) -> EvaluatorVariantQueryRequest: _flags, _tags, _meta = parse_metadata(flags, tags, meta) - __flags = EvaluatorFlags(**_flags) if _flags else None + __flags = EvaluatorQueryFlags(**_flags) if _flags else None evaluator_variant = ( EvaluatorVariantQuery( @@ -387,7 +388,7 @@ def parse_evaluator_revision_query_request_from_params( ) -> EvaluatorRevisionQueryRequest: _flags, _tags, _meta = parse_metadata(flags, tags, meta) - __flags = EvaluatorFlags(**_flags) if _flags else None + __flags = EvaluatorQueryFlags(**_flags) if _flags else None evaluator_revision = ( EvaluatorRevisionQuery( diff --git a/api/oss/src/apis/fastapi/observability/extractors/adapters/default_agenta_adapter.py b/api/oss/src/apis/fastapi/observability/extractors/adapters/default_agenta_adapter.py index bb3c5e3e7a..f9664d80ba 100644 --- a/api/oss/src/apis/fastapi/observability/extractors/adapters/default_agenta_adapter.py +++ b/api/oss/src/apis/fastapi/observability/extractors/adapters/default_agenta_adapter.py @@ -68,3 +68,14 @@ def process(self, attributes: CanonicalAttributes, features: SpanFeatures) -> No if "attributes" not in features.exception: features.exception["attributes"] = {} features.exception["attributes"][attr_key] = decoded_attr_val + + try: + features.links = attributes.links + except Exception as e: + log.error( + "Failed to set links on features. Links from attributes: %s. Error: %s", + attributes.links, + str(e), + exc_info=True, + ) + pass diff --git a/api/oss/src/apis/fastapi/observability/extractors/normalizer.py b/api/oss/src/apis/fastapi/observability/extractors/normalizer.py index f8e940c15d..02348d2948 100644 --- a/api/oss/src/apis/fastapi/observability/extractors/normalizer.py +++ b/api/oss/src/apis/fastapi/observability/extractors/normalizer.py @@ -94,8 +94,8 @@ def normalize(self, otel_span_dto: OTelSpanDTO) -> CanonicalAttributes: ), # Ensure default status_message=otel_span_dto.status_message, span_attributes=copy(otel_span_dto.attributes), - events=events_data, - links=links_data, + events=copy(events_data), + links=copy(links_data), ) return attributes diff --git a/api/oss/src/apis/fastapi/observability/extractors/span_data_builders.py b/api/oss/src/apis/fastapi/observability/extractors/span_data_builders.py index 114dc1eb36..86e5d6c1aa 100644 --- a/api/oss/src/apis/fastapi/observability/extractors/span_data_builders.py +++ b/api/oss/src/apis/fastapi/observability/extractors/span_data_builders.py @@ -163,7 +163,8 @@ def build(self, otel_span_dto: OTelSpanDTO, features: SpanFeatures) -> SpanDTO: refs = features.refs - links = features.links + # links = features.links + links = [] otel = OTelExtraDTO( kind=(otel_span_dto.kind.value if otel_span_dto.kind else None), @@ -317,8 +318,8 @@ def build( try: links.append( OTelLink( - trace_id=link.context.trace_id, - span_id=link.context.span_id, + trace_id=link.trace_id, + span_id=link.span_id, attributes=link.attributes, ) ) diff --git a/api/oss/src/apis/fastapi/observability/opentelemetry/otlp.py b/api/oss/src/apis/fastapi/observability/opentelemetry/otlp.py index 20b3098739..f7ef6cd6a4 100644 --- a/api/oss/src/apis/fastapi/observability/opentelemetry/otlp.py +++ b/api/oss/src/apis/fastapi/observability/opentelemetry/otlp.py @@ -135,6 +135,12 @@ def parse_otlp_stream(otlp_stream: bytes) -> List[OTelSpanDTO]: s_span_id = "0x" + span.span_id.hex() s_context = OTelContextDTO(trace_id=s_trace_id, span_id=s_span_id) + # log.debug( + # "[SPAN] [PARSE] ", + # trace_id=s_trace_id[2:], + # span_id=s_span_id[2:], + # ) + # SPAN PARENT CONTEXT s_parent_id = span.parent_span_id.hex() s_parent_id = "0x" + s_parent_id if s_parent_id else None diff --git a/api/oss/src/apis/fastapi/observability/router.py b/api/oss/src/apis/fastapi/observability/router.py index b95b115997..2c96b9a000 100644 --- a/api/oss/src/apis/fastapi/observability/router.py +++ b/api/oss/src/apis/fastapi/observability/router.py @@ -296,6 +296,13 @@ async def otlp_receiver( ) # -------------------------------------------------------------------- # + # for otel_span in otel_spans: + # log.debug( + # "Receiving trace... ", + # project_id=request.state.project_id, + # trace_id=str(UUID(otel_span.context.trace_id[2:])), + # ) + span_dtos = None try: # ---------------------------------------------------------------- # diff --git a/api/oss/src/apis/fastapi/observability/utils/serialization.py b/api/oss/src/apis/fastapi/observability/utils/serialization.py index b2f6cd4ce9..5d697953da 100644 --- a/api/oss/src/apis/fastapi/observability/utils/serialization.py +++ b/api/oss/src/apis/fastapi/observability/utils/serialization.py @@ -58,7 +58,7 @@ def decode_value( value = loads(encoded) return value try: - value = loads(value) + value = value except JSONDecodeError: pass return value diff --git a/api/oss/src/apis/fastapi/testsets/router.py b/api/oss/src/apis/fastapi/testsets/router.py index 1e5727d212..ddd45d4d8b 100644 --- a/api/oss/src/apis/fastapi/testsets/router.py +++ b/api/oss/src/apis/fastapi/testsets/router.py @@ -1553,7 +1553,7 @@ async def create_simple_testset_from_file( simple_testset_create_request = SimpleTestsetCreateRequest( testset=SimpleTestsetCreate( - slug=testset_slug or uuid4().hex, + slug=testset_slug or uuid4().hex[-12:], # name=testset_name or testset_slug or None, description=testset_description, diff --git a/api/oss/src/apis/fastapi/testsets/utils.py b/api/oss/src/apis/fastapi/testsets/utils.py index c9d30f9823..46c77b0d80 100644 --- a/api/oss/src/apis/fastapi/testsets/utils.py +++ b/api/oss/src/apis/fastapi/testsets/utils.py @@ -644,8 +644,8 @@ def parse_testset_revision_retrieve_request_from_body( TESTSETS_COUNT_LIMIT = 10 * 1_000 # 10,000 testcases per testset TESTSETS_SIZE_LIMIT = 10 * 1024 * 1024 # 10 MB per testset -TESTSETS_COUNT_WARNING = f"Test set exceeds the maximum count of {TESTSETS_COUNT_LIMIT} test cases per test set." -TESTSETS_SIZE_WARNING = f"Test set exceeds the maximum size of {TESTSETS_SIZE_LIMIT // (1024 * 1024)} MB per test set." +TESTSETS_COUNT_WARNING = f"Testset exceeds the maximum count of {TESTSETS_COUNT_LIMIT} testcases per testset." +TESTSETS_SIZE_WARNING = f"Testset exceeds the maximum size of {TESTSETS_SIZE_LIMIT // (1024 * 1024)} MB per testset." TESTSETS_SIZE_EXCEPTION = HTTPException( status_code=400, diff --git a/api/oss/src/apis/fastapi/tracing/router.py b/api/oss/src/apis/fastapi/tracing/router.py index 9e6b082286..72faaed9d6 100644 --- a/api/oss/src/apis/fastapi/tracing/router.py +++ b/api/oss/src/apis/fastapi/tracing/router.py @@ -1,4 +1,4 @@ -from typing import Optional, List, Tuple, Dict +from typing import Optional, List, Tuple, Dict, Union from uuid import UUID from fastapi import APIRouter, Request, Depends, status, HTTPException @@ -158,7 +158,7 @@ async def _upsert( traces: Optional[OTelTraceTree] = None, strict: Optional[bool] = False, ) -> OTelLinks: - _spans: Dict[str, OTelSpan | OTelFlatSpans] = dict() + _spans: Dict[str, Union[OTelSpan, OTelFlatSpans]] = dict() if spans: _spans = { diff --git a/api/oss/src/apis/fastapi/tracing/utils.py b/api/oss/src/apis/fastapi/tracing/utils.py index cb6d30195a..d67c3ca542 100644 --- a/api/oss/src/apis/fastapi/tracing/utils.py +++ b/api/oss/src/apis/fastapi/tracing/utils.py @@ -419,10 +419,15 @@ def initialize_ag_attributes(attributes: Optional[dict]) -> dict: if "configuration" in cleaned_ag["meta"]: if cleaned_ag["data"]["parameters"] is None: cleaned_ag["data"]["parameters"] = cleaned_ag["meta"]["configuration"] + del cleaned_ag["meta"]["configuration"] + if not cleaned_ag["meta"]: + cleaned_ag["meta"] = None # --- unsupported top-level --- for key in ag: if key not in AgAttributes.model_fields: + if key == "refs": + continue unsupported[key] = ag[key] cleaned_ag["unsupported"] = unsupported or None @@ -454,6 +459,9 @@ def initialize_ag_attributes(attributes: Optional[dict]) -> dict: "environment", "environment_variant", "environment_revision", + "snippet", + "snippet_variant", + "snippet_revision", ] diff --git a/api/oss/src/apis/fastapi/workflows/router.py b/api/oss/src/apis/fastapi/workflows/router.py index 1d5f8a5c94..062bb1a91c 100644 --- a/api/oss/src/apis/fastapi/workflows/router.py +++ b/api/oss/src/apis/fastapi/workflows/router.py @@ -1,7 +1,8 @@ -from typing import Optional +from typing import Optional, Union from uuid import UUID from fastapi import APIRouter, Request, status, HTTPException, Depends +from fastapi.responses import Response, JSONResponse, StreamingResponse from oss.src.utils.common import is_ee from oss.src.utils.logging import get_module_logger @@ -14,10 +15,6 @@ from oss.src.core.workflows.dtos import ( WorkflowRevisionData, WorkflowRevision, - # - WorkflowServiceRequest, - WorkflowServiceResponse, - WorkflowServiceInterface, ) from oss.src.core.workflows.service import ( WorkflowsService, @@ -60,6 +57,18 @@ parse_workflow_revision_retrieve_request_from_body, ) +from agenta.sdk.models.workflows import ( + WorkflowServiceRequest, + WorkflowServiceBatchResponse, + WorkflowServiceStreamResponse, +) +from agenta.sdk.decorators.routing import ( + handle_invoke_success, + handle_invoke_failure, + handle_inspect_success, + handle_inspect_failure, +) + if is_ee(): from ee.src.models.shared_models import Permission from ee.src.utils.permissions import check_action_access, FORBIDDEN_EXCEPTION @@ -311,7 +320,9 @@ def __init__( methods=["POST"], operation_id="invoke_workflow", status_code=status.HTTP_200_OK, - response_model=WorkflowServiceResponse, + response_model=Union[ + WorkflowServiceBatchResponse, WorkflowServiceStreamResponse + ], response_model_exclude_none=True, ) @@ -321,7 +332,7 @@ def __init__( methods=["POST"], operation_id="inspect_workflow", status_code=status.HTTP_200_OK, - response_model=WorkflowServiceInterface, + response_model=WorkflowServiceRequest, response_model_exclude_none=True, ) @@ -1103,19 +1114,13 @@ async def retrieve_workflow_revision( # WORKFLOW SERVICES -------------------------------------------------------- @intercept_exceptions() - @suppress_exceptions(default=WorkflowServiceResponse()) + @suppress_exceptions(default=WorkflowServiceBatchResponse()) async def invoke_workflow( self, request: Request, *, workflow_service_request: WorkflowServiceRequest, - # - workflow_revision_data: Optional[WorkflowRevisionData] = None, - # - workflow_retrieve_request: Optional[WorkflowRevisionRetrieveRequest] = Depends( - parse_workflow_revision_retrieve_request_from_params - ), - ) -> WorkflowServiceResponse: + ): if is_ee(): if not await check_action_access( # type: ignore user_uid=request.state.user_id, @@ -1124,63 +1129,27 @@ async def invoke_workflow( ): raise FORBIDDEN_EXCEPTION # type: ignore - workflow_revision = None - - if not workflow_revision_data: - if not workflow_retrieve_request: - raise HTTPException( - status_code=status.HTTP_400_BAD_REQUEST, - detail="Workflow revision data or retrieve request must be provided.", - ) - - workflow_revision_response = await self.retrieve_workflow_revision( - request=request, - retrieve_request_params=workflow_retrieve_request, - ) - - workflow_revision = workflow_revision_response.workflow_revision - - else: - workflow_revision = WorkflowRevision( - data=workflow_revision_data, - ) - - if not workflow_revision: - raise HTTPException( - status_code=status.HTTP_404_NOT_FOUND, - detail="Workflow revision could not be found.", - ) - - if workflow_revision.data and workflow_revision.data.url: - raise HTTPException( - status_code=status.HTTP_400_BAD_REQUEST, - detail="Workflows with URLs cannot be invoked with this endpoint. Please send a request directly to the URL.", - ) - - if workflow_revision.data and not workflow_revision.data.uri: - raise HTTPException( - status_code=status.HTTP_400_BAD_REQUEST, - detail="Workflows without URIs cannot be invoked with this endpoint. Please use a workflow revision with URI.", + try: + response = await self.workflows_service.invoke_workflow( + project_id=UUID(request.state.project_id), + user_id=UUID(request.state.user_id), + # + request=workflow_service_request, ) - workflow_service_response = await self.workflows_service.invoke_workflow( - project_id=UUID(request.state.project_id), - user_id=UUID(request.state.user_id), - # - request=workflow_service_request, - revision=workflow_revision, - ) + return await handle_invoke_success(request, response) - return workflow_service_response + except Exception as exception: + return await handle_invoke_failure(exception) @intercept_exceptions() - @suppress_exceptions(default=WorkflowServiceInterface()) + @suppress_exceptions(default=WorkflowServiceRequest()) async def inspect_workflow( self, request: Request, *, - workflow_service_interface: WorkflowServiceInterface, - ) -> WorkflowServiceInterface: + workflow_service_request: WorkflowServiceRequest, + ): if is_ee(): if not await check_action_access( # type: ignore user_uid=request.state.user_id, @@ -1189,33 +1158,15 @@ async def inspect_workflow( ): raise FORBIDDEN_EXCEPTION # type: ignore - cache_key = { - "uri": workflow_service_interface.uri, - "url": workflow_service_interface.url, - } - - _workflow_service_interface = await get_cache( - namespace="workflows:inspect", - project_id=request.state.project_id, - user_id=request.state.user_id, - key=cache_key, - model=WorkflowServiceInterface, - ) - - if not _workflow_service_interface: - _workflow_service_interface = await self.workflows_service.inspect_workflow( + try: + workflow_service_request = await self.workflows_service.inspect_workflow( project_id=UUID(request.state.project_id), user_id=UUID(request.state.user_id), # - interface=workflow_service_interface, + request=workflow_service_request, ) - await set_cache( - namespace="workflows:inspect", - project_id=request.state.project_id, - user_id=request.state.user_id, - key=cache_key, - value=_workflow_service_interface, - ) + return await handle_inspect_success(workflow_service_request) - return _workflow_service_interface + except Exception as exception: + return await handle_inspect_failure(exception) diff --git a/api/oss/src/apis/fastapi/workflows/utils.py b/api/oss/src/apis/fastapi/workflows/utils.py index e3fde5860c..adcc3b2163 100644 --- a/api/oss/src/apis/fastapi/workflows/utils.py +++ b/api/oss/src/apis/fastapi/workflows/utils.py @@ -12,6 +12,7 @@ ) from oss.src.core.workflows.dtos import ( WorkflowFlags, + WorkflowQueryFlags, # WorkflowQuery, WorkflowVariantQuery, @@ -55,7 +56,7 @@ def parse_workflow_query_request_from_params( ) -> WorkflowQueryRequest: _flags, _tags, _meta = parse_metadata(flags, tags, meta) - __flags = WorkflowFlags(**_flags) if _flags else None # type: ignore + __flags = WorkflowQueryFlags(**_flags) if _flags else None # type: ignore workflow = ( WorkflowQuery( @@ -201,7 +202,7 @@ def parse_workflow_variant_query_request_from_params( ) -> WorkflowVariantQueryRequest: _flags, _tags, _meta = parse_metadata(flags, tags, meta) - __flags = WorkflowFlags(**_flags) if _flags else None # type: ignore + __flags = WorkflowQueryFlags(**_flags) if _flags else None # type: ignore workflow_variant = ( WorkflowVariantQuery( @@ -387,7 +388,7 @@ def parse_workflow_revision_query_request_from_params( ) -> WorkflowRevisionQueryRequest: _flags, _tags, _meta = parse_metadata(flags, tags, meta) - __flags = WorkflowFlags(**_flags) if _flags else None # type: ignore + __flags = WorkflowQueryFlags(**_flags) if _flags else None # type: ignore workflow_revision = ( WorkflowRevisionQuery( diff --git a/api/oss/src/core/annotations/service.py b/api/oss/src/core/annotations/service.py index 71afe821a8..c7229ffbdc 100644 --- a/api/oss/src/core/annotations/service.py +++ b/api/oss/src/core/annotations/service.py @@ -1,4 +1,4 @@ -from typing import Optional, List, Dict, Any +from typing import Optional, List, Dict, Any, Union from uuid import UUID, uuid4 from fastapi import Request @@ -34,6 +34,8 @@ ) from oss.src.core.evaluators.dtos import ( SimpleEvaluatorFlags, + SimpleEvaluatorQueryFlags, + # SimpleEvaluatorData, ) @@ -49,6 +51,7 @@ AnnotationReferences, AnnotationLinks, AnnotationFlags, + AnnotationQueryFlags, # Annotation, AnnotationCreate, @@ -94,7 +97,7 @@ async def create( annotation_create.references.evaluator.slug if annotation_create.references.evaluator else None - ) or uuid4().hex + ) or uuid4().hex[-12:] simple_evaluator_flags = SimpleEvaluatorFlags( is_evaluator=True, @@ -281,7 +284,7 @@ async def edit( annotation.references.evaluator.slug if annotation.references.evaluator else None - ) or uuid4().hex + ) or uuid4().hex[-12:] simple_evaluator_flags = SimpleEvaluatorFlags( is_evaluator=True, @@ -448,7 +451,7 @@ async def query( windowing: Optional[Windowing] = None, ): annotation = annotation_query if annotation_query else None - annotation_flags = AnnotationFlags(is_evaluator=True) + annotation_flags = AnnotationQueryFlags(is_evaluator=True) if annotation: if annotation.origin: @@ -894,7 +897,7 @@ async def _query_annotation( filtering = Filtering() - conditions: List[Condition | Filtering] = [ + conditions: List[Union[Condition, Filtering]] = [ Condition( field="attributes", key="ag.type.trace", diff --git a/api/oss/src/core/annotations/types.py b/api/oss/src/core/annotations/types.py index 9d88e525d6..c40a9355ff 100644 --- a/api/oss/src/core/annotations/types.py +++ b/api/oss/src/core/annotations/types.py @@ -1,7 +1,10 @@ from typing import Optional from oss.src.core.shared.dtos import Reference -from oss.src.core.workflows.dtos import WorkflowFlags +from oss.src.core.workflows.dtos import ( + WorkflowFlags, + WorkflowQueryFlags, +) from oss.src.core.tracing.dtos import ( SimpleTraceOrigin, SimpleTraceKind, @@ -23,6 +26,12 @@ class AnnotationFlags(WorkflowFlags): + is_sdk: bool = False + is_web: bool = False + is_evaluation: bool = False + + +class AnnotationQueryFlags(WorkflowQueryFlags): is_sdk: Optional[bool] = None is_web: Optional[bool] = None is_evaluation: Optional[bool] = None diff --git a/api/oss/src/core/applications/dtos.py b/api/oss/src/core/applications/dtos.py index 86a7e1fe7e..1e38c8462f 100644 --- a/api/oss/src/core/applications/dtos.py +++ b/api/oss/src/core/applications/dtos.py @@ -12,11 +12,13 @@ Metadata, ) from oss.src.core.workflows.dtos import ( + WorkflowFlags, + WorkflowQueryFlags, + # Workflow, WorkflowCreate, WorkflowEdit, WorkflowQuery, - WorkflowFlags, # WorkflowVariant, WorkflowVariantCreate, diff --git a/api/oss/src/core/applications/service.py b/api/oss/src/core/applications/service.py index dc23e8ca19..a8bea97e11 100644 --- a/api/oss/src/core/applications/service.py +++ b/api/oss/src/core/applications/service.py @@ -67,7 +67,9 @@ async def create( app_db = await db_manager.create_app_and_envs( project_id=str(project_id), # - app_name=application_create.name or uuid4().hex, + app_name=application_create.slug + or application_create.name + or uuid4().hex[-12:], # template_key=AppType.CUSTOM, # @@ -93,12 +95,12 @@ async def create( # ------------------------------------------------------------------ # Application variant # ------------------------------------------------------------------ - application_variant_slug = uuid4().hex + application_variant_slug = uuid4().hex[-12:] application_variant_create = ApplicationVariantCreate( slug=application_variant_slug, # - name=application_create.name or uuid4().hex, + name=application_create.name or uuid4().hex[-12:], # tags=application_create.tags, # @@ -109,7 +111,7 @@ async def create( app_variant_db = await db_manager.create_new_app_variant( project_id=str(project_id), # - variant_name=application_variant_create.name, # type: ignore + variant_name="default", # type: ignore # base_name=db_base.base_name, # type: ignore commit_message="initial commit", @@ -123,12 +125,12 @@ async def create( # ----------------------------------------------------------------- # Second revision commit # ------------------------------------------------------------------ - application_revision_slug = uuid4().hex + application_revision_slug = uuid4().hex[-12:] application_revision_commit = ApplicationRevisionCommit( slug=application_revision_slug, # - name=application_create.name or uuid4().hex, + # name=application_create.name or uuid4().hex[-12:], # tags=application_create.tags, # @@ -204,8 +206,6 @@ async def create( updated_at=app_db.updated_at, # type: ignore created_by_id=app_db.modified_by_id, # type: ignore # - tags={"type": app_db.app_type}, # type: ignore - # data=application_revision_data, ) @@ -232,8 +232,6 @@ async def fetch( created_at=app_db.created_at, # type: ignore updated_at=app_db.updated_at, # type: ignore created_by_id=app_db.modified_by_id, # type: ignore - # - tags={"type": app_db.app_type}, # type: ignore ) # Fetch application variant details -------------------------------------------------- @@ -414,7 +412,7 @@ async def edit( # ----------------------------------------------------------------- # Second revision commit # ------------------------------------------------------------------ - application_revision_slug = uuid4().hex + application_revision_slug = uuid4().hex[-12:] application_revision_commit = ApplicationRevisionCommit( slug=application_revision_slug, @@ -490,55 +488,82 @@ async def retrieve( application_revision_ref: Optional[Reference] = None, ) -> Optional[ApplicationRevision]: if ( - application_ref - and not application_ref.id - or application_variant_ref + application_variant_ref and not application_variant_ref.id or application_revision_ref and not application_revision_ref.id ): return None - if application_revision_ref and application_revision_ref.id: - # Fetch application revision details -------------------------------------------------- - variant_revision_db = await db_manager.fetch_app_variant_revision_by_id( - variant_revision_id=str(application_revision_ref.id) - ) - if not variant_revision_db: - return None + if application_revision_ref: + if application_revision_ref.id: + # Fetch application revision details -------------------------------------------------- + variant_revision_db = await db_manager.fetch_app_variant_revision_by_id( + variant_revision_id=str(application_revision_ref.id) + ) + if not variant_revision_db: + return None - # Fetch application variant details --------------------------------------------------- - app_variant_db = await db_manager.fetch_app_variant_by_id( - app_variant_id=str(variant_revision_db.variant_id) - ) - if not app_variant_db: - return None + # Fetch application variant details --------------------------------------------------- + app_variant_db = await db_manager.fetch_app_variant_by_id( + app_variant_id=str(variant_revision_db.variant_id) + ) + if not app_variant_db: + return None - # Fetch application details ---------------------------------------------------------- - app_db = await db_manager.fetch_app_by_id(app_id=str(app_variant_db.app_id)) - if not app_db: - return None + # Fetch application details ---------------------------------------------------------- + app_db = await db_manager.fetch_app_by_id( + app_id=str(app_variant_db.app_id) + ) + if not app_db: + return None + + elif application_ref: + if application_ref.id: + # Fetch application details ---------------------------------------------------------- + app_db = await db_manager.fetch_app_by_id( + app_id=str(application_ref.id) + ) + if not app_db: + return None - elif application_ref and application_ref.id: - # Fetch application details ---------------------------------------------------------- - app_db = await db_manager.fetch_app_by_id(app_id=str(application_ref.id)) - if not app_db: - return None + # Fetch application variant details --------------------------------------------------- + app_variant_db = await db_manager.fetch_latest_app_variant( + app_id=str(app_db.id) + ) + if not app_variant_db: + return None - # Fetch application variant details --------------------------------------------------- - app_variant_db = await db_manager.fetch_latest_app_variant( - app_id=str(app_db.id) - ) - if not app_variant_db: - return None + # Fetch application revision details -------------------------------------------------- + variant_revision_db = await db_manager.fetch_app_variant_revision( + app_variant=str(app_variant_db.id), + revision_number=app_variant_db.revision, # type: ignore + ) + if not variant_revision_db: + return None + elif application_ref.slug: + # Fetch application details ---------------------------------------------------------- + app_db = await db_manager.fetch_app_by_name( + project_id=str(project_id), + app_name=application_ref.slug, + ) + if not app_db: + return None - # Fetch application revision details -------------------------------------------------- - variant_revision_db = await db_manager.fetch_app_variant_revision( - app_variant=str(app_variant_db.id), - revision_number=app_variant_db.revision, # type: ignore - ) - if not variant_revision_db: - return None + # Fetch application variant details --------------------------------------------------- + app_variant_db = await db_manager.fetch_latest_app_variant( + app_id=str(app_db.id) + ) + if not app_variant_db: + return None + + # Fetch application revision details -------------------------------------------------- + variant_revision_db = await db_manager.fetch_app_variant_revision( + app_variant=str(app_variant_db.id), + revision_number=app_variant_db.revision, # type: ignore + ) + if not variant_revision_db: + return None elif application_variant_ref and application_variant_ref.id: # Fetch application variant details --------------------------------------------------- diff --git a/api/oss/src/core/evaluations/interfaces.py b/api/oss/src/core/evaluations/interfaces.py index 65c7f8974d..5f467b0829 100644 --- a/api/oss/src/core/evaluations/interfaces.py +++ b/api/oss/src/core/evaluations/interfaces.py @@ -4,6 +4,7 @@ from oss.src.core.shared.dtos import Windowing from oss.src.core.evaluations.types import ( + EvaluationStatus, EvaluationRun, EvaluationRunCreate, EvaluationRunEdit, @@ -127,6 +128,8 @@ async def close_run( user_id: UUID, # run_id: UUID, + # + status: Optional[EvaluationStatus] = None, ) -> Optional[EvaluationRun]: raise NotImplementedError diff --git a/api/oss/src/core/evaluations/service.py b/api/oss/src/core/evaluations/service.py index 159a1b928b..a6fff35361 100644 --- a/api/oss/src/core/evaluations/service.py +++ b/api/oss/src/core/evaluations/service.py @@ -59,7 +59,7 @@ SimpleEvaluationEdit, SimpleEvaluationQuery, ) - +from oss.src.core.evaluations.types import CURRENT_VERSION from oss.src.core.tracing.dtos import ( TracingQuery, Filtering, @@ -95,6 +95,7 @@ from oss.src.utils.helpers import get_slug_from_name_and_id from oss.src.core.evaluations.utils import get_metrics_keys_from_schema + log = get_module_logger(__name__) @@ -224,6 +225,8 @@ async def create_run( # run: EvaluationRunCreate, ) -> Optional[EvaluationRun]: + run.version = CURRENT_VERSION + return await self.evaluations_dao.create_run( project_id=project_id, user_id=user_id, @@ -239,6 +242,9 @@ async def create_runs( # runs: List[EvaluationRunCreate], ) -> List[EvaluationRun]: + for run in runs: + run.version = CURRENT_VERSION + return await self.evaluations_dao.create_runs( project_id=project_id, user_id=user_id, @@ -280,6 +286,8 @@ async def edit_run( # run: EvaluationRunEdit, ) -> Optional[EvaluationRun]: + run.version = CURRENT_VERSION + return await self.evaluations_dao.edit_run( project_id=project_id, user_id=user_id, @@ -295,6 +303,9 @@ async def edit_runs( # runs: List[EvaluationRunEdit], ) -> List[EvaluationRun]: + for run in runs: + run.version = CURRENT_VERSION + return await self.evaluations_dao.edit_runs( project_id=project_id, user_id=user_id, @@ -335,12 +346,16 @@ async def close_run( user_id: UUID, # run_id: UUID, + # + status: Optional[EvaluationStatus] = None, ) -> Optional[EvaluationRun]: return await self.evaluations_dao.close_run( project_id=project_id, user_id=user_id, # run_id=run_id, + # + status=status, ) async def close_runs( @@ -415,6 +430,8 @@ async def create_scenario( # scenario: EvaluationScenarioCreate, ) -> Optional[EvaluationScenario]: + scenario.version = CURRENT_VERSION + return await self.evaluations_dao.create_scenario( project_id=project_id, user_id=user_id, @@ -430,6 +447,9 @@ async def create_scenarios( # scenarios: List[EvaluationScenarioCreate], ) -> List[EvaluationScenario]: + for scenario in scenarios: + scenario.version = CURRENT_VERSION + return await self.evaluations_dao.create_scenarios( project_id=project_id, user_id=user_id, @@ -471,6 +491,8 @@ async def edit_scenario( # scenario: EvaluationScenarioEdit, ) -> Optional[EvaluationScenario]: + scenario.version = CURRENT_VERSION + return await self.evaluations_dao.edit_scenario( project_id=project_id, user_id=user_id, @@ -486,6 +508,9 @@ async def edit_scenarios( # scenarios: List[EvaluationScenarioEdit], ) -> List[EvaluationScenario]: + for scenario in scenarios: + scenario.version = CURRENT_VERSION + return await self.evaluations_dao.edit_scenarios( project_id=project_id, user_id=user_id, @@ -544,6 +569,8 @@ async def create_result( # result: EvaluationResultCreate, ) -> Optional[EvaluationResult]: + result.version = CURRENT_VERSION + return await self.evaluations_dao.create_result( project_id=project_id, user_id=user_id, @@ -559,6 +586,9 @@ async def create_results( # results: List[EvaluationResultCreate], ) -> List[EvaluationResult]: + for result in results: + result.version = CURRENT_VERSION + return await self.evaluations_dao.create_results( project_id=project_id, user_id=user_id, @@ -600,6 +630,8 @@ async def edit_result( # result: EvaluationResultEdit, ) -> Optional[EvaluationResult]: + result.version = CURRENT_VERSION + return await self.evaluations_dao.edit_result( project_id=project_id, user_id=user_id, @@ -615,6 +647,9 @@ async def edit_results( # results: List[EvaluationResultEdit], ) -> List[EvaluationResult]: + for result in results: + result.version = CURRENT_VERSION + return await self.evaluations_dao.edit_results( project_id=project_id, user_id=user_id, @@ -675,6 +710,9 @@ async def create_metrics( # metrics: List[EvaluationMetricsCreate], ) -> List[EvaluationMetrics]: + for metric in metrics: + metric.version = CURRENT_VERSION + return await self.evaluations_dao.create_metrics( project_id=project_id, user_id=user_id, @@ -703,6 +741,9 @@ async def edit_metrics( # metrics: List[EvaluationMetricsEdit], ) -> List[EvaluationMetrics]: + for metric in metrics: + metric.version = CURRENT_VERSION + return await self.evaluations_dao.edit_metrics( project_id=project_id, user_id=user_id, @@ -867,12 +908,14 @@ async def refresh_metrics( if len(buckets) != 1: log.warning("[WARN] There should be one and only one bucket") + log.warning("[WARN] Buckets:", buckets) continue bucket = buckets[0] if not bucket.metrics: log.warning("[WARN] Bucket metrics should not be empty") + log.warning("[WARN] Bucket:", bucket) continue metrics_data |= {step_key: bucket.metrics} @@ -916,6 +959,8 @@ async def create_queue( # queue: EvaluationQueueCreate, ) -> Optional[EvaluationQueue]: + queue.version = CURRENT_VERSION + return await self.evaluations_dao.create_queue( project_id=project_id, user_id=user_id, @@ -931,6 +976,9 @@ async def create_queues( # queues: List[EvaluationQueueCreate], ) -> List[EvaluationQueue]: + for queue in queues: + queue.version = CURRENT_VERSION + return await self.evaluations_dao.create_queues( project_id=project_id, user_id=user_id, @@ -972,6 +1020,8 @@ async def edit_queue( # queue: EvaluationQueueEdit, ) -> Optional[EvaluationQueue]: + queue.version = CURRENT_VERSION + return await self.evaluations_dao.edit_queue( project_id=project_id, user_id=user_id, @@ -987,6 +1037,9 @@ async def edit_queues( # queues: List[EvaluationQueueEdit], ) -> List[EvaluationQueue]: + for queue in queues: + queue.version = CURRENT_VERSION + return await self.evaluations_dao.edit_queues( project_id=project_id, user_id=user_id, @@ -1142,6 +1195,8 @@ async def create( log.info("[EVAL] [failure] invalid simple evaluation flags") return None + evaluation_jit = evaluation.jit or {"testsets": True, "evaluators": True} + run_data = await self._make_evaluation_run_data( project_id=project_id, user_id=user_id, @@ -1153,7 +1208,7 @@ async def create( # repeats=evaluation.data.repeats, # - jit_migration=True, + jit=evaluation_jit, ) if not run_data: @@ -1200,7 +1255,7 @@ async def create( log.error("[EVAL] [failure] could not start evaluation run") return None - log.info("[EVAL] [success] ", id=run.id) + log.info("[EVAL] [success] ", id=run.id) return _evaluation except: # pylint: disable=bare-except @@ -1618,7 +1673,7 @@ async def _make_evaluation_run_data( # repeats: Optional[int] = None, # - jit_migration: bool = False, + jit: Optional[Dict[str, bool]] = None, ) -> Optional[EvaluationRunData]: # IMPLICIT FLAG: is_multivariate=False # IMPLICIT FLAG: all_inputs=True @@ -1723,10 +1778,10 @@ async def _make_evaluation_run_data( } # JIT MIGRATION ================================================== # - _testset_steps = deepcopy(testset_steps or {}) - testset_steps = dict() + if jit and jit.get("testsets"): + _testset_steps = deepcopy(testset_steps or {}) + testset_steps = dict() - if jit_migration: for testset_id, origin in _testset_steps.items(): testset_ref = Reference(id=testset_id) @@ -1954,10 +2009,10 @@ async def _make_evaluation_run_data( } # JIT MIGRATION ================================================== # - _evaluator_steps = deepcopy(evaluator_steps or {}) - evaluator_steps = dict() + if jit and jit.get("evaluators"): + _evaluator_steps = deepcopy(evaluator_steps or {}) + evaluator_steps = dict() - if jit_migration: for evaluator_id, origin in _evaluator_steps.items(): evaluator_ref = Reference(id=evaluator_id) diff --git a/api/oss/src/core/evaluations/types.py b/api/oss/src/core/evaluations/types.py index af3cd780b4..5ab35ea610 100644 --- a/api/oss/src/core/evaluations/types.py +++ b/api/oss/src/core/evaluations/types.py @@ -28,6 +28,8 @@ Origin = Literal["custom", "human", "auto"] Target = Union[List[UUID], Dict[UUID, Origin]] +CURRENT_VERSION = "2025-07-14" + class EvaluationStatus(str, Enum): PENDING = "pending" @@ -130,7 +132,7 @@ class EvaluationRun(Version, Identifier, Lifecycle, Header, Metadata): class EvaluationRunCreate(Header, Metadata): - version: str = "2025.07.14" + version: str = CURRENT_VERSION flags: Optional[EvaluationRunFlags] = None # type: ignore @@ -139,7 +141,9 @@ class EvaluationRunCreate(Header, Metadata): data: Optional[EvaluationRunData] = None -class EvaluationRunEdit(Version, Identifier, Header, Metadata): +class EvaluationRunEdit(Identifier, Header, Metadata): + version: str = CURRENT_VERSION + flags: Optional[EvaluationRunFlags] = None # type: ignore status: Optional[EvaluationStatus] = None @@ -170,7 +174,7 @@ class EvaluationScenario(Version, Identifier, Lifecycle, Metadata): class EvaluationScenarioCreate(Metadata): - version: str = "2025.07.14" + version: str = CURRENT_VERSION status: Optional[EvaluationStatus] = None @@ -179,7 +183,9 @@ class EvaluationScenarioCreate(Metadata): run_id: UUID -class EvaluationScenarioEdit(Version, Identifier, Metadata): +class EvaluationScenarioEdit(Identifier, Metadata): + version: str = CURRENT_VERSION + status: Optional[EvaluationStatus] = None @@ -219,7 +225,7 @@ class EvaluationResult(Version, Identifier, Lifecycle, Metadata): class EvaluationResultCreate(Metadata): - version: str = "2025.07.14" + version: str = CURRENT_VERSION hash_id: Optional[UUID] = None trace_id: Optional[str] = None @@ -236,7 +242,9 @@ class EvaluationResultCreate(Metadata): run_id: UUID -class EvaluationResultEdit(Version, Identifier, Metadata): +class EvaluationResultEdit(Identifier, Metadata): + version: str = CURRENT_VERSION + hash_id: Optional[UUID] = None trace_id: Optional[str] = None testcase_id: Optional[UUID] = None @@ -285,7 +293,7 @@ class EvaluationMetrics(Version, Identifier, Lifecycle, Metadata): class EvaluationMetricsCreate(Metadata): - version: str = "2025.07.14" + version: str = CURRENT_VERSION status: Optional[EvaluationStatus] = None @@ -297,7 +305,9 @@ class EvaluationMetricsCreate(Metadata): run_id: UUID -class EvaluationMetricsEdit(Version, Identifier, Metadata): +class EvaluationMetricsEdit(Identifier, Metadata): + version: str = CURRENT_VERSION + status: Optional[EvaluationStatus] = None data: Optional[Data] = None @@ -353,7 +363,7 @@ class EvaluationQueue(Version, Identifier, Lifecycle, Header, Metadata): class EvaluationQueueCreate(Header, Metadata): - version: str = "2025.07.14" + version: str = CURRENT_VERSION flags: Optional[EvaluationQueueFlags] = None # type: ignore @@ -364,7 +374,9 @@ class EvaluationQueueCreate(Header, Metadata): run_id: UUID -class EvaluationQueueEdit(Version, Identifier, Header, Metadata): +class EvaluationQueueEdit(Identifier, Header, Metadata): + version: str = CURRENT_VERSION + flags: Optional[EvaluationQueueFlags] = None # type: ignore status: Optional[EvaluationStatus] = None @@ -410,14 +422,18 @@ class SimpleEvaluation(Version, Identifier, Lifecycle, Header, Metadata): class SimpleEvaluationCreate(Header, Metadata): - version: str = "2025.07.14" + version: str = CURRENT_VERSION flags: Optional[SimpleEvaluationFlags] = None # type: ignore data: Optional[SimpleEvaluationData] = None + jit: Optional[Dict[str, bool]] = None + + +class SimpleEvaluationEdit(Identifier, Header, Metadata): + version: str = CURRENT_VERSION -class SimpleEvaluationEdit(Version, Identifier, Header, Metadata): flags: Optional[SimpleEvaluationFlags] = None # type: ignore data: Optional[SimpleEvaluationData] = None diff --git a/api/oss/src/core/evaluations/utils.py b/api/oss/src/core/evaluations/utils.py index 6d2f722423..eb4f899ff7 100644 --- a/api/oss/src/core/evaluations/utils.py +++ b/api/oss/src/core/evaluations/utils.py @@ -1,5 +1,8 @@ -from typing import List, Tuple, Dict +from typing import List, Tuple, Dict, Optional from uuid import UUID +from asyncio import sleep + +from oss.src.core.tracing.dtos import OTelSpansTree # Divides cleanly into 1, 2, 3, 4, 5, 6, 8, 10, ... BLOCKS = 1 * 2 * 3 * 4 * 5 @@ -121,3 +124,30 @@ def get_metrics_keys_from_schema( metrics.append({"path": ".".join(path), "type": metric_type}) return metrics + + +async def fetch_trace( + tracing_router, + request, + # + trace_id: str, + max_retries: int = 15, + delay: float = 1.0, +) -> Optional[OTelSpansTree]: + for attempt in range(max_retries): + try: + response = await tracing_router.fetch_trace( + request=request, + trace_id=trace_id, + ) + + if response and response.traces: + return next(iter(response.traces.values()), None) + + except Exception: + pass + + if attempt < max_retries - 1: + await sleep(delay) + + return None diff --git a/api/oss/src/core/evaluators/dtos.py b/api/oss/src/core/evaluators/dtos.py index 6e4465f84c..169b5d298f 100644 --- a/api/oss/src/core/evaluators/dtos.py +++ b/api/oss/src/core/evaluators/dtos.py @@ -16,11 +16,13 @@ VariantFork, RevisionFork, # + WorkflowFlags, + WorkflowQueryFlags, + # Workflow, WorkflowCreate, WorkflowEdit, WorkflowQuery, - WorkflowFlags, WorkflowFork, # WorkflowVariant, @@ -81,6 +83,13 @@ def __init__(self, **data): super().__init__(**data) +class EvaluatorQueryFlags(WorkflowQueryFlags): + def __init__(self, **data): + data["is_evaluator"] = True + + super().__init__(**data) + + # evaluators ------------------------------------------------------------------- @@ -97,7 +106,7 @@ class EvaluatorEdit(WorkflowEdit): class EvaluatorQuery(WorkflowQuery): - flags: Optional[EvaluatorFlags] = None + flags: Optional[EvaluatorQueryFlags] = None # evaluator variants ----------------------------------------------------------- @@ -128,7 +137,7 @@ class EvaluatorVariantEdit(WorkflowVariantEdit): class EvaluatorVariantQuery(WorkflowVariantQuery): - flags: Optional[EvaluatorFlags] = None + flags: Optional[EvaluatorQueryFlags] = None # evaluator revisions ---------------------------------------------------------- @@ -169,7 +178,7 @@ class EvaluatorRevisionEdit(WorkflowRevisionEdit): class EvaluatorRevisionQuery(WorkflowRevisionQuery): - flags: Optional[EvaluatorFlags] = None + flags: Optional[EvaluatorQueryFlags] = None class EvaluatorRevisionCommit( @@ -258,6 +267,10 @@ class SimpleEvaluatorFlags(EvaluatorFlags): pass +class SimpleEvaluatorQueryFlags(EvaluatorQueryFlags): + pass + + class SimpleEvaluatorData(EvaluatorRevisionData): pass @@ -281,17 +294,7 @@ class SimpleEvaluatorEdit(Identifier, Header, Metadata): class SimpleEvaluatorQuery(Metadata): - flags: Optional[SimpleEvaluatorFlags] = None - - -class SimpleEvaluatorQQuery( - Identifier, - Slug, - Lifecycle, - Header, - SimpleEvaluatorQuery, -): - data: Optional[SimpleEvaluatorData] = None + flags: Optional[SimpleEvaluatorQueryFlags] = None # ------------------------------------------------------------------------------ diff --git a/api/oss/src/core/evaluators/service.py b/api/oss/src/core/evaluators/service.py index 3cddb0d88c..6e547addfe 100644 --- a/api/oss/src/core/evaluators/service.py +++ b/api/oss/src/core/evaluators/service.py @@ -1,10 +1,12 @@ from typing import Optional, List from uuid import UUID, uuid4 +from json import loads from oss.src.utils.helpers import get_slug_from_name_and_id from oss.src.services.db_manager import fetch_evaluator_config from oss.src.core.workflows.dtos import ( WorkflowFlags, + WorkflowQueryFlags, # WorkflowCreate, WorkflowEdit, @@ -32,11 +34,13 @@ SimpleEvaluatorCreate, SimpleEvaluatorEdit, SimpleEvaluatorQuery, - SimpleEvaluatorQQuery, SimpleEvaluatorFlags, + SimpleEvaluatorQueryFlags, # - Evaluator, EvaluatorFlags, + EvaluatorQueryFlags, + # + Evaluator, EvaluatorQuery, EvaluatorRevisionsLog, EvaluatorCreate, @@ -785,13 +789,15 @@ async def create( **( simple_evaluator_create.flags.model_dump( mode="json", + exclude_none=True, + exclude_unset=True, + exclude={"is_evaluator"}, ) - ) + ), + is_evaluator=True, ) if simple_evaluator_create.flags else SimpleEvaluatorFlags( - is_custom=False, - is_human=False, is_evaluator=True, ) ) @@ -827,7 +833,7 @@ async def create( if evaluator is None: return None - evaluator_variant_slug = uuid4().hex + evaluator_variant_slug = uuid4().hex[-12:] evaluator_variant_create = EvaluatorVariantCreate( slug=evaluator_variant_slug, @@ -854,7 +860,38 @@ async def create( if evaluator_variant is None: return None - evaluator_revision_slug = uuid4().hex + evaluator_revision_slug = uuid4().hex[-12:] + + evaluator_revision_commit = EvaluatorRevisionCommit( + slug=evaluator_revision_slug, + # + name=evaluator_create.name, + description=evaluator_create.description, + # + flags=evaluator_flags, + tags=evaluator_create.tags, + meta=evaluator_create.meta, + # + data=None, + # + message="Initial commit", + # + evaluator_id=evaluator.id, + evaluator_variant_id=evaluator_variant.id, + ) + + evaluator_revision: Optional[ + EvaluatorRevision + ] = await self.evaluators_service.commit_evaluator_revision( + project_id=project_id, + user_id=user_id, + evaluator_revision_commit=evaluator_revision_commit, + ) + + if evaluator_revision is None: + return None + + evaluator_revision_slug = uuid4().hex[-12:] evaluator_revision_commit = EvaluatorRevisionCommit( slug=evaluator_revision_slug, @@ -1023,8 +1060,12 @@ async def edit( **( simple_evaluator_edit.flags.model_dump( mode="json", + exclude_none=True, + exclude_unset=True, + exclude={"is_evaluator"}, ) - ) + ), + is_evaluator=True, ) if simple_evaluator_edit.flags else SimpleEvaluatorFlags() @@ -1105,7 +1146,7 @@ async def edit( if evaluator_variant is None: return None - evaluator_revision_slug = uuid4().hex + evaluator_revision_slug = uuid4().hex[-12:] evaluator_revision_commit = EvaluatorRevisionCommit( slug=evaluator_revision_slug, @@ -1209,8 +1250,6 @@ async def transfer( name=name, description=None, flags=SimpleEvaluatorFlags( - is_custom=False, - is_human=False, is_evaluator=True, ), tags=None, @@ -1238,6 +1277,8 @@ async def transfer( SimpleEvaluatorFlags( **new_evaluator.flags.model_dump( mode="json", + exclude_none=True, + exclude_unset=True, ) ) if new_evaluator.flags @@ -1272,7 +1313,7 @@ async def query( include_archived: Optional[bool] = None, # windowing: Optional[Windowing] = None, - ) -> List[SimpleEvaluatorQQuery]: + ) -> List[SimpleEvaluator]: evaluator_query = EvaluatorQuery( **( simple_evaluator_query.model_dump( @@ -1298,7 +1339,7 @@ async def query( if not evaluator_queries: return [] - simple_evaluators_qqueries: List[SimpleEvaluatorQQuery] = [] + simple_evaluators: List[SimpleEvaluator] = [] for evaluator_query in evaluator_queries: evaluator_ref = Reference( @@ -1335,10 +1376,14 @@ async def query( **( evaluator_query.flags.model_dump( mode="json", + exclude_none=True, + exclude_unset=True, + exclude={"is_evaluator"}, ) if evaluator_query.flags else {} ), + is_evaluator=True, ) simple_evaluator_data = SimpleEvaluatorData( @@ -1351,7 +1396,7 @@ async def query( ), ) - evaluator_query = SimpleEvaluatorQQuery( + evaluator_query = SimpleEvaluator( id=evaluator_query.id, slug=evaluator_query.slug, # @@ -1372,9 +1417,9 @@ async def query( data=simple_evaluator_data, ) - simple_evaluators_qqueries.append(evaluator_query) + simple_evaluators.append(evaluator_query) - return simple_evaluators_qqueries + return simple_evaluators # internals ---------------------------------------------------------------- @@ -1390,49 +1435,57 @@ def _transfer_evaluator_revision_data( else None ) headers = None - mappings = None - properties = ( - {"score": {"type": "number"}, "success": {"type": "boolean"}} - if old_evaluator.evaluator_key - in ( - "auto_levenshtein_distance", - "auto_semantic_similarity", - "auto_similarity_match", - "auto_json_diff", - "auto_webhook_test", - "auto_custom_code_run", - "auto_ai_critique", - "rag_faithfulness", - "rag_context_relevancy", + outputs_schema = None + if str(old_evaluator.evaluator_key) == "auto_ai_critique": + json_schema = old_evaluator.settings_values.get("json_schema", None) + if json_schema and isinstance(json_schema, dict): + outputs_schema = json_schema.get("schema", None) + if not outputs_schema: + properties = ( + {"score": {"type": "number"}, "success": {"type": "boolean"}} + if old_evaluator.evaluator_key + in ( + "auto_levenshtein_distance", + "auto_semantic_similarity", + "auto_similarity_match", + "auto_json_diff", + "auto_webhook_test", + "auto_custom_code_run", + "auto_ai_critique", + "rag_faithfulness", + "rag_context_relevancy", + ) + else {"success": {"type": "boolean"}} ) - else {"success": {"type": "boolean"}} - ) - schemas = { - "outputs": { + required = ( + list(properties.keys()) + if old_evaluator.evaluator_key + not in ( + "auto_levenshtein_distance", + "auto_semantic_similarity", + "auto_similarity_match", + "auto_json_diff", + "auto_webhook_test", + "auto_custom_code_run", + "auto_ai_critique", + "rag_faithfulness", + "rag_context_relevancy", + ) + else [] + ) + outputs_schema = { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": properties, - "required": ( - list(properties.keys()) - if old_evaluator.evaluator_key - not in ( - "auto_levenshtein_distance", - "auto_semantic_similarity", - "auto_similarity_match", - "auto_json_diff", - "auto_webhook_test", - "auto_custom_code_run", - "auto_ai_critique", - "rag_faithfulness", - "rag_context_relevancy", - ) - else [] - ), + "required": required, "additionalProperties": False, } - } + schemas = {"outputs": outputs_schema} script = ( - old_evaluator.settings_values.get("code", None) + { + "content": old_evaluator.settings_values.get("code", None), + "runtime": "python", + } if old_evaluator.evaluator_key == "auto_custom_code_run" # type: ignore else None ) @@ -1455,7 +1508,6 @@ def _transfer_evaluator_revision_data( uri=uri, url=url, headers=headers, - mappings=mappings, schemas=schemas, script=script, parameters=parameters, # type: ignore diff --git a/api/oss/src/core/invocations/service.py b/api/oss/src/core/invocations/service.py index cf73839fd5..c6b73ed18d 100644 --- a/api/oss/src/core/invocations/service.py +++ b/api/oss/src/core/invocations/service.py @@ -1,4 +1,4 @@ -from typing import Optional, List +from typing import Optional, List, Union from uuid import UUID, uuid4 from fastapi import Request @@ -88,7 +88,7 @@ async def create( invocation_create.references.application.slug if invocation_create.references.application else None - ) or uuid4().hex + ) or uuid4().hex[-12:] legacy_application_flags = LegacyApplicationFlags() @@ -801,7 +801,7 @@ async def _query_invocation( filtering = Filtering() - conditions: List[Condition | Filtering] = [ + conditions: List[Union[Condition, Filtering]] = [ Condition( field="attributes", key="ag.type.trace", diff --git a/api/oss/src/core/queries/dtos.py b/api/oss/src/core/queries/dtos.py index da88948794..a6c2c113d4 100644 --- a/api/oss/src/core/queries/dtos.py +++ b/api/oss/src/core/queries/dtos.py @@ -4,7 +4,7 @@ from pydantic import BaseModel, Field -from oss.src.core.tracing.dtos import Filtering, Windowing +from oss.src.core.tracing.dtos import Filtering from oss.src.core.shared.dtos import ( Identifier, Slug, @@ -13,6 +13,7 @@ Flags, Tags, Meta, + Windowing, ) from oss.src.core.shared.dtos import sync_alias, AliasConfig from oss.src.core.git.dtos import ( diff --git a/api/oss/src/core/queries/service.py b/api/oss/src/core/queries/service.py index 06189d1ac1..61c7caef6e 100644 --- a/api/oss/src/core/queries/service.py +++ b/api/oss/src/core/queries/service.py @@ -473,20 +473,32 @@ async def fetch_query_revision( return None if query_ref and not query_variant_ref and not query_revision_ref: - query_variant = await self.query_query_variants( + query = await self.fetch_query( project_id=project_id, # - query_refs=[query_ref], + query_ref=query_ref, + ) + + if not query: + return None + + query_ref = Reference( + id=query.id, + slug=query.slug, + ) + + query_variant = await self.fetch_query_variant( + project_id=project_id, # - windowing=Windowing(limit=1, order="descending"), + query_ref=query_ref, ) if not query_variant: return None query_variant_ref = Reference( - id=query_variant[0].id, - slug=query_variant[0].slug, + id=query_variant.id, + slug=query_variant.slug, ) revision = await self.queries_dao.fetch_revision( @@ -748,7 +760,7 @@ async def create( # ---------------------------------------------------------------------- # Query variant # ---------------------------------------------------------------------- - query_variant_slug = uuid4().hex + query_variant_slug = uuid4().hex[-12:] _query_variant_create = QueryVariantCreate( slug=query_variant_slug, @@ -778,7 +790,7 @@ async def create( # ---------------------------------------------------------------------- # Query revision # ---------------------------------------------------------------------- - query_revision_slug = uuid4().hex + query_revision_slug = uuid4().hex[-12:] _query_revision_commit = QueryRevisionCommit( slug=query_revision_slug, @@ -1001,7 +1013,7 @@ async def edit( # ---------------------------------------------------------------------- # Query revision # ---------------------------------------------------------------------- - query_revision_slug = uuid4().hex + query_revision_slug = uuid4().hex[-12:] _query_revision_commit = QueryRevisionCommit( slug=query_revision_slug, diff --git a/api/oss/src/core/services/registry.py b/api/oss/src/core/services/registry.py deleted file mode 100644 index 2b87657ba9..0000000000 --- a/api/oss/src/core/services/registry.py +++ /dev/null @@ -1,45 +0,0 @@ -from oss.src.core.services.v0 import ( - auto_exact_match_v0, - auto_regex_test_v0, - field_match_test_v0, - auto_webhook_test_v0, - auto_custom_code_run_v0, - auto_ai_critique_v0, - auto_starts_with_v0, - auto_ends_with_v0, - auto_contains_v0, - auto_contains_any_v0, - auto_contains_all_v0, - auto_contains_json_v0, - auto_json_diff_v0, - rag_faithfulness_v0, - rag_context_relevancy_v0, - auto_levenshtein_distance_v0, - auto_similarity_match_v0, - auto_semantic_similarity_v0, -) - -REGISTRY = { - "agenta": { - "built-in": { - "auto_exact_match": {"v0": auto_exact_match_v0}, - "auto_regex_test": {"v0": auto_regex_test_v0}, - "field_match_test": {"v0": field_match_test_v0}, - "auto_webhook_test": {"v0": auto_webhook_test_v0}, - "auto_custom_code_run": {"v0": auto_custom_code_run_v0}, - "auto_ai_critique": {"v0": auto_ai_critique_v0}, - "auto_starts_with": {"v0": auto_starts_with_v0}, - "auto_ends_with": {"v0": auto_ends_with_v0}, - "auto_contains": {"v0": auto_contains_v0}, - "auto_contains_any": {"v0": auto_contains_any_v0}, - "auto_contains_all": {"v0": auto_contains_all_v0}, - "auto_contains_json": {"v0": auto_contains_json_v0}, - "auto_json_diff": {"v0": auto_json_diff_v0}, - "rag_faithfulness": {"v0": rag_faithfulness_v0}, - "rag_context_relevancy": {"v0": rag_context_relevancy_v0}, - "auto_levenshtein_distance": {"v0": auto_levenshtein_distance_v0}, - "auto_similarity_match": {"v0": auto_similarity_match_v0}, - "auto_semantic_similarity": {"v0": auto_semantic_similarity_v0}, - }, - }, -} diff --git a/api/oss/src/core/services/v0.py b/api/oss/src/core/services/v0.py deleted file mode 100644 index 7b7aac8eeb..0000000000 --- a/api/oss/src/core/services/v0.py +++ /dev/null @@ -1,1792 +0,0 @@ -import re -import json -import httpx -import traceback -from json import dumps, loads -from typing import Optional, Any, Dict - -import litellm -import numpy as np -from openai import AsyncOpenAI, OpenAIError -from difflib import SequenceMatcher -from autoevals.ragas import Faithfulness, ContextRelevancy - -from oss.src.services.security import sandbox - -from oss.src.utils.traces import ( - remove_trace_prefix, - process_distributed_trace_into_trace_tree, - get_field_value_from_trace_tree, -) - -from oss.src.utils.logging import get_module_logger - -from oss.src.core.workflows.dtos import ( - WorkflowServiceRequest, - WorkflowRevision, -) - -from oss.src.core.workflows.dtos import ( - Data, - Trace, - Tree, -) - -from oss.src.core.workflows.errors import ( - InvalidParametersV0Error, - InvalidCredentialsV0Error, - InvalidParameterPathV0Error, - MissingParametersPathV0Error, - InvalidInputsV0Error, - MissingInputsPathV0Error, - InvalidTraceOutputsV0Error, - MissingTraceOutputsPathV0Error, - InvalidOutputsV0Error, - MissingOutputsPathV0Error, - InvalidCredentialsV0Error, - InvalidSecretsV0Error, - MissingSecretsPathV0Error, - WebhookServerV0Error, - WebhookClientV0Error, - CustomCodeServerV0Error, - RegexPatternV0Error, - PromptFormattingV0Error, - PromptCompletionV0Error, -) - -from oss.src.core.workflows.helpers import compare_jsons - - -log = get_module_logger(__name__) - - -async def _compute_embedding(openai: Any, model: str, input: str): - response = await openai.embeddings.create(model=model, input=input) - - return np.array(response.data[0].embedding) - - -def _compute_similarity(embedding_1, embedding_2) -> float: - return np.dot(embedding_1, embedding_2) - - -def _format_with_template( - content: str, - format: str, - kwargs: Dict[str, Any], -) -> str: - """Internal method to format content based on template_format""" - try: - if format == "fstring": - return content.format(**kwargs) - - elif format == "jinja2": - from jinja2 import Template, TemplateError - - try: - return Template(content).render(**kwargs) - except TemplateError as e: - return content - - elif format == "curly": - import re - - # Extract variables that exist in the original template before replacement - # This allows us to distinguish template variables from {{}} in user input values - original_variables = set(re.findall(r"\{\{(.*?)\}\}", content)) - - result = content - for key, value in kwargs.items(): - pattern = r"\{\{" + re.escape(key) + r"\}\}" - old_result = result - # Escape backslashes in the replacement string to prevent regex interpretation - escaped_value = str(value).replace("\\", "\\\\") - result = re.sub(pattern, escaped_value, result) - - # Only check if ORIGINAL template variables remain unreplaced - # Don't error on {{}} that came from user input values - unreplaced_matches = set(re.findall(r"\{\{(.*?)\}\}", result)) - truly_unreplaced = original_variables & unreplaced_matches - - if truly_unreplaced: - log.info(f"WORKFLOW Found unreplaced variables: {truly_unreplaced}") - raise ValueError( - f"Template variables not found in inputs: {', '.join(sorted(truly_unreplaced))}" - ) - - return result - - except Exception as e: - log.info(f"WORKFLOW Template formatting exception: {e}") - raise e - - return content - - -async def auto_exact_match_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Exact match evaluator for comparing trace_outputs against reference trace_outputs. - - inputs: Test case data, which may contain reference trace_outputs - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator - - Returns: - Evaluation result with success flag (True for match, False for mismatch) - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - # -------------------------------------------------------------------------- - success = False - if isinstance(trace_outputs, str) and isinstance(correct_answer, str): - success = trace_outputs == correct_answer - elif isinstance(trace_outputs, dict) and isinstance(correct_answer, dict): - trace_outputs = dumps(trace_outputs, sort_keys=True) - correct_answer = dumps(correct_answer, sort_keys=True) - success = trace_outputs == correct_answer - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def auto_regex_test_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Regex test evaluator for checking if output matches a regex pattern. - - Args: - inputs: Test case data - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with regex pattern and matching flag - - Returns: - Evaluation result with success flag - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "regex_pattern" in parameters: - raise MissingParametersPathV0Error(path="regex_pattern") - - regex_pattern = parameters["regex_pattern"] - - if not isinstance(regex_pattern, str): - raise InvalidParameterPathV0Error( - path="regex_pattern", - expected=str, - got=type(regex_pattern), - ) - - case_sensitive = parameters.get("case_sensitive", True) is True - - regex_should_match = parameters.get("regex_should_match", True) is True - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - # -------------------------------------------------------------------------- - try: - pattern = re.compile( - regex_pattern, - flags=0 if case_sensitive else re.IGNORECASE, - ) - except Exception as e: - raise RegexPatternV0Error(pattern=regex_pattern) from e - - result = pattern.search(trace_outputs_str) - - success = bool(result) == regex_should_match - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def field_match_test_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Field match test evaluator for extracting and comparing a specific field from JSON output. - - Args: - inputs: Test case data with ground truth - trace_outputs: Output from the workflow execution (expected to be JSON string or dict) - parameters: Configuration for the evaluator with json_field to extract - - Returns: - Evaluation result with success flag - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "json_field" in parameters: - raise MissingParametersPathV0Error(path="json_field") - - json_field = parameters["json_field"] - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_dict = trace_outputs - if isinstance(trace_outputs, str): - try: - trace_outputs_dict = loads(trace_outputs) - except json.JSONDecodeError as e: - raise InvalidTraceOutputsV0Error( - expected=repr(dict) + " | json-object", got="non-json-object" - ) from e - - if not isinstance(trace_outputs_dict, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - if not json_field in trace_outputs_dict: - raise MissingTraceOutputsPathV0Error(path=json_field) - - # -------------------------------------------------------------------------- - success = trace_outputs_dict[json_field] == correct_answer - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def auto_webhook_test_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Webhook test evaluator for sending output to an external service for evaluation. - - Args: - inputs: Test case data with ground truth - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with webhook_url - - Returns: - Evaluation result with score from the webhook - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "webhook_url" in parameters: - raise MissingParametersPathV0Error(path="webhook_url") - - webhook_url = parameters["webhook_url"] - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - threshold = parameters.get("threshold") or 0.5 - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - # -------------------------------------------------------------------------- - json_payload = { - "inputs": inputs, - "output": trace_outputs_str, - "correct_answer": correct_answer, - } - - async with httpx.AsyncClient() as client: - try: - response = await client.post( - url=webhook_url, - json=json_payload, - ) - except Exception as e: - raise WebhookClientV0Error( - code=500, - message=str(e), - ) from e - - if response.status_code != 200: - raise WebhookServerV0Error( - code=response.status_code, - message=response.json(), - ) - - try: - response = response.json() - except Exception as e: - raise WebhookClientV0Error( - code=500, - message=str(e), - ) from e - - if response is None or not isinstance(response, dict): - raise InvalidOutputsV0Error(expected=dict, got=type(response)) - - if not "score" in response: - raise MissingOutputsPathV0Error(path="score") - - score = response["score"] - # -------------------------------------------------------------------------- - - if not isinstance(score, (int, float)): - raise InvalidOutputsV0Error(expected=(int, float), got=type(score)) - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} - - -async def auto_custom_code_run_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Custom code execution evaluator for running arbitrary code to evaluate trace_outputs. - - Args: - inputs: Test case data with ground truth - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with code to execute - - Returns: - Evaluation result with score from the custom code - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "code" in parameters: - raise MissingParametersPathV0Error(path="code") - - code = parameters["code"] - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - threshold = parameters.get("threshold") or 0.5 - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - # -------------------------------------------------------------------------- - try: - score = sandbox.execute_code_safely( - app_params=trace_parameters, - inputs=inputs, - output=trace_outputs, - correct_answer=correct_answer, - code=code, - datapoint=inputs, - ) - except Exception as e: - raise CustomCodeServerV0Error( - message=str(e), - stacktrace=traceback.format_exc(), - ) from e - # -------------------------------------------------------------------------- - - if not isinstance(score, (int, float)): - raise InvalidOutputsV0Error(expected=(int, float), got=type(score)) - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} - - -async def auto_ai_critique_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - # return {"score": 0.75, "success": True} - - """ - AI critique evaluator for using an LLM to evaluate trace_outputs. - - Args: - inputs: Test case data with ground truth - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with prompt_template and model - - Returns: - Evaluation result with score from the AI - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - if not "prompt_template" in parameters: - raise MissingParametersPathV0Error(path="prompt_template") - - prompt_template = parameters["prompt_template"] - - if not isinstance(prompt_template, list): - raise InvalidParameterPathV0Error( - path="prompt_template", - expected=list, - got=type(prompt_template), - ) - - template_version = parameters.get("version") or "3" - - template_format = "fstring" if template_version == "2" else "curly" - - model = parameters.get("model", "gpt-3.5-turbo") - - if not isinstance(model, str): - raise InvalidParameterPathV0Error( - path="model", - expected=str, - got=type(model), - ) - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - secrets = request.secrets - - if not secrets or not isinstance(secrets, dict): - raise InvalidSecretsV0Error(expected=dict, got=type(secrets)) - - openai_api_key = secrets.get("OPENAI_API_KEY") - anthropic_api_key = secrets.get("ANTHROPIC_API_KEY") - - threshold = parameters.get("threshold") or 0.5 - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - # -------------------------------------------------------------------------- - litellm.openai_key = openai_api_key - litellm.anthropic_key = anthropic_api_key - - context = { - **inputs, - # - "prediction": trace_outputs, - "ground_truth": correct_answer, - # - "trace_inputs": trace_inputs, - "trace_outputs": trace_outputs, - } - - try: - formatted_prompt_template = [ - { - "role": message["role"], - "content": _format_with_template( - content=message["content"], - format=template_format, - kwargs=context, - ), - } - for message in prompt_template - ] - except Exception as e: - raise PromptFormattingV0Error( - message=str(e), - stacktrace=traceback.format_exc(), - ) from e - - try: - completion_kwargs = { - "model": model, - "messages": formatted_prompt_template, - } - - if "gpt-5" not in model: - completion_kwargs["temperature"] = 0.01 - - response = await litellm.acompletion(**completion_kwargs) - - score = response.choices[0].message.content.strip() - - except litellm.AuthenticationError as e: - e.message = e.message.replace( - "litellm.AuthenticationError: AuthenticationError: ", "" - ) - raise e - - except Exception as e: - raise PromptCompletionV0Error( - message=str(e), - stacktrace=traceback.format_exc(), - ) from e - # -------------------------------------------------------------------------- - - try: - score = float(score) - except Exception as e: - raise InvalidOutputsV0Error(expected=float, got=type(score)) from e - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} - - -async def auto_starts_with_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Starts with evaluator for checking if output starts with a specific prefix. - - Args: - inputs: Test case data - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with prefix and case sensitivity setting - - Returns: - Evaluation result with success flag - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "prefix" in parameters: - raise MissingParametersPathV0Error(path="prefix") - - prefix = parameters["prefix"] - - if not isinstance(prefix, str): - raise InvalidParameterPathV0Error( - path="prefix", - expected=str, - got=type(prefix), - ) - - case_sensitive = parameters.get("case_sensitive", True) is True - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - # -------------------------------------------------------------------------- - if not case_sensitive: - trace_outputs_str = trace_outputs_str.lower() - prefix = prefix.lower() - - success = trace_outputs_str.startswith(prefix) - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def auto_ends_with_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Ends with evaluator for checking if output ends with a specific suffix. - - Args: - inputs: Test case data - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with suffix and case sensitivity setting - - Returns: - Evaluation result with success flag - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "suffix" in parameters: - raise MissingParametersPathV0Error(path="suffix") - - suffix = parameters["suffix"] - - if not isinstance(suffix, str): - raise InvalidParameterPathV0Error( - path="suffix", - expected=str, - got=type(suffix), - ) - - case_sensitive = parameters.get("case_sensitive", True) is True - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - # -------------------------------------------------------------------------- - if not case_sensitive: - trace_outputs_str = trace_outputs_str.lower() - suffix = suffix.lower() - - success = trace_outputs_str.endswith(suffix) - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def auto_contains_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Contains evaluator for checking if output contains a specific substring. - - Args: - inputs: Test case data - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with substring and case sensitivity setting - - Returns: - Evaluation result with success flag - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "substring" in parameters: - raise MissingParametersPathV0Error(path="substring") - - substring = parameters["substring"] - - if not isinstance(substring, str): - raise InvalidParameterPathV0Error( - path="substring", - expected=str, - got=type(substring), - ) - - case_sensitive = parameters.get("case_sensitive", True) is True - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - # -------------------------------------------------------------------------- - if not case_sensitive: - trace_outputs_str = trace_outputs_str.lower() - substring = substring.lower() - - success = substring in trace_outputs_str - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def auto_contains_any_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Contains any evaluator for checking if output contains any of the specified substrings. - - Args: - inputs: Test case data - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with substrings list and case sensitivity setting - - Returns: - Evaluation result with success flag - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "substrings" in parameters: - raise MissingParametersPathV0Error(path="substrings") - - substrings = parameters["substrings"] - - if not isinstance(substrings, str): - raise InvalidParameterPathV0Error( - path="substrings", - expected=str, - got=type(substrings), - ) - - substrings = [s.strip() for s in substrings] - - if not all(isinstance(s, str) for s in substrings): - raise InvalidParameterPathV0Error( - path="substrings", - expected="List[str]", - got="List[Any]", - ) - - case_sensitive = parameters.get("case_sensitive", True) is True - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - # -------------------------------------------------------------------------- - if not case_sensitive: - trace_outputs_str = trace_outputs_str.lower() - substrings = [s.lower() for s in substrings] - - success = any(substring in trace_outputs_str for substring in substrings) - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def auto_contains_all_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Contains all evaluator for checking if output contains all of the specified substrings. - - Args: - inputs: Test case data - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with substrings list and case sensitivity setting - - Returns: - Evaluation result with success flag - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "substrings" in parameters: - raise MissingParametersPathV0Error(path="substrings") - - substrings = parameters["substrings"] - - if not isinstance(substrings, str): - raise InvalidParameterPathV0Error( - path="substrings", - expected=str, - got=type(substrings), - ) - - substrings = [s.strip() for s in substrings] - - if not all(isinstance(s, str) for s in substrings): - raise InvalidParameterPathV0Error( - path="substrings", - expected="List[str]", - got="List[Any]", - ) - - case_sensitive = parameters.get("case_sensitive", True) is True - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - # -------------------------------------------------------------------------- - if not case_sensitive: - trace_outputs_str = trace_outputs_str.lower() - substrings = [s.lower() for s in substrings] - - success = all(substring in trace_outputs_str for substring in substrings) - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def auto_contains_json_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Contains JSON evaluator for checking if output contains valid JSON content. - - Args: - inputs: Test case data - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator - - Returns: - Evaluation result with success flag - """ - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - # -------------------------------------------------------------------------- - success = True - try: - start_index = trace_outputs_str.index("{") - end_index = trace_outputs_str.rindex("}") + 1 - potential_json = trace_outputs_str[start_index:end_index] - except Exception: # pylint: disable=broad-exception-caught - success = False - - try: - json.loads(potential_json) - except Exception: # pylint: disable=broad-exception-caught - success = False - # -------------------------------------------------------------------------- - - return {"success": success} - - -async def auto_json_diff_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - JSON diff evaluator for finding differences between JSON structures. - - Args: - inputs: Test case data with reference JSON - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator - - Returns: - Evaluation result with score only (no diff explanation) - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - if not isinstance(correct_answer, str) and not isinstance(correct_answer, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(correct_answer)) - - correct_answer_dict = ( - correct_answer if isinstance(correct_answer, dict) else loads(correct_answer) - ) - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_dict = trace_outputs - if isinstance(trace_outputs, str): - try: - trace_outputs_dict = loads(trace_outputs) - except json.JSONDecodeError as e: - raise InvalidTraceOutputsV0Error( - expected=repr(dict) + " | json-object", got="non-json-object" - ) from e - - threshold = parameters.get("threshold") or 0.5 - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - # -------------------------------------------------------------------------- - try: - score = compare_jsons( - ground_truth=correct_answer_dict, - app_output=trace_outputs_dict, # type: ignore - settings_values=parameters, - ) - - except Exception as e: - raise InvalidOutputsV0Error(expected=float, got=type(e)) from e - # -------------------------------------------------------------------------- - - if not isinstance(score, (int, float)): - raise InvalidOutputsV0Error(expected=(int, float), got=type(score)) - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} - - -async def rag_faithfulness_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - RAG faithfulness evaluator for measuring how faithful a response is to the provided context. - - Args: - inputs: Test case data with context and query information. - trace_outputs: Output from the workflow execution. - parameters: Configuration for the evaluator with model and credentials. - - Returns: - Evaluation result with faithfulness score. - """ - - threshold = parameters.get("threshold") or 0.5 - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected="dict", got=type(inputs).__name__) - - # Check for SDK version compatibility - if tree is not None and isinstance(tree, str): - raise InvalidParametersV0Error( - expected="Tree or None", got="str (outdated SDK version)" - ) - - # Extract trace version and structure - version = tree.version if tree is not None else None - if version is None: - raise InvalidParametersV0Error(expected="2.0 or 3.0", got="NoneType") - - trace = ( - tree - if version == "3.0" and tree is not None - else ( - trace_outputs.get("trace", trace if trace is not None else {}) - if isinstance(trace_outputs, dict) - else {} - ) - ) - - def extract_spans_from_v2_trace(trace: Trace): - spans = [] - for spans_tree in trace.values(): - if spans_tree.spans: - for span_value in spans_tree.spans.values(): - if isinstance(span_value, list): - spans.extend(span_value) - else: - spans.append(span_value) - return spans - - # Process trace into trace tree - nodes = ( - trace.model_dump() - if isinstance(trace, Tree) - else ( - [span.model_dump() for span in extract_spans_from_v2_trace(trace)] - if isinstance(trace, Trace) # type: ignore - else [] - ) - ) - trace_tree = process_distributed_trace_into_trace_tree(nodes, version) - - # Extract key mappings - mapping_keys = remove_trace_prefix(settings_values=parameters) - question_key = mapping_keys.get("question_key") - answer_key = mapping_keys.get("answer_key") - contexts_key = mapping_keys.get("contexts_key") - secrets = request.secrets - - # Validate required parameter paths - if question_key is None: - raise MissingParametersPathV0Error(path="question_key") - if answer_key is None: - raise MissingParametersPathV0Error(path="answer_key") - if contexts_key is None: - raise MissingParametersPathV0Error(path="contexts_key") - - # Validate secrets - if secrets is None or not isinstance(secrets, dict): - raise InvalidCredentialsV0Error(expected="dict", got="None") - - # Extract values from trace tree - question_val = get_field_value_from_trace_tree(trace_tree, question_key, version) - answer_val = get_field_value_from_trace_tree(trace_tree, answer_key, version) - contexts_val = get_field_value_from_trace_tree(trace_tree, contexts_key, version) - - # Validate required trace output values - if question_val is None: - raise MissingTraceOutputsPathV0Error(path=question_key) - if answer_val is None: - raise MissingTraceOutputsPathV0Error(path=answer_key) - if contexts_val is None: - raise MissingTraceOutputsPathV0Error(path=contexts_key) - - # Initialize RAG evaluator to calculate faithfulness score - faithfulness = Faithfulness(api_key=secrets.get("OPENAI_API_KEY")) - measurement = await faithfulness._run_eval_async( - output=answer_val, - input=question_val, - context=contexts_val, - ) - - score = measurement.score if measurement.score else 0.0 - - if not isinstance(score, (int, float)): - raise InvalidOutputsV0Error(expected=(int, float), got=type(score)) - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} - - -async def rag_context_relevancy_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - RAG context relevancy evaluator for measuring how relevant the provided context is to the query. - - Args: - inputs: Test case data with context and query information. - trace_outputs: Output from the workflow execution (not used). - parameters: Configuration for the evaluator with model and credentials. - - Returns: - Evaluation result with relevancy score and explanation. - """ - threshold = parameters.get("threshold") or 0.5 - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected="dict", got=type(parameters).__name__) - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected="dict", got=type(inputs).__name__) - - # Check for SDK version compatibility - if tree is not None and isinstance(tree, str): - raise InvalidParametersV0Error( - expected="Tree or None", got="str (outdated SDK version)" - ) - - # Extract trace version and structure - version = tree.version if tree is not None else None - if version is None: - raise InvalidParametersV0Error(expected="2.0 or 3.0", got="NoneType") - - trace = ( - tree - if version == "3.0" and tree is not None - else ( - trace_outputs.get("trace", trace if trace is not None else {}) - if isinstance(trace_outputs, dict) - else {} - ) - ) - - def extract_spans_from_v2_trace(trace: Trace): - spans = [] - for spans_tree in trace.values(): - if spans_tree.spans: - for span_value in spans_tree.spans.values(): - if isinstance(span_value, list): - spans.extend(span_value) - else: - spans.append(span_value) - return spans - - # Process trace into trace tree - nodes = ( - trace.model_dump() - if isinstance(trace, Tree) - else ( - [span.model_dump() for span in extract_spans_from_v2_trace(trace)] - if isinstance(trace, Trace) # type: ignore - else [] - ) - ) - trace_tree = process_distributed_trace_into_trace_tree(nodes, version) - - # Extract key mappings - mapping_keys = remove_trace_prefix(settings_values=parameters) - question_key = mapping_keys.get("question_key") - answer_key = mapping_keys.get("answer_key") - contexts_key = mapping_keys.get("contexts_key") - secrets = request.secrets - - # Validate required parameter paths - if question_key is None: - raise MissingParametersPathV0Error(path="question_key") - if answer_key is None: - raise MissingParametersPathV0Error(path="answer_key") - if contexts_key is None: - raise MissingParametersPathV0Error(path="contexts_key") - - # Validate secrets - if secrets is None or not isinstance(secrets, dict): - raise InvalidCredentialsV0Error(expected="dict", got="None") - - # Extract values from trace tree - question_val = get_field_value_from_trace_tree(trace_tree, question_key, version) - answer_val = get_field_value_from_trace_tree(trace_tree, answer_key, version) - contexts_val = get_field_value_from_trace_tree(trace_tree, contexts_key, version) - - # Validate required trace output values - if question_val is None: - raise MissingTraceOutputsPathV0Error(path=question_key) - if answer_val is None: - raise MissingTraceOutputsPathV0Error(path=answer_key) - if contexts_val is None: - raise MissingTraceOutputsPathV0Error(path=contexts_key) - - # Initialize RAG evaluator and calculate context relevancy score - context_rel = ContextRelevancy(api_key=secrets.get("OPENAI_API_KEY")) - measurement = await context_rel._run_eval_async( - output=answer_val, - input=question_val, - context=contexts_val, - ) - - score = measurement.score if measurement.score else 0.0 - - if not isinstance(score, (int, float)): - raise InvalidOutputsV0Error(expected=(int, float), got=type(score)) - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} - - -async def auto_levenshtein_distance_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Levenshtein distance evaluator using pure Python implementation. - Measures edit distance and returns normalized similarity score. - - Args: - inputs: Test case data with reference string. - trace_outputs: Output from the workflow execution. - parameters: Configuration for the evaluator. - - Returns: - Dictionary with normalized similarity score (0 to 1), - or error message if evaluation fails. - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - case_sensitive = parameters.get("case_sensitive", True) is True - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - if not isinstance(correct_answer, str) and not isinstance(correct_answer, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(correct_answer)) - - correct_answer_str = ( - correct_answer if isinstance(correct_answer, str) else dumps(correct_answer) - ) - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - threshold = parameters.get("threshold") or 0.5 - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - # -------------------------------------------------------------------------- - if not case_sensitive: - trace_outputs_str = trace_outputs_str.lower() - correct_answer_str = correct_answer_str.lower() - - try: - # Compute Levenshtein distance - if len(correct_answer_str) == 0: - distance = len(trace_outputs_str) - else: - previous_row = list(range(len(correct_answer_str) + 1)) - for i, c1 in enumerate(trace_outputs_str): - current_row = [i + 1] - for j, c2 in enumerate(correct_answer_str): - insert = previous_row[j + 1] + 1 - delete = current_row[j] + 1 - substitute = previous_row[j] + (c1 != c2) - current_row.append(min(insert, delete, substitute)) - previous_row = current_row - distance = previous_row[-1] - - # Normalize similarity score - max_length = max(len(trace_outputs_str), len(correct_answer_str)) - score = 1.0 if max_length == 0 else 1.0 - (distance / max_length) - except Exception as e: - raise InvalidOutputsV0Error(expected=float, got=None) from e - # -------------------------------------------------------------------------- - - if not isinstance(score, (int, float)): - raise InvalidOutputsV0Error(expected=(int, float), got=type(score)) - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} - - -async def auto_similarity_match_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Similarity match evaluator for measuring string similarity between output and reference. - - Args: - inputs: Test case data with reference string - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator - - Returns: - Evaluation result with similarity score - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - case_sensitive = parameters.get("case_sensitive", True) is True - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - if not isinstance(correct_answer, str) and not isinstance(correct_answer, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(correct_answer)) - - correct_answer_str = ( - correct_answer if isinstance(correct_answer, str) else dumps(correct_answer) - ) - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - threshold = ( - parameters.get("threshold") or parameters.get("similarity_threshold") or 0.5 - ) - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - # -------------------------------------------------------------------------- - if not case_sensitive: - trace_outputs_str = trace_outputs_str.lower() - correct_answer_str = correct_answer_str.lower() - - try: - matcher = SequenceMatcher(None, trace_outputs_str, correct_answer_str) - - score = matcher.ratio() - except Exception as e: - raise InvalidOutputsV0Error(expected=float, got=None) from e - # -------------------------------------------------------------------------- - - if not isinstance(score, (int, float)): - raise InvalidOutputsV0Error(expected=(int, float), got=type(score)) - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} - - -async def auto_semantic_similarity_v0( - *, - revision: WorkflowRevision, - request: WorkflowServiceRequest, - # - parameters: Optional[Data] = None, - inputs: Optional[Data] = None, - # - trace_parameters: Optional[Data] = None, - trace_inputs: Optional[Data] = None, - trace_outputs: Optional[Data | str] = None, - # - trace: Optional[Trace] = None, - tree: Optional[Tree] = None, - # - secrets: Optional[dict] = None, -) -> Data: - """ - Semantic similarity evaluator for measuring semantic similarity between output and reference using embeddings. - - Args: - inputs: Test case data with reference string - trace_outputs: Output from the workflow execution - parameters: Configuration for the evaluator with embedding model and credentials - - Returns: - Evaluation result with cosine similarity score - """ - if parameters is None or not isinstance(parameters, dict): - raise InvalidParametersV0Error(expected=dict, got=type(parameters)) - - if not "correct_answer_key" in parameters: - raise MissingParametersPathV0Error(path="correct_answer_key") - - correct_answer_key = parameters["correct_answer_key"] - - embedding_model = parameters.get("embedding_model", "text-embedding-3-small") - - if not isinstance(embedding_model, str): - raise InvalidParametersV0Error(expected=str, got=type(embedding_model)) - - if inputs is None or not isinstance(inputs, dict): - raise InvalidInputsV0Error(expected=dict, got=type(inputs)) - - if not correct_answer_key in inputs: - raise MissingInputsPathV0Error(path=correct_answer_key) - - correct_answer = inputs[correct_answer_key] - - if not isinstance(correct_answer, str) and not isinstance(correct_answer, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(correct_answer)) - - correct_answer_str = ( - correct_answer if isinstance(correct_answer, str) else dumps(correct_answer) - ) - - if not isinstance(trace_outputs, str) and not isinstance(trace_outputs, dict): - raise InvalidTraceOutputsV0Error(expected=dict | str, got=type(trace_outputs)) - - trace_outputs_str = ( - trace_outputs if isinstance(trace_outputs, str) else dumps(trace_outputs) - ) - - secrets = request.secrets or {} - - threshold = parameters.get("threshold") or 0.5 - - if not isinstance(threshold, float) and 0.0 < threshold <= 1.0: - raise InvalidParameterPathV0Error( - path="threshold", - expected=float, - got=type(threshold), - ) - - score = None - success = None - - # -------------------------------------------------------------------------- - try: - openai = AsyncOpenAI(api_key=secrets.get("OPENAI_API_KEY")) - except OpenAIError as e: - raise OpenAIError("OpenAIException - " + e.args[0]) - - output_embedding = await _compute_embedding( - openai, - embedding_model, - trace_outputs_str, - ) - - reference_embedding = await _compute_embedding( - openai, - embedding_model, - correct_answer_str, - ) - - score = float( - _compute_similarity( - output_embedding, - reference_embedding, - ) - ) - # -------------------------------------------------------------------------- - - if not isinstance(score, (int, float)): - raise InvalidOutputsV0Error(expected=(int, float), got=type(score)) - - success = score >= threshold - - if not isinstance(success, bool): - raise InvalidOutputsV0Error(expected=bool, got=type(success)) - - return {"score": score, "success": success} diff --git a/api/oss/src/core/shared/dtos.py b/api/oss/src/core/shared/dtos.py index 8749f13b41..f56c6b093c 100644 --- a/api/oss/src/core/shared/dtos.py +++ b/api/oss/src/core/shared/dtos.py @@ -1,162 +1,45 @@ -from typing import Optional, Dict, List, Union, Literal -from uuid import UUID -from datetime import datetime -from re import match - -from pydantic import BaseModel, field_validator - -from typing_extensions import TypeAliasType - - -BoolJson: TypeAliasType = TypeAliasType( # type: ignore - "BoolJson", - Union[bool, Dict[str, "BoolJson"]], # type: ignore -) - -StringJson: TypeAliasType = TypeAliasType( # type: ignore - "StringJson", - Union[str, Dict[str, "StringJson"]], # type: ignore -) - -FullJson: TypeAliasType = TypeAliasType( # type: ignore - "FullJson", - Union[str, int, float, bool, None, Dict[str, "FullJson"], List["FullJson"]], # type: ignore +from typing import Optional +from pydantic import BaseModel + + +from agenta.sdk.models.shared import ( + BoolJson, + StringJson, + FullJson, + NumericJson, + NoListJson, + LabelJson, + # + Json, + Data, + Metadata, + Flags, + Tags, + Meta, + Hashes, + Metrics, + Schema, + # + Lifecycle, + Header, + # + TraceID, + SpanID, + Link, + # + Identifier, + Slug, + Version, + Reference, + # + AliasConfig, + sync_alias, + # + Commit, + # + Windowing, ) -NumericJson: TypeAliasType = TypeAliasType( # type: ignore - "NumericJson", - Union[int, float, Dict[str, "NumericJson"]], # type: ignore -) - -NoListJson: TypeAliasType = TypeAliasType( # type: ignore - "NoListJson", - Union[str, int, float, bool, None, Dict[str, "NoListJson"]], # type: ignore -) - -Json = Dict[str, FullJson] # type: ignore - -Data = Dict[str, FullJson] # type: ignore - -Flags = Dict[str, bool | str] # type: ignore - -Tags = Dict[str, NoListJson] # type: ignore - -Meta = Dict[str, FullJson] # type: ignore - -Hashes = Dict[str, StringJson] # type: ignore - - -class Metadata(BaseModel): - flags: Optional[Flags] = None - meta: Optional[Meta] = None - tags: Optional[Tags] = None - - -class Windowing(BaseModel): - # RANGE - newest: Optional[datetime] = None - oldest: Optional[datetime] = None - # TOKEN - next: Optional[UUID] = None - # LIMIT - limit: Optional[int] = None - # ORDER - order: Optional[Literal["ascending", "descending"]] = None - # BUCKETS - interval: Optional[int] = None - # SAMPLES - rate: Optional[float] = None - - @field_validator("rate") - def check_rate(cls, v): - if v is not None and (v < 0.0 or v > 1.0): - raise ValueError("Sampling rate must be between 0.0 and 1.0.") - return v - - @field_validator("interval") - def check_interval(cls, v): - if v is not None and v <= 0: - raise ValueError("Bucket interval must be a positive integer.") - return v - - -class Lifecycle(BaseModel): - created_at: Optional[datetime] = None - updated_at: Optional[datetime] = None - deleted_at: Optional[datetime] = None - - created_by_id: Optional[UUID] = None - updated_by_id: Optional[UUID] = None - deleted_by_id: Optional[UUID] = None - - -class TraceID(BaseModel): - trace_id: Optional[str] = None - - -class SpanID(BaseModel): - span_id: Optional[str] = None - - -class Identifier(BaseModel): - id: Optional[UUID] = None - - -class Slug(BaseModel): - slug: Optional[str] = None - - @field_validator("slug") - def check_url_safety(cls, v): - if v is not None: - if not match(r"^[a-zA-Z0-9_-]+$", v): - raise ValueError("slug must be URL-safe.") - return v - - -class Version(BaseModel): - version: Optional[str] = None - - -class Header(BaseModel): - name: Optional[str] = None - description: Optional[str] = None - - -class Commit(BaseModel): - author: Optional[UUID] = None - date: Optional[datetime] = None - message: Optional[str] = None - - -class Reference(Identifier, Slug, Version): - pass - - -class Link(TraceID, SpanID): - pass - - -def sync_alias(primary: str, alias: str, instance: BaseModel) -> None: - primary_val = getattr(instance, primary) - alias_val = getattr(instance, alias) - if primary_val and alias_val is None: - object.__setattr__(instance, alias, primary_val) - elif alias_val and primary_val is None: - object.__setattr__(instance, primary, alias_val) - - -class AliasConfig(BaseModel): - model_config = { - "populate_by_name": True, - "from_attributes": True, - } - - -# LEGACY ----------------------------------------------------------------------- - - -Metrics = Dict[str, NumericJson] # type: ignore - class LegacyLifecycleDTO(BaseModel): created_at: Optional[str] = None @@ -164,18 +47,3 @@ class LegacyLifecycleDTO(BaseModel): updated_by_id: Optional[str] = None # DEPRECATING updated_by: Optional[str] = None # email - - -# WORKFLOWS -------------------------------------------------------------------- - - -class Status(BaseModel): - code: Optional[int] = 500 - type: Optional[str] = None - message: Optional[str] = "An unexpected error occurred. Please try again later." - stacktrace: Optional[str] = None - - -Mappings = Dict[str, str] - -Schema = Dict[str, FullJson] # type: ignore diff --git a/api/oss/src/core/testsets/service.py b/api/oss/src/core/testsets/service.py index 348e18bd2a..0d34def73d 100644 --- a/api/oss/src/core/testsets/service.py +++ b/api/oss/src/core/testsets/service.py @@ -20,7 +20,7 @@ RevisionQuery, RevisionCommit, ) -from oss.src.models.db_models import TestSetDB +from oss.src.models.db_models import TestsetDB from oss.src.core.testcases.dtos import Testcase from oss.src.services.db_manager import fetch_testset_by_id from oss.src.utils.helpers import get_slug_from_name_and_id @@ -511,6 +511,20 @@ async def fetch_testset_revision( return None if testset_ref and not testset_variant_ref and not testset_revision_ref: + testset = await self.fetch_testset( + project_id=project_id, + # + testset_ref=testset_ref, + ) + + if not testset: + return None + + testset_ref = Reference( + id=testset.id, + slug=testset.slug, + ) + testset_variant = await self.fetch_testset_variant( project_id=project_id, # @@ -852,7 +866,7 @@ async def create( if testset is None: return None - testset_variant_slug = uuid4().hex + testset_variant_slug = uuid4().hex[-12:] testset_variant_create = TestsetVariantCreate( slug=testset_variant_slug, @@ -879,7 +893,7 @@ async def create( if testset_variant is None: return None - testset_revision_slug = uuid4().hex + testset_revision_slug = uuid4().hex[-12:] testset_revision_create = TestsetRevisionCreate( slug=testset_revision_slug, @@ -907,7 +921,7 @@ async def create( if testset_revision is None: return None - testset_revision_slug = uuid4().hex + testset_revision_slug = uuid4().hex[-12:] testset_revision_commit = TestsetRevisionCommit( slug=testset_revision_slug, @@ -1112,7 +1126,7 @@ async def edit( ) if has_changes: - testset_revision_slug = uuid4().hex + testset_revision_slug = uuid4().hex[-12:] testset_revision_commit = TestsetRevisionCommit( slug=testset_revision_slug, @@ -1174,6 +1188,8 @@ async def transfer( testset_id: UUID, ): old_testset = await fetch_testset_by_id( + project_id=str(project_id), + # testset_id=str(testset_id), ) @@ -1246,7 +1262,7 @@ async def transfer( def _transfer_simple_testset_revision_data( self, *, - old_testset: TestSetDB, + old_testset: TestsetDB, ) -> TestsetRevisionData: return TestsetRevisionData( testcases=[ diff --git a/api/oss/src/core/workflows/dtos.py b/api/oss/src/core/workflows/dtos.py index 8badacda96..c6b71caccf 100644 --- a/api/oss/src/core/workflows/dtos.py +++ b/api/oss/src/core/workflows/dtos.py @@ -1,4 +1,4 @@ -from typing import Optional, Dict, Any, Callable +from typing import Optional, Dict, Any, Union from uuid import UUID, uuid4 from urllib.parse import urlparse @@ -46,12 +46,10 @@ Slug, Version, Header, - Status, Data, Metadata, Reference, Link, - Mappings, Schema, # Credentials, # Secret, @@ -60,6 +58,14 @@ from oss.src.core.tracing.dtos import Trace from oss.src.apis.fastapi.observability.models import AgentaVersionedTreeDTO as Tree +from agenta.sdk.models.workflows import ( + WorkflowServiceRequestData, # export + WorkflowServiceResponseData, # export + WorkflowServiceRequest, # export + WorkflowServiceResponse, # export + WorkflowServiceBatchResponse, # export + WorkflowServiceStreamResponse, # export +) # aliases ---------------------------------------------------------------------- @@ -95,6 +101,12 @@ class WorkflowRevisionIdAlias(AliasConfig): class WorkflowFlags(BaseModel): + is_custom: bool = False + is_evaluator: bool = False + is_human: bool = False + + +class WorkflowQueryFlags(BaseModel): is_custom: Optional[bool] = None is_evaluator: Optional[bool] = None is_human: Optional[bool] = None @@ -116,7 +128,7 @@ class WorkflowEdit(ArtifactEdit): class WorkflowQuery(ArtifactQuery): - flags: Optional[WorkflowFlags] = None + flags: Optional[WorkflowQueryFlags] = None # workflow variants ------------------------------------------------------------ @@ -147,7 +159,7 @@ class WorkflowVariantEdit(VariantEdit): class WorkflowVariantQuery(VariantQuery): - flags: Optional[WorkflowFlags] = None + flags: Optional[WorkflowQueryFlags] = None # workflow revisions ----------------------------------------------------------- @@ -160,15 +172,16 @@ class WorkflowServiceVersion(BaseModel): class WorkflowServiceInterface(WorkflowServiceVersion): uri: Optional[str] = None # str (Enum) w/ validation url: Optional[str] = None # str w/ validation - headers: Optional[Dict[str, Reference | str]] = None # either hardcoded or a secret + headers: Optional[ + Dict[str, Union[Reference, str]] + ] = None # either hardcoded or a secret # handler: Optional[Callable] = None schemas: Optional[Dict[str, Schema]] = None # json-schema instead of pydantic - mappings: Optional[Mappings] = None # used in the workflow interface class WorkflowServiceConfiguration(WorkflowServiceInterface): - script: Optional[str] = None # str w/ validation + script: Optional[Data] = None # str w/ validation parameters: Optional[Data] = None # configuration values @@ -278,7 +291,7 @@ class WorkflowRevisionEdit(RevisionEdit): class WorkflowRevisionQuery(RevisionQuery): - flags: Optional[WorkflowFlags] = None + flags: Optional[WorkflowQueryFlags] = None class WorkflowRevisionCommit( @@ -354,47 +367,3 @@ def model_post_init(self, __context) -> None: sync_alias("workflow_variant", "variant", self) sync_alias("workflow_revision_id", "revision_id", self) sync_alias("workflow_revision", "revision", self) - - -# workflow services ------------------------------------------------------------ - - -class WorkflowServiceData(BaseModel): - parameters: Optional[Data] = None - inputs: Optional[Data] = None - outputs: Optional[Data | str] = None - # - trace_parameters: Optional[Data] = None - trace_inputs: Optional[Data] = None - trace_outputs: Optional[Data | str] = None - # - trace: Optional[Trace] = None - # LEGACY -- used for workflow execution traces - tree: Optional[Tree] = None - - -class WorkflowServiceRequest(Version, Metadata): - data: Optional[WorkflowServiceData] = None - - references: Optional[Dict[str, Reference]] = None - links: Optional[Dict[str, Link]] = None - - credentials: Optional[str] = None # Fix typing - secrets: Optional[Dict[str, Any]] = None # Fix typing - - -class WorkflowServiceResponse(Identifier, Version): - data: Optional[WorkflowServiceData] = None - - links: Optional[Dict[str, Link]] = None - - status: Status = Status() - - def __init__(self, **data): - super().__init__(**data) - - self.id = uuid4() if not self.id else self.id - self.version = "2025.07.14" if not self.version else self.version - - -# ------------------------------------------------------------------------------ diff --git a/api/oss/src/core/workflows/helpers.py b/api/oss/src/core/workflows/helpers.py deleted file mode 100644 index 5d4cf606af..0000000000 --- a/api/oss/src/core/workflows/helpers.py +++ /dev/null @@ -1,104 +0,0 @@ -from typing import Union, Dict, Any - - -def flatten_json(json_obj: Union[list, dict]) -> Dict[str, Any]: - """ - This function takes a (nested) JSON object and flattens it into a single-level dictionary where each key represents the path to the value in the original JSON structure. This is done recursively, ensuring that the full hierarchical context is preserved in the keys. - - Args: - json_obj (Union[list, dict]): The (nested) JSON object to flatten. It can be either a dictionary or a list. - - Returns: - Dict[str, Any]: The flattened JSON object as a dictionary, with keys representing the paths to the values in the original structure. - """ - - output = {} - - def flatten(obj: Union[list, dict], path: str = "") -> None: - if isinstance(obj, dict): - for key, value in obj.items(): - new_key = f"{path}.{key}" if path else key - if isinstance(value, (dict, list)): - flatten(value, new_key) - else: - output[new_key] = value - - elif isinstance(obj, list): - for index, value in enumerate(obj): - new_key = f"{path}.{index}" if path else str(index) - if isinstance(value, (dict, list)): - flatten(value, new_key) - else: - output[new_key] = value - - flatten(json_obj) - return output - - -def compare_jsons( - ground_truth: Union[list, dict], - app_output: Union[list, dict], - settings_values: dict, -): - """ - This function takes two JSON objects (ground truth and application output), flattens them using the `flatten_json` function, and then compares the fields. - - Args: - ground_truth (list | dict): The ground truth - app_output (list | dict): The application output - settings_values: dict: The advanced configuration of the evaluator - - Returns: - the average score between both JSON objects - """ - - def normalize_keys(d: Dict[str, Any], case_insensitive: bool) -> Dict[str, Any]: - if not case_insensitive: - return d - return {k.lower(): v for k, v in d.items()} - - def diff(ground_truth: Any, app_output: Any, compare_schema_only: bool) -> float: - gt_key, gt_value = next(iter(ground_truth.items())) - ao_key, ao_value = next(iter(app_output.items())) - - if compare_schema_only: - return ( - 1.0 if (gt_key == ao_key and type(gt_value) == type(ao_value)) else 0.0 - ) - return 1.0 if (gt_key == ao_key and gt_value == ao_value) else 0.0 - - flattened_ground_truth = flatten_json(ground_truth) - flattened_app_output = flatten_json(app_output) - - keys = flattened_ground_truth.keys() - if settings_values.get("predict_keys", False): - keys = set(keys).union(flattened_app_output.keys()) - - cumulated_score = 0.0 - no_of_keys = len(keys) - - compare_schema_only = settings_values.get("compare_schema_only", False) - case_insensitive_keys = settings_values.get("case_insensitive_keys", False) - flattened_ground_truth = normalize_keys( - flattened_ground_truth, case_insensitive_keys - ) - flattened_app_output = normalize_keys(flattened_app_output, case_insensitive_keys) - - for key in keys: - ground_truth_value = flattened_ground_truth.get(key, None) - llm_app_output_value = flattened_app_output.get(key, None) - - key_score = 0.0 - if ground_truth_value is not None and llm_app_output_value is not None: - key_score = diff( - {key: ground_truth_value}, - {key: llm_app_output_value}, - compare_schema_only, - ) - - cumulated_score += key_score - try: - average_score = cumulated_score / no_of_keys - return average_score - except ZeroDivisionError: - return 0.0 diff --git a/api/oss/src/core/workflows/service.py b/api/oss/src/core/workflows/service.py index 2ca1d83836..18e4835b97 100644 --- a/api/oss/src/core/workflows/service.py +++ b/api/oss/src/core/workflows/service.py @@ -1,10 +1,10 @@ -from typing import Optional, List, Tuple +from typing import Optional, List, Tuple, Union from uuid import UUID from oss.src.utils.logging import get_module_logger from oss.src.core.git.interfaces import GitDAOInterface -from oss.src.core.shared.dtos import Reference, Windowing, Status +from oss.src.core.shared.dtos import Reference, Windowing from oss.src.core.git.dtos import ( ArtifactCreate, ArtifactEdit, @@ -40,25 +40,29 @@ WorkflowRevisionQuery, WorkflowRevisionCommit, # - WorkflowServiceRequest, - WorkflowServiceResponse, WorkflowServiceInterface, + WorkflowServiceRequest, + WorkflowServiceBatchResponse, + WorkflowServiceStreamResponse, # WorkflowRevisionData, - WorkflowServiceData, + WorkflowServiceRequestData, + WorkflowServiceResponseData, ) -from oss.src.core.workflows.status import ( - SuccessStatus, - HandlerNotFoundStatus, +from oss.src.services.auth_helper import sign_secret_token +from oss.src.services.db_manager import get_project_by_id + +from agenta.sdk.decorators.running import ( + invoke_workflow as _invoke_workflow, + inspect_workflow as _inspect_workflow, ) -from oss.src.core.workflows.errors import ( - ErrorStatus, +from agenta.sdk.models.workflows import ( + WorkflowServiceRequest, + WorkflowServiceBatchResponse, + WorkflowServiceStreamResponse, ) -from oss.src.core.services.registry import REGISTRY -from oss.src.core.services.utils import parse_service_uri - log = get_module_logger(__name__) @@ -86,7 +90,7 @@ async def create_workflow( workflow_id: Optional[UUID] = None, ) -> Optional[Workflow]: artifact_create = ArtifactCreate( - **workflow_create.model_dump(mode="json"), + **workflow_create.model_dump(mode="json", exclude_none=True), ) artifact = await self.workflows_dao.create_artifact( @@ -134,7 +138,7 @@ async def edit_workflow( workflow_edit: WorkflowEdit, ) -> Optional[Workflow]: artifact_edit = ArtifactEdit( - **workflow_edit.model_dump(mode="json"), + **workflow_edit.model_dump(mode="json", exclude_none=True), ) artifact = await self.workflows_dao.edit_artifact( @@ -248,7 +252,7 @@ async def create_workflow_variant( workflow_variant_create: WorkflowVariantCreate, ) -> Optional[WorkflowVariant]: _variant_create = VariantCreate( - **workflow_variant_create.model_dump(mode="json"), + **workflow_variant_create.model_dump(mode="json", exclude_none=True), ) variant = await self.workflows_dao.create_variant( @@ -300,7 +304,7 @@ async def edit_workflow_variant( workflow_variant_edit: WorkflowVariantEdit, ) -> Optional[WorkflowVariant]: _variant_edit = VariantEdit( - **workflow_variant_edit.model_dump(mode="json"), + **workflow_variant_edit.model_dump(mode="json", exclude_none=True), ) variant = await self.workflows_dao.edit_variant( @@ -450,7 +454,7 @@ async def create_workflow_revision( workflow_revision_create: WorkflowRevisionCreate, ) -> Optional[WorkflowRevision]: _revision_create = RevisionCreate( - **workflow_revision_create.model_dump(mode="json"), + **workflow_revision_create.model_dump(mode="json", exclude_none=True), ) revision = await self.workflows_dao.create_revision( @@ -482,20 +486,32 @@ async def fetch_workflow_revision( return None if workflow_ref and not workflow_variant_ref and not workflow_revision_ref: - workflow_variant = await self.query_workflow_variants( + workflow = await self.fetch_workflow( project_id=project_id, # - workflow_refs=[workflow_ref], + workflow_ref=workflow_ref, + ) + + if not workflow: + return None + + workflow_ref = Reference( + id=workflow.id, + slug=workflow.slug, + ) + + workflow_variant = await self.fetch_workflow_variant( + project_id=project_id, # - windowing=Windowing(limit=1, order="descending"), + workflow_ref=workflow_ref, ) if not workflow_variant: return None workflow_variant_ref = Reference( - id=workflow_variant[0].id, - slug=workflow_variant[0].slug, + id=workflow_variant.id, + slug=workflow_variant.slug, ) revision = await self.workflows_dao.fetch_revision( @@ -523,7 +539,7 @@ async def edit_workflow_revision( workflow_revision_edit: WorkflowRevisionEdit, ) -> Optional[WorkflowRevision]: _workflow_revision_edit = RevisionEdit( - **workflow_revision_edit.model_dump(mode="json"), + **workflow_revision_edit.model_dump(mode="json", exclude_none=True), ) revision = await self.workflows_dao.edit_revision( @@ -597,7 +613,7 @@ async def commit_workflow_revision( workflow_revision_commit: WorkflowRevisionCommit, ) -> Optional[WorkflowRevision]: _revision_commit = RevisionCommit( - **workflow_revision_commit.model_dump(mode="json"), + **workflow_revision_commit.model_dump(mode="json", exclude_none=True), ) if not _revision_commit.artifact_id: @@ -714,92 +730,40 @@ async def invoke_workflow( user_id: UUID, # request: WorkflowServiceRequest, - revision: WorkflowRevision, - ) -> WorkflowServiceResponse: - try: - ( - service_provider, - service_kind, - service_key, - service_version, - ) = await parse_service_uri( - uri=revision.data.uri, - ) - - handler = ( - REGISTRY.get(service_provider, {}) - .get(service_kind, {}) - .get(service_key, {}) - .get(service_version, None) - ) - - if not handler: - log.warn( - "Could not find a suitable handler for service URI: %s", - revision.data.uri, - ) - return WorkflowServiceResponse( - status=HandlerNotFoundStatus( - uri=revision.data.uri, - ), - ) - - outputs = await handler( - revision=revision, - request=request, - # - parameters=revision.data.parameters, - inputs=request.data.inputs, - # - trace_parameters=request.data.trace_parameters, - trace_inputs=request.data.trace_inputs, - trace_outputs=request.data.trace_outputs, - # - trace=request.data.trace, - tree=request.data.tree, - # - secrets=request.secrets, - ) + # + **kwargs, + ) -> Union[WorkflowServiceBatchResponse, WorkflowServiceStreamResponse,]: + project = await get_project_by_id( + project_id=str(project_id), + ) - response = WorkflowServiceResponse( - status=SuccessStatus(), - data=WorkflowServiceData( - outputs=outputs, - ), - ) + secret_token = await sign_secret_token( + user_id=str(user_id), + project_id=str(project_id), + workspace_id=str(project.workspace_id), + organization_id=str(project.organization_id), + ) - return response - - except ErrorStatus as error: - log.warn(error) - return WorkflowServiceResponse( - status=Status( - code=error.code, - type=error.type, - message=error.message, - stacktrace=error.stacktrace, - ), - ) + credentials = f"Secret {secret_token}" - except Exception as ex: - log.warn( - "Failed to invoke workflow with error: %s", - str(ex), - ) - return WorkflowServiceResponse( - status=Status( - code=500, - message=str(ex), - ), - ) + return await _invoke_workflow( + request=request, + # + credentials=credentials, + # + **kwargs, + ) async def inspect_workflow( self, *, project_id: UUID, user_id: UUID, - interface: WorkflowServiceInterface, - ) -> WorkflowServiceInterface: - pass + # + request: WorkflowServiceRequest, + ) -> WorkflowServiceRequest: + return await _inspect_workflow( + request=request, + ) # -------------------------------------------------------------------------- diff --git a/api/oss/src/core/workflows/status.py b/api/oss/src/core/workflows/status.py deleted file mode 100644 index d728445c7a..0000000000 --- a/api/oss/src/core/workflows/status.py +++ /dev/null @@ -1,14 +0,0 @@ -from oss.src.core.shared.dtos import Status - - -class SuccessStatus(Status): - code: int = 200 - - -class HandlerNotFoundStatus(Status): - code: int = 501 - type: str = "https://docs.agenta.ai/errors#v1:uri:handler-not-found" - - def __init__(self, uri: str): - super().__init__() - self.message = f"The handler at '{uri}' is not implemented or not available." diff --git a/api/oss/src/dbs/postgres/evaluations/dao.py b/api/oss/src/dbs/postgres/evaluations/dao.py index 90450f4928..c9dbfd1bfb 100644 --- a/api/oss/src/dbs/postgres/evaluations/dao.py +++ b/api/oss/src/dbs/postgres/evaluations/dao.py @@ -17,6 +17,7 @@ from oss.src.core.evaluations.interfaces import EvaluationsDAOInterface from oss.src.core.evaluations.types import EvaluationClosedConflict from oss.src.core.evaluations.types import ( + EvaluationStatus, EvaluationRunFlags, EvaluationRun, EvaluationRunCreate, @@ -515,6 +516,8 @@ async def close_run( user_id: UUID, # run_id: UUID, + # + status: Optional[EvaluationStatus] = None, ) -> Optional[EvaluationRun]: async with engine.core_session() as session: stmt = select(EvaluationRunDBE).filter( @@ -534,6 +537,10 @@ async def close_run( if run_dbe is None: return None + if status: + run_dbe.status = status.value + flag_modified(run_dbe, "status") + if run_dbe.flags is None: run_dbe.flags = EvaluationRunFlags().model_dump( # type: ignore mode="json", @@ -747,8 +754,13 @@ async def query_runs( ) if run.flags is not None: + run_flags = run.flags.model_dump( + mode="json", + exclude_none=True, + ) + stmt = stmt.filter( - EvaluationRunDBE.flags.contains(run.flags), + EvaluationRunDBE.flags.contains(run_flags), ) if run.tags is not None: diff --git a/api/oss/src/dbs/postgres/git/dao.py b/api/oss/src/dbs/postgres/git/dao.py index 3b145bacb6..f1bb94f45f 100644 --- a/api/oss/src/dbs/postgres/git/dao.py +++ b/api/oss/src/dbs/postgres/git/dao.py @@ -906,7 +906,7 @@ async def fetch_revision( self.RevisionDBE.project_id == project_id, # type: ignore ) - if revision_ref and not revision_ref.version: + if revision_ref and (revision_ref.id or revision_ref.slug): if revision_ref.id: stmt = stmt.filter(self.RevisionDBE.id == revision_ref.id) # type: ignore elif revision_ref.slug: diff --git a/api/oss/src/dbs/postgres/tracing/dao.py b/api/oss/src/dbs/postgres/tracing/dao.py index d765102113..9c75bf9e8b 100644 --- a/api/oss/src/dbs/postgres/tracing/dao.py +++ b/api/oss/src/dbs/postgres/tracing/dao.py @@ -651,7 +651,12 @@ async def query( stmt = ( select(SpanDBE) .filter(SpanDBE.trace_id.in_(uniq)) - .order_by(SpanDBE.created_at.desc(), SpanDBE.start_time.asc()) + .order_by( + func.max(SpanDBE.start_time) + .over(partition_by=SpanDBE.trace_id) + .desc(), + SpanDBE.start_time.asc(), + ) ) else: if query.windowing: diff --git a/api/oss/src/dbs/postgres/tracing/utils.py b/api/oss/src/dbs/postgres/tracing/utils.py index bf65f645b4..2ffccd976d 100644 --- a/api/oss/src/dbs/postgres/tracing/utils.py +++ b/api/oss/src/dbs/postgres/tracing/utils.py @@ -349,7 +349,8 @@ def _handle_existence_operator( elif operator == ExistenceOperator.NOT_EXISTS: if key: - clauses.append(not_(attribute.op("?")(key))) + container, leaf = _to_jsonb_path(attribute, key, leaf_as_text=False) + clauses.append(not_(container.op("?")(leaf))) else: clauses.append(attribute.is_(None)) @@ -1328,17 +1329,26 @@ def build_numeric_continuous_blocks( cont_bin_series.c.bin, (cont_bin_series.c.bin == cont_bins.c.bins).label("is_last_bin"), case( - ( - is_edge_aligned, - cont_bins.c.vmin + (cont_bin_series.c.bin - 1) * bin_width, + (cont_bin_series.c.bin == literal(1, Integer), cont_bins.c.vmin), + else_=case( + ( + is_edge_aligned, + cont_bins.c.vmin + (cont_bin_series.c.bin - 1) * bin_width, + ), + else_=(cont_bins.c.vmin + (cont_bin_series.c.bin - 1) * bin_width) + - (bin_width / 2), ), - else_=(cont_bins.c.vmin + (cont_bin_series.c.bin - 1) * bin_width) - - (bin_width / 2), ).label("interval_start"), case( - (is_edge_aligned, cont_bins.c.vmin + cont_bin_series.c.bin * bin_width), - else_=(cont_bins.c.vmin + (cont_bin_series.c.bin - 1) * bin_width) - + (bin_width / 2), + (cont_bin_series.c.bin == cont_bins.c.bins, cont_bins.c.vmax), + else_=case( + ( + is_edge_aligned, + cont_bins.c.vmin + cont_bin_series.c.bin * bin_width, + ), + else_=(cont_bins.c.vmin + (cont_bin_series.c.bin - 1) * bin_width) + + (bin_width / 2), + ), ).label("interval_end"), ).select_from(cont_bins.join(cont_bin_series, literal(True))) ).cte("bin_intervals") @@ -1988,7 +1998,9 @@ def normalize_hist( count += float(h.get("count", 0.0)) for h in hist: - h["count"] = float(h.get("count", 0.0)) / count if count > 0.0 else 0.0 + h["density"] = round( + float(h.get("count", 0.0)) / count if count > 0.0 else 0.0, 5 + ) return {"hist": hist} @@ -2022,7 +2034,9 @@ def normalize_freq( count += float(f.get("count", 0.0)) for f in freq: - f["count"] = float(f.get("count", 0.0)) / count if count > 0.0 else 0.0 + f["density"] = round( + float(f.get("count", 0.0)) / count if count > 0.0 else 0.0, 5 + ) return {"freq": freq} diff --git a/api/oss/src/models/api/api_models.py b/api/oss/src/models/api/api_models.py index 1623a722f2..69f6db9a6a 100644 --- a/api/oss/src/models/api/api_models.py +++ b/api/oss/src/models/api/api_models.py @@ -227,7 +227,7 @@ class DeployToEnvironmentPayload(BaseModel): commit_message: Optional[str] = None -class TestSetOutput(BaseModel): +class TestsetOutput(BaseModel): id: str name: str csvdata: List[Dict[str, Any]] diff --git a/api/oss/src/models/api/evaluation_model.py b/api/oss/src/models/api/evaluation_model.py index ef25bfa140..d79d124921 100644 --- a/api/oss/src/models/api/evaluation_model.py +++ b/api/oss/src/models/api/evaluation_model.py @@ -14,6 +14,7 @@ class LegacyEvaluator(BaseModel): name: str key: str direct_use: bool + settings_presets: Optional[list[dict]] = None settings_template: dict description: Optional[str] = None oss: Optional[bool] = False diff --git a/api/oss/src/models/api/testset_model.py b/api/oss/src/models/api/testset_model.py index 60eae9560c..0300ccab85 100644 --- a/api/oss/src/models/api/testset_model.py +++ b/api/oss/src/models/api/testset_model.py @@ -19,7 +19,7 @@ class Config: } -class TestSetSimpleResponse(BaseModel): +class TestsetSimpleResponse(BaseModel): id: str name: str created_at: str @@ -43,7 +43,7 @@ class NewTestset(BaseModel): csvdata: List[Dict[str, Any]] -class TestSetOutputResponse(BaseModel): +class TestsetOutputResponse(BaseModel): id: str = Field(..., alias="_id") name: str created_at: str diff --git a/api/oss/src/models/converters.py b/api/oss/src/models/converters.py index 2186c9e079..768fded064 100644 --- a/api/oss/src/models/converters.py +++ b/api/oss/src/models/converters.py @@ -34,7 +34,7 @@ from oss.src.models.db_models import ( AppDB, UserDB, - TestSetDB, + TestsetDB, AppVariantDB, VariantBaseDB, AppEnvironmentDB, @@ -45,7 +45,7 @@ from oss.src.models.api.api_models import ( App, BaseOutput, - TestSetOutput, + TestsetOutput, AppVariantRevision, PaginationParam, WithPagination, @@ -229,22 +229,22 @@ def app_db_to_pydantic(app_db: AppDB) -> App: ) -def testset_db_to_pydantic(test_set_db: TestSetDB) -> TestSetOutput: +def testset_db_to_pydantic(testset_db: TestsetDB) -> TestsetOutput: """ - Convert a TestSetDB object to a TestSetAPI object. + Convert a TestsetDB object to a TestsetAPI object. Args: - test_set_db (Dict): The TestSetDB object to be converted. + testset_db (Dict): The TestsetDB object to be converted. Returns: - TestSetAPI: The converted TestSetAPI object. + TestsetAPI: The converted TestsetAPI object. """ - return TestSetOutput( - name=test_set_db.name, - csvdata=test_set_db.csvdata, - created_at=str(test_set_db.created_at), - updated_at=str(test_set_db.updated_at), - id=str(test_set_db.id), + return TestsetOutput( + name=testset_db.name, + csvdata=testset_db.csvdata, + created_at=str(testset_db.created_at), + updated_at=str(testset_db.updated_at), + id=str(testset_db.id), ) diff --git a/api/oss/src/models/db/models.py b/api/oss/src/models/db/models.py index c5a8828908..4e78e945ac 100644 --- a/api/oss/src/models/db/models.py +++ b/api/oss/src/models/db/models.py @@ -30,7 +30,7 @@ from oss.src.models.db_models import ( UserDB, - TestSetDB, + TestsetDB, AppVariantDB, VariantBaseDB, AppEnvironmentDB, @@ -43,7 +43,7 @@ AppDB, UserDB, ProjectDB, - TestSetDB, + TestsetDB, AppVariantDB, DeploymentDB, EvaluationDB, diff --git a/api/oss/src/models/db_models.py b/api/oss/src/models/db_models.py index 3e0a79aee2..3afa51acdb 100644 --- a/api/oss/src/models/db_models.py +++ b/api/oss/src/models/db_models.py @@ -152,7 +152,7 @@ class ProjectDB(Base): evaluator_config = relationship( "EvaluatorConfigDB", cascade=CASCADE_ALL_DELETE, backref="project" ) - testset = relationship("TestSetDB", cascade=CASCADE_ALL_DELETE, backref="project") + testset = relationship("TestsetDB", cascade=CASCADE_ALL_DELETE, backref="project") # KEEP in oss/ @@ -409,7 +409,7 @@ class AppEnvironmentRevisionDB(Base): # KEEP in oss/ -class TestSetDB(Base): +class TestsetDB(Base): __tablename__ = "testsets" id = Column( diff --git a/api/oss/src/models/deprecated_models.py b/api/oss/src/models/deprecated_models.py index 95d15a66cf..070536fa13 100644 --- a/api/oss/src/models/deprecated_models.py +++ b/api/oss/src/models/deprecated_models.py @@ -76,7 +76,7 @@ class DeprecatedAppDB(DeprecatedBase): ) -class DeprecatedTestSetDB(DeprecatedBase): +class DeprecatedTestsetDB(DeprecatedBase): __tablename__ = "testsets" __table_args__ = {"extend_existing": True} diff --git a/api/oss/src/resources/evaluators/evaluators.py b/api/oss/src/resources/evaluators/evaluators.py index 19c23880a7..53a2d48542 100644 --- a/api/oss/src/resources/evaluators/evaluators.py +++ b/api/oss/src/resources/evaluators/evaluators.py @@ -35,11 +35,13 @@ "default": "correct_answer", "type": "string", "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer", }, }, "description": "Exact Match evaluator determines if the output exactly matches the specified correct answer, ensuring precise alignment with expected results.", + "requires_testcase": "always", + "requires_trace": "always", "oss": True, "tags": ["functional"], }, @@ -49,6 +51,8 @@ "direct_use": True, "settings_template": {}, "description": "'Contains JSON' evaluator checks if the output contains the a valid JSON.", + "requires_testcase": "never", + "requires_trace": "always", "oss": True, "tags": ["functional", "classifiers"], }, @@ -71,11 +75,13 @@ "default": "correct_answer", "type": "string", "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer", }, }, "description": "Similarity Match evaluator checks if the generated answer is similar to the expected answer. You need to provide the similarity threshold. It uses the Jaccard similarity to compare the answers.", + "requires_testcase": "always", + "requires_trace": "always", "oss": True, "tags": ["similarity", "functional"], }, @@ -92,10 +98,12 @@ "type": "string", "required": True, "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer", }, }, + "requires_testcase": "always", + "requires_trace": "always", "oss": True, "tags": ["similarity", "ai_llm"], }, @@ -119,6 +127,8 @@ "description": "If the regex should match or mismatch", }, }, + "requires_testcase": "never", + "requires_trace": "always", "oss": True, "tags": ["classifiers", "functional"], }, @@ -139,11 +149,13 @@ "default": "correct_answer", "type": "string", "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer", }, }, "description": "JSON Field Match evaluator compares specific fields within JSON (JavaScript Object Notation) data. This matching can involve finding similarities or correspondences between fields in different JSON objects.", + "requires_testcase": "always", + "requires_trace": "always", "oss": True, "tags": ["functional"], }, @@ -179,10 +191,12 @@ "default": "correct_answer", "type": "string", "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer", }, }, + "requires_testcase": "always", + "requires_trace": "always", "oss": True, "tags": ["similarity", "functional"], }, @@ -191,6 +205,78 @@ "key": "auto_ai_critique", "direct_use": False, "requires_llm_api_keys": True, + "settings_presets": [ + { + "key": "default", + "name": "Default", + "values": { + "prompt_template": [ + { + "role": "system", + "content": "You are an expert evaluator grading model outputs. Your task is to grade the responses based on the criteria and requirements provided below. \n\nGiven the model output and inputs (and any other data you might get) assign a grade to the output. \n\n## Grading considerations\n- Evaluate the overall value provided in the model output\n- Verify all claims in the output meticulously\n- Differentiate between minor errors and major errors\n- Evaluate the outputs based on the inputs and whether they follow the instruction in the inputs if any\n- Give the highst and lowest score for cases where you have complete certainty about correctness and value\n\n## Scoring Criteria\n- The score should be a decimal value between 0.0 and 1.0\n- A score of 1.0 means that the answer is perfect. This is the highest (best) score \n- A score of 0.0 means that the answer does not meet any of the criteria. This is the lowest possible score you can give.\n\n## output format\nANSWER ONLY THE SCORE. DO NOT USE MARKDOWN. DO NOT PROVIDE ANYTHING OTHER THAN THE NUMBER\n", + }, + { + "role": "user", + "content": "## Model inputs\n{{inputs}}\n## Model outputs\n{{outputs}}", + }, + ], + "model": "gpt-4o-mini", + "response_type": "json_schema", + "json_schema": { + "name": "schema", + "schema": { + "title": "extract", + "description": "Extract information from the user's response.", + "type": "object", + "properties": { + "correctness": { + "type": "boolean", + "description": "The grade results", + } + }, + "required": ["correctness"], + "strict": True, + }, + }, + "version": "4", + }, + }, + { + "key": "hallucination", + "name": "Hallucination Detection", + "values": { + "prompt_template": [ + { + "role": "system", + "content": "You are an expert evaluator grading model outputs for hallucinations. Your task is to identify if the responses contain any hallucinated information based on the criteria and requirements provided below. \n\nGiven the model output and inputs (and any other data you might get) determine if the output contains hallucinations. \n\n## Hallucination considerations\n- Verify all factual claims in the output meticulously against the input data\n- Identify any information that is fabricated or not supported by the input data\n- Differentiate between minor inaccuracies and major hallucinations\n\n## Output format\nANSWER ONLY 'true' IF THE OUTPUT CONTAINS HALLUCINATIONS, OTHERWISE ANSWER 'false'. DO NOT USE MARKDOWN. DO NOT PROVIDE ANYTHING OTHER THAN 'true' OR 'false'\n", + }, + { + "role": "user", + "content": "## Model inputs\n{{inputs}}\n## Model outputs\n{{outputs}}", + }, + ], + "model": "gpt-4o-mini", + "response_type": "json_schema", + "json_schema": { + "name": "schema", + "schema": { + "title": "extract", + "description": "Extract information from the user's response.", + "type": "object", + "properties": { + "correctness": { + "type": "boolean", + "description": "The hallucination detection result", + } + }, + "required": ["correctness"], + "strict": True, + }, + }, + "version": "4", + }, + }, + ], "settings_template": { "prompt_template": { "label": "Prompt Template", @@ -200,11 +286,11 @@ "default": [ { "role": "system", - "content": "You are an evaluator grading an LLM App.\nYou will be given INPUTS, the LLM APP OUTPUT, the CORRECT ANSWER used in the LLM APP.\n\n- Ensure that the LLM APP OUTPUT has the same meaning as the CORRECT ANSWER\n\n\n\n-The score should be between 0 and 1\n-A score of 1 means that the answer is perfect. This is the highest (best) score.\nA score of 0 means that the answer does not meet any of the criteria. This is the lowest possible score you can give.\n\n\n\nANSWER ONLY THE SCORE. DO NOT USE MARKDOWN. DO NOT PROVIDE ANYTHING OTHER THAN THE NUMBER\n", + "content": "You are an expert evaluator grading model outputs. Your task is to grade the responses based on the criteria and requirements provided below. \n\nGiven the model output and inputs (and any other data you might get) assign a grade to the output. \n\n## Grading considerations\n- Evaluate the overall value provided in the model output\n- Verify all claims in the output meticulously\n- Differentiate between minor errors and major errors\n- Evaluate the outputs based on the inputs and whether they follow the instruction in the inputs if any\n- Give the highst and lowest score for cases where you have complete certainty about correctness and value\n\n## Scoring Criteria\n- The score should be a decimal value between 0.0 and 1.0\n- A score of 1.0 means that the answer is perfect. This is the highest (best) score \n- A score of 0.0 means that the answer does not meet any of the criteria. This is the lowest possible score you can give.\n\n## output format\nANSWER ONLY THE SCORE. DO NOT USE MARKDOWN. DO NOT PROVIDE ANYTHING OTHER THAN THE NUMBER\n", }, { "role": "user", - "content": "{{correct_answer}}\n{{prediction}}", + "content": "## Model inputs\n{{inputs}}\n## Model outputs\n{{outputs}}", }, ], }, @@ -214,35 +300,67 @@ "type": "string", "required": False, "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer", }, "model": { "label": "Model", - "default": "gpt-3.5-turbo", + "default": "gpt-4o-mini", "type": "multiple_choice", "options": [ - "gpt-3.5-turbo", + "gpt-4-turbo", "gpt-4o", + "gpt-4o-mini", "gpt-5", "gpt-5-mini", "gpt-5-nano", - "claude-3-5-sonnet-20240620", - "claude-3-haiku-20240307", - "claude-3-opus-20240229", + "claude-3-7-sonnet-20250219", + "claude-opus-4-20250514", + "claude-sonnet-4-20250514", + "claude-opus-4-1-20250805", + "claude-sonnet-4-5-20250929", ], "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default "description": "The LLM model to use for the evaluation", }, + "response_type": { + "label": "Response Type", + "default": "json_schema", + "type": "hidden", + "advanced": True, + "description": "The format of the response from the LLM", + }, + "json_schema": { + "label": "Feedback Configuration", + "default": { + "name": "schema", + "schema": { + "title": "extract", + "description": "Extract information from the user's response.", + "type": "object", + "properties": { + "correctness": { + "type": "boolean", + "description": "The grade results", + } + }, + "required": ["correctness"], + "strict": True, + }, + }, + "type": "llm_response_schema", + "advanced": False, + "description": "Select a response format to structure how your evaluation results are returned.", + }, "version": { "label": "Version", "type": "hidden", - "default": "3", + "default": "4", "description": "The version of the evaluator", # ignore by the FE "advanced": False, # ignore by the FE }, }, - "description": "LLM-as-a-judge uses a configurable prompt template that takes the output—and optionally inputs or data from the test case such as correct answer—to evaluate the generated output.", + "description": "LLM-as-a-judge uses a configurable prompt template that takes the output—and optionally inputs or data from the testcase such as correct answer—to evaluate the generated output.", "oss": True, "tags": ["ai_llm", "functional"], }, @@ -272,7 +390,7 @@ "type": "string", "required": False, "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer. This will be shown in the results page.", }, }, @@ -305,7 +423,7 @@ "type": "string", "required": False, "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer", }, }, @@ -332,6 +450,8 @@ }, }, "description": "Starts With evaluator checks if the output starts with a specified prefix, considering case sensitivity based on the settings.", + "requires_testcase": "never", + "requires_trace": "always", "oss": True, "tags": ["classifiers", "functional"], }, @@ -354,6 +474,8 @@ }, }, "description": "Ends With evaluator checks if the output ends with a specified suffix, considering case sensitivity based on the settings.", + "requires_testcase": "never", + "requires_trace": "always", "oss": True, "tags": ["classifiers", "functional"], }, @@ -376,6 +498,8 @@ }, }, "description": "Contains evaluator checks if the output contains a specified substring, considering case sensitivity based on the settings.", + "requires_testcase": "never", + "requires_trace": "always", "oss": True, "tags": ["classifiers", "functional"], }, @@ -398,6 +522,8 @@ }, }, "description": "Contains Any evaluator checks if the output contains any of the specified substrings from a comma-separated list, considering case sensitivity based on the settings.", + "requires_testcase": "never", + "requires_trace": "always", "oss": True, "tags": ["classifiers", "functional"], }, @@ -420,6 +546,8 @@ }, }, "description": "Contains All evaluator checks if the output contains all of the specified substrings from a comma-separated list, considering case sensitivity based on the settings.", + "requires_testcase": "never", + "requires_trace": "always", "oss": True, "tags": ["classifiers", "functional"], }, @@ -439,11 +567,13 @@ "default": "correct_answer", "type": "string", "advanced": True, # Tells the frontend that this setting is advanced and should be hidden by default - "ground_truth_key": True, # Tells the frontend that is the name of the column in the test set that should be shown as a ground truth to the user + "ground_truth_key": True, # Tells the frontend that is the name of the column in the testset that should be shown as a ground truth to the user "description": "The name of the column in the test data that contains the correct answer", }, }, "description": "This evaluator calculates the Levenshtein distance between the output and the correct answer. If a threshold is provided in the settings, it returns a boolean indicating whether the distance is within the threshold. If no threshold is provided, it returns the actual Levenshtein distance as a numerical value.", + "requires_testcase": "always", + "requires_trace": "always", "oss": True, "tags": ["functional"], }, @@ -454,6 +584,8 @@ "requires_llm_api_keys": True, "settings_template": rag_evaluator_settings_template, "description": "RAG Faithfulness evaluator assesses the accuracy and reliability of responses generated by Retrieval-Augmented Generation (RAG) models. It evaluates how faithfully the responses adhere to the retrieved documents or sources, ensuring that the generated text accurately reflects the information from the original sources.", + "requires_testcase": "always", + "requires_trace": "always", "tags": ["rag"], }, { @@ -463,6 +595,8 @@ "requires_llm_api_keys": True, "settings_template": rag_evaluator_settings_template, "description": "RAG Context Relevancy evaluator measures how relevant the retrieved documents or contexts are to the given question or prompt. It ensures that the selected documents provide the necessary information for generating accurate and meaningful responses, improving the overall quality of the RAG model's output.", + "requires_testcase": "always", + "requires_trace": "always", "tags": ["rag"], }, ] diff --git a/api/oss/src/routers/app_router.py b/api/oss/src/routers/app_router.py index bd7555f6c2..338aff4f62 100644 --- a/api/oss/src/routers/app_router.py +++ b/api/oss/src/routers/app_router.py @@ -261,7 +261,7 @@ async def create_app( return CreateAppOutput(app_id=str(app_db.id), app_name=str(app_db.app_name)) -@router.get("/{app_id}/", response_model=ReadAppOutput, operation_id="create_app") +@router.get("/{app_id}/", response_model=ReadAppOutput, operation_id="read_app") async def read_app( request: Request, app_id: str, @@ -454,7 +454,7 @@ async def add_variant_from_url( return app_variant_dto except Exception as e: - log.exception(f"An error occurred: {str(e)}") + log.error(f"An error occurred: {str(e)}") raise HTTPException(status_code=500, detail=str(e)) @@ -486,11 +486,11 @@ async def add_variant_from_key_route( url = app_manager.get_service_url_from_template_key(payload.key) except NotImplementedError as e: - log.exception(f"An error occurred: {str(e)}") + log.error(f"An error occurred: {str(e)}") raise HTTPException(status_code=500, detail=str(e)) except Exception as e: - log.exception(f"An error occurred: {str(e)}") + log.error(f"An error occurred: {str(e)}") raise HTTPException(status_code=500, detail=str(e)) if not url: diff --git a/api/oss/src/routers/testset_router.py b/api/oss/src/routers/testset_router.py index 9399278d70..e560c06198 100644 --- a/api/oss/src/routers/testset_router.py +++ b/api/oss/src/routers/testset_router.py @@ -17,11 +17,12 @@ from oss.src.utils.common import APIRouter, is_ee from oss.src.models.converters import testset_db_to_pydantic +from oss.src.utils.common import is_uuid7 from oss.src.models.api.testset_model import ( NewTestset, DeleteTestsets, - TestSetSimpleResponse, - TestSetOutputResponse, + TestsetSimpleResponse, + TestsetOutputResponse, ) PARENT_DIRECTORY = Path(__file__).parent @@ -48,8 +49,8 @@ csv.field_size_limit(TESTSETS_FIELD_SIZE_LIMIT) -TESTSETS_COUNT_WARNING = f"Test set exceeds the maximum count of {TESTSETS_COUNT_LIMIT} test cases per test set." -TESTSETS_SIZE_WARNING = f"Test set exceeds the maximum size of {TESTSETS_SIZE_LIMIT // (1024 * 1024)} MB per test set." +TESTSETS_COUNT_WARNING = f"Testset exceeds the maximum count of {TESTSETS_COUNT_LIMIT} testcases per testset." +TESTSETS_SIZE_WARNING = f"Testset exceeds the maximum size of {TESTSETS_SIZE_LIMIT // (1024 * 1024)} MB per testset." TESTSETS_SIZE_EXCEPTION = HTTPException( status_code=400, @@ -80,7 +81,7 @@ def _validate_testset_limits(rows: List[dict]) -> tuple[int, int]: @router.post( - "/upload/", response_model=TestSetSimpleResponse, operation_id="upload_file" + "/upload", response_model=TestsetSimpleResponse, operation_id="upload_file" ) async def upload_file( request: Request, @@ -155,9 +156,10 @@ async def upload_file( try: testset = await db_manager.create_testset( project_id=request.state.project_id, + # testset_data=document, ) - return TestSetSimpleResponse( + return TestsetSimpleResponse( id=str(testset.id), name=document["name"], created_at=str(testset.created_at), @@ -167,7 +169,7 @@ async def upload_file( @router.post( - "/endpoint/", response_model=TestSetSimpleResponse, operation_id="import_testset" + "/endpoint", response_model=TestsetSimpleResponse, operation_id="import_testset" ) async def import_testset( request: Request, @@ -229,7 +231,7 @@ async def import_testset( project_id=request.state.project_id, testset_data=document, ) - return TestSetSimpleResponse( + return TestsetSimpleResponse( id=str(testset.id), name=document["name"], created_at=str(testset.created_at), @@ -250,20 +252,24 @@ async def import_testset( ) from error -@router.post("/", response_model=TestSetSimpleResponse, operation_id="create_testset") +@router.post( + "/", response_model=TestsetSimpleResponse, operation_id="create_legacy_testset" +) async def create_testset( csvdata: NewTestset, request: Request, + # + testset_id: Optional[str] = None, ): """ Create a testset with given name, save the testset to Postgres. Args: - name (str): name of the test set. - testset (Dict[str, str]): test set data. + name (str): name of the testset. + testset (Dict[str, str]): testset data. Returns: - str: The id of the test set created. + str: The id of the testset created. """ if is_ee(): @@ -280,6 +286,11 @@ async def create_testset( status_code=403, ) + if testset_id is not None and not is_uuid7(testset_id): + raise HTTPException( + status_code=400, detail="Invalid testset_id format. Must be UUIDv7." + ) + _validate_testset_limits(csvdata.csvdata) testset_data = { @@ -288,17 +299,20 @@ async def create_testset( } testset_instance = await db_manager.create_testset( project_id=request.state.project_id, + # testset_data=testset_data, + # + testset_id=testset_id, ) if testset_instance is not None: - return TestSetSimpleResponse( + return TestsetSimpleResponse( id=str(testset_instance.id), name=testset_instance.name, # type: ignore created_at=str(testset_instance.created_at), ) -@router.put("/{testset_id}/", operation_id="update_testset") +@router.put("/{testset_id}", operation_id="update_testset") async def update_testset( testset_id: str, csvdata: NewTestset, @@ -308,14 +322,18 @@ async def update_testset( Update a testset with given id, update the testset in Postgres. Args: - testset_id (str): id of the test set to be updated. + testset_id (str): id of the testset to be updated. csvdata (NewTestset): New data to replace the old testset. Returns: - str: The id of the test set updated. + str: The id of the testset updated. """ - testset = await db_manager.fetch_testset_by_id(testset_id=testset_id) + testset = await db_manager.fetch_testset_by_id( + project_id=request.state.project_id, + # + testset_id=testset_id, + ) if testset is None: raise HTTPException(status_code=404, detail="testset not found") @@ -341,7 +359,11 @@ async def update_testset( "updated_at": datetime.now(timezone.utc), } await db_manager.update_testset( - testset_id=str(testset.id), values_to_update=testset_update + project_id=request.state.project_id, + # + testset_id=str(testset.id), + # + values_to_update=testset_update, ) return { "status": "success", @@ -353,7 +375,7 @@ async def update_testset( @router.get("/", operation_id="get_testsets") async def get_testsets( request: Request, -) -> List[TestSetOutputResponse]: +) -> List[TestsetOutputResponse]: """ Get all testsets. @@ -388,7 +410,7 @@ async def get_testsets( ) return [ - TestSetOutputResponse( + TestsetOutputResponse( _id=str(testset.id), # type: ignore name=testset.name, created_at=str(testset.created_at), @@ -398,7 +420,7 @@ async def get_testsets( ] except Exception as e: - log.exception(f"An error occurred: {str(e)}") + log.error(f"An error occurred: {str(e)}") raise HTTPException( status_code=500, @@ -406,7 +428,7 @@ async def get_testsets( ) -@router.get("/{testset_id}/", operation_id="get_single_testset") +@router.get("/{testset_id}", operation_id="get_single_testset") async def get_single_testset( testset_id: str, request: Request, @@ -422,11 +444,21 @@ async def get_single_testset( """ try: - test_set = await db_manager.fetch_testset_by_id(testset_id=testset_id) + testset = await db_manager.fetch_testset_by_id( + project_id=request.state.project_id, + # + testset_id=testset_id, + ) + except Exception as exc: + log.error(f"An error occurred: {str(exc)}", exc_info=True) + status_code = exc.status_code if hasattr(exc, "status_code") else 500 # type: ignore + raise HTTPException(status_code=status_code, detail=str(exc)) + + if testset is not None: if is_ee(): has_permission = await check_action_access( user_uid=request.state.user_id, - project_id=str(test_set.project_id), + project_id=str(testset.project_id), permission=Permission.VIEW_TESTSET, ) if not has_permission: @@ -436,13 +468,10 @@ async def get_single_testset( {"detail": error_msg}, status_code=403, ) + else: + raise HTTPException(status_code=404, detail="testset not found") - if test_set is None: - raise HTTPException(status_code=404, detail="testset not found") - return testset_db_to_pydantic(test_set) - except Exception as exc: - status_code = exc.status_code if hasattr(exc, "status_code") else 500 # type: ignore - raise HTTPException(status_code=status_code, detail=str(exc)) + return testset_db_to_pydantic(testset) @router.delete("/", response_model=List[str], operation_id="delete_testsets") @@ -462,7 +491,11 @@ async def delete_testsets( if is_ee(): for testset_id in payload.testset_ids: - testset = await db_manager.fetch_testset_by_id(testset_id=testset_id) + testset = await db_manager.fetch_testset_by_id( + project_id=request.state.project_id, + # + testset_id=testset_id, + ) has_permission = await check_action_access( user_uid=request.state.user_id, project_id=str(testset.project_id), @@ -476,5 +509,9 @@ async def delete_testsets( status_code=403, ) - await db_manager.remove_testsets(testset_ids=payload.testset_ids) + await db_manager.remove_testsets( + project_id=request.state.project_id, + # + testset_ids=payload.testset_ids, + ) return payload.testset_ids diff --git a/api/oss/src/services/analytics_service.py b/api/oss/src/services/analytics_service.py index f6fc4dcdbb..1903eed0ce 100644 --- a/api/oss/src/services/analytics_service.py +++ b/api/oss/src/services/analytics_service.py @@ -39,7 +39,7 @@ if POSTHOG_API_KEY: posthog.api_key = POSTHOG_API_KEY posthog.host = POSTHOG_HOST - log.info("PostHog initialized with host %s:", POSTHOG_HOST) + log.info("PostHog initialized with host %s", POSTHOG_HOST) else: log.warn("PostHog API key not found in environment variables") @@ -197,7 +197,7 @@ def _get_event_name_from_path( return "app_revision_fetched" # <----------- End of Configuration Events -------------> - # <----------- Test sets Events -------------> + # <----------- Testsets Events -------------> if method == "POST" and "/testsets" in path: return "testset_created" @@ -206,7 +206,7 @@ def _get_event_name_from_path( elif method == "PUT" and "/testsets" in path: return "testset_updated" - # <----------- End of Test sets Events -------------> + # <----------- End of Testsets Events -------------> # <----------- Evaluation Events -------------> if method == "POST" and "/evaluators/configs" in path: diff --git a/api/oss/src/services/db_manager.py b/api/oss/src/services/db_manager.py index deb84b651e..643d3712de 100644 --- a/api/oss/src/services/db_manager.py +++ b/api/oss/src/services/db_manager.py @@ -32,7 +32,7 @@ AppDB, UserDB, APIKeyDB, - TestSetDB, + TestsetDB, IDsMappingDB, DeploymentDB, InvitationDB, @@ -139,7 +139,7 @@ async def add_testset_to_app_variant( "name": f"{app_name}_testset", "csvdata": csvdata, } - testset_db = TestSetDB( + testset_db = TestsetDB( **testset, project_id=uuid.UUID(project_id), ) @@ -675,7 +675,7 @@ async def create_app_and_envs( ValueError: If an app with the same name already exists. """ - app = await fetch_app_by_name_and_parameters( + app = await fetch_app_by_name( app_name=app_name, project_id=project_id, ) @@ -832,9 +832,7 @@ async def list_app_variants_by_app_slug( """ assert app_slug is not None, "app_slug cannot be None" - app_db = await fetch_app_by_name_and_parameters( - app_name=app_slug, project_id=project_id - ) + app_db = await fetch_app_by_name(app_name=app_slug, project_id=project_id) if app_db is None: raise NoResultFound(f"App with name {app_slug} not found.") @@ -1908,9 +1906,7 @@ async def list_apps( """ if app_name is not None: - app_db = await fetch_app_by_name_and_parameters( - app_name=app_name, project_id=project_id - ) + app_db = await fetch_app_by_name(app_name=app_name, project_id=project_id) return [converters.app_db_to_pydantic(app_db)] else: @@ -2596,16 +2592,24 @@ async def remove_environment(environment_db: AppEnvironmentDB): await session.commit() -async def remove_testsets(testset_ids: List[str]): +async def remove_testsets( + project_id: str, + # + testset_ids: List[str], +): """ Removes testsets. Args: + project_id (str): The ID of the project. testset_ids (List[str]): The testset identifiers """ async with engine.core_session() as session: - query = select(TestSetDB).where(TestSetDB.id.in_(testset_ids)) + query = select(TestsetDB).where( + TestsetDB.project_id == uuid.UUID(project_id), + TestsetDB.id.in_(testset_ids), + ) result = await session.execute(query) testsets = result.scalars().all() @@ -2763,24 +2767,26 @@ async def get_app_variant_instance_by_id( return app_variant_db -async def fetch_testset_by_id(testset_id: str) -> Optional[TestSetDB]: +async def fetch_testset_by_id( + project_id: str, + # + testset_id: str, +) -> Optional[TestsetDB]: """Fetches a testset by its ID. Args: + project_id (str): The ID of the project. testset_id (str): The ID of the testset to fetch. Returns: - TestSetDB: The fetched testset, or None if no testset was found. + TestsetDB: The fetched testset, or None if no testset was found. """ - if not isinstance(testset_id, str) or not testset_id: - raise ValueError(f"testset_id {testset_id} must be a non-empty string") - - try: - testset_uuid = uuid.UUID(testset_id) - except ValueError as e: - raise ValueError(f"testset_id {testset_id} is not a valid UUID") from e - async with engine.core_session() as session: - result = await session.execute(select(TestSetDB).filter_by(id=testset_uuid)) + result = await session.execute( + select(TestsetDB).filter_by( + project_id=uuid.UUID(project_id), + id=uuid.UUID(testset_id), + ) + ) testset = result.scalars().first() if not testset: @@ -2797,21 +2803,31 @@ async def fetch_testset_by_id(testset_id: str) -> Optional[TestSetDB]: return testset -async def create_testset(project_id: str, testset_data: Dict[str, Any]): +async def create_testset( + project_id: str, + # + testset_data: Dict[str, Any], + # + testset_id: Optional[str] = None, +) -> TestsetDB: """ Creates a testset. Args: - app (AppDB): The app object project_id (str): The ID of the project testset_data (dict): The data of the testset to create with + testset_id (Optional[str]): The ID of the testset to create Returns: returns the newly created TestsetDB """ async with engine.core_session() as session: - testset = TestSetDB(**testset_data, project_id=uuid.UUID(project_id)) + testset = TestsetDB( + **testset_data, + project_id=uuid.UUID(project_id), + id=uuid.UUID(testset_id) if testset_id else None, + ) log.info( "[TESTSET] CREATE:", @@ -2828,17 +2844,28 @@ async def create_testset(project_id: str, testset_data: Dict[str, Any]): return testset -async def update_testset(testset_id: str, values_to_update: dict) -> None: +async def update_testset( + project_id: str, + # + testset_id: str, + # + values_to_update: dict, +) -> None: """Update a testset. Args: + project_id (str): The ID of the project + testset_id (str): The ID of the testset to update testset (TestsetDB): the testset object to update values_to_update (dict): The values to update """ async with engine.core_session() as session: result = await session.execute( - select(TestSetDB).filter_by(id=uuid.UUID(testset_id)) + select(TestsetDB).filter_by( + project_id=uuid.UUID(project_id), + id=uuid.UUID(testset_id), + ) ) testset = result.scalars().first() @@ -2867,12 +2894,12 @@ async def fetch_testsets_by_project_id(project_id: str): project_id (str): The ID of the project. Returns: - List[TestSetDB]: The fetched testsets. + List[TestsetDB]: The fetched testsets. """ async with engine.core_session() as session: result = await session.execute( - select(TestSetDB).filter_by(project_id=uuid.UUID(project_id)) + select(TestsetDB).filter_by(project_id=uuid.UUID(project_id)) ) testsets = result.scalars().all() @@ -2985,7 +3012,7 @@ async def update_app_variant( return app_variant -async def fetch_app_by_name_and_parameters( +async def fetch_app_by_name( app_name: str, project_id: Optional[str] = None, ): diff --git a/api/oss/src/services/evaluators_service.py b/api/oss/src/services/evaluators_service.py index b0aedac68b..e9c328fa53 100644 --- a/api/oss/src/services/evaluators_service.py +++ b/api/oss/src/services/evaluators_service.py @@ -1,7 +1,7 @@ import re import json import traceback -from typing import Any, Dict, Union, List +from typing import Any, Dict, Union, List, Optional import litellm import httpx @@ -26,6 +26,9 @@ get_field_value_from_trace_tree, ) +from agenta.sdk.managers.secrets import SecretsManager + + log = get_module_logger(__name__) @@ -97,7 +100,7 @@ def detect_prompt_variables( # Match both single and double curly brace variables pattern = r"\{+([a-zA-Z_][a-zA-Z0-9_.]*)\}+" - log.info(f"Variable detection using pattern: {pattern}") + # log.info(f"Variable detection using pattern: {pattern}") if isinstance(prompt, list): # For message-based prompts, search in all message contents @@ -204,7 +207,7 @@ def get_correct_answer( if correct_answer_key not in data_point: if required: raise ValueError( - f"Correct answer column '{correct_answer_key}' not found in the test set." + f"Correct answer column '{correct_answer_key}' not found in the testset." ) return None return data_point[correct_answer_key] @@ -512,6 +515,147 @@ async def auto_ai_critique( ) +import json +import re +from typing import Any, Dict, Iterable, Tuple, Optional + +try: + import jsonpath # ✅ use module API + from jsonpath import JSONPointer # pointer class is fine to use +except Exception: + jsonpath = None + JSONPointer = None + +# ========= Scheme detection ========= + + +def detect_scheme(expr: str) -> str: + """Return 'json-path', 'json-pointer', or 'dot-notation' based on the placeholder prefix.""" + if expr.startswith("$"): + return "json-path" + if expr.startswith("/"): + return "json-pointer" + return "dot-notation" + + +# ========= Resolvers ========= + + +def resolve_dot_notation(expr: str, data: dict) -> object: + if "[" in expr or "]" in expr: + raise KeyError(f"Bracket syntax is not supported in dot-notation: {expr!r}") + + cur = data + for token in (p for p in expr.split(".") if p): + if isinstance(cur, list) and token.isdigit(): + cur = cur[int(token)] + else: + if not isinstance(cur, dict): + raise KeyError( + f"Cannot access key {token!r} on non-dict while resolving {expr!r}" + ) + if token not in cur: + raise KeyError(f"Missing key {token!r} while resolving {expr!r}") + cur = cur[token] + return cur + + +def resolve_json_path(expr: str, data: dict) -> object: + if jsonpath is None: + raise ImportError("python-jsonpath is required for json-path ($...)") + + if not (expr == "$" or expr.startswith("$.") or expr.startswith("$[")): + raise ValueError( + f"Invalid json-path expression {expr!r}. " + "Must start with '$', '$.' or '$[' (no implicit normalization)." + ) + + # Use package-level APIf + results = jsonpath.findall(expr, data) # always returns a list + return results[0] if len(results) == 1 else results + + +def resolve_json_pointer(expr: str, data: Dict[str, Any]) -> Any: + """Resolve a JSON Pointer; returns a single value.""" + if JSONPointer is None: + raise ImportError("python-jsonpath is required for json-pointer (/...)") + return JSONPointer(expr).resolve(data) + + +def resolve_any(expr: str, data: Dict[str, Any]) -> Any: + """Dispatch to the right resolver based on detected scheme.""" + scheme = detect_scheme(expr) + if scheme == "json-path": + return resolve_json_path(expr, data) + if scheme == "json-pointer": + return resolve_json_pointer(expr, data) + return resolve_dot_notation(expr, data) + + +# ========= Placeholder & coercion helpers ========= + +_PLACEHOLDER_RE = re.compile(r"\{\{\s*(.*?)\s*\}\}") + + +def extract_placeholders(template: str) -> Iterable[str]: + """Yield the inner text of all {{ ... }} occurrences (trimmed).""" + for m in _PLACEHOLDER_RE.finditer(template): + yield m.group(1).strip() + + +def coerce_to_str(value: Any) -> str: + """Pretty stringify values for embedding into templates.""" + if isinstance(value, (dict, list)): + return json.dumps(value, ensure_ascii=False) + return str(value) + + +def build_replacements( + placeholders: Iterable[str], data: Dict[str, Any] +) -> Tuple[Dict[str, str], set]: + """ + Resolve all placeholders against data. + Returns (replacements, unresolved_placeholders). + """ + replacements: Dict[str, str] = {} + unresolved: set = set() + for expr in set(placeholders): + try: + val = resolve_any(expr, data) + # Escape backslashes to avoid regex replacement surprises + replacements[expr] = coerce_to_str(val).replace("\\", "\\\\") + except Exception: + unresolved.add(expr) + return replacements, unresolved + + +def apply_replacements(template: str, replacements: Dict[str, str]) -> str: + """Replace {{ expr }} using a callback to avoid regex-injection issues.""" + + def _repl(m: re.Match) -> str: + expr = m.group(1).strip() + return replacements.get(expr, m.group(0)) + + return _PLACEHOLDER_RE.sub(_repl, template) + + +def compute_truly_unreplaced(original: set, rendered: str) -> set: + """Only count placeholders that were in the original template and remain.""" + now = set(extract_placeholders(rendered)) + return original & now + + +def missing_lib_hints(unreplaced: set) -> Optional[str]: + """Suggest installing python-jsonpath if placeholders indicate json-path or json-pointer usage.""" + if any(expr.startswith("$") or expr.startswith("/") for expr in unreplaced) and ( + jsonpath is None or JSONPointer is None + ): + return ( + "Install python-jsonpath to enable json-path ($...) and json-pointer (/...)" + ) + return None + + def _format_with_template( content: str, format: str, @@ -527,41 +671,36 @@ def _format_with_template( try: return Template(content).render(**kwargs) - except TemplateError as e: + except TemplateError: return content elif format == "curly": - import re + original_placeholders = set(extract_placeholders(content)) - # Extract variables that exist in the original template before replacement - # This allows us to distinguish template variables from {{}} in user input values - original_variables = set(re.findall(r"\{\{(.*?)\}\}", content)) + replacements, _unresolved = build_replacements( + original_placeholders, + kwargs, + ) - result = content - for key, value in kwargs.items(): - pattern = r"\{\{" + re.escape(key) + r"\}\}" - old_result = result - # Escape backslashes in the replacement string to prevent regex interpretation - escaped_value = str(value).replace("\\", "\\\\") - result = re.sub(pattern, escaped_value, result) + result = apply_replacements(content, replacements) - # Only check if ORIGINAL template variables remain unreplaced - # Don't error on {{}} that came from user input values - unreplaced_matches = set(re.findall(r"\{\{(.*?)\}\}", result)) - truly_unreplaced = original_variables & unreplaced_matches + truly_unreplaced = compute_truly_unreplaced(original_placeholders, result) if truly_unreplaced: + hint = missing_lib_hints(truly_unreplaced) + suffix = f" Hint: {hint}" if hint else "" raise ValueError( - f"Template variables not found in inputs: {', '.join(sorted(truly_unreplaced))}" + f"Template variables not found or unresolved: " + f"{', '.join(sorted(truly_unreplaced))}.{suffix}" ) return result + return content except Exception as e: + log.error(f"Error during template formatting: {str(e)}") return content - return content - async def ai_critique(input: EvaluatorInputInterface) -> EvaluatorOutputInterface: openai_api_key = input.credentials.get("OPENAI_API_KEY", None) @@ -576,7 +715,10 @@ async def ai_critique(input: EvaluatorInputInterface) -> EvaluatorOutputInterfac ) # Validate prompt variables if there's a prompt in the inputs - if "prompt_template" in input.settings: + if input.settings.get("prompt_template") and input.settings.get("version") not in [ + "3", + "4", + ]: try: validate_prompt_variables( prompt=input.settings.get("prompt_template", []), @@ -586,55 +728,356 @@ async def ai_critique(input: EvaluatorInputInterface) -> EvaluatorOutputInterfac raise e if ( + input.settings.get("version") == "4" + ) and ( # this check is used when running in the background (celery) + type(input.settings.get("prompt_template", "")) is not str + ): # this check is used when running in the frontend (since in that case we'll alway have version 2) + try: + parameters = input.settings or dict() + + if not isinstance(parameters, dict): + parameters = dict() + + inputs = input.inputs or None + + if not isinstance(inputs, dict): + inputs = dict() + + outputs = input.inputs.get("prediction") or None + + if "ground_truth" in inputs: + del inputs["ground_truth"] + if "prediction" in inputs: + del inputs["prediction"] + + # ---------------------------------------------------------------- # + + correct_answer_key = parameters.get("correct_answer_key") + + prompt_template: List = parameters.get("prompt_template") or list() + + template_version = parameters.get("version") or "3" + + default_format = "fstring" if template_version == "2" else "curly" + + template_format = parameters.get("template_format") or default_format + + response_type = input.settings.get("response_type") or "text" + + json_schema = input.settings.get("json_schema") or None + + json_schema = json_schema if response_type == "json_schema" else None + + response_format = dict(type=response_type) + + if response_type == "json_schema": + response_format["json_schema"] = json_schema + + model = parameters.get("model") or "gpt-4o-mini" + + correct_answer = None + + if inputs and isinstance(inputs, dict) and correct_answer_key: + correct_answer = inputs[correct_answer_key] + + secrets = await SecretsManager.retrieve_secrets() + + openai_api_key = None # secrets.get("OPENAI_API_KEY") + anthropic_api_key = None # secrets.get("ANTHROPIC_API_KEY") + openrouter_api_key = None # secrets.get("OPENROUTER_API_KEY") + cohere_api_key = None # secrets.get("COHERE_API_KEY") + azure_api_key = None # secrets.get("AZURE_API_KEY") + groq_api_key = None # secrets.get("GROQ_API_KEY") + + for secret in secrets: + if secret.get("kind") == "provider_key": + secret_data = secret.get("data", {}) + if secret_data.get("kind") == "openai": + provider_data = secret_data.get("provider", {}) + openai_api_key = provider_data.get("key") or openai_api_key + if secret_data.get("kind") == "anthropic": + provider_data = secret_data.get("provider", {}) + anthropic_api_key = ( + provider_data.get("key") or anthropic_api_key + ) + if secret_data.get("kind") == "openrouter": + provider_data = secret_data.get("provider", {}) + openrouter_api_key = ( + provider_data.get("key") or openrouter_api_key + ) + if secret_data.get("kind") == "cohere": + provider_data = secret_data.get("provider", {}) + cohere_api_key = provider_data.get("key") or cohere_api_key + if secret_data.get("kind") == "azure": + provider_data = secret_data.get("provider", {}) + azure_api_key = provider_data.get("key") or azure_api_key + if secret_data.get("kind") == "groq": + provider_data = secret_data.get("provider", {}) + groq_api_key = provider_data.get("key") or groq_api_key + + threshold = parameters.get("threshold") or 0.5 + + score = None + success = None + + litellm.openai_key = openai_api_key + litellm.anthropic_key = anthropic_api_key + litellm.openrouter_key = openrouter_api_key + litellm.cohere_key = cohere_api_key + litellm.azure_key = azure_api_key + litellm.groq_key = groq_api_key + + context: Dict[str, Any] = dict() + + if parameters: + context.update( + **{ + "parameters": parameters, + } + ) + + if correct_answer: + context.update( + **{ + "ground_truth": correct_answer, + "correct_answer": correct_answer, + "reference": correct_answer, + } + ) + + if outputs: + context.update( + **{ + "prediction": outputs, + "outputs": outputs, + } + ) + + if inputs: + context.update(**inputs) + context.update( + **{ + "inputs": inputs, + } + ) + + formatted_prompt_template = [ + { + "role": message["role"], + "content": _format_with_template( + content=message["content"], + format=template_format, + kwargs=context, + ), + } + for message in prompt_template + ] + + try: + response = await litellm.acompletion( + model=model, + messages=formatted_prompt_template, + temperature=0.01, + response_format=response_format, + ) + + _outputs = response.choices[0].message.content.strip() # type: ignore + + except litellm.AuthenticationError as e: # type: ignore + e.message = e.message.replace( + "litellm.AuthenticationError: AuthenticationError: ", "" + ) + raise e + + except Exception as e: + raise ValueError(f"AI Critique evaluation failed: {str(e)}") from e + # -------------------------------------------------------------------------- + + try: + _outputs = json.loads(_outputs) + except: + pass + + if isinstance(_outputs, (int, float)): + return EvaluatorOutputInterface( + outputs={ + "score": _outputs, + "success": _outputs >= threshold, + }, + ) + + if isinstance(_outputs, bool): + return EvaluatorOutputInterface( + outputs={ + "success": _outputs, + }, + ) + + if isinstance(_outputs, dict): + return EvaluatorOutputInterface( + outputs=_outputs, + ) + + raise ValueError(f"Could not parse output: {_outputs}") + except Exception as e: + raise RuntimeError(f"Evaluation failed: {str(e)}") + elif ( input.settings.get("version") == "3" ) and ( # this check is used when running in the background (celery) type(input.settings.get("prompt_template", "")) is not str ): # this check is used when running in the frontend (since in that case we'll alway have version 2) try: - prompt_template = input.settings.get("prompt_template", "") + parameters = input.settings or dict() + + if not isinstance(parameters, dict): + parameters = dict() + + inputs = input.inputs or None + + if not isinstance(inputs, dict): + inputs = dict() + + outputs = input.inputs.get("prediction") or None + + if "ground_truth" in inputs: + del inputs["ground_truth"] + if "prediction" in inputs: + del inputs["prediction"] + + # ---------------------------------------------------------------- # + + correct_answer_key = parameters.get("correct_answer_key") + + prompt_template: List = parameters.get("prompt_template") or list() - template_version = input.settings.get("version") or "3" + template_version = parameters.get("version") or "3" default_format = "fstring" if template_version == "2" else "curly" - template_format = input.settings.get("template_format") or default_format + template_format = parameters.get("template_format") or default_format + + model = parameters.get("model") or "gpt-3.5-turbo" + + correct_answer = None + + if inputs and isinstance(inputs, dict) and correct_answer_key: + correct_answer = inputs[correct_answer_key] + + secrets = await SecretsManager.retrieve_secrets() + + openai_api_key = None # secrets.get("OPENAI_API_KEY") + anthropic_api_key = None # secrets.get("ANTHROPIC_API_KEY") + openrouter_api_key = None # secrets.get("OPENROUTER_API_KEY") + cohere_api_key = None # secrets.get("COHERE_API_KEY") + azure_api_key = None # secrets.get("AZURE_API_KEY") + groq_api_key = None # secrets.get("GROQ_API_KEY") + + for secret in secrets: + if secret.get("kind") == "provider_key": + secret_data = secret.get("data", {}) + if secret_data.get("kind") == "openai": + provider_data = secret_data.get("provider", {}) + openai_api_key = provider_data.get("key") or openai_api_key + if secret_data.get("kind") == "anthropic": + provider_data = secret_data.get("provider", {}) + anthropic_api_key = ( + provider_data.get("key") or anthropic_api_key + ) + if secret_data.get("kind") == "openrouter": + provider_data = secret_data.get("provider", {}) + openrouter_api_key = ( + provider_data.get("key") or openrouter_api_key + ) + if secret_data.get("kind") == "cohere": + provider_data = secret_data.get("provider", {}) + cohere_api_key = provider_data.get("key") or cohere_api_key + if secret_data.get("kind") == "azure": + provider_data = secret_data.get("provider", {}) + azure_api_key = provider_data.get("key") or azure_api_key + if secret_data.get("kind") == "groq": + provider_data = secret_data.get("provider", {}) + groq_api_key = provider_data.get("key") or groq_api_key + + threshold = parameters.get("threshold") or 0.5 - formatted_prompt_template = [] - for i, message in enumerate(prompt_template): - formatted_content = _format_with_template( - content=message["content"], - format=template_format, - kwargs=input.inputs, + score = None + success = None + + litellm.openai_key = openai_api_key + litellm.anthropic_key = anthropic_api_key + litellm.openrouter_key = openrouter_api_key + litellm.cohere_key = cohere_api_key + litellm.azure_key = azure_api_key + litellm.groq_key = groq_api_key + + context: Dict[str, Any] = dict() + + if parameters: + context.update( + **{ + "parameters": parameters, + } ) - formatted_prompt_template.append( - { - "role": message["role"], - "content": formatted_content, + + if correct_answer: + context.update( + **{ + "ground_truth": correct_answer, + "correct_answer": correct_answer, + "reference": correct_answer, } ) - app_output = input.inputs.get("prediction") - if app_output is None: - raise ValueError("Prediction is required in inputs") + + if outputs: + context.update( + **{ + "prediction": outputs, + "outputs": outputs, + } + ) + + if inputs: + context.update(**inputs) + context.update( + **{ + "inputs": inputs, + } + ) + + formatted_prompt_template = [ + { + "role": message["role"], + "content": _format_with_template( + content=message["content"], + format=template_format, + kwargs=context, + ), + } + for message in prompt_template + ] + response = await litellm.acompletion( - model=input.settings.get("model", "gpt-3.5-turbo"), + model=model, messages=formatted_prompt_template, temperature=0.01, ) - evaluation_output = response.choices[0].message.content.strip() - score = None + outputs = response.choices[0].message.content.strip() try: - score = float(evaluation_output) - return {"outputs": {"score": score}} + score = float(outputs) + + success = score >= threshold + + return EvaluatorOutputInterface( + outputs={"score": score, "success": success}, + ) except ValueError: # if the output is not a float, we try to extract a float from the text - match = re.search(r"[-+]?\d*\.\d+|\d+", evaluation_output) + match = re.search(r"[-+]?\d*\.\d+|\d+", outputs) if match: score = float(match.group()) - return {"outputs": {"score": score}} + return EvaluatorOutputInterface(outputs={"score": score}) else: - raise ValueError( - f"Could not parse output as float: {evaluation_output}" - ) + raise ValueError(f"Could not parse output as float: {outputs}") except Exception as e: raise RuntimeError(f"Evaluation failed: {str(e)}") elif ( diff --git a/api/oss/src/services/variants_manager.py b/api/oss/src/services/variants_manager.py index 2c9db0fb64..f9d8c0d5bb 100644 --- a/api/oss/src/services/variants_manager.py +++ b/api/oss/src/services/variants_manager.py @@ -22,7 +22,7 @@ get_user_with_id, fetch_base_by_id, fetch_app_by_id, - fetch_app_by_name_and_parameters, + fetch_app_by_name, fetch_app_variant_by_id, fetch_app_variant_revision_by_id, fetch_app_variant_by_config_name_and_appid, @@ -117,7 +117,7 @@ async def _fetch_app( app_id=app_id.hex, ) elif app_name: - app = await fetch_app_by_name_and_parameters( + app = await fetch_app_by_name( project_id=project_id, app_name=app_name, ) @@ -180,7 +180,7 @@ async def _fetch_variant( and variant_ref.slug ): if not application_ref.id and application_ref.slug: - app = await fetch_app_by_name_and_parameters( + app = await fetch_app_by_name( project_id=project_id, app_name=application_ref.slug, ) @@ -326,7 +326,7 @@ async def _fetch_environment( and environment_ref.slug ): if not application_ref.id and application_ref.slug: - app = await fetch_app_by_name_and_parameters( + app = await fetch_app_by_name( project_id=project_id, app_name=application_ref.slug, ) diff --git a/api/oss/src/utils/common.py b/api/oss/src/utils/common.py index b471d10e75..1acbdd706d 100644 --- a/api/oss/src/utils/common.py +++ b/api/oss/src/utils/common.py @@ -1,4 +1,5 @@ from typing import Any, Callable +from uuid import UUID, RFC_4122 from fastapi.types import DecoratedCallable from fastapi import APIRouter as FastAPIRouter @@ -53,3 +54,18 @@ def is_ee(): def is_oss(): return env.AGENTA_LICENSE == "oss" + + +def is_uuid7(s: str, *, require_canonical: bool = False) -> bool: + try: + u = UUID(s) # parses hyphenated, braced, or 32-hex forms + except (ValueError, TypeError, AttributeError): + return False + + if u.version != 7 or u.variant != RFC_4122: + return False + + if require_canonical and str(u) != s.lower(): + return False + + return True diff --git a/api/oss/src/utils/logging.py b/api/oss/src/utils/logging.py index fa424ce74c..67c53d4369 100644 --- a/api/oss/src/utils/logging.py +++ b/api/oss/src/utils/logging.py @@ -4,18 +4,9 @@ import logging from typing import Any, Optional -# from datetime import datetime -# from logging.handlers import RotatingFileHandler - import structlog from structlog.typing import EventDict, WrappedLogger, Processor -# from opentelemetry.trace import get_current_span -# from opentelemetry._logs import set_logger_provider -# from opentelemetry.sdk._logs import LoggingHandler, LoggerProvider -# from opentelemetry.sdk._logs.export import BatchLogRecordProcessor -# from opentelemetry.exporter.otlp.proto.http._log_exporter import OTLPLogExporter - from oss.src.utils.env import env @@ -42,15 +33,6 @@ def bound_logger_trace(self, *args, **kwargs): AGENTA_LOG_CONSOLE_ENABLED = env.AGENTA_LOG_CONSOLE_ENABLED AGENTA_LOG_CONSOLE_LEVEL = env.AGENTA_LOG_CONSOLE_LEVEL -# AGENTA_LOG_OTLP_ENABLED = env.AGENTA_LOG_OTLP_ENABLED -# AGENTA_LOG_OTLP_LEVEL = env.AGENTA_LOG_OTLP_LEVEL - -# AGENTA_LOG_FILE_ENABLED = env.AGENTA_LOG_FILE_ENABLED -# AGENTA_LOG_FILE_LEVEL = env.AGENTA_LOG_FILE_LEVEL -# AGENTA_LOG_FILE_BASE = env.AGENTA_LOG_FILE_PATH -# LOG_FILE_DATE = datetime.utcnow().strftime("%Y-%m-%d") -# AGENTA_LOG_FILE_PATH = f"{AGENTA_LOG_FILE_BASE}-{LOG_FILE_DATE}.log" - # COLORS LEVEL_COLORS = { "TRACE": "\033[97m", @@ -90,15 +72,6 @@ def process_positional_args(_, __, event_dict: EventDict) -> EventDict: return event_dict -# def add_trace_context(_, __, event_dict: EventDict) -> EventDict: -# span = get_current_span() -# if span and span.get_span_context().is_valid: -# ctx = span.get_span_context() -# event_dict["TraceId"] = format(ctx.trace_id, "032x") -# event_dict["SpanId"] = format(ctx.span_id, "016x") -# return event_dict - - def add_logger_info( logger: WrappedLogger, method_name: str, event_dict: EventDict ) -> EventDict: @@ -115,6 +88,7 @@ def add_logger_info( event_dict["SeverityNumber"] = SEVERITY_NUMBERS.get(level, 9) event_dict["LoggerName"] = logger.name event_dict["MethodName"] = method_name + event_dict["pid"] = os.getpid() return event_dict @@ -129,6 +103,7 @@ def colored_console_renderer() -> Processor: } def render(_, __, event_dict: EventDict) -> str: + pid = event_dict.pop("pid", None) ts = event_dict.pop("Timestamp", "")[:23] + "Z" level = event_dict.pop("level", "INFO") msg = event_dict.pop("event", "") @@ -145,102 +120,69 @@ def render(_, __, event_dict: EventDict) -> str: return render -# def plain_renderer() -> Processor: -# hidden = { -# "SeverityText", -# "SeverityNumber", -# "MethodName", -# "logger_factory", -# "LoggerName", -# "level", -# } - -# def render(_, __, event_dict: EventDict) -> str: -# ts = event_dict.pop("Timestamp", "")[:23] + "Z" -# level = event_dict.get("level", "") -# msg = event_dict.pop("event", "") -# padded = f"[{level:<5}]" -# logger = f"[{event_dict.pop('logger', '')}]" -# extras = " ".join(f"{k}={v}" for k, v in event_dict.items() if k not in hidden) -# return f"{ts} {padded} {msg} {logger} {extras}" - -# return render - - -# def json_renderer() -> Processor: -# return structlog.processors.JSONRenderer() - - SHARED_PROCESSORS: list[Processor] = [ structlog.processors.TimeStamper(fmt="iso", utc=True, key="Timestamp"), process_positional_args, - # add_trace_context, add_logger_info, structlog.processors.format_exc_info, structlog.processors.dict_tracebacks, ] -def create_struct_logger( - processors: list[Processor], name: str -) -> structlog.stdlib.BoundLogger: - logger = logging.getLogger(name) - logger.setLevel(TRACE_LEVEL) - return structlog.wrap_logger( - logger, - processors=SHARED_PROCESSORS + processors, - wrapper_class=structlog.stdlib.BoundLogger, - logger_factory=structlog.stdlib.LoggerFactory(), - cache_logger_on_first_use=True, - ) +# Guard against double initialization +_LOGGING_CONFIGURED = False +# ensure no duplicate sinks via root +_root = logging.getLogger() +_root.handlers.clear() +_root.propagate = False # CONFIGURE HANDLERS AND STRUCTLOG LOGGERS -handlers = [] loggers = [] -if AGENTA_LOG_CONSOLE_ENABLED: - h = logging.StreamHandler(sys.stdout) - h.setLevel(getattr(logging, AGENTA_LOG_CONSOLE_LEVEL, TRACE_LEVEL)) - h.setFormatter(logging.Formatter("%(message)s")) - - # Console logger (your app logs) - logger = logging.getLogger("console") - logger.handlers.clear() - logger.addHandler(h) - logger.propagate = False - loggers.append(create_struct_logger([colored_console_renderer()], "console")) +if AGENTA_LOG_CONSOLE_ENABLED and not _LOGGING_CONFIGURED: + _LOGGING_CONFIGURED = True + + # Create a single handler for console output + console_handler = logging.StreamHandler(sys.stdout) + console_handler.setLevel(getattr(logging, AGENTA_LOG_CONSOLE_LEVEL, TRACE_LEVEL)) + console_handler.setFormatter(logging.Formatter("%(message)s")) + + # Configure the structlog console logger + console_logger = logging.getLogger("agenta_console") + console_logger.handlers.clear() + console_logger.addHandler(console_handler) + console_logger.setLevel(TRACE_LEVEL) + console_logger.propagate = False + + loggers.append( + structlog.wrap_logger( + console_logger, + processors=SHARED_PROCESSORS + [colored_console_renderer()], + wrapper_class=structlog.stdlib.BoundLogger, + logger_factory=structlog.stdlib.LoggerFactory(), + cache_logger_on_first_use=False, # Don't cache to avoid stale state + ) + ) - # Gunicorn/Uvicorn loggers + # Configure uvicorn/gunicorn loggers with separate handlers for name in ("uvicorn.access", "uvicorn.error", "gunicorn.error"): - gunicorn_logger = logging.getLogger(name) - gunicorn_logger.handlers.clear() # ✅ fix here - gunicorn_logger.setLevel(logging.INFO) - gunicorn_logger.addHandler(h) - gunicorn_logger.propagate = False - -# if AGENTA_LOG_FILE_ENABLED: -# h = RotatingFileHandler(AGENTA_LOG_FILE_PATH, maxBytes=10 * 1024 * 1024, backupCount=5) -# h.setLevel(getattr(logging, AGENTA_LOG_FILE_LEVEL, logging.WARNING)) -# h.setFormatter(logging.Formatter("%(message)s")) -# logger = logging.getLogger("file") -# logger.addHandler(h) -# logger.propagate = False # 👈 PREVENT propagation to root (avoids Celery duplicate) -# loggers.append(create_struct_logger([plain_renderer()], "file")) - -# if AGENTA_LOG_OTLP_ENABLED: -# provider = LoggerProvider() -# exporter = OTLPLogExporter() -# provider.add_log_record_processor(BatchLogRecordProcessor(exporter)) -# set_logger_provider(provider) -# h = LoggingHandler( -# level=getattr(logging, AGENTA_LOG_OTLP_LEVEL, logging.INFO), logger_provider=provider -# ) -# h.setFormatter(logging.Formatter("%(message)s")) -# logger = logging.getLogger("otel") -# logger.addHandler(h) -# logger.propagate = False # 👈 PREVENT propagation to root (avo -# loggers.append(create_struct_logger([json_renderer()], "otel")) + uh = logging.StreamHandler(sys.stdout) + uh.setLevel(getattr(logging, AGENTA_LOG_CONSOLE_LEVEL, TRACE_LEVEL)) + uh.setFormatter(logging.Formatter("%(message)s")) + server_logger = logging.getLogger(name) + server_logger.handlers.clear() + server_logger.setLevel(logging.INFO) + server_logger.addHandler(uh) + server_logger.propagate = False + + # Intercept agenta SDK loggers to prevent duplicate output + for sdk_name in ("agenta", "agenta.sdk"): + sdk_logger = logging.getLogger(sdk_name) + sdk_logger.handlers.clear() + sdk_logger.addHandler(console_handler) # Use our handler + sdk_logger.setLevel(logging.INFO) + sdk_logger.propagate = False class MultiLogger: @@ -279,11 +221,8 @@ def bind(self, **kwargs): return MultiLogger(*(l.bind(**kwargs) for l in self._loggers)) -multi_logger = MultiLogger(*loggers) - - def get_logger(name: Optional[str] = None) -> MultiLogger: - return multi_logger.bind(logger=name) + return MultiLogger(*loggers).bind(logger=name) def get_module_logger(path: str) -> MultiLogger: diff --git a/api/oss/tests/legacy/old_tests/conftest.py b/api/oss/tests/legacy/old_tests/conftest.py index b9de4f8792..18f0e1cbf5 100644 --- a/api/oss/tests/legacy/old_tests/conftest.py +++ b/api/oss/tests/legacy/old_tests/conftest.py @@ -10,7 +10,7 @@ @pytest.fixture(scope="session", autouse=True) def event_loop(): """ - Create an instance of the default event loop for each test case. + Create an instance of the default event loop for each testcase. """ policy = asyncio.get_event_loop_policy() diff --git a/api/oss/tests/legacy/old_tests/models.py b/api/oss/tests/legacy/old_tests/models.py index fcc6da9528..5c1d0ad49b 100644 --- a/api/oss/tests/legacy/old_tests/models.py +++ b/api/oss/tests/legacy/old_tests/models.py @@ -34,7 +34,7 @@ from oss.src.models.db_models import ( UserDB, - TestSetDB, + TestsetDB, AppVariantDB, VariantBaseDB, AppEnvironmentDB, @@ -47,7 +47,7 @@ AppDB, UserDB, ProjectDB, - TestSetDB, + TestsetDB, AppVariantDB, DeploymentDB, EvaluationDB, diff --git a/api/oss/tests/legacy/old_tests/variants_main_router/test_variant_evaluators_router.py b/api/oss/tests/legacy/old_tests/variants_main_router/test_variant_evaluators_router.py index d533831f81..90e18ea27f 100644 --- a/api/oss/tests/legacy/old_tests/variants_main_router/test_variant_evaluators_router.py +++ b/api/oss/tests/legacy/old_tests/variants_main_router/test_variant_evaluators_router.py @@ -9,7 +9,7 @@ from oss.src.models.api.evaluation_model import EvaluationStatusEnum from oss.src.models.db_models import ( AppDB, - TestSetDB, + TestsetDB, AppVariantDB, EvaluationDB, DeploymentDB, @@ -200,7 +200,7 @@ async def create_evaluation_with_evaluator(evaluator_config_name): app_variant = app_variant_result.scalars().first() testset_result = await session.execute( - select(TestSetDB).filter_by(project_id=app.project_id) + select(TestsetDB).filter_by(project_id=app.project_id) ) testset = testset_result.scalars().first() @@ -267,7 +267,7 @@ async def create_evaluation_with_evaluator(evaluator_config_name): # app_variant = app_variant_result.scalars().first() # testset_result = await session.execute( -# select(TestSetDB).filter_by(project_id=app.project_id) +# select(TestsetDB).filter_by(project_id=app.project_id) # ) # testset = testset_result.scalars().first() diff --git a/api/oss/tests/legacy/old_tests/variants_main_router/test_variant_testset_router.py b/api/oss/tests/legacy/old_tests/variants_main_router/test_variant_testset_router.py index bd6994d65e..ab129bcac2 100644 --- a/api/oss/tests/legacy/old_tests/variants_main_router/test_variant_testset_router.py +++ b/api/oss/tests/legacy/old_tests/variants_main_router/test_variant_testset_router.py @@ -6,7 +6,7 @@ from oss.src.models.db_models import ( AppDB, - TestSetDB, + TestsetDB, ) from oss.src.dbs.postgres.shared.engine import engine @@ -63,7 +63,7 @@ async def test_update_testset(): app = result.scalars().first() testset_result = await session.execute( - select(TestSetDB).filter_by(project_id=app.project_id) + select(TestsetDB).filter_by(project_id=app.project_id) ) testset = testset_result.scalars().first() @@ -111,7 +111,7 @@ async def test_get_testset(): app = result.scalars().first() testset_result = await session.execute( - select(TestSetDB).filter_by(project_id=app.project_id) + select(TestsetDB).filter_by(project_id=app.project_id) ) testset = testset_result.scalars().first() @@ -133,7 +133,7 @@ async def test_delete_testsets(): app = result.scalars().first() testset_result = await session.execute( - select(TestSetDB).filter_by(project_id=app.project_id) + select(TestsetDB).filter_by(project_id=app.project_id) ) testsets = testset_result.scalars().all() diff --git a/api/oss/tests/manual/workflows/interface.py b/api/oss/tests/manual/workflows/interface.py deleted file mode 100644 index 6a2bd3f88b..0000000000 --- a/api/oss/tests/manual/workflows/interface.py +++ /dev/null @@ -1,764 +0,0 @@ -from typing import Callable -from asyncio import run as run_async -from time import time_ns -from uuid import uuid4 -from os import getenv -from sys import argv - -from pydantic import BaseModel -from aiohttp import ClientSession -from fastapi import FastAPI - -from oss.src.core.workflows.dtos import ( - WorkflowRevision, - WorkflowRevisionData, - WorkflowServiceRequest, - WorkflowServiceResponse, - WorkflowServiceInterface, - WorkflowServiceData, -) - -from oss.src.core.shared.dtos import ( - Status, - Data, -) - -from oss.src.core.workflows.service import ( - parse_service_uri, -) - - -from oss.src.core.services.v0 import auto_exact_match_v0 - -AGENTA_API_URL = "http://localhost/api" -AGENTA_API_KEY = getenv("AGENTA_API_KEY") - -# TODO: -# - Add service URI definitions -# - Add URI-based service schemas -# - Talk about paths -# - Check if it should be revision or revision.data in invoke - - -def debug(func): - async def wrapper(*args, **kwargs): - start_time = time_ns() - print("-" * 40) - print(f"Running: {func.__name__}") - # print(f"Request: {args} & {kwargs}") - result = await func(*args, **kwargs) - end_time = time_ns() - if isinstance(result, BaseModel): - print(f"Response: {result.model_dump(mode='json', exclude_none=True)}") - else: - print(f"Response: {result}") - print(f"Elapsed: {(end_time - start_time) / 1_000_000} ms") - return result - - return wrapper - - -TEST_INPUTS = { - "text": "Hello, world!", - "output": "Hello, world!", -} - -TEST_OUTPUTS = "Hello, world!" - -TEST_PARAMETERS = { - "/": { - "stringified_output": False, - "reference_key": "output", - } -} - -TEST_SCRIPT = """ -# - THIS WILL BE PART OF THE SDK (import agenta as ag) ----------------- START - - -from typing import Callable -from uuid import uuid4 - -from oss.src.core.workflows.dtos import ( - WorkflowRevision, - WorkflowRevisionData, - WorkflowServiceRequest, - WorkflowServiceResponse, - WorkflowServiceInterface, - WorkflowServiceData, -) - -from oss.src.core.shared.dtos import ( - Status, - Data, -) - -async def local_call( - request: WorkflowServiceRequest, - revision: WorkflowRevision, - handler: Callable, -): - parameters = revision.data.parameters.get(request.path, {}) - - # INPUTS/PARAMETERS VALUES MAPPINGS - # INPUTS/PARAMETERS SCHEMAS VALIDATION - - outputs = await handler( - # request=request, - # revision=revision, - inputs=request.data.inputs, - parameters=parameters, - outputs=request.data.outputs, - ) - - # OUTPUTS/RESULTS VALUES MAPPINGS - # OUTPUTS/RESULTS SCHEMAS VALIDATION - - response = WorkflowServiceResponse( - id=uuid4(), - version="2025.07.14", - status=Status( - code=200, - message="Success", - ), - data=WorkflowServiceData( - outputs=outputs, - # trace= - ), - ) - - return response - -def ag_workflow( - workflow_handler: Callable, -) -> Data: - async def workflow_decorator_wrapper( - workflow_service_request: WorkflowServiceRequest, - workflow_revision_data: WorkflowRevisionData, - ): - workflow_revision = WorkflowRevision( - data=workflow_revision_data, - ) - - return await local_call( - request=workflow_service_request, - revision=workflow_revision, - handler=workflow_handler, - ) - - return workflow_decorator_wrapper - -def ag_instrument( - workflow_handler: Callable, -) -> Data: - - return workflow_handler - -# - THIS WILL BE PART OF THE SDK (import agenta as ag) ----------------- END --- - - -# - THIS IS THE USER'S CODE -------------------------------------------- START - - -from json import dumps - -from oss.src.core.shared.dtos import Data - -# import agenta as ag - - -@ag_workflow -@ag_instrument -async def auto_exact_match_v0( - *, - inputs: Data, - outputs: Data | str, - parameters: Data, -) -> Data: - reference_key = parameters.get("reference_key", None) - reference_outputs = inputs.get(reference_key, None) - - if isinstance(outputs, str) and isinstance(reference_outputs, str): - success = outputs == reference_outputs - elif isinstance(outputs, dict) and isinstance(reference_outputs, dict): - outputs = dumps(outputs, sort_keys=True) - reference_outputs = dumps(reference_outputs, sort_keys=True) - success = outputs == reference_outputs - else: - success = False - - return {"success": success} - -# - THIS IS THE USER'S CODE -------------------------------------------- END --- - - -# - THIS WILL BE PART OF THE SDK (via @ag.workflow) -------------------- START - - -__ag_workflow_registry__ = { - "/": { - "invoke": auto_exact_match_v0, - } -} - -# - THIS WILL BE PART OF THE SDK (via @ag.workflow) -------------------- END --- -""" - -EXEC_SCRIPT = """ -# - THIS WILL BE PART OF THE BACKEND (via @ag.workflow) ---------------- START - - -async def __ag_workflow_runner__(): - path = {workflow_revision_data}.get("parameters", {{}}).get("path", "/") - method = {workflow_revision_data}.get("parameters", {{}}).get("method", "invoke") - handler = __ag_workflow_registry__.get(path, {}).get(method, None) - - if not handler: - return WorkflowServiceResponse( - status=Status( - code=400, - message="Could not find service handler for the given URI, path, and method.", - ) - ) - - return await handler( - workflow_service_request=WorkflowServiceRequest(**{workflow_service_request}), - workflow_revision_data=WorkflowRevisionData(**{workflow_revision_data}), - ) - -return await __ag_workflow_runner__() - -# - THIS WILL BE PART OF THE BACKEND (via @ag.workflow) ---------------- END --- -""" - - -async def run_script_locally( - *, - workflow_service_request: WorkflowServiceRequest, - workflow_revision_data: WorkflowRevisionData, -) -> Data | str: - """ - This function is used to run the TEST_SCRIPT locally. - It is not part of the main workflow service but can be used for testing purposes. - """ - - actual_script = ( - TEST_SCRIPT - + "\n" - + EXEC_SCRIPT.format( - workflow_service_request=workflow_service_request.model_dump( - mode="json", - exclude_none=True, - ), - workflow_revision_data=workflow_revision_data.model_dump( - mode="json", - exclude_none=True, - ), - ) - ) - - async def async_exec(code: str, globals_dict=None, locals_dict=None): - # Wrap code in async def so we can await it - wrapper_name = "__ag_workflow_script__" - indented_code = "\n".join(f" {line}" for line in code.splitlines()) - wrapped = f"async def {wrapper_name}():\n{indented_code}" - - exec_globals = globals_dict if globals_dict is not None else {} - exec_locals = locals_dict if locals_dict is not None else exec_globals - - # Compile the async wrapper - exec(wrapped, exec_globals, exec_locals) - - # Await and return result - return await exec_locals[wrapper_name]() - - result = await async_exec(actual_script) - - return result - - -# A DECORATOR THAT USES local_call to wrap functions, like exact_match -def workflow_decorator( - workflow_handler: Callable, -) -> Data: - async def local_call( - request: WorkflowServiceRequest, - revision: WorkflowRevision, - handler: Callable, - ): - parameters = revision.data.parameters.get(request.path, {}) - - outputs = await handler( - # request=request, - # revision=revision, - inputs=request.data.inputs, - parameters=parameters, - outputs=request.data.outputs, - ) - - # OUTPUTS/RESULTS VALUES MAPPINGS - # OUTPUTS/RESULTS SCHEMAS VALIDATION - - response = WorkflowServiceResponse( - id=uuid4(), - version="2025.07.14", - status=Status( - code=200, - message="Success", - ), - data=WorkflowServiceData( - outputs=outputs, - # trace= - ), - ) - - return response - - async def workflow_decorator_wrapper( - workflow_service_request: WorkflowServiceRequest, - workflow_revision_data: WorkflowRevisionData, - ): - workflow_revision = WorkflowRevision( - data=workflow_revision_data, - ) - - return await local_call( - request=workflow_service_request, - revision=workflow_revision, - handler=workflow_handler, - ) - - return workflow_decorator_wrapper - - -REGISTRY = { - "agenta": { - "function": { - "exact_match": { - "latest": workflow_decorator(auto_exact_match_v0), - "v0": workflow_decorator(auto_exact_match_v0), - }, - }, - "code": { - "local": { - "latest": run_script_locally, - "v0": run_script_locally, - } - }, - }, -} - - -app = FastAPI() - -app.add_api_route( - "/agenta-function-exact_match-latest", - workflow_decorator(auto_exact_match_v0), - methods=["POST"], -) - - -async def health_check(): - return {"status": "ok"} - - -app.add_api_route( - "/health", - health_check, -) - - -class WorkflowServiceHandler: - def __init__( - self, - api_url: str, - api_key: str, - ): - self.api_url = api_url - self.api_key = api_key - - async def invoke( - self, - *, - request: WorkflowServiceRequest, - revision: WorkflowRevision, - force_remote: bool = False, - ): - ( - service_provider, - service_kind, - service_key, - service_version, - ) = await parse_service_uri( - uri=revision.data.uri, - ) - - if force_remote: - return await self.remote_call( - request=request, - revision=revision, - ) - - handler = ( - REGISTRY.get(service_provider, {}) - .get(service_kind, {}) - .get(service_key, {}) - .get(service_version, None) - ) - - if not handler: - return WorkflowServiceResponse( - status=Status( - code=400, - message="Could not find service handler for the given URI.", - ) - ) - - return await handler( - workflow_service_request=request, - workflow_revision_data=revision.data, - ) - - async def remote_call( - self, - *, - request: WorkflowServiceRequest, - revision: WorkflowRevision, - ): - # CALL API_URL - async with ClientSession() as session: - async with session.post( - f"{self.api_url}/preview/workflows/invoke", - json={ - "workflow_service_request": request.model_dump( - mode="json", - exclude_none=True, - ), - "workflow_revision_data": revision.data.model_dump( - mode="json", - exclude_none=True, - ), - }, - headers={"Authorization": f"ApiKey {self.api_key}"}, - ) as response: - if response.status != 200: - return WorkflowServiceResponse( - status=Status( - code=response.status, - message=response.reason, - ) - ) - - data = await response.json() - - return WorkflowServiceResponse(**data) - - -workflow_service_handler = WorkflowServiceHandler( - api_url=AGENTA_API_URL, - api_key=AGENTA_API_KEY, -) - - -@debug -async def test_noop(): - pass - - -@debug -async def test_local_function_workflow_by_value(): - # create the workflow revision - workflow_revision = WorkflowRevision( - data=WorkflowRevisionData( - uri="agenta:function:exact_match:latest", - parameters=TEST_PARAMETERS, - ) - ) - - print( - "Revision:", workflow_revision.data.model_dump(mode="json", exclude_none=True) - ) - - # create the workflow request - workflow_service_request = WorkflowServiceRequest( - data=WorkflowServiceData( - inputs=TEST_INPUTS, - outputs=TEST_OUTPUTS, - ) - ) - - print( - "Request: ", - workflow_service_request.data.model_dump(mode="json", exclude_none=True), - ) - - # invoke the workflow service - workflow_service_response = await workflow_service_handler.invoke( - request=workflow_service_request, - revision=workflow_revision, - ) - - # check response - if not workflow_service_response: - return - - # check response - status = workflow_service_response.status - if status.code == "200": - print("Check: ", workflow_service_response.data.outputs["success"]) - else: - print("Check: ", status.model_dump(mode="json", exclude_none=True)) - - return workflow_service_response - - -@debug -async def test_remote_function_workflow_by_value(): - # create the workflow revision - workflow_revision = WorkflowRevision( - data=WorkflowRevisionData( - uri="agenta:function:exact_match:latest", - parameters=TEST_PARAMETERS, - ) - ) - - print( - "Revision:", workflow_revision.data.model_dump(mode="json", exclude_none=True) - ) - - # create the workflow request - workflow_service_request = WorkflowServiceRequest( - data=WorkflowServiceData( - inputs=TEST_INPUTS, - outputs=TEST_OUTPUTS, - ) - ) - - print( - "Request: ", - workflow_service_request.data.model_dump(mode="json", exclude_none=True), - ) - - # invoke the workflow service - workflow_service_response = await workflow_service_handler.invoke( - request=workflow_service_request, - revision=workflow_revision, - force_remote=True, - ) - - # check response - if not workflow_service_response: - return - - # check response - status = workflow_service_response.status - if status.code == "200": - print("Check: ", workflow_service_response.data.outputs["success"]) - else: - print("Check: ", status.model_dump(mode="json", exclude_none=True)) - - return workflow_service_response - - -@debug -async def test_code_workflow_by_value(): - # create the workflow revision - workflow_revision = WorkflowRevision( - data=WorkflowRevisionData( - uri="agenta:code:local:latest", - script=TEST_SCRIPT, - parameters=TEST_PARAMETERS, - ) - ) - - print( - "Revision:", - { - **workflow_revision.data.model_dump( - mode="json", exclude_none=True, exclude={"script"} - ), - "script": "", - }, - ) - - # create the workflow request - workflow_service_request = WorkflowServiceRequest( - data=WorkflowServiceData( - inputs=TEST_INPUTS, - outputs=TEST_OUTPUTS, - ) - ) - - print( - "Request: ", - workflow_service_request.data.model_dump(mode="json", exclude_none=True), - ) - - # invoke the workflow service - workflow_service_response = await workflow_service_handler.invoke( - request=workflow_service_request, - revision=workflow_revision, - ) - - # check response - if not workflow_service_response: - return - - status = workflow_service_response.status - if status.code == "200": - print("Check: ", workflow_service_response.data.outputs["success"]) - else: - print("Check: ", status.model_dump(mode="json", exclude_none=True)) - - return workflow_service_response - - -@debug -async def test_hook_workflow_by_value_direct(): - # create the workflow revision - workflow_revision = WorkflowRevision( - data=WorkflowRevisionData( - url="http://localhost:8888/agenta-function-exact_match-latest", - parameters=TEST_PARAMETERS, - ) - ) - - print( - "Revision:", workflow_revision.data.model_dump(mode="json", exclude_none=True) - ) - - # create the workflow request - workflow_service_request = WorkflowServiceRequest( - data=WorkflowServiceData( - inputs=TEST_INPUTS, - outputs=TEST_OUTPUTS, - ) - ) - - print( - "Request: ", - workflow_service_request.data.model_dump(mode="json", exclude_none=True), - ) - - url = workflow_revision.data.url - - data = { - "workflow_service_request": workflow_service_request.model_dump( - mode="json", - exclude_none=True, - ), - "workflow_revision_data": workflow_revision.data.model_dump( - mode="json", - exclude_none=True, - ), - } - - headers = {"Authorization": f"ApiKey {AGENTA_API_KEY}"} - if workflow_revision.data and workflow_revision.data.headers: - path_headers = workflow_revision.data.headers[workflow_service_request.path] - for key, value in (path_headers or {}).items(): - if isinstance(value, str): - headers[key] = path_headers[value] - else: - pass - - # invoke the workflow service - async with ClientSession() as session: - async with session.post( - url=url, - json=data, - headers=headers, - ) as response: - if response.status != 200: - workflow_service_response = WorkflowServiceResponse( - status=Status( - code=response.status, - message=response.reason, - ) - ) - else: - data = await response.json() - - workflow_service_response = WorkflowServiceResponse(**data) - - # check response - if not workflow_service_response: - return - - # check response - status = workflow_service_response.status - if status.code == "200": - print("Check: ", workflow_service_response.data.outputs["success"]) - else: - print("Check: ", status.model_dump(mode="json", exclude_none=True)) - - return workflow_service_response - - -@debug -async def test_local_function_workflow_by_reference(): - # invoke the workflow - - # check response - pass - - -@debug -async def test_remote_function_workflow_by_reference(): - # invoke the workflow - - # check response - pass - - -@debug -async def test_code_workflow_by_reference(): - # create a workflow (incl variant and revision) - - # invoke the workflow - - # check response - pass - - -@debug -async def test_hook_workflow_by_reference(): - # create a workflow (incl variant and revision) - - # invoke the workflow - - # check response - pass - - -print("-------------------------------------------------") - - -async def main(): - await test_noop() - - await test_local_function_workflow_by_value() - await test_remote_function_workflow_by_value() - await test_code_workflow_by_value() - await test_hook_workflow_by_value_direct() - - # await test_local_function_workflow_by_reference() - # await test_remote_function_workflow_by_reference() - # await test_code_workflow_by_reference() - # await test_hook_workflow_by_reference() - - -if __name__ == "__main__": - args = argv[1:] - serve = "--serve" in args - - if not serve: - run_async(main()) - - else: - import uvicorn - - # quit with ctrl+c - uvicorn.run( - "oss.tests.manual.workflows.interface:app", - host="0.0.0.0", - port=8888, - log_level="info", - reload=True, - ) diff --git a/api/oss/tests/pytest/testsets/legacy/test_testsets_basics.py b/api/oss/tests/pytest/testsets/legacy/test_testsets_basics.py index 7e0b36d41c..17b3f10fcd 100644 --- a/api/oss/tests/pytest/testsets/legacy/test_testsets_basics.py +++ b/api/oss/tests/pytest/testsets/legacy/test_testsets_basics.py @@ -232,7 +232,7 @@ def test_upload_legacy_testsets_from_csv(self, authed_api): response = authed_api( "POST", - "/testsets/upload/", + "/testsets/upload", files=files, data=data, ) @@ -270,7 +270,7 @@ def test_upload_legacy_testsets_from_json(self, authed_api): response = authed_api( "POST", - "/testsets/upload/", + "/testsets/upload", files=files, data=data, ) diff --git a/api/oss/tests/pytest/testsets/test_testcases_basics.py b/api/oss/tests/pytest/testsets/test_testcases_basics.py index 17f13cd454..d7702b37a2 100644 --- a/api/oss/tests/pytest/testsets/test_testcases_basics.py +++ b/api/oss/tests/pytest/testsets/test_testcases_basics.py @@ -24,8 +24,8 @@ def mock_data(authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -52,8 +52,8 @@ def mock_data(authed_api): testset = { "slug": slug, - "name": "Another Test Set Name", - "description": "This is another test set description.", + "name": "Another Testset Name", + "description": "This is another testset description.", "tags": tags, "meta": meta, "data": { diff --git a/api/oss/tests/pytest/testsets/test_testsets_basics.py b/api/oss/tests/pytest/testsets/test_testsets_basics.py index c923c4da00..540d2a1a09 100644 --- a/api/oss/tests/pytest/testsets/test_testsets_basics.py +++ b/api/oss/tests/pytest/testsets/test_testsets_basics.py @@ -21,8 +21,8 @@ def test_create_testsets(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -68,8 +68,8 @@ def test_create_testsets_with_dedup(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -115,8 +115,8 @@ def test_fetch_testset(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -178,8 +178,8 @@ def test_edit_testset_with_changes(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -264,8 +264,8 @@ def test_edit_testset(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -340,8 +340,8 @@ def test_archive_testset(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name - Archive", - "description": "This is a test set description.", + "name": "Testset Name - Archive", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -391,8 +391,8 @@ def test_unarchive_testset(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name - Unarchive", - "description": "This is a test set description.", + "name": "Testset Name - Unarchive", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { diff --git a/api/oss/tests/pytest/testsets/test_testsets_files.py b/api/oss/tests/pytest/testsets/test_testsets_files.py index b65cc86502..a61a7021b0 100644 --- a/api/oss/tests/pytest/testsets/test_testsets_files.py +++ b/api/oss/tests/pytest/testsets/test_testsets_files.py @@ -22,12 +22,12 @@ def test_create_testsets_from_csv_file(self, authed_api): files = { "file": ("testset.csv", csvfile, "text/csv"), - "testset_name": (None, "Test Set Name"), + "testset_name": (None, "Testset Name"), } data = { "file_type": "csv", - "testset_description": "This is a test set description.", + "testset_description": "This is a testset description.", "testset_tags": dumps({"tag1": "value1", "tag2": "value2"}), "testset_meta": dumps({"meta1": "value1", "meta2": "value2"}), } @@ -61,12 +61,12 @@ def test_create_testsets_from_json_file(self, authed_api): files = { "file": ("testset.json", jsonfile, "application/json"), - "testset_name": (None, "Test Set Name"), + "testset_name": (None, "Testset Name"), } data = { "file_type": "json", - "testset_description": "This is a test set description.", + "testset_description": "This is a testset description.", "testset_tags": dumps({"tag1": "value1", "tag2": "value2"}), "testset_meta": dumps({"meta1": "value1", "meta2": "value2"}), } @@ -104,8 +104,8 @@ def test_fetch_testset_to_csv_file(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -166,8 +166,8 @@ def test_fetch_testset_to_json_file(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -229,8 +229,8 @@ def test_edit_testset_from_file(self, authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -267,7 +267,7 @@ def test_edit_testset_from_file(self, authed_api): files = { "file": ("testset.csv", csvfile, "text/csv"), - "testset_name": (None, "Updated Test Set Name"), + "testset_name": (None, "Updated Testset Name"), } data = { diff --git a/api/oss/tests/pytest/testsets/test_testsets_queries.py b/api/oss/tests/pytest/testsets/test_testsets_queries.py index eddf6389be..444aa91f4c 100644 --- a/api/oss/tests/pytest/testsets/test_testsets_queries.py +++ b/api/oss/tests/pytest/testsets/test_testsets_queries.py @@ -23,8 +23,8 @@ def mock_data(authed_api): testset = { "slug": slug, - "name": "Test Set Name", - "description": "This is a test set description.", + "name": "Testset Name", + "description": "This is a testset description.", "tags": tags, "meta": meta, "data": { @@ -51,8 +51,8 @@ def mock_data(authed_api): testset = { "slug": slug, - "name": "Another Test Set Name", - "description": "This is another test set description.", + "name": "Another Testset Name", + "description": "This is another testset description.", "tags": tags, "meta": meta, "data": { diff --git a/api/poetry.lock b/api/poetry.lock index 82fdb5085d..737d1cb26b 100644 --- a/api/poetry.lock +++ b/api/poetry.lock @@ -2,26 +2,27 @@ [[package]] name = "agenta" -version = "0.59.5" +version = "0.59.10" description = "The SDK for agenta is an open-source LLMOps platform." optional = false python-versions = "<4.0,>=3.9" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "agenta-0.59.5-py3-none-any.whl", hash = "sha256:2218c3bece86b37f8c48cb1bff71cee7845096b5042bf49bbdeddead9198bf38"}, - {file = "agenta-0.59.5.tar.gz", hash = "sha256:dba7b025405c772b3eb7ac691d4030a2f29245c561db362e9c19345181ad7f27"}, + {file = "agenta-0.59.10-py3-none-any.whl", hash = "sha256:19a6685d5ad11578ad9b7ce5fbcd85a7352cd1353af2022cf8bfa89b2280c4a8"}, + {file = "agenta-0.59.10.tar.gz", hash = "sha256:1373a0c117dae45f36d0de92e2b22ea275fb8155617cfbb2a634ecaf46f8c99a"}, ] [package.dependencies] decorator = ">=5.2.1,<6.0.0" fastapi = ">=0.116.0,<0.117.0" +google-auth = ">=2.23,<3" h11 = ">=0.16.0,<0.17.0" httpx = ">=0.28.0,<0.29.0" huggingface-hub = "<0.31.0" importlib-metadata = ">=8.0.0,<9.0" jinja2 = ">=3.1.6,<4.0.0" -litellm = "1.76.0" +litellm = "1.78.7" openai = ">=1.106.0,<2.0.0" opentelemetry-api = ">=1.27.0,<2.0.0" opentelemetry-exporter-otlp-proto-http = ">=1.27.0,<2.0.0" @@ -50,133 +51,133 @@ files = [ [[package]] name = "aiohttp" -version = "3.13.1" +version = "3.13.2" description = "Async http client/server framework (asyncio)" optional = false python-versions = ">=3.9" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "aiohttp-3.13.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2349a6b642020bf20116a8a5c83bae8ba071acf1461c7cbe45fc7fafd552e7e2"}, - {file = "aiohttp-3.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:2a8434ca31c093a90edb94d7d70e98706ce4d912d7f7a39f56e1af26287f4bb7"}, - {file = "aiohttp-3.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0bd610a7e87431741021a9a6ab775e769ea8c01bf01766d481282bfb17df597f"}, - {file = "aiohttp-3.13.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:777ec887264b629395b528af59b8523bf3164d4c6738cd8989485ff3eda002e2"}, - {file = "aiohttp-3.13.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:ac1892f56e2c445aca5ba28f3bf8e16b26dfc05f3c969867b7ef553b74cb4ebe"}, - {file = "aiohttp-3.13.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:499a047d1c5e490c31d16c033e2e47d1358f0e15175c7a1329afc6dfeb04bc09"}, - {file = "aiohttp-3.13.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:610be925f89501938c770f1e28ca9dd62e9b308592c81bd5d223ce92434c0089"}, - {file = "aiohttp-3.13.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:90eb902c06c6ac85d6b80fa9f2bd681f25b1ebf73433d428b3d182a507242711"}, - {file = "aiohttp-3.13.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:ab8ac3224b2beb46266c094b3869d68d5f96f35dba98e03dea0acbd055eefa03"}, - {file = "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:79ac65b6e2731558aad1e4c1a655d2aa2a77845b62acecf5898b0d4fe8c76618"}, - {file = "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:4dadbd858ed8c04d1aa7a2a91ad65f8e1fbd253ae762ef5be8111e763d576c3c"}, - {file = "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e0b2ccd331bc77149e88e919aa95c228a011e03e1168fd938e6aeb1a317d7a8a"}, - {file = "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:fba3c85fb24fe204e73f3c92f09f4f5cfa55fa7e54b34d59d91b7c5a258d0f6a"}, - {file = "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:8d5011e4e741d2635cda18f2997a56e8e1d1b94591dc8732f2ef1d3e1bfc5f45"}, - {file = "aiohttp-3.13.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c5fe2728a89c82574bd3132d59237c3b5fb83e2e00a320e928d05d74d1ae895f"}, - {file = "aiohttp-3.13.1-cp310-cp310-win32.whl", hash = "sha256:add14a5e68cbcfc526c89c1ed8ea963f5ff8b9b4b854985b07820c6fbfdb3c3c"}, - {file = "aiohttp-3.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:a4cc9d9cfdf75a69ae921c407e02d0c1799ab333b0bc6f7928c175f47c080d6a"}, - {file = "aiohttp-3.13.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9eefa0a891e85dca56e2d00760945a6325bd76341ec386d3ad4ff72eb97b7e64"}, - {file = "aiohttp-3.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6c20eb646371a5a57a97de67e52aac6c47badb1564e719b3601bbb557a2e8fd0"}, - {file = "aiohttp-3.13.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bfc28038cd86fb1deed5cc75c8fda45c6b0f5c51dfd76f8c63d3d22dc1ab3d1b"}, - {file = "aiohttp-3.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b22eeffca2e522451990c31a36fe0e71079e6112159f39a4391f1c1e259a795"}, - {file = "aiohttp-3.13.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:65782b2977c05ebd78787e3c834abe499313bf69d6b8be4ff9c340901ee7541f"}, - {file = "aiohttp-3.13.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:dacba54f9be3702eb866b0b9966754b475e1e39996e29e442c3cd7f1117b43a9"}, - {file = "aiohttp-3.13.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:aa878da718e8235302c365e376b768035add36b55177706d784a122cb822a6a4"}, - {file = "aiohttp-3.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0e4b4e607fbd4964d65945a7b9d1e7f98b0d5545736ea613f77d5a2a37ff1e46"}, - {file = "aiohttp-3.13.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:0c3db2d0e5477ad561bf7ba978c3ae5f8f78afda70daa05020179f759578754f"}, - {file = "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9739d34506fdf59bf2c092560d502aa728b8cdb33f34ba15fb5e2852c35dd829"}, - {file = "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:b902e30a268a85d50197b4997edc6e78842c14c0703450f632c2d82f17577845"}, - {file = "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:1bbfc04c8de7def6504cce0a97f9885a5c805fd2395a0634bc10f9d6ecb42524"}, - {file = "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:6941853405a38a5eeb7d9776db77698df373ff7fa8c765cb81ea14a344fccbeb"}, - {file = "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:7764adcd2dc8bd21c8228a53dda2005428498dc4d165f41b6086f0ac1c65b1c9"}, - {file = "aiohttp-3.13.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c09e08d38586fa59e5a2f9626505a0326fadb8e9c45550f029feeb92097a0afc"}, - {file = "aiohttp-3.13.1-cp311-cp311-win32.whl", hash = "sha256:ce1371675e74f6cf271d0b5530defb44cce713fd0ab733713562b3a2b870815c"}, - {file = "aiohttp-3.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:77a2f5cc28cf4704cc157be135c6a6cfb38c9dea478004f1c0fd7449cf445c28"}, - {file = "aiohttp-3.13.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0760bd9a28efe188d77b7c3fe666e6ef74320d0f5b105f2e931c7a7e884c8230"}, - {file = "aiohttp-3.13.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7129a424b441c3fe018a414401bf1b9e1d49492445f5676a3aecf4f74f67fcdb"}, - {file = "aiohttp-3.13.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e1cb04ae64a594f6ddf5cbb024aba6b4773895ab6ecbc579d60414f8115e9e26"}, - {file = "aiohttp-3.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:782d656a641e755decd6bd98d61d2a8ea062fd45fd3ff8d4173605dd0d2b56a1"}, - {file = "aiohttp-3.13.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:f92ad8169767429a6d2237331726c03ccc5f245222f9373aa045510976af2b35"}, - {file = "aiohttp-3.13.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0e778f634ca50ec005eefa2253856921c429581422d887be050f2c1c92e5ce12"}, - {file = "aiohttp-3.13.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9bc36b41cf4aab5d3b34d22934a696ab83516603d1bc1f3e4ff9930fe7d245e5"}, - {file = "aiohttp-3.13.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3fd4570ea696aee27204dd524f287127ed0966d14d309dc8cc440f474e3e7dbd"}, - {file = "aiohttp-3.13.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:7bda795f08b8a620836ebfb0926f7973972a4bf8c74fdf9145e489f88c416811"}, - {file = "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:055a51d90e351aae53dcf324d0eafb2abe5b576d3ea1ec03827d920cf81a1c15"}, - {file = "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:d4131df864cbcc09bb16d3612a682af0db52f10736e71312574d90f16406a867"}, - {file = "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:163d3226e043f79bf47c87f8dfc89c496cc7bc9128cb7055ce026e435d551720"}, - {file = "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:a2370986a3b75c1a5f3d6f6d763fc6be4b430226577b0ed16a7c13a75bf43d8f"}, - {file = "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:d7c14de0c7c9f1e6e785ce6cbe0ed817282c2af0012e674f45b4e58c6d4ea030"}, - {file = "aiohttp-3.13.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:bb611489cf0db10b99beeb7280bd39e0ef72bc3eb6d8c0f0a16d8a56075d1eb7"}, - {file = "aiohttp-3.13.1-cp312-cp312-win32.whl", hash = "sha256:f90fe0ee75590f7428f7c8b5479389d985d83c949ea10f662ab928a5ed5cf5e6"}, - {file = "aiohttp-3.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:3461919a9dca272c183055f2aab8e6af0adc810a1b386cce28da11eb00c859d9"}, - {file = "aiohttp-3.13.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:55785a7f8f13df0c9ca30b5243d9909bd59f48b274262a8fe78cee0828306e5d"}, - {file = "aiohttp-3.13.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4bef5b83296cebb8167707b4f8d06c1805db0af632f7a72d7c5288a84667e7c3"}, - {file = "aiohttp-3.13.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:27af0619c33f9ca52f06069ec05de1a357033449ab101836f431768ecfa63ff5"}, - {file = "aiohttp-3.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a47fe43229a8efd3764ef7728a5c1158f31cdf2a12151fe99fde81c9ac87019c"}, - {file = "aiohttp-3.13.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:6e68e126de5b46e8b2bee73cab086b5d791e7dc192056916077aa1e2e2b04437"}, - {file = "aiohttp-3.13.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e65ef49dd22514329c55970d39079618a8abf856bae7147913bb774a3ab3c02f"}, - {file = "aiohttp-3.13.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0e425a7e0511648b3376839dcc9190098671a47f21a36e815b97762eb7d556b0"}, - {file = "aiohttp-3.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:010dc9b7110f055006acd3648d5d5955bb6473b37c3663ec42a1b4cba7413e6b"}, - {file = "aiohttp-3.13.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:1b5c722d0ca5f57d61066b5dfa96cdb87111e2519156b35c1f8dd17c703bee7a"}, - {file = "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:93029f0e9b77b714904a281b5aa578cdc8aa8ba018d78c04e51e1c3d8471b8ec"}, - {file = "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:d1824c7d08d8ddfc8cb10c847f696942e5aadbd16fd974dfde8bd2c3c08a9fa1"}, - {file = "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:8f47d0ff5b3eb9c1278a2f56ea48fda667da8ebf28bd2cb378b7c453936ce003"}, - {file = "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:8a396b1da9b51ded79806ac3b57a598f84e0769eaa1ba300655d8b5e17b70c7b"}, - {file = "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d9c52a65f54796e066b5d674e33b53178014752d28bca555c479c2c25ffcec5b"}, - {file = "aiohttp-3.13.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a89da72d18d6c95a653470b78d8ee5aa3c4b37212004c103403d0776cbea6ff0"}, - {file = "aiohttp-3.13.1-cp313-cp313-win32.whl", hash = "sha256:02e0258b7585ddf5d01c79c716ddd674386bfbf3041fbbfe7bdf9c7c32eb4a9b"}, - {file = "aiohttp-3.13.1-cp313-cp313-win_amd64.whl", hash = "sha256:ef56ffe60e8d97baac123272bde1ab889ee07d3419606fae823c80c2b86c403e"}, - {file = "aiohttp-3.13.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:77f83b3dc5870a2ea79a0fcfdcc3fc398187ec1675ff61ec2ceccad27ecbd303"}, - {file = "aiohttp-3.13.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:9cafd2609ebb755e47323306c7666283fbba6cf82b5f19982ea627db907df23a"}, - {file = "aiohttp-3.13.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:9c489309a2ca548d5f11131cfb4092f61d67954f930bba7e413bcdbbb82d7fae"}, - {file = "aiohttp-3.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:79ac15fe5fdbf3c186aa74b656cd436d9a1e492ba036db8901c75717055a5b1c"}, - {file = "aiohttp-3.13.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:095414be94fce3bc080684b4cd50fb70d439bc4662b2a1984f45f3bf9ede08aa"}, - {file = "aiohttp-3.13.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c68172e1a2dca65fa1272c85ca72e802d78b67812b22827df01017a15c5089fa"}, - {file = "aiohttp-3.13.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3751f9212bcd119944d4ea9de6a3f0fee288c177b8ca55442a2cdff0c8201eb3"}, - {file = "aiohttp-3.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8619dca57d98a8353abdc7a1eeb415548952b39d6676def70d9ce76d41a046a9"}, - {file = "aiohttp-3.13.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:97795a0cb0a5f8a843759620e9cbd8889f8079551f5dcf1ccd99ed2f056d9632"}, - {file = "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1060e058da8f9f28a7026cdfca9fc886e45e551a658f6a5c631188f72a3736d2"}, - {file = "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:f48a2c26333659101ef214907d29a76fe22ad7e912aa1e40aeffdff5e8180977"}, - {file = "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:f1dfad638b9c91ff225162b2824db0e99ae2d1abe0dc7272b5919701f0a1e685"}, - {file = "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:8fa09ab6dd567cb105db4e8ac4d60f377a7a94f67cf669cac79982f626360f32"}, - {file = "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:4159fae827f9b5f655538a4f99b7cbc3a2187e5ca2eee82f876ef1da802ccfa9"}, - {file = "aiohttp-3.13.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:ad671118c19e9cfafe81a7a05c294449fe0ebb0d0c6d5bb445cd2190023f5cef"}, - {file = "aiohttp-3.13.1-cp314-cp314-win32.whl", hash = "sha256:c5c970c148c48cf6acb65224ca3c87a47f74436362dde75c27bc44155ccf7dfc"}, - {file = "aiohttp-3.13.1-cp314-cp314-win_amd64.whl", hash = "sha256:748a00167b7a88385756fa615417d24081cba7e58c8727d2e28817068b97c18c"}, - {file = "aiohttp-3.13.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:390b73e99d7a1f0f658b3f626ba345b76382f3edc65f49d6385e326e777ed00e"}, - {file = "aiohttp-3.13.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:27e83abb330e687e019173d8fc1fd6a1cf471769624cf89b1bb49131198a810a"}, - {file = "aiohttp-3.13.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:2b20eed07131adbf3e873e009c2869b16a579b236e9d4b2f211bf174d8bef44a"}, - {file = "aiohttp-3.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:58fee9ef8477fd69e823b92cfd1f590ee388521b5ff8f97f3497e62ee0656212"}, - {file = "aiohttp-3.13.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:1f62608fcb7b3d034d5e9496bea52d94064b7b62b06edba82cd38191336bbeda"}, - {file = "aiohttp-3.13.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fdc4d81c3dfc999437f23e36d197e8b557a3f779625cd13efe563a9cfc2ce712"}, - {file = "aiohttp-3.13.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:601d7ec812f746fd80ff8af38eeb3f196e1bab4a4d39816ccbc94c222d23f1d0"}, - {file = "aiohttp-3.13.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47c3f21c469b840d9609089435c0d9918ae89f41289bf7cc4afe5ff7af5458db"}, - {file = "aiohttp-3.13.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:d6c6cdc0750db88520332d4aaa352221732b0cafe89fd0e42feec7cb1b5dc236"}, - {file = "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:58a12299eeb1fca2414ee2bc345ac69b0f765c20b82c3ab2a75d91310d95a9f6"}, - {file = "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:0989cbfc195a4de1bb48f08454ef1cb47424b937e53ed069d08404b9d3c7aea1"}, - {file = "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:feb5ee664300e2435e0d1bc3443a98925013dfaf2cae9699c1f3606b88544898"}, - {file = "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:58a6f8702da0c3606fb5cf2e669cce0ca681d072fe830968673bb4c69eb89e88"}, - {file = "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:a417ceb433b9d280e2368ffea22d4bc6e3e0d894c4bc7768915124d57d0964b6"}, - {file = "aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:8ac8854f7b0466c5d6a9ea49249b3f6176013859ac8f4bb2522ad8ed6b94ded2"}, - {file = "aiohttp-3.13.1-cp314-cp314t-win32.whl", hash = "sha256:be697a5aeff42179ed13b332a411e674994bcd406c81642d014ace90bf4bb968"}, - {file = "aiohttp-3.13.1-cp314-cp314t-win_amd64.whl", hash = "sha256:f1d6aa90546a4e8f20c3500cb68ab14679cd91f927fa52970035fd3207dfb3da"}, - {file = "aiohttp-3.13.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a5dc5c3b086adc232fd07e691dcc452e8e407bf7c810e6f7e18fd3941a24c5c0"}, - {file = "aiohttp-3.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fb7c5f0b35f5a3a06bd5e1a7b46204c2dca734cd839da830db81f56ce60981fe"}, - {file = "aiohttp-3.13.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:cb1e557bd1a90f28dc88a6e31332753795cd471f8d18da749c35930e53d11880"}, - {file = "aiohttp-3.13.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e95ea8fb27fbf667d322626a12db708be308b66cd9afd4a997230ded66ffcab4"}, - {file = "aiohttp-3.13.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:f37da298a486e53f9b5e8ef522719b3787c4fe852639a1edcfcc9f981f2c20ba"}, - {file = "aiohttp-3.13.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:37cc1b9773d2a01c3f221c3ebecf0c82b1c93f55f3fde52929e40cf2ed777e6c"}, - {file = "aiohttp-3.13.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:412bfc63a6de4907aae6041da256d183f875bf4dc01e05412b1d19cfc25ee08c"}, - {file = "aiohttp-3.13.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d8ccd2946aadf7793643b57d98d5a82598295a37f98d218984039d5179823cd5"}, - {file = "aiohttp-3.13.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:51b3c44434a50bca1763792c6b98b9ba1d614339284780b43107ef37ec3aa1dc"}, - {file = "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9bff813424c70ad38667edfad4fefe8ca1b09a53621ce7d0fd017e418438f58a"}, - {file = "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:ed782a438ff4b66ce29503a1555be51a36e4b5048c3b524929378aa7450c26a9"}, - {file = "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:a1d6fd6e9e3578a7aeb0fa11e9a544dceccb840330277bf281325aa0fe37787e"}, - {file = "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:7c5e2660c6d6ab0d85c45bc8bd9f685983ebc63a5c7c0fd3ddeb647712722eca"}, - {file = "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:168279a11571a39d689fc7b9725ddcde0dc68f2336b06b69fcea0203f9fb25d8"}, - {file = "aiohttp-3.13.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ff0357fa3dd28cf49ad8c515452a1d1d7ad611b513e0a4f6fa6ad6780abaddfd"}, - {file = "aiohttp-3.13.1-cp39-cp39-win32.whl", hash = "sha256:a617769e8294ca58601a579697eae0b0e1b1ef770c5920d55692827d6b330ff9"}, - {file = "aiohttp-3.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:f2543eebf890739fd93d06e2c16d97bdf1301d2cda5ffceb7a68441c7b590a92"}, - {file = "aiohttp-3.13.1.tar.gz", hash = "sha256:4b7ee9c355015813a6aa085170b96ec22315dabc3d866fd77d147927000e9464"}, + {file = "aiohttp-3.13.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:2372b15a5f62ed37789a6b383ff7344fc5b9f243999b0cd9b629d8bc5f5b4155"}, + {file = "aiohttp-3.13.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7f8659a48995edee7229522984bd1009c1213929c769c2daa80b40fe49a180c"}, + {file = "aiohttp-3.13.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:939ced4a7add92296b0ad38892ce62b98c619288a081170695c6babe4f50e636"}, + {file = "aiohttp-3.13.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6315fb6977f1d0dd41a107c527fee2ed5ab0550b7d885bc15fee20ccb17891da"}, + {file = "aiohttp-3.13.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:6e7352512f763f760baaed2637055c49134fd1d35b37c2dedfac35bfe5cf8725"}, + {file = "aiohttp-3.13.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e09a0a06348a2dd73e7213353c90d709502d9786219f69b731f6caa0efeb46f5"}, + {file = "aiohttp-3.13.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a09a6d073fb5789456545bdee2474d14395792faa0527887f2f4ec1a486a59d3"}, + {file = "aiohttp-3.13.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b59d13c443f8e049d9e94099c7e412e34610f1f49be0f230ec656a10692a5802"}, + {file = "aiohttp-3.13.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:20db2d67985d71ca033443a1ba2001c4b5693fe09b0e29f6d9358a99d4d62a8a"}, + {file = "aiohttp-3.13.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:960c2fc686ba27b535f9fd2b52d87ecd7e4fd1cf877f6a5cba8afb5b4a8bd204"}, + {file = "aiohttp-3.13.2-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:6c00dbcf5f0d88796151e264a8eab23de2997c9303dd7c0bf622e23b24d3ce22"}, + {file = "aiohttp-3.13.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:fed38a5edb7945f4d1bcabe2fcd05db4f6ec7e0e82560088b754f7e08d93772d"}, + {file = "aiohttp-3.13.2-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:b395bbca716c38bef3c764f187860e88c724b342c26275bc03e906142fc5964f"}, + {file = "aiohttp-3.13.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:204ffff2426c25dfda401ba08da85f9c59525cdc42bda26660463dd1cbcfec6f"}, + {file = "aiohttp-3.13.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:05c4dd3c48fb5f15db31f57eb35374cb0c09afdde532e7fb70a75aede0ed30f6"}, + {file = "aiohttp-3.13.2-cp310-cp310-win32.whl", hash = "sha256:e574a7d61cf10351d734bcddabbe15ede0eaa8a02070d85446875dc11189a251"}, + {file = "aiohttp-3.13.2-cp310-cp310-win_amd64.whl", hash = "sha256:364f55663085d658b8462a1c3f17b2b84a5c2e1ba858e1b79bff7b2e24ad1514"}, + {file = "aiohttp-3.13.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4647d02df098f6434bafd7f32ad14942f05a9caa06c7016fdcc816f343997dd0"}, + {file = "aiohttp-3.13.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e3403f24bcb9c3b29113611c3c16a2a447c3953ecf86b79775e7be06f7ae7ccb"}, + {file = "aiohttp-3.13.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:43dff14e35aba17e3d6d5ba628858fb8cb51e30f44724a2d2f0c75be492c55e9"}, + {file = "aiohttp-3.13.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e2a9ea08e8c58bb17655630198833109227dea914cd20be660f52215f6de5613"}, + {file = "aiohttp-3.13.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:53b07472f235eb80e826ad038c9d106c2f653584753f3ddab907c83f49eedead"}, + {file = "aiohttp-3.13.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e736c93e9c274fce6419af4aac199984d866e55f8a4cec9114671d0ea9688780"}, + {file = "aiohttp-3.13.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ff5e771f5dcbc81c64898c597a434f7682f2259e0cd666932a913d53d1341d1a"}, + {file = "aiohttp-3.13.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a3b6fb0c207cc661fa0bf8c66d8d9b657331ccc814f4719468af61034b478592"}, + {file = "aiohttp-3.13.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:97a0895a8e840ab3520e2288db7cace3a1981300d48babeb50e7425609e2e0ab"}, + {file = "aiohttp-3.13.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:9e8f8afb552297aca127c90cb840e9a1d4bfd6a10d7d8f2d9176e1acc69bad30"}, + {file = "aiohttp-3.13.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:ed2f9c7216e53c3df02264f25d824b079cc5914f9e2deba94155190ef648ee40"}, + {file = "aiohttp-3.13.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:99c5280a329d5fa18ef30fd10c793a190d996567667908bef8a7f81f8202b948"}, + {file = "aiohttp-3.13.2-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:2ca6ffef405fc9c09a746cb5d019c1672cd7f402542e379afc66b370833170cf"}, + {file = "aiohttp-3.13.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:47f438b1a28e926c37632bff3c44df7d27c9b57aaf4e34b1def3c07111fdb782"}, + {file = "aiohttp-3.13.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9acda8604a57bb60544e4646a4615c1866ee6c04a8edef9b8ee6fd1d8fa2ddc8"}, + {file = "aiohttp-3.13.2-cp311-cp311-win32.whl", hash = "sha256:868e195e39b24aaa930b063c08bb0c17924899c16c672a28a65afded9c46c6ec"}, + {file = "aiohttp-3.13.2-cp311-cp311-win_amd64.whl", hash = "sha256:7fd19df530c292542636c2a9a85854fab93474396a52f1695e799186bbd7f24c"}, + {file = "aiohttp-3.13.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:b1e56bab2e12b2b9ed300218c351ee2a3d8c8fdab5b1ec6193e11a817767e47b"}, + {file = "aiohttp-3.13.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:364e25edaabd3d37b1db1f0cbcee8c73c9a3727bfa262b83e5e4cf3489a2a9dc"}, + {file = "aiohttp-3.13.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c5c94825f744694c4b8db20b71dba9a257cd2ba8e010a803042123f3a25d50d7"}, + {file = "aiohttp-3.13.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ba2715d842ffa787be87cbfce150d5e88c87a98e0b62e0f5aa489169a393dbbb"}, + {file = "aiohttp-3.13.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:585542825c4bc662221fb257889e011a5aa00f1ae4d75d1d246a5225289183e3"}, + {file = "aiohttp-3.13.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:39d02cb6025fe1aabca329c5632f48c9532a3dabccd859e7e2f110668972331f"}, + {file = "aiohttp-3.13.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e67446b19e014d37342f7195f592a2a948141d15a312fe0e700c2fd2f03124f6"}, + {file = "aiohttp-3.13.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4356474ad6333e41ccefd39eae869ba15a6c5299c9c01dfdcfdd5c107be4363e"}, + {file = "aiohttp-3.13.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:eeacf451c99b4525f700f078becff32c32ec327b10dcf31306a8a52d78166de7"}, + {file = "aiohttp-3.13.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d8a9b889aeabd7a4e9af0b7f4ab5ad94d42e7ff679aaec6d0db21e3b639ad58d"}, + {file = "aiohttp-3.13.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:fa89cb11bc71a63b69568d5b8a25c3ca25b6d54c15f907ca1c130d72f320b76b"}, + {file = "aiohttp-3.13.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:8aa7c807df234f693fed0ecd507192fc97692e61fee5702cdc11155d2e5cadc8"}, + {file = "aiohttp-3.13.2-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:9eb3e33fdbe43f88c3c75fa608c25e7c47bbd80f48d012763cb67c47f39a7e16"}, + {file = "aiohttp-3.13.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9434bc0d80076138ea986833156c5a48c9c7a8abb0c96039ddbb4afc93184169"}, + {file = "aiohttp-3.13.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ff15c147b2ad66da1f2cbb0622313f2242d8e6e8f9b79b5206c84523a4473248"}, + {file = "aiohttp-3.13.2-cp312-cp312-win32.whl", hash = "sha256:27e569eb9d9e95dbd55c0fc3ec3a9335defbf1d8bc1d20171a49f3c4c607b93e"}, + {file = "aiohttp-3.13.2-cp312-cp312-win_amd64.whl", hash = "sha256:8709a0f05d59a71f33fd05c17fc11fcb8c30140506e13c2f5e8ee1b8964e1b45"}, + {file = "aiohttp-3.13.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:7519bdc7dfc1940d201651b52bf5e03f5503bda45ad6eacf64dda98be5b2b6be"}, + {file = "aiohttp-3.13.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:088912a78b4d4f547a1f19c099d5a506df17eacec3c6f4375e2831ec1d995742"}, + {file = "aiohttp-3.13.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5276807b9de9092af38ed23ce120539ab0ac955547b38563a9ba4f5b07b95293"}, + {file = "aiohttp-3.13.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1237c1375eaef0db4dcd7c2559f42e8af7b87ea7d295b118c60c36a6e61cb811"}, + {file = "aiohttp-3.13.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:96581619c57419c3d7d78703d5b78c1e5e5fc0172d60f555bdebaced82ded19a"}, + {file = "aiohttp-3.13.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a2713a95b47374169409d18103366de1050fe0ea73db358fc7a7acb2880422d4"}, + {file = "aiohttp-3.13.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:228a1cd556b3caca590e9511a89444925da87d35219a49ab5da0c36d2d943a6a"}, + {file = "aiohttp-3.13.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ac6cde5fba8d7d8c6ac963dbb0256a9854e9fafff52fbcc58fdf819357892c3e"}, + {file = "aiohttp-3.13.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f2bef8237544f4e42878c61cef4e2839fee6346dc60f5739f876a9c50be7fcdb"}, + {file = "aiohttp-3.13.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:16f15a4eac3bc2d76c45f7ebdd48a65d41b242eb6c31c2245463b40b34584ded"}, + {file = "aiohttp-3.13.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:bb7fb776645af5cc58ab804c58d7eba545a97e047254a52ce89c157b5af6cd0b"}, + {file = "aiohttp-3.13.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:e1b4951125ec10c70802f2cb09736c895861cd39fd9dcb35107b4dc8ae6220b8"}, + {file = "aiohttp-3.13.2-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:550bf765101ae721ee1d37d8095f47b1f220650f85fe1af37a90ce75bab89d04"}, + {file = "aiohttp-3.13.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:fe91b87fc295973096251e2d25a811388e7d8adf3bd2b97ef6ae78bc4ac6c476"}, + {file = "aiohttp-3.13.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e0c8e31cfcc4592cb200160344b2fb6ae0f9e4effe06c644b5a125d4ae5ebe23"}, + {file = "aiohttp-3.13.2-cp313-cp313-win32.whl", hash = "sha256:0740f31a60848d6edb296a0df827473eede90c689b8f9f2a4cdde74889eb2254"}, + {file = "aiohttp-3.13.2-cp313-cp313-win_amd64.whl", hash = "sha256:a88d13e7ca367394908f8a276b89d04a3652044612b9a408a0bb22a5ed976a1a"}, + {file = "aiohttp-3.13.2-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:2475391c29230e063ef53a66669b7b691c9bfc3f1426a0f7bcdf1216bdbac38b"}, + {file = "aiohttp-3.13.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:f33c8748abef4d8717bb20e8fb1b3e07c6adacb7fd6beaae971a764cf5f30d61"}, + {file = "aiohttp-3.13.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ae32f24bbfb7dbb485a24b30b1149e2f200be94777232aeadba3eecece4d0aa4"}, + {file = "aiohttp-3.13.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d7f02042c1f009ffb70067326ef183a047425bb2ff3bc434ead4dd4a4a66a2b"}, + {file = "aiohttp-3.13.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:93655083005d71cd6c072cdab54c886e6570ad2c4592139c3fb967bfc19e4694"}, + {file = "aiohttp-3.13.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0db1e24b852f5f664cd728db140cf11ea0e82450471232a394b3d1a540b0f906"}, + {file = "aiohttp-3.13.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b009194665bcd128e23eaddef362e745601afa4641930848af4c8559e88f18f9"}, + {file = "aiohttp-3.13.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c038a8fdc8103cd51dbd986ecdce141473ffd9775a7a8057a6ed9c3653478011"}, + {file = "aiohttp-3.13.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:66bac29b95a00db411cd758fea0e4b9bdba6d549dfe333f9a945430f5f2cc5a6"}, + {file = "aiohttp-3.13.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:4ebf9cfc9ba24a74cf0718f04aac2a3bbe745902cc7c5ebc55c0f3b5777ef213"}, + {file = "aiohttp-3.13.2-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:a4b88ebe35ce54205c7074f7302bd08a4cb83256a3e0870c72d6f68a3aaf8e49"}, + {file = "aiohttp-3.13.2-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:98c4fb90bb82b70a4ed79ca35f656f4281885be076f3f970ce315402b53099ae"}, + {file = "aiohttp-3.13.2-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:ec7534e63ae0f3759df3a1ed4fa6bc8f75082a924b590619c0dd2f76d7043caa"}, + {file = "aiohttp-3.13.2-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:5b927cf9b935a13e33644cbed6c8c4b2d0f25b713d838743f8fe7191b33829c4"}, + {file = "aiohttp-3.13.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:88d6c017966a78c5265d996c19cdb79235be5e6412268d7e2ce7dee339471b7a"}, + {file = "aiohttp-3.13.2-cp314-cp314-win32.whl", hash = "sha256:f7c183e786e299b5d6c49fb43a769f8eb8e04a2726a2bd5887b98b5cc2d67940"}, + {file = "aiohttp-3.13.2-cp314-cp314-win_amd64.whl", hash = "sha256:fe242cd381e0fb65758faf5ad96c2e460df6ee5b2de1072fe97e4127927e00b4"}, + {file = "aiohttp-3.13.2-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:f10d9c0b0188fe85398c61147bbd2a657d616c876863bfeff43376e0e3134673"}, + {file = "aiohttp-3.13.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:e7c952aefdf2460f4ae55c5e9c3e80aa72f706a6317e06020f80e96253b1accd"}, + {file = "aiohttp-3.13.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c20423ce14771d98353d2e25e83591fa75dfa90a3c1848f3d7c68243b4fbded3"}, + {file = "aiohttp-3.13.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e96eb1a34396e9430c19d8338d2ec33015e4a87ef2b4449db94c22412e25ccdf"}, + {file = "aiohttp-3.13.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:23fb0783bc1a33640036465019d3bba069942616a6a2353c6907d7fe1ccdaf4e"}, + {file = "aiohttp-3.13.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2e1a9bea6244a1d05a4e57c295d69e159a5c50d8ef16aa390948ee873478d9a5"}, + {file = "aiohttp-3.13.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0a3d54e822688b56e9f6b5816fb3de3a3a64660efac64e4c2dc435230ad23bad"}, + {file = "aiohttp-3.13.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7a653d872afe9f33497215745da7a943d1dc15b728a9c8da1c3ac423af35178e"}, + {file = "aiohttp-3.13.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:56d36e80d2003fa3fc0207fac644216d8532e9504a785ef9a8fd013f84a42c61"}, + {file = "aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:78cd586d8331fb8e241c2dd6b2f4061778cc69e150514b39a9e28dd050475661"}, + {file = "aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:20b10bbfbff766294fe99987f7bb3b74fdd2f1a2905f2562132641ad434dcf98"}, + {file = "aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:9ec49dff7e2b3c85cdeaa412e9d438f0ecd71676fde61ec57027dd392f00c693"}, + {file = "aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:94f05348c4406450f9d73d38efb41d669ad6cd90c7ee194810d0eefbfa875a7a"}, + {file = "aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:fa4dcb605c6f82a80c7f95713c2b11c3b8e9893b3ebd2bc9bde93165ed6107be"}, + {file = "aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:cf00e5db968c3f67eccd2778574cf64d8b27d95b237770aa32400bd7a1ca4f6c"}, + {file = "aiohttp-3.13.2-cp314-cp314t-win32.whl", hash = "sha256:d23b5fe492b0805a50d3371e8a728a9134d8de5447dce4c885f5587294750734"}, + {file = "aiohttp-3.13.2-cp314-cp314t-win_amd64.whl", hash = "sha256:ff0a7b0a82a7ab905cbda74006318d1b12e37c797eb1b0d4eb3e316cf47f658f"}, + {file = "aiohttp-3.13.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7fbdf5ad6084f1940ce88933de34b62358d0f4a0b6ec097362dcd3e5a65a4989"}, + {file = "aiohttp-3.13.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7c3a50345635a02db61792c85bb86daffac05330f6473d524f1a4e3ef9d0046d"}, + {file = "aiohttp-3.13.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0e87dff73f46e969af38ab3f7cb75316a7c944e2e574ff7c933bc01b10def7f5"}, + {file = "aiohttp-3.13.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2adebd4577724dcae085665f294cc57c8701ddd4d26140504db622b8d566d7aa"}, + {file = "aiohttp-3.13.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:e036a3a645fe92309ec34b918394bb377950cbb43039a97edae6c08db64b23e2"}, + {file = "aiohttp-3.13.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:23ad365e30108c422d0b4428cf271156dd56790f6dd50d770b8e360e6c5ab2e6"}, + {file = "aiohttp-3.13.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:1f9b2c2d4b9d958b1f9ae0c984ec1dd6b6689e15c75045be8ccb4011426268ca"}, + {file = "aiohttp-3.13.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3a92cf4b9bea33e15ecbaa5c59921be0f23222608143d025c989924f7e3e0c07"}, + {file = "aiohttp-3.13.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:070599407f4954021509193404c4ac53153525a19531051661440644728ba9a7"}, + {file = "aiohttp-3.13.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:29562998ec66f988d49fb83c9b01694fa927186b781463f376c5845c121e4e0b"}, + {file = "aiohttp-3.13.2-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:4dd3db9d0f4ebca1d887d76f7cdbcd1116ac0d05a9221b9dad82c64a62578c4d"}, + {file = "aiohttp-3.13.2-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:d7bc4b7f9c4921eba72677cd9fedd2308f4a4ca3e12fab58935295ad9ea98700"}, + {file = "aiohttp-3.13.2-cp39-cp39-musllinux_1_2_riscv64.whl", hash = "sha256:dacd50501cd017f8cccb328da0c90823511d70d24a323196826d923aad865901"}, + {file = "aiohttp-3.13.2-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:8b2f1414f6a1e0683f212ec80e813f4abef94c739fd090b66c9adf9d2a05feac"}, + {file = "aiohttp-3.13.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04c3971421576ed24c191f610052bcb2f059e395bc2489dd99e397f9bc466329"}, + {file = "aiohttp-3.13.2-cp39-cp39-win32.whl", hash = "sha256:9f377d0a924e5cc94dc620bc6366fc3e889586a7f18b748901cf016c916e2084"}, + {file = "aiohttp-3.13.2-cp39-cp39-win_amd64.whl", hash = "sha256:9c705601e16c03466cb72011bd1af55d68fa65b045356d8f96c216e5f6db0fa5"}, + {file = "aiohttp-3.13.2.tar.gz", hash = "sha256:40176a52c186aefef6eb3cad2cdd30cd06e3afbe88fe8ab2af9c0b90f228daca"}, ] [package.dependencies] @@ -243,15 +244,15 @@ uvloop = ["uvloop (>=0.18)"] [[package]] name = "alembic" -version = "1.17.0" +version = "1.17.1" description = "A database migration tool for SQLAlchemy." optional = false python-versions = ">=3.10" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "alembic-1.17.0-py3-none-any.whl", hash = "sha256:80523bc437d41b35c5db7e525ad9d908f79de65c27d6a5a5eab6df348a352d99"}, - {file = "alembic-1.17.0.tar.gz", hash = "sha256:4652a0b3e19616b57d652b82bfa5e38bf5dbea0813eed971612671cb9e90c0fe"}, + {file = "alembic-1.17.1-py3-none-any.whl", hash = "sha256:cbc2386e60f89608bb63f30d2d6cc66c7aaed1fe105bd862828600e5ad167023"}, + {file = "alembic-1.17.1.tar.gz", hash = "sha256:8a289f6778262df31571d29cca4c7fbacd2f0f582ea0816f4c399b6da7528486"}, ] [package.dependencies] @@ -1101,6 +1102,95 @@ all = ["email-validator (>=2.0.0)", "fastapi-cli[standard] (>=0.0.8)", "httpx (> standard = ["email-validator (>=2.0.0)", "fastapi-cli[standard] (>=0.0.8)", "httpx (>=0.23.0)", "jinja2 (>=3.1.5)", "python-multipart (>=0.0.18)", "uvicorn[standard] (>=0.12.0)"] standard-no-fastapi-cloud-cli = ["email-validator (>=2.0.0)", "fastapi-cli[standard-no-fastapi-cloud-cli] (>=0.0.8)", "httpx (>=0.23.0)", "jinja2 (>=3.1.5)", "python-multipart (>=0.0.18)", "uvicorn[standard] (>=0.12.0)"] +[[package]] +name = "fastuuid" +version = "0.14.0" +description = "Python bindings to Rust's UUID library." +optional = false +python-versions = ">=3.8" +groups = ["main"] +markers = "python_version == \"3.11\" or python_version >= \"3.12\"" +files = [ + {file = "fastuuid-0.14.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:6e6243d40f6c793c3e2ee14c13769e341b90be5ef0c23c82fa6515a96145181a"}, + {file = "fastuuid-0.14.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:13ec4f2c3b04271f62be2e1ce7e95ad2dd1cf97e94503a3760db739afbd48f00"}, + {file = "fastuuid-0.14.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b2fdd48b5e4236df145a149d7125badb28e0a383372add3fbaac9a6b7a394470"}, + {file = "fastuuid-0.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f74631b8322d2780ebcf2d2d75d58045c3e9378625ec51865fe0b5620800c39d"}, + {file = "fastuuid-0.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83cffc144dc93eb604b87b179837f2ce2af44871a7b323f2bfed40e8acb40ba8"}, + {file = "fastuuid-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a771f135ab4523eb786e95493803942a5d1fc1610915f131b363f55af53b219"}, + {file = "fastuuid-0.14.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:4edc56b877d960b4eda2c4232f953a61490c3134da94f3c28af129fb9c62a4f6"}, + {file = "fastuuid-0.14.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bcc96ee819c282e7c09b2eed2b9bd13084e3b749fdb2faf58c318d498df2efbe"}, + {file = "fastuuid-0.14.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7a3c0bca61eacc1843ea97b288d6789fbad7400d16db24e36a66c28c268cfe3d"}, + {file = "fastuuid-0.14.0-cp310-cp310-win32.whl", hash = "sha256:7f2f3efade4937fae4e77efae1af571902263de7b78a0aee1a1653795a093b2a"}, + {file = "fastuuid-0.14.0-cp310-cp310-win_amd64.whl", hash = "sha256:ae64ba730d179f439b0736208b4c279b8bc9c089b102aec23f86512ea458c8a4"}, + {file = "fastuuid-0.14.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:73946cb950c8caf65127d4e9a325e2b6be0442a224fd51ba3b6ac44e1912ce34"}, + {file = "fastuuid-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:12ac85024637586a5b69645e7ed986f7535106ed3013640a393a03e461740cb7"}, + {file = "fastuuid-0.14.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:05a8dde1f395e0c9b4be515b7a521403d1e8349443e7641761af07c7ad1624b1"}, + {file = "fastuuid-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09378a05020e3e4883dfdab438926f31fea15fd17604908f3d39cbeb22a0b4dc"}, + {file = "fastuuid-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbb0c4b15d66b435d2538f3827f05e44e2baafcc003dd7d8472dc67807ab8fd8"}, + {file = "fastuuid-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cd5a7f648d4365b41dbf0e38fe8da4884e57bed4e77c83598e076ac0c93995e7"}, + {file = "fastuuid-0.14.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c0a94245afae4d7af8c43b3159d5e3934c53f47140be0be624b96acd672ceb73"}, + {file = "fastuuid-0.14.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:2b29e23c97e77c3a9514d70ce343571e469098ac7f5a269320a0f0b3e193ab36"}, + {file = "fastuuid-0.14.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1e690d48f923c253f28151b3a6b4e335f2b06bf669c68a02665bc150b7839e94"}, + {file = "fastuuid-0.14.0-cp311-cp311-win32.whl", hash = "sha256:a6f46790d59ab38c6aa0e35c681c0484b50dc0acf9e2679c005d61e019313c24"}, + {file = "fastuuid-0.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:e150eab56c95dc9e3fefc234a0eedb342fac433dacc273cd4d150a5b0871e1fa"}, + {file = "fastuuid-0.14.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:77e94728324b63660ebf8adb27055e92d2e4611645bf12ed9d88d30486471d0a"}, + {file = "fastuuid-0.14.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:caa1f14d2102cb8d353096bc6ef6c13b2c81f347e6ab9d6fbd48b9dea41c153d"}, + {file = "fastuuid-0.14.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d23ef06f9e67163be38cece704170486715b177f6baae338110983f99a72c070"}, + {file = "fastuuid-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c9ec605ace243b6dbe3bd27ebdd5d33b00d8d1d3f580b39fdd15cd96fd71796"}, + {file = "fastuuid-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:808527f2407f58a76c916d6aa15d58692a4a019fdf8d4c32ac7ff303b7d7af09"}, + {file = "fastuuid-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fb3c0d7fef6674bbeacdd6dbd386924a7b60b26de849266d1ff6602937675c8"}, + {file = "fastuuid-0.14.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab3f5d36e4393e628a4df337c2c039069344db5f4b9d2a3c9cea48284f1dd741"}, + {file = "fastuuid-0.14.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:b9a0ca4f03b7e0b01425281ffd44e99d360e15c895f1907ca105854ed85e2057"}, + {file = "fastuuid-0.14.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3acdf655684cc09e60fb7e4cf524e8f42ea760031945aa8086c7eae2eeeabeb8"}, + {file = "fastuuid-0.14.0-cp312-cp312-win32.whl", hash = "sha256:9579618be6280700ae36ac42c3efd157049fe4dd40ca49b021280481c78c3176"}, + {file = "fastuuid-0.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:d9e4332dc4ba054434a9594cbfaf7823b57993d7d8e7267831c3e059857cf397"}, + {file = "fastuuid-0.14.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:77a09cb7427e7af74c594e409f7731a0cf887221de2f698e1ca0ebf0f3139021"}, + {file = "fastuuid-0.14.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:9bd57289daf7b153bfa3e8013446aa144ce5e8c825e9e366d455155ede5ea2dc"}, + {file = "fastuuid-0.14.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ac60fc860cdf3c3f327374db87ab8e064c86566ca8c49d2e30df15eda1b0c2d5"}, + {file = "fastuuid-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ab32f74bd56565b186f036e33129da77db8be09178cd2f5206a5d4035fb2a23f"}, + {file = "fastuuid-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33e678459cf4addaedd9936bbb038e35b3f6b2061330fd8f2f6a1d80414c0f87"}, + {file = "fastuuid-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1e3cc56742f76cd25ecb98e4b82a25f978ccffba02e4bdce8aba857b6d85d87b"}, + {file = "fastuuid-0.14.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:cb9a030f609194b679e1660f7e32733b7a0f332d519c5d5a6a0a580991290022"}, + {file = "fastuuid-0.14.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:09098762aad4f8da3a888eb9ae01c84430c907a297b97166b8abc07b640f2995"}, + {file = "fastuuid-0.14.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:1383fff584fa249b16329a059c68ad45d030d5a4b70fb7c73a08d98fd53bcdab"}, + {file = "fastuuid-0.14.0-cp313-cp313-win32.whl", hash = "sha256:a0809f8cc5731c066c909047f9a314d5f536c871a7a22e815cc4967c110ac9ad"}, + {file = "fastuuid-0.14.0-cp313-cp313-win_amd64.whl", hash = "sha256:0df14e92e7ad3276327631c9e7cec09e32572ce82089c55cb1bb8df71cf394ed"}, + {file = "fastuuid-0.14.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:b852a870a61cfc26c884af205d502881a2e59cc07076b60ab4a951cc0c94d1ad"}, + {file = "fastuuid-0.14.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:c7502d6f54cd08024c3ea9b3514e2d6f190feb2f46e6dbcd3747882264bb5f7b"}, + {file = "fastuuid-0.14.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:1ca61b592120cf314cfd66e662a5b54a578c5a15b26305e1b8b618a6f22df714"}, + {file = "fastuuid-0.14.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa75b6657ec129d0abded3bec745e6f7ab642e6dba3a5272a68247e85f5f316f"}, + {file = "fastuuid-0.14.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8a0dfea3972200f72d4c7df02c8ac70bad1bb4c58d7e0ec1e6f341679073a7f"}, + {file = "fastuuid-0.14.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1bf539a7a95f35b419f9ad105d5a8a35036df35fdafae48fb2fd2e5f318f0d75"}, + {file = "fastuuid-0.14.0-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:9a133bf9cc78fdbd1179cb58a59ad0100aa32d8675508150f3658814aeefeaa4"}, + {file = "fastuuid-0.14.0-cp314-cp314-musllinux_1_1_i686.whl", hash = "sha256:f54d5b36c56a2d5e1a31e73b950b28a0d83eb0c37b91d10408875a5a29494bad"}, + {file = "fastuuid-0.14.0-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:ec27778c6ca3393ef662e2762dba8af13f4ec1aaa32d08d77f71f2a70ae9feb8"}, + {file = "fastuuid-0.14.0-cp314-cp314-win32.whl", hash = "sha256:e23fc6a83f112de4be0cc1990e5b127c27663ae43f866353166f87df58e73d06"}, + {file = "fastuuid-0.14.0-cp314-cp314-win_amd64.whl", hash = "sha256:df61342889d0f5e7a32f7284e55ef95103f2110fee433c2ae7c2c0956d76ac8a"}, + {file = "fastuuid-0.14.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:47c821f2dfe95909ead0085d4cb18d5149bca704a2b03e03fb3f81a5202d8cea"}, + {file = "fastuuid-0.14.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:3964bab460c528692c70ab6b2e469dd7a7b152fbe8c18616c58d34c93a6cf8d4"}, + {file = "fastuuid-0.14.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c501561e025b7aea3508719c5801c360c711d5218fc4ad5d77bf1c37c1a75779"}, + {file = "fastuuid-0.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2dce5d0756f046fa792a40763f36accd7e466525c5710d2195a038f93ff96346"}, + {file = "fastuuid-0.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193ca10ff553cf3cc461572da83b5780fc0e3eea28659c16f89ae5202f3958d4"}, + {file = "fastuuid-0.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0737606764b29785566f968bd8005eace73d3666bd0862f33a760796e26d1ede"}, + {file = "fastuuid-0.14.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:e0976c0dff7e222513d206e06341503f07423aceb1db0b83ff6851c008ceee06"}, + {file = "fastuuid-0.14.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6fbc49a86173e7f074b1a9ec8cf12ca0d54d8070a85a06ebf0e76c309b84f0d0"}, + {file = "fastuuid-0.14.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:de01280eabcd82f7542828ecd67ebf1551d37203ecdfd7ab1f2e534edb78d505"}, + {file = "fastuuid-0.14.0-cp38-cp38-win32.whl", hash = "sha256:af5967c666b7d6a377098849b07f83462c4fedbafcf8eb8bc8ff05dcbe8aa209"}, + {file = "fastuuid-0.14.0-cp38-cp38-win_amd64.whl", hash = "sha256:c3091e63acf42f56a6f74dc65cfdb6f99bfc79b5913c8a9ac498eb7ca09770a8"}, + {file = "fastuuid-0.14.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:2ec3d94e13712a133137b2805073b65ecef4a47217d5bac15d8ac62376cefdb4"}, + {file = "fastuuid-0.14.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:139d7ff12bb400b4a0c76be64c28cbe2e2edf60b09826cbfd85f33ed3d0bbe8b"}, + {file = "fastuuid-0.14.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d55b7e96531216fc4f071909e33e35e5bfa47962ae67d9e84b00a04d6e8b7173"}, + {file = "fastuuid-0.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c0eb25f0fd935e376ac4334927a59e7c823b36062080e2e13acbaf2af15db836"}, + {file = "fastuuid-0.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:089c18018fdbdda88a6dafd7d139f8703a1e7c799618e33ea25eb52503d28a11"}, + {file = "fastuuid-0.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fc37479517d4d70c08696960fad85494a8a7a0af4e93e9a00af04d74c59f9e3"}, + {file = "fastuuid-0.14.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:73657c9f778aba530bc96a943d30e1a7c80edb8278df77894fe9457540df4f85"}, + {file = "fastuuid-0.14.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d31f8c257046b5617fc6af9c69be066d2412bdef1edaa4bdf6a214cf57806105"}, + {file = "fastuuid-0.14.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5816d41f81782b209843e52fdef757a361b448d782452d96abedc53d545da722"}, + {file = "fastuuid-0.14.0-cp39-cp39-win32.whl", hash = "sha256:448aa6833f7a84bfe37dd47e33df83250f404d591eb83527fa2cac8d1e57d7f3"}, + {file = "fastuuid-0.14.0-cp39-cp39-win_amd64.whl", hash = "sha256:84b0779c5abbdec2a9511d5ffbfcd2e53079bf889824b32be170c0d8ef5fc74c"}, + {file = "fastuuid-0.14.0.tar.gz", hash = "sha256:178947fc2f995b38497a74172adee64fdeb8b7ec18f2a5934d037641ba265d26"}, +] + [[package]] name = "filelock" version = "3.20.0" @@ -1257,15 +1347,15 @@ files = [ [[package]] name = "fsspec" -version = "2025.9.0" +version = "2025.10.0" description = "File-system specification" optional = false python-versions = ">=3.9" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "fsspec-2025.9.0-py3-none-any.whl", hash = "sha256:530dc2a2af60a414a832059574df4a6e10cce927f6f4a78209390fe38955cfb7"}, - {file = "fsspec-2025.9.0.tar.gz", hash = "sha256:19fd429483d25d28b65ec68f9f4adc16c17ea2c7c7bf54ec61360d478fb19c19"}, + {file = "fsspec-2025.10.0-py3-none-any.whl", hash = "sha256:7c7712353ae7d875407f97715f0e1ffcc21e33d5b24556cb1e090ae9409ec61d"}, + {file = "fsspec-2025.10.0.tar.gz", hash = "sha256:b6789427626f068f9a83ca4e8a3cc050850b6c0f71f99ddb4f542b8266a26a59"}, ] [package.extras] @@ -1311,15 +1401,15 @@ files = [ [[package]] name = "google-auth" -version = "2.41.1" +version = "2.42.1" description = "Google Authentication Library" optional = false python-versions = ">=3.7" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "google_auth-2.41.1-py2.py3-none-any.whl", hash = "sha256:754843be95575b9a19c604a848a41be03f7f2afd8c019f716dc1f51ee41c639d"}, - {file = "google_auth-2.41.1.tar.gz", hash = "sha256:b76b7b1f9e61f0cb7e88870d14f6a94aeef248959ef6992670efee37709cbfd2"}, + {file = "google_auth-2.42.1-py2.py3-none-any.whl", hash = "sha256:eb73d71c91fc95dbd221a2eb87477c278a355e7367a35c0d84e6b0e5f9b4ad11"}, + {file = "google_auth-2.42.1.tar.gz", hash = "sha256:30178b7a21aa50bffbdc1ffcb34ff770a2f65c712170ecd5446c4bef4dc2b94e"}, ] [package.dependencies] @@ -1919,20 +2009,21 @@ rapidfuzz = ">=3.9.0,<4.0.0" [[package]] name = "litellm" -version = "1.76.0" +version = "1.78.7" description = "Library to easily interface with LLM API providers" optional = false python-versions = "!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*,>=3.8" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "litellm-1.76.0-py3-none-any.whl", hash = "sha256:357464242fc1eeda384810c9e334e48ad67a50ecd30cf61e86c15f89e2f2e0b4"}, - {file = "litellm-1.76.0.tar.gz", hash = "sha256:d26d12333135edd72af60e0e310284dac3b079f4d7c47c79dfbb2430b9b4b421"}, + {file = "litellm-1.78.7-py3-none-any.whl", hash = "sha256:aa93ae1fefe02fb00b2a78eba3c95002f9ef478bade3e22e63508830182e2dfe"}, + {file = "litellm-1.78.7.tar.gz", hash = "sha256:6b10f5c7dc217bde3481fa4f70b5c37edbfa617bec7149276833d311f76a6783"}, ] [package.dependencies] aiohttp = ">=3.10" click = "*" +fastuuid = ">=0.13.0" httpx = ">=0.23.0" importlib-metadata = ">=6.8.0" jinja2 = ">=3.1.2,<4.0.0" @@ -1947,7 +2038,7 @@ tokenizers = "*" caching = ["diskcache (>=5.6.1,<6.0.0)"] extra-proxy = ["azure-identity (>=1.15.0,<2.0.0)", "azure-keyvault-secrets (>=4.8.0,<5.0.0)", "google-cloud-iam (>=2.19.1,<3.0.0)", "google-cloud-kms (>=2.21.3,<3.0.0)", "prisma (==0.11.0)", "redisvl (>=0.4.1,<0.5.0)", "resend (>=0.8.0,<0.9.0)"] mlflow = ["mlflow (>3.1.4)"] -proxy = ["PyJWT (>=2.8.0,<3.0.0)", "apscheduler (>=3.10.4,<4.0.0)", "azure-identity (>=1.15.0,<2.0.0)", "azure-storage-blob (>=12.25.1,<13.0.0)", "backoff", "boto3 (==1.36.0)", "cryptography (>=43.0.1,<44.0.0)", "fastapi (>=0.115.5,<0.116.0)", "fastapi-sso (>=0.16.0,<0.17.0)", "gunicorn (>=23.0.0,<24.0.0)", "litellm-enterprise (==0.1.19)", "litellm-proxy-extras (==0.2.18)", "mcp (>=1.10.0,<2.0.0)", "orjson (>=3.9.7,<4.0.0)", "polars (>=1.31.0,<2.0.0)", "pynacl (>=1.5.0,<2.0.0)", "python-multipart (>=0.0.18,<0.0.19)", "pyyaml (>=6.0.1,<7.0.0)", "rich (==13.7.1)", "rq", "uvicorn (>=0.29.0,<0.30.0)", "uvloop (>=0.21.0,<0.22.0)", "websockets (>=13.1.0,<14.0.0)"] +proxy = ["PyJWT (>=2.8.0,<3.0.0)", "apscheduler (>=3.10.4,<4.0.0)", "azure-identity (>=1.15.0,<2.0.0)", "azure-storage-blob (>=12.25.1,<13.0.0)", "backoff", "boto3 (==1.36.0)", "cryptography", "fastapi (>=0.115.5,<0.116.0)", "fastapi-sso (>=0.16.0,<0.17.0)", "gunicorn (>=23.0.0,<24.0.0)", "litellm-enterprise (==0.1.20)", "litellm-proxy-extras (==0.2.27)", "mcp (>=1.10.0,<2.0.0)", "orjson (>=3.9.7,<4.0.0)", "polars (>=1.31.0,<2.0.0)", "pynacl (>=1.5.0,<2.0.0)", "python-multipart (>=0.0.18,<0.0.19)", "pyyaml (>=6.0.1,<7.0.0)", "rich (==13.7.1)", "rq", "uvicorn (>=0.29.0,<0.30.0)", "uvloop (>=0.21.0,<0.22.0)", "websockets (>=13.1.0,<14.0.0)"] semantic-router = ["semantic-router"] utils = ["numpydoc"] @@ -2526,96 +2617,100 @@ typing-extensions = ">=4.5.0" [[package]] name = "orjson" -version = "3.11.3" +version = "3.11.4" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.9" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "orjson-3.11.3-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:29cb1f1b008d936803e2da3d7cba726fc47232c45df531b29edf0b232dd737e7"}, - {file = "orjson-3.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97dceed87ed9139884a55db8722428e27bd8452817fbf1869c58b49fecab1120"}, - {file = "orjson-3.11.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:58533f9e8266cb0ac298e259ed7b4d42ed3fa0b78ce76860626164de49e0d467"}, - {file = "orjson-3.11.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0c212cfdd90512fe722fa9bd620de4d46cda691415be86b2e02243242ae81873"}, - {file = "orjson-3.11.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ff835b5d3e67d9207343effb03760c00335f8b5285bfceefd4dc967b0e48f6a"}, - {file = "orjson-3.11.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f5aa4682912a450c2db89cbd92d356fef47e115dffba07992555542f344d301b"}, - {file = "orjson-3.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7d18dd34ea2e860553a579df02041845dee0af8985dff7f8661306f95504ddf"}, - {file = "orjson-3.11.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d8b11701bc43be92ea42bd454910437b355dfb63696c06fe953ffb40b5f763b4"}, - {file = "orjson-3.11.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:90368277087d4af32d38bd55f9da2ff466d25325bf6167c8f382d8ee40cb2bbc"}, - {file = "orjson-3.11.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fd7ff459fb393358d3a155d25b275c60b07a2c83dcd7ea962b1923f5a1134569"}, - {file = "orjson-3.11.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f8d902867b699bcd09c176a280b1acdab57f924489033e53d0afe79817da37e6"}, - {file = "orjson-3.11.3-cp310-cp310-win32.whl", hash = "sha256:bb93562146120bb51e6b154962d3dadc678ed0fce96513fa6bc06599bb6f6edc"}, - {file = "orjson-3.11.3-cp310-cp310-win_amd64.whl", hash = "sha256:976c6f1975032cc327161c65d4194c549f2589d88b105a5e3499429a54479770"}, - {file = "orjson-3.11.3-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:9d2ae0cc6aeb669633e0124531f342a17d8e97ea999e42f12a5ad4adaa304c5f"}, - {file = "orjson-3.11.3-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:ba21dbb2493e9c653eaffdc38819b004b7b1b246fb77bfc93dc016fe664eac91"}, - {file = "orjson-3.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00f1a271e56d511d1569937c0447d7dce5a99a33ea0dec76673706360a051904"}, - {file = "orjson-3.11.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b67e71e47caa6680d1b6f075a396d04fa6ca8ca09aafb428731da9b3ea32a5a6"}, - {file = "orjson-3.11.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d7d012ebddffcce8c85734a6d9e5f08180cd3857c5f5a3ac70185b43775d043d"}, - {file = "orjson-3.11.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd759f75d6b8d1b62012b7f5ef9461d03c804f94d539a5515b454ba3a6588038"}, - {file = "orjson-3.11.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6890ace0809627b0dff19cfad92d69d0fa3f089d3e359a2a532507bb6ba34efb"}, - {file = "orjson-3.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9d4a5e041ae435b815e568537755773d05dac031fee6a57b4ba70897a44d9d2"}, - {file = "orjson-3.11.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2d68bf97a771836687107abfca089743885fb664b90138d8761cce61d5625d55"}, - {file = "orjson-3.11.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:bfc27516ec46f4520b18ef645864cee168d2a027dbf32c5537cb1f3e3c22dac1"}, - {file = "orjson-3.11.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f66b001332a017d7945e177e282a40b6997056394e3ed7ddb41fb1813b83e824"}, - {file = "orjson-3.11.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:212e67806525d2561efbfe9e799633b17eb668b8964abed6b5319b2f1cfbae1f"}, - {file = "orjson-3.11.3-cp311-cp311-win32.whl", hash = "sha256:6e8e0c3b85575a32f2ffa59de455f85ce002b8bdc0662d6b9c2ed6d80ab5d204"}, - {file = "orjson-3.11.3-cp311-cp311-win_amd64.whl", hash = "sha256:6be2f1b5d3dc99a5ce5ce162fc741c22ba9f3443d3dd586e6a1211b7bc87bc7b"}, - {file = "orjson-3.11.3-cp311-cp311-win_arm64.whl", hash = "sha256:fafb1a99d740523d964b15c8db4eabbfc86ff29f84898262bf6e3e4c9e97e43e"}, - {file = "orjson-3.11.3-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8c752089db84333e36d754c4baf19c0e1437012242048439c7e80eb0e6426e3b"}, - {file = "orjson-3.11.3-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:9b8761b6cf04a856eb544acdd82fc594b978f12ac3602d6374a7edb9d86fd2c2"}, - {file = "orjson-3.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b13974dc8ac6ba22feaa867fc19135a3e01a134b4f7c9c28162fed4d615008a"}, - {file = "orjson-3.11.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f83abab5bacb76d9c821fd5c07728ff224ed0e52d7a71b7b3de822f3df04e15c"}, - {file = "orjson-3.11.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e6fbaf48a744b94091a56c62897b27c31ee2da93d826aa5b207131a1e13d4064"}, - {file = "orjson-3.11.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bc779b4f4bba2847d0d2940081a7b6f7b5877e05408ffbb74fa1faf4a136c424"}, - {file = "orjson-3.11.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bd4b909ce4c50faa2192da6bb684d9848d4510b736b0611b6ab4020ea6fd2d23"}, - {file = "orjson-3.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:524b765ad888dc5518bbce12c77c2e83dee1ed6b0992c1790cc5fb49bb4b6667"}, - {file = "orjson-3.11.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:84fd82870b97ae3cdcea9d8746e592b6d40e1e4d4527835fc520c588d2ded04f"}, - {file = "orjson-3.11.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:fbecb9709111be913ae6879b07bafd4b0785b44c1eb5cac8ac76da048b3885a1"}, - {file = "orjson-3.11.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9dba358d55aee552bd868de348f4736ca5a4086d9a62e2bfbbeeb5629fe8b0cc"}, - {file = "orjson-3.11.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:eabcf2e84f1d7105f84580e03012270c7e97ecb1fb1618bda395061b2a84a049"}, - {file = "orjson-3.11.3-cp312-cp312-win32.whl", hash = "sha256:3782d2c60b8116772aea8d9b7905221437fdf53e7277282e8d8b07c220f96cca"}, - {file = "orjson-3.11.3-cp312-cp312-win_amd64.whl", hash = "sha256:79b44319268af2eaa3e315b92298de9a0067ade6e6003ddaef72f8e0bedb94f1"}, - {file = "orjson-3.11.3-cp312-cp312-win_arm64.whl", hash = "sha256:0e92a4e83341ef79d835ca21b8bd13e27c859e4e9e4d7b63defc6e58462a3710"}, - {file = "orjson-3.11.3-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:af40c6612fd2a4b00de648aa26d18186cd1322330bd3a3cc52f87c699e995810"}, - {file = "orjson-3.11.3-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:9f1587f26c235894c09e8b5b7636a38091a9e6e7fe4531937534749c04face43"}, - {file = "orjson-3.11.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:61dcdad16da5bb486d7227a37a2e789c429397793a6955227cedbd7252eb5a27"}, - {file = "orjson-3.11.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:11c6d71478e2cbea0a709e8a06365fa63da81da6498a53e4c4f065881d21ae8f"}, - {file = "orjson-3.11.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff94112e0098470b665cb0ed06efb187154b63649403b8d5e9aedeb482b4548c"}, - {file = "orjson-3.11.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae8b756575aaa2a855a75192f356bbda11a89169830e1439cfb1a3e1a6dde7be"}, - {file = "orjson-3.11.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c9416cc19a349c167ef76135b2fe40d03cea93680428efee8771f3e9fb66079d"}, - {file = "orjson-3.11.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b822caf5b9752bc6f246eb08124c3d12bf2175b66ab74bac2ef3bbf9221ce1b2"}, - {file = "orjson-3.11.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:414f71e3bdd5573893bf5ecdf35c32b213ed20aa15536fe2f588f946c318824f"}, - {file = "orjson-3.11.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:828e3149ad8815dc14468f36ab2a4b819237c155ee1370341b91ea4c8672d2ee"}, - {file = "orjson-3.11.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ac9e05f25627ffc714c21f8dfe3a579445a5c392a9c8ae7ba1d0e9fb5333f56e"}, - {file = "orjson-3.11.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e44fbe4000bd321d9f3b648ae46e0196d21577cf66ae684a96ff90b1f7c93633"}, - {file = "orjson-3.11.3-cp313-cp313-win32.whl", hash = "sha256:2039b7847ba3eec1f5886e75e6763a16e18c68a63efc4b029ddf994821e2e66b"}, - {file = "orjson-3.11.3-cp313-cp313-win_amd64.whl", hash = "sha256:29be5ac4164aa8bdcba5fa0700a3c9c316b411d8ed9d39ef8a882541bd452fae"}, - {file = "orjson-3.11.3-cp313-cp313-win_arm64.whl", hash = "sha256:18bd1435cb1f2857ceb59cfb7de6f92593ef7b831ccd1b9bfb28ca530e539dce"}, - {file = "orjson-3.11.3-cp314-cp314-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:cf4b81227ec86935568c7edd78352a92e97af8da7bd70bdfdaa0d2e0011a1ab4"}, - {file = "orjson-3.11.3-cp314-cp314-macosx_15_0_arm64.whl", hash = "sha256:bc8bc85b81b6ac9fc4dae393a8c159b817f4c2c9dee5d12b773bddb3b95fc07e"}, - {file = "orjson-3.11.3-cp314-cp314-manylinux_2_34_aarch64.whl", hash = "sha256:88dcfc514cfd1b0de038443c7b3e6a9797ffb1b3674ef1fd14f701a13397f82d"}, - {file = "orjson-3.11.3-cp314-cp314-manylinux_2_34_x86_64.whl", hash = "sha256:d61cd543d69715d5fc0a690c7c6f8dcc307bc23abef9738957981885f5f38229"}, - {file = "orjson-3.11.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:2b7b153ed90ababadbef5c3eb39549f9476890d339cf47af563aea7e07db2451"}, - {file = "orjson-3.11.3-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:7909ae2460f5f494fecbcd10613beafe40381fd0316e35d6acb5f3a05bfda167"}, - {file = "orjson-3.11.3-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:2030c01cbf77bc67bee7eef1e7e31ecf28649353987775e3583062c752da0077"}, - {file = "orjson-3.11.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a0169ebd1cbd94b26c7a7ad282cf5c2744fce054133f959e02eb5265deae1872"}, - {file = "orjson-3.11.3-cp314-cp314-win32.whl", hash = "sha256:0c6d7328c200c349e3a4c6d8c83e0a5ad029bdc2d417f234152bf34842d0fc8d"}, - {file = "orjson-3.11.3-cp314-cp314-win_amd64.whl", hash = "sha256:317bbe2c069bbc757b1a2e4105b64aacd3bc78279b66a6b9e51e846e4809f804"}, - {file = "orjson-3.11.3-cp314-cp314-win_arm64.whl", hash = "sha256:e8f6a7a27d7b7bec81bd5924163e9af03d49bbb63013f107b48eb5d16db711bc"}, - {file = "orjson-3.11.3-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:56afaf1e9b02302ba636151cfc49929c1bb66b98794291afd0e5f20fecaf757c"}, - {file = "orjson-3.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:913f629adef31d2d350d41c051ce7e33cf0fd06a5d1cb28d49b1899b23b903aa"}, - {file = "orjson-3.11.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e0a23b41f8f98b4e61150a03f83e4f0d566880fe53519d445a962929a4d21045"}, - {file = "orjson-3.11.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3d721fee37380a44f9d9ce6c701b3960239f4fb3d5ceea7f31cbd43882edaa2f"}, - {file = "orjson-3.11.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:73b92a5b69f31b1a58c0c7e31080aeaec49c6e01b9522e71ff38d08f15aa56de"}, - {file = "orjson-3.11.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d2489b241c19582b3f1430cc5d732caefc1aaf378d97e7fb95b9e56bed11725f"}, - {file = "orjson-3.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5189a5dab8b0312eadaf9d58d3049b6a52c454256493a557405e77a3d67ab7f"}, - {file = "orjson-3.11.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:9d8787bdfbb65a85ea76d0e96a3b1bed7bf0fbcb16d40408dc1172ad784a49d2"}, - {file = "orjson-3.11.3-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:8e531abd745f51f8035e207e75e049553a86823d189a51809c078412cefb399a"}, - {file = "orjson-3.11.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:8ab962931015f170b97a3dd7bd933399c1bae8ed8ad0fb2a7151a5654b6941c7"}, - {file = "orjson-3.11.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:124d5ba71fee9c9902c4a7baa9425e663f7f0aecf73d31d54fe3dd357d62c1a7"}, - {file = "orjson-3.11.3-cp39-cp39-win32.whl", hash = "sha256:22724d80ee5a815a44fc76274bb7ba2e7464f5564aacb6ecddaa9970a83e3225"}, - {file = "orjson-3.11.3-cp39-cp39-win_amd64.whl", hash = "sha256:215c595c792a87d4407cb72dd5e0f6ee8e694ceeb7f9102b533c5a9bf2a916bb"}, - {file = "orjson-3.11.3.tar.gz", hash = "sha256:1c0603b1d2ffcd43a411d64797a19556ef76958aef1c182f22dc30860152a98a"}, + {file = "orjson-3.11.4-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:e3aa2118a3ece0d25489cbe48498de8a5d580e42e8d9979f65bf47900a15aba1"}, + {file = "orjson-3.11.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a69ab657a4e6733133a3dca82768f2f8b884043714e8d2b9ba9f52b6efef5c44"}, + {file = "orjson-3.11.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3740bffd9816fc0326ddc406098a3a8f387e42223f5f455f2a02a9f834ead80c"}, + {file = "orjson-3.11.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65fd2f5730b1bf7f350c6dc896173d3460d235c4be007af73986d7cd9a2acd23"}, + {file = "orjson-3.11.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fdc3ae730541086158d549c97852e2eea6820665d4faf0f41bf99df41bc11ea"}, + {file = "orjson-3.11.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e10b4d65901da88845516ce9f7f9736f9638d19a1d483b3883dc0182e6e5edba"}, + {file = "orjson-3.11.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb6a03a678085f64b97f9d4a9ae69376ce91a3a9e9b56a82b1580d8e1d501aff"}, + {file = "orjson-3.11.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2c82e4f0b1c712477317434761fbc28b044c838b6b1240d895607441412371ac"}, + {file = "orjson-3.11.4-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:d58c166a18f44cc9e2bad03a327dc2d1a3d2e85b847133cfbafd6bfc6719bd79"}, + {file = "orjson-3.11.4-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:94f206766bf1ea30e1382e4890f763bd1eefddc580e08fec1ccdc20ddd95c827"}, + {file = "orjson-3.11.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:41bf25fb39a34cf8edb4398818523277ee7096689db352036a9e8437f2f3ee6b"}, + {file = "orjson-3.11.4-cp310-cp310-win32.whl", hash = "sha256:fa9627eba4e82f99ca6d29bc967f09aba446ee2b5a1ea728949ede73d313f5d3"}, + {file = "orjson-3.11.4-cp310-cp310-win_amd64.whl", hash = "sha256:23ef7abc7fca96632d8174ac115e668c1e931b8fe4dde586e92a500bf1914dcc"}, + {file = "orjson-3.11.4-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5e59d23cd93ada23ec59a96f215139753fbfe3a4d989549bcb390f8c00370b39"}, + {file = "orjson-3.11.4-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:5c3aedecfc1beb988c27c79d52ebefab93b6c3921dbec361167e6559aba2d36d"}, + {file = "orjson-3.11.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da9e5301f1c2caa2a9a4a303480d79c9ad73560b2e7761de742ab39fe59d9175"}, + {file = "orjson-3.11.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8873812c164a90a79f65368f8f96817e59e35d0cc02786a5356f0e2abed78040"}, + {file = "orjson-3.11.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5d7feb0741ebb15204e748f26c9638e6665a5fa93c37a2c73d64f1669b0ddc63"}, + {file = "orjson-3.11.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:01ee5487fefee21e6910da4c2ee9eef005bee568a0879834df86f888d2ffbdd9"}, + {file = "orjson-3.11.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d40d46f348c0321df01507f92b95a377240c4ec31985225a6668f10e2676f9a"}, + {file = "orjson-3.11.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95713e5fc8af84d8edc75b785d2386f653b63d62b16d681687746734b4dfc0be"}, + {file = "orjson-3.11.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ad73ede24f9083614d6c4ca9a85fe70e33be7bf047ec586ee2363bc7418fe4d7"}, + {file = "orjson-3.11.4-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:842289889de515421f3f224ef9c1f1efb199a32d76d8d2ca2706fa8afe749549"}, + {file = "orjson-3.11.4-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3b2427ed5791619851c52a1261b45c233930977e7de8cf36de05636c708fa905"}, + {file = "orjson-3.11.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3c36e524af1d29982e9b190573677ea02781456b2e537d5840e4538a5ec41907"}, + {file = "orjson-3.11.4-cp311-cp311-win32.whl", hash = "sha256:87255b88756eab4a68ec61837ca754e5d10fa8bc47dc57f75cedfeaec358d54c"}, + {file = "orjson-3.11.4-cp311-cp311-win_amd64.whl", hash = "sha256:e2d5d5d798aba9a0e1fede8d853fa899ce2cb930ec0857365f700dffc2c7af6a"}, + {file = "orjson-3.11.4-cp311-cp311-win_arm64.whl", hash = "sha256:6bb6bb41b14c95d4f2702bce9975fda4516f1db48e500102fc4d8119032ff045"}, + {file = "orjson-3.11.4-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d4371de39319d05d3f482f372720b841c841b52f5385bd99c61ed69d55d9ab50"}, + {file = "orjson-3.11.4-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:e41fd3b3cac850eaae78232f37325ed7d7436e11c471246b87b2cd294ec94853"}, + {file = "orjson-3.11.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:600e0e9ca042878c7fdf189cf1b028fe2c1418cc9195f6cb9824eb6ed99cb938"}, + {file = "orjson-3.11.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7bbf9b333f1568ef5da42bc96e18bf30fd7f8d54e9ae066d711056add508e415"}, + {file = "orjson-3.11.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4806363144bb6e7297b8e95870e78d30a649fdc4e23fc84daa80c8ebd366ce44"}, + {file = "orjson-3.11.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad355e8308493f527d41154e9053b86a5be892b3b359a5c6d5d95cda23601cb2"}, + {file = "orjson-3.11.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c8a7517482667fb9f0ff1b2f16fe5829296ed7a655d04d68cd9711a4d8a4e708"}, + {file = "orjson-3.11.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97eb5942c7395a171cbfecc4ef6701fc3c403e762194683772df4c54cfbb2210"}, + {file = "orjson-3.11.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:149d95d5e018bdd822e3f38c103b1a7c91f88d38a88aada5c4e9b3a73a244241"}, + {file = "orjson-3.11.4-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:624f3951181eb46fc47dea3d221554e98784c823e7069edb5dbd0dc826ac909b"}, + {file = "orjson-3.11.4-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:03bfa548cf35e3f8b3a96c4e8e41f753c686ff3d8e182ce275b1751deddab58c"}, + {file = "orjson-3.11.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:525021896afef44a68148f6ed8a8bf8375553d6066c7f48537657f64823565b9"}, + {file = "orjson-3.11.4-cp312-cp312-win32.whl", hash = "sha256:b58430396687ce0f7d9eeb3dd47761ca7d8fda8e9eb92b3077a7a353a75efefa"}, + {file = "orjson-3.11.4-cp312-cp312-win_amd64.whl", hash = "sha256:c6dbf422894e1e3c80a177133c0dda260f81428f9de16d61041949f6a2e5c140"}, + {file = "orjson-3.11.4-cp312-cp312-win_arm64.whl", hash = "sha256:d38d2bc06d6415852224fcc9c0bfa834c25431e466dc319f0edd56cca81aa96e"}, + {file = "orjson-3.11.4-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:2d6737d0e616a6e053c8b4acc9eccea6b6cce078533666f32d140e4f85002534"}, + {file = "orjson-3.11.4-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:afb14052690aa328cc118a8e09f07c651d301a72e44920b887c519b313d892ff"}, + {file = "orjson-3.11.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38aa9e65c591febb1b0aed8da4d469eba239d434c218562df179885c94e1a3ad"}, + {file = "orjson-3.11.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f2cf4dfaf9163b0728d061bebc1e08631875c51cd30bf47cb9e3293bfbd7dcd5"}, + {file = "orjson-3.11.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:89216ff3dfdde0e4070932e126320a1752c9d9a758d6a32ec54b3b9334991a6a"}, + {file = "orjson-3.11.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9daa26ca8e97fae0ce8aa5d80606ef8f7914e9b129b6b5df9104266f764ce436"}, + {file = "orjson-3.11.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c8b2769dc31883c44a9cd126560327767f848eb95f99c36c9932f51090bfce9"}, + {file = "orjson-3.11.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1469d254b9884f984026bd9b0fa5bbab477a4bfe558bba6848086f6d43eb5e73"}, + {file = "orjson-3.11.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:68e44722541983614e37117209a194e8c3ad07838ccb3127d96863c95ec7f1e0"}, + {file = "orjson-3.11.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:8e7805fda9672c12be2f22ae124dcd7b03928d6c197544fe12174b86553f3196"}, + {file = "orjson-3.11.4-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:04b69c14615fb4434ab867bf6f38b2d649f6f300af30a6705397e895f7aec67a"}, + {file = "orjson-3.11.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:639c3735b8ae7f970066930e58cf0ed39a852d417c24acd4a25fc0b3da3c39a6"}, + {file = "orjson-3.11.4-cp313-cp313-win32.whl", hash = "sha256:6c13879c0d2964335491463302a6ca5ad98105fc5db3565499dcb80b1b4bd839"}, + {file = "orjson-3.11.4-cp313-cp313-win_amd64.whl", hash = "sha256:09bf242a4af98732db9f9a1ec57ca2604848e16f132e3f72edfd3c5c96de009a"}, + {file = "orjson-3.11.4-cp313-cp313-win_arm64.whl", hash = "sha256:a85f0adf63319d6c1ba06fb0dbf997fced64a01179cf17939a6caca662bf92de"}, + {file = "orjson-3.11.4-cp314-cp314-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:42d43a1f552be1a112af0b21c10a5f553983c2a0938d2bbb8ecd8bc9fb572803"}, + {file = "orjson-3.11.4-cp314-cp314-macosx_15_0_arm64.whl", hash = "sha256:26a20f3fbc6c7ff2cb8e89c4c5897762c9d88cf37330c6a117312365d6781d54"}, + {file = "orjson-3.11.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e3f20be9048941c7ffa8fc523ccbd17f82e24df1549d1d1fe9317712d19938e"}, + {file = "orjson-3.11.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aac364c758dc87a52e68e349924d7e4ded348dedff553889e4d9f22f74785316"}, + {file = "orjson-3.11.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d5c54a6d76e3d741dcc3f2707f8eeb9ba2a791d3adbf18f900219b62942803b1"}, + {file = "orjson-3.11.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f28485bdca8617b79d44627f5fb04336897041dfd9fa66d383a49d09d86798bc"}, + {file = "orjson-3.11.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bfc2a484cad3585e4ba61985a6062a4c2ed5c7925db6d39f1fa267c9d166487f"}, + {file = "orjson-3.11.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e34dbd508cb91c54f9c9788923daca129fe5b55c5b4eebe713bf5ed3791280cf"}, + {file = "orjson-3.11.4-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b13c478fa413d4b4ee606ec8e11c3b2e52683a640b006bb586b3041c2ca5f606"}, + {file = "orjson-3.11.4-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:724ca721ecc8a831b319dcd72cfa370cc380db0bf94537f08f7edd0a7d4e1780"}, + {file = "orjson-3.11.4-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:977c393f2e44845ce1b540e19a786e9643221b3323dae190668a98672d43fb23"}, + {file = "orjson-3.11.4-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:1e539e382cf46edec157ad66b0b0872a90d829a6b71f17cb633d6c160a223155"}, + {file = "orjson-3.11.4-cp314-cp314-win32.whl", hash = "sha256:d63076d625babab9db5e7836118bdfa086e60f37d8a174194ae720161eb12394"}, + {file = "orjson-3.11.4-cp314-cp314-win_amd64.whl", hash = "sha256:0a54d6635fa3aaa438ae32e8570b9f0de36f3f6562c308d2a2a452e8b0592db1"}, + {file = "orjson-3.11.4-cp314-cp314-win_arm64.whl", hash = "sha256:78b999999039db3cf58f6d230f524f04f75f129ba3d1ca2ed121f8657e575d3d"}, + {file = "orjson-3.11.4-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:405261b0a8c62bcbd8e2931c26fdc08714faf7025f45531541e2b29e544b545b"}, + {file = "orjson-3.11.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:af02ff34059ee9199a3546f123a6ab4c86caf1708c79042caf0820dc290a6d4f"}, + {file = "orjson-3.11.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0b2eba969ea4203c177c7b38b36c69519e6067ee68c34dc37081fac74c796e10"}, + {file = "orjson-3.11.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0baa0ea43cfa5b008a28d3c07705cf3ada40e5d347f0f44994a64b1b7b4b5350"}, + {file = "orjson-3.11.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80fd082f5dcc0e94657c144f1b2a3a6479c44ad50be216cf0c244e567f5eae19"}, + {file = "orjson-3.11.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e3704d35e47d5bee811fb1cbd8599f0b4009b14d451c4c57be5a7e25eb89a13"}, + {file = "orjson-3.11.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caa447f2b5356779d914658519c874cf3b7629e99e63391ed519c28c8aea4919"}, + {file = "orjson-3.11.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bba5118143373a86f91dadb8df41d9457498226698ebdf8e11cbb54d5b0e802d"}, + {file = "orjson-3.11.4-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:622463ab81d19ef3e06868b576551587de8e4d518892d1afab71e0fbc1f9cffc"}, + {file = "orjson-3.11.4-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3e0a700c4b82144b72946b6629968df9762552ee1344bfdb767fecdd634fbd5a"}, + {file = "orjson-3.11.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6e18a5c15e764e5f3fc569b47872450b4bcea24f2a6354c0a0e95ad21045d5a9"}, + {file = "orjson-3.11.4-cp39-cp39-win32.whl", hash = "sha256:fb1c37c71cad991ef4d89c7a634b5ffb4447dbd7ae3ae13e8f5ee7f1775e7ab1"}, + {file = "orjson-3.11.4-cp39-cp39-win_amd64.whl", hash = "sha256:e2985ce8b8c42d00492d0ed79f2bd2b6460d00f2fa671dfde4bf2e02f49bf5c6"}, + {file = "orjson-3.11.4.tar.gz", hash = "sha256:39485f4ab4c9b30a3943cfe99e1a213c4776fb69e8abd68f66b83d5a0b0fdc6d"}, ] [[package]] @@ -3395,15 +3490,15 @@ six = ">=1.5" [[package]] name = "python-dotenv" -version = "1.1.1" +version = "1.2.1" description = "Read key-value pairs from a .env file and set them as environment variables" optional = false python-versions = ">=3.9" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "python_dotenv-1.1.1-py3-none-any.whl", hash = "sha256:31f23644fe2602f88ff55e1f5c79ba497e01224ee7737937930c448e4d0e24dc"}, - {file = "python_dotenv-1.1.1.tar.gz", hash = "sha256:a8a6399716257f45be6a007360200409fce5cda2661e3dec71d23dc15f6189ab"}, + {file = "python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61"}, + {file = "python_dotenv-1.2.1.tar.gz", hash = "sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6"}, ] [package.extras] @@ -3422,6 +3517,22 @@ files = [ {file = "python_http_client-3.3.7.tar.gz", hash = "sha256:bf841ee45262747e00dec7ee9971dfb8c7d83083f5713596488d67739170cea0"}, ] +[[package]] +name = "python-jsonpath" +version = "2.0.1" +description = "JSONPath, JSON Pointer and JSON Patch for Python." +optional = false +python-versions = ">=3.8" +groups = ["main"] +markers = "python_version == \"3.11\" or python_version >= \"3.12\"" +files = [ + {file = "python_jsonpath-2.0.1-py3-none-any.whl", hash = "sha256:ebd518b7c883acc5b976518d76b6c96288405edec7d9ef838641869c1e1a5eb7"}, + {file = "python_jsonpath-2.0.1.tar.gz", hash = "sha256:32a84ebb2dc0ec1b42a6e165b0f9174aef8310bad29154ad9aee31ac37cca18f"}, +] + +[package.extras] +strict = ["iregexp-check (>=0.1.4)", "regex"] + [[package]] name = "python-multipart" version = "0.0.20" @@ -3527,105 +3638,102 @@ files = [ [[package]] name = "rapidfuzz" -version = "3.14.1" +version = "3.14.2" description = "rapid fuzzy string matching" optional = false python-versions = ">=3.10" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "rapidfuzz-3.14.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:489440e4b5eea0d150a31076eb183bed0ec84f934df206c72ae4fc3424501758"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:eff22cc938c3f74d194df03790a6c3325d213b28cf65cdefd6fdeae759b745d5"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0307f018b16feaa36074bcec2496f6f120af151a098910296e72e233232a62f"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bc133652da143aca1ab72de235446432888b2b7f44ee332d006f8207967ecb8a"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e9e71b3fe7e4a1590843389a90fe2a8684649fc74b9b7446e17ee504ddddb7de"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c51519eb2f20b52eba6fc7d857ae94acc6c2a1f5d0f2d794b9d4977cdc29dd7"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:fe87d94602624f8f25fff9a0a7b47f33756c4d9fc32b6d3308bb142aa483b8a4"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2d665380503a575dda52eb712ea521f789e8f8fd629c7a8e6c0f8ff480febc78"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c0f0dd022b8a7cbf3c891f6de96a80ab6a426f1069a085327816cea749e096c2"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:bf1ba22d36858b265c95cd774ba7fe8991e80a99cd86fe4f388605b01aee81a3"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:ca1c1494ac9f9386d37f0e50cbaf4d07d184903aed7691549df1b37e9616edc9"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9e4b12e921b0fa90d7c2248742a536f21eae5562174090b83edd0b4ab8b557d7"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-win32.whl", hash = "sha256:5e1c1f2292baa4049535b07e9e81feb29e3650d2ba35ee491e64aca7ae4cb15e"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:59a8694beb9a13c4090ab3d1712cabbd896c6949706d1364e2a2e1713c413760"}, - {file = "rapidfuzz-3.14.1-cp310-cp310-win_arm64.whl", hash = "sha256:e94cee93faa792572c574a615abe12912124b4ffcf55876b72312914ab663345"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4d976701060886a791c8a9260b1d4139d14c1f1e9a6ab6116b45a1acf3baff67"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5e6ba7e6eb2ab03870dcab441d707513db0b4264c12fba7b703e90e8b4296df2"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e532bf46de5fd3a1efde73a16a4d231d011bce401c72abe3c6ecf9de681003f"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f9b6a6fb8ed9b951e5f3b82c1ce6b1665308ec1a0da87f799b16e24fc59e4662"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5b6ac3f9810949caef0e63380b11a3c32a92f26bacb9ced5e32c33560fcdf8d1"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e52e4c34fd567f77513e886b66029c1ae02f094380d10eba18ba1c68a46d8b90"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:2ef72e41b1a110149f25b14637f1cedea6df192462120bea3433980fe9d8ac05"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:fb654a35b373d712a6b0aa2a496b2b5cdd9d32410cfbaecc402d7424a90ba72a"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:2b2c12e5b9eb8fe9a51b92fe69e9ca362c0970e960268188a6d295e1dec91e6d"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:4f069dec5c450bd987481e752f0a9979e8fdf8e21e5307f5058f5c4bb162fa56"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:4d0d9163725b7ad37a8c46988cae9ebab255984db95ad01bf1987ceb9e3058dd"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:db656884b20b213d846f6bc990c053d1f4a60e6d4357f7211775b02092784ca1"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-win32.whl", hash = "sha256:4b42f7b9c58cbcfbfaddc5a6278b4ca3b6cd8983e7fd6af70ca791dff7105fb9"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:e5847f30d7d4edefe0cb37294d956d3495dd127c1c56e9128af3c2258a520bb4"}, - {file = "rapidfuzz-3.14.1-cp311-cp311-win_arm64.whl", hash = "sha256:5087d8ad453092d80c042a08919b1cb20c8ad6047d772dc9312acd834da00f75"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:809515194f628004aac1b1b280c3734c5ea0ccbd45938c9c9656a23ae8b8f553"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0afcf2d6cb633d0d4260d8df6a40de2d9c93e9546e2c6b317ab03f89aa120ad7"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5c1c3d07d53dcafee10599da8988d2b1f39df236aee501ecbd617bd883454fcd"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6e9ee3e1eb0a027717ee72fe34dc9ac5b3e58119f1bd8dd15bc19ed54ae3e62b"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:70c845b64a033a20c44ed26bc890eeb851215148cc3e696499f5f65529afb6cb"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:26db0e815213d04234298dea0d884d92b9cb8d4ba954cab7cf67a35853128a33"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:6ad3395a416f8b126ff11c788531f157c7debeb626f9d897c153ff8980da10fb"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:61c5b9ab6f730e6478aa2def566223712d121c6f69a94c7cc002044799442afd"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:13e0ea3d0c533969158727d1bb7a08c2cc9a816ab83f8f0dcfde7e38938ce3e6"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:6325ca435b99f4001aac919ab8922ac464999b100173317defb83eae34e82139"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:07a9fad3247e68798424bdc116c1094e88ecfabc17b29edf42a777520347648e"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f8ff5dbe78db0a10c1f916368e21d328935896240f71f721e073cf6c4c8cdedd"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-win32.whl", hash = "sha256:9c83270e44a6ae7a39fc1d7e72a27486bccc1fa5f34e01572b1b90b019e6b566"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:e06664c7fdb51c708e082df08a6888fce4c5c416d7e3cc2fa66dd80eb76a149d"}, - {file = "rapidfuzz-3.14.1-cp312-cp312-win_arm64.whl", hash = "sha256:6c7c26025f7934a169a23dafea6807cfc3fb556f1dd49229faf2171e5d8101cc"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8d69f470d63ee824132ecd80b1974e1d15dd9df5193916901d7860cef081a260"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6f571d20152fc4833b7b5e781b36d5e4f31f3b5a596a3d53cf66a1bd4436b4f4"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61d77e09b2b6bc38228f53b9ea7972a00722a14a6048be9a3672fb5cb08bad3a"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8b41d95ef86a6295d353dc3bb6c80550665ba2c3bef3a9feab46074d12a9af8f"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0591df2e856ad583644b40a2b99fb522f93543c65e64b771241dda6d1cfdc96b"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f277801f55b2f3923ef2de51ab94689a0671a4524bf7b611de979f308a54cd6f"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:893fdfd4f66ebb67f33da89eb1bd1674b7b30442fdee84db87f6cb9074bf0ce9"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fe2651258c1f1afa9b66f44bf82f639d5f83034f9804877a1bbbae2120539ad1"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:ace21f7a78519d8e889b1240489cd021c5355c496cb151b479b741a4c27f0a25"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:cb5acf24590bc5e57027283b015950d713f9e4d155fda5cfa71adef3b3a84502"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:67ea46fa8cc78174bad09d66b9a4b98d3068e85de677e3c71ed931a1de28171f"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:44e741d785de57d1a7bae03599c1cbc7335d0b060a35e60c44c382566e22782e"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-win32.whl", hash = "sha256:b1fe6001baa9fa36bcb565e24e88830718f6c90896b91ceffcb48881e3adddbc"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:83b8cc6336709fa5db0579189bfd125df280a554af544b2dc1c7da9cdad7e44d"}, - {file = "rapidfuzz-3.14.1-cp313-cp313-win_arm64.whl", hash = "sha256:cf75769662eadf5f9bd24e865c19e5ca7718e879273dce4e7b3b5824c4da0eb4"}, - {file = "rapidfuzz-3.14.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d937dbeda71c921ef6537c6d41a84f1b8112f107589c9977059de57a1d726dd6"}, - {file = "rapidfuzz-3.14.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7a2d80cc1a4fcc7e259ed4f505e70b36433a63fa251f1bb69ff279fe376c5efd"}, - {file = "rapidfuzz-3.14.1-cp313-cp313t-win32.whl", hash = "sha256:40875e0c06f1a388f1cab3885744f847b557e0b1642dfc31ff02039f9f0823ef"}, - {file = "rapidfuzz-3.14.1-cp313-cp313t-win_amd64.whl", hash = "sha256:876dc0c15552f3d704d7fb8d61bdffc872ff63bedf683568d6faad32e51bbce8"}, - {file = "rapidfuzz-3.14.1-cp313-cp313t-win_arm64.whl", hash = "sha256:61458e83b0b3e2abc3391d0953c47d6325e506ba44d6a25c869c4401b3bc222c"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e84d9a844dc2e4d5c4cabd14c096374ead006583304333c14a6fbde51f612a44"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:40301b93b99350edcd02dbb22e37ca5f2a75d0db822e9b3c522da451a93d6f27"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fedd5097a44808dddf341466866e5c57a18a19a336565b4ff50aa8f09eb528f6"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:2e3e61c9e80d8c26709d8aa5c51fdd25139c81a4ab463895f8a567f8347b0548"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:da011a373722fac6e64687297a1d17dc8461b82cb12c437845d5a5b161bc24b9"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5967d571243cfb9ad3710e6e628ab68c421a237b76e24a67ac22ee0ff12784d6"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:474f416cbb9099676de54aa41944c154ba8d25033ee460f87bb23e54af6d01c9"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ae2d57464b59297f727c4e201ea99ec7b13935f1f056c753e8103da3f2fc2404"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:57047493a1f62f11354c7143c380b02f1b355c52733e6b03adb1cb0fe8fb8816"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:4acc20776f225ee37d69517a237c090b9fa7e0836a0b8bc58868e9168ba6ef6f"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:4373f914ff524ee0146919dea96a40a8200ab157e5a15e777a74a769f73d8a4a"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:37017b84953927807847016620d61251fe236bd4bcb25e27b6133d955bb9cafb"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-win32.whl", hash = "sha256:c8d1dd1146539e093b84d0805e8951475644af794ace81d957ca612e3eb31598"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-win_amd64.whl", hash = "sha256:f51c7571295ea97387bac4f048d73cecce51222be78ed808263b45c79c40a440"}, - {file = "rapidfuzz-3.14.1-cp314-cp314-win_arm64.whl", hash = "sha256:01eab10ec90912d7d28b3f08f6c91adbaf93458a53f849ff70776ecd70dd7a7a"}, - {file = "rapidfuzz-3.14.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:60879fcae2f7618403c4c746a9a3eec89327d73148fb6e89a933b78442ff0669"}, - {file = "rapidfuzz-3.14.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f94d61e44db3fc95a74006a394257af90fa6e826c900a501d749979ff495d702"}, - {file = "rapidfuzz-3.14.1-cp314-cp314t-win32.whl", hash = "sha256:93b6294a3ffab32a9b5f9b5ca048fa0474998e7e8bb0f2d2b5e819c64cb71ec7"}, - {file = "rapidfuzz-3.14.1-cp314-cp314t-win_amd64.whl", hash = "sha256:6cb56b695421538fdbe2c0c85888b991d833b8637d2f2b41faa79cea7234c000"}, - {file = "rapidfuzz-3.14.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7cd312c380d3ce9d35c3ec9726b75eee9da50e8a38e89e229a03db2262d3d96b"}, - {file = "rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:673ce55a9be5b772dade911909e42382c0828b8a50ed7f9168763fa6b9f7054d"}, - {file = "rapidfuzz-3.14.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:45c62ada1980ebf4c64c4253993cc8daa018c63163f91db63bb3af69cb74c2e3"}, - {file = "rapidfuzz-3.14.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:4d51efb29c0df0d4f7f64f672a7624c2146527f0745e3572098d753676538800"}, - {file = "rapidfuzz-3.14.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:4a21ccdf1bd7d57a1009030527ba8fae1c74bf832d0a08f6b67de8f5c506c96f"}, - {file = "rapidfuzz-3.14.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:589fb0af91d3aff318750539c832ea1100dbac2c842fde24e42261df443845f6"}, - {file = "rapidfuzz-3.14.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:a4f18092db4825f2517d135445015b40033ed809a41754918a03ef062abe88a0"}, - {file = "rapidfuzz-3.14.1.tar.gz", hash = "sha256:b02850e7f7152bd1edff27e9d584505b84968cacedee7a734ec4050c655a803c"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:37ddc4cc3eafe29ec8ba451fcec5244af441eeb53b4e7b4d1d886cd3ff3624f4"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:654be63b17f3da8414968dfdf15c46c8205960ec8508cbb9d837347bf036dc0b"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:75866e9fa474ccfe6b77367fb7c10e6f9754fb910d9b110490a6fad25501a039"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:fd915693a8d441e5f277bef23065275a2bb492724b5ccf64e38e60edd702b0fb"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e702e76a6166bff466a33888902404209fffd83740d24918ef74514542f66367"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:78f84592f3a2f2773d6f411b755d683b1ce7f05adff4c12c0de923d5f2786e51"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-manylinux_2_31_armv7l.whl", hash = "sha256:36d43c9f1b88322ad05b22fa80b6b4a95d2b193d392d3aa7bee652c144cfb1d9"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:69d6f93916717314209f4e8701d203876baeadf8c9dcaee961b8afeba7435643"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:e262958d3ca723c1ce32030384a1626e3d43ba7465e01a3e2b633f4300956150"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:26b5e6e0d39337431ab1b36faf604873cb1f0de9280e0703f61c6753c8fa1f7f"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2aad09712e1ffbc00ac25f12646c7065b84496af7cd0a70b1d5aff6318405732"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f10dbbafa3decee704b7a02ffe7914d7dfbbd3d1fce7f37ed2c3d6c3a7c9a8e6"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-win32.whl", hash = "sha256:6c3dab8f9d4271e32c8746461a58412871ebb07654f77aa6121961e796482d30"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-win_amd64.whl", hash = "sha256:5386ce287e5b71db4fd71747a23ae0ca5053012dc959049e160857c5fdadf6cd"}, + {file = "rapidfuzz-3.14.2-cp310-cp310-win_arm64.whl", hash = "sha256:c78d6f205b871f2d41173f82ded66bcef2f692e1b90c0f627cc8035b72898f35"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3969670d4b85e589564d6a75638ec2372a4375b7e68e747f3bd37b507cf843e4"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:061884b23a8c5eea9443e52acf02cbd533aff93a5439b0e90b5586a0638b8720"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6fc2bc48a219c171deb8529bfcc90ca6663fbcaa42b54ef202858976078f858a"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cfa62729ac2d77a50a240b6331e9fffb5e070625e97e8f7e50fa882b3ea396ad"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:2d001aaf47a500083b189140df16eaefd675bf06c818a71ae9f687b0d6f804f8"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c95eeaa7f2a990757826aa34e7375b50d49172da5ca7536dc461b1d197e0de9b"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-manylinux_2_31_armv7l.whl", hash = "sha256:30af5e015462f89408d7b3bbdd614c739adc386e3d47bd565b53ffb670266021"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:35f12b07d58b932ef95b5f66b40c9efc60c5201bccd3c5ddde4a87df19d0aba8"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:0aa67110e016d2cdce3e5a3330d09fb1dba3cf83350f6eb46a6b9276cbafd094"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b13dc4743a5d222600d98fb4a0345e910829ef4f286e81b34349627355884c87"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:b16c40709f22c8fc16ca49a5484a468fe0a95f08f29c68043f46f8771e2c37e2"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ac2bd7c74523f952a66536f72b3f68260427e2a6954f1f03d758f01bbbf60564"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-win32.whl", hash = "sha256:37d7045dc0ab4cab49d7cca66b651b44939e18e098a2f55466082e173b1aa452"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-win_amd64.whl", hash = "sha256:9a55ff35536662028563f22e0eadab47c7e94c8798239fe25d3ceca5ab156fd8"}, + {file = "rapidfuzz-3.14.2-cp311-cp311-win_arm64.whl", hash = "sha256:b2f0e1310f7cb1c0c0033987d0a0e85b4fd51a1c4882f556f082687d519f045d"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0418f6ac1da7adf7e6e469876508f63168e80d3265a9e7ab9a2e999020577bfa"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f6028090b49015fc9ff0df3c06751078fe300a291e933a378a7c37b78c4d6a3e"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:21aa299985d1bbdb3ccf8a8214e7daee72bb7e8c8fb25a520f015dc200a57816"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:e247612909876f36e6132265deef34efcaaf490e1857022204b206ff76578076"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:9cf077475cd4118a5b846a72749d54b520243be6baddba1dd1446f3b1dbab29c"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a5e7e02fb51f9a78e32f4fb8b5546d543e1fb637409cb682a6b8cb12e0c3015c"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-manylinux_2_31_armv7l.whl", hash = "sha256:b1febabf4a4a664a2b6025830d93d7703f1cd9dcbe656ed7159053091b4d9389"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:766d133f11888c48497f26a1722afc697a5fbad05bbfec3a41a4bc04fd21af9d"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:2a851a7c6660b6e47723378ca7692cd42700660a8783e4e7d07254a984d63ec8"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:686594bd7f7132cb85900a4cc910e9acb9d39466412b8a275f3d4bc37faba23c"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:e1d412122de3c5c492acfcde020f543b9b529e2eb115f875e2fd7470e44ab441"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2611b1f6464dddf900bffeee2aa29a9aa1039317cbb226e18d3a5f029d4cf303"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-win32.whl", hash = "sha256:e6968b6db188fbb4c7a18aac25e075940a8204434a2a0d6bddb0a695d7f0c898"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-win_amd64.whl", hash = "sha256:1a6d43683c04ffb4270bb1498951a39e9c200eb326f933fd5d608c19485049b8"}, + {file = "rapidfuzz-3.14.2-cp312-cp312-win_arm64.whl", hash = "sha256:4ecd3ab9aebb17becb462eac19151bd143abc614e3d2a0351a72171371ac3f4b"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f1f5a2566af7409d11f11b0b4e9f76a0ac64577737b821c64a2a6afc971c1c25"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:810863f3a98d09392e5fb481aef9d82597df6ee06f7f11ceafe6077585c4e018"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2e8c0d16c0724dab7c7dc4099c1ec410679b2d11c1650b069d15d4ab4370f1cc"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:004f04356d84660feffbf8c26975cb0db0e010b2225d6e21b3d84dd8df764652"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3c2aea6b1db03a8abd62bb157161d7a65b896c9f85d5efc2f1bb444a107c47a"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8bef63704b7851ad1adf5d7ceb7f1b3136b78ee0b34240c14ab85ea775f6caa7"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:52e8e37566313ac60bfa80754c4c0367eec65b3ef52bb8cc409b88e878b03182"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:b3fad0fb5ac44944ad8f81e729ec45f65a85efb7d7ea4cf67343799c0ea9874b"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:d027842a956b86aa9706b836c48186da405413d03957afaccda2fbe414bc3912"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:27dcb45427b1966fb43c904d19c841c3e6da147931959cf05388ecef9c5a1e8d"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:1aab0676884e91282817b5710933efc4ea9466d2ba5703b5a7541468695d807a"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ef36c21ecb7f4bad7e4e119fe746a787ad684eaf1c383c17a2aff5d75b20fa58"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-win32.whl", hash = "sha256:ed3af4fa0dbd6d1964f171ac6fff82ed9e76c737eb34ae3daf926c4aefc2ce9b"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-win_amd64.whl", hash = "sha256:3fc2e7c3ab006299366b1c8256e452f00eb1659d0e4790b140633627c7d947b7"}, + {file = "rapidfuzz-3.14.2-cp313-cp313-win_arm64.whl", hash = "sha256:def48d5010ddcd2a80b44f14bf0172c29bfc27906d13c0ea69a6e3c00e6f225c"}, + {file = "rapidfuzz-3.14.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:a39952b8e033758ee15b2de48a5b0689c83ea6bd93c8df3635f2fbf21e52fd25"}, + {file = "rapidfuzz-3.14.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:f786811555869b5961b3718b007179e87d73c47414afee5fb882ae1b9b174c0c"}, + {file = "rapidfuzz-3.14.2-cp313-cp313t-win32.whl", hash = "sha256:6c0a25490a99c4b73f1deca3efae004df5f2b254760d98cac8d93becf41260d4"}, + {file = "rapidfuzz-3.14.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e5af2dab8ec5a180d9ff24fbb5b25e589848b93cccb755eceb0bf0e3cfed7e5c"}, + {file = "rapidfuzz-3.14.2-cp313-cp313t-win_arm64.whl", hash = "sha256:8cf2aefb0d246d540ea83b4648db690bd7e25d34a7c23c5f250dcba2e4989192"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:ace3a6b108679888833cdceea9a6231e406db202b8336eaf68279fe71a1d2ac4"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:32c7cc978447202ba592e197228767b230d85e52e5ef229e2b22e51c8e3d06ad"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5a479a824cbf6a646bcec1c34fbbfb85393d03eb2811657e3a6536298d435f76"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3a3bc0c8b65dcd1e55a1cc42a7c7b34e93ad5d4bd1501dc998f4625042e1b110"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:217b46bf096818df16c0e2c43202aa8352e67c4379b1d5f25e98c5d1c7f5414d"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:07d3e8afeeb81044873644e505e56ba06d8bdcc291ef7e26ac0f54c58309267d"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-manylinux_2_31_armv7l.whl", hash = "sha256:b7832c8707bfa4f9b081def64aa49954d4813cff7fc9ff4a0b184a4e8697147f"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:35581ba6981e016333063c52719c0b0b1bef0f944e641ad0f4ea34e0b39161f3"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:fbd5152169dc3f6c894c24fc04813f50bf9b929d137f2b965ac926e03329ceba"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:98a119c3f9b152e9b62ec43520392669bd8deae9df269f30569f1c87bf6055a4"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:9e84164e7a68f9c3523c5d104dda6601202b39bae0aac1b73a4f119d387275c4"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:64c67402b86a073666f92c2807811e3817a17fedfe505fe89a9f93eea264481c"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-win32.whl", hash = "sha256:58d79f4df3e4332b31e671f9487f0c215856cf1f2d9ac3848ac10c27262fd723"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-win_amd64.whl", hash = "sha256:dc6fe7a27ad9e233c155e89b7e1d9b6d13963e3261ea5b30f3e79c3556c49bc9"}, + {file = "rapidfuzz-3.14.2-cp314-cp314-win_arm64.whl", hash = "sha256:bb4e96d80de7e6364850a2e168e899b8e85ab80ce19827cc4fbe0aa3c57f8124"}, + {file = "rapidfuzz-3.14.2-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:c7d4d0927a6b1ef2529a8cc57adf2ce965f7aaef324a4d1ae826d0de43ab4f82"}, + {file = "rapidfuzz-3.14.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c0fae06e7fb4be18e86eb51e77f0d441975a3ba9ef963f957d750a2a41536ba1"}, + {file = "rapidfuzz-3.14.2-cp314-cp314t-win32.whl", hash = "sha256:d1d3ef72665d460b7b3e61d3dff4341a195dcb3250b4471eef71db23fca2d91a"}, + {file = "rapidfuzz-3.14.2-cp314-cp314t-win_amd64.whl", hash = "sha256:3a0960c5c11a34e8129a3062f1b1cbb371fad364e2195ebe46a88a9d5eeec0f1"}, + {file = "rapidfuzz-3.14.2-cp314-cp314t-win_arm64.whl", hash = "sha256:ed29600e55d7df104d5778d499678c305e32e3ccfa873489a7c8304489c5f8f3"}, + {file = "rapidfuzz-3.14.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:172630396d8bdbb5ea1a58e82afc489c8e18076e1f2b2edea20cb30f8926325a"}, + {file = "rapidfuzz-3.14.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:6cff0d6749fac8dd7fdf26d0604d8a47c5ee786061972077d71ec7ac0fb7ced2"}, + {file = "rapidfuzz-3.14.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:f558bc2ee3a0bb5d7238ed10a0b76455f2d28c97e93564a1f7855cea4096ef1c"}, + {file = "rapidfuzz-3.14.2.tar.gz", hash = "sha256:69bf91e66aeb84a104aea35e1b3f6b3aa606faaee6db1cfc76950f2a6a828a12"}, ] [package.extras] @@ -3842,7 +3950,7 @@ description = "RestrictedPython is a defined subset of the Python language which optional = false python-versions = "<3.15,>=3.9" groups = ["main"] -markers = "python_version == \"3.11\"" +markers = "python_version == \"3.11\" or python_full_version == \"3.12.0\"" files = [ {file = "restrictedpython-8.1-py3-none-any.whl", hash = "sha256:4769449c6cdb10f2071649ba386902befff0eff2a8fd6217989fa7b16aeae926"}, {file = "restrictedpython-8.1.tar.gz", hash = "sha256:4a69304aceacf6bee74bdf153c728221d4e3109b39acbfe00b3494927080d898"}, @@ -4196,15 +4304,15 @@ typing-extensions = {version = ">=4.5.0", markers = "python_version >= \"3.7\""} [[package]] name = "structlog" -version = "25.4.0" +version = "25.5.0" description = "Structured Logging for Python" optional = false python-versions = ">=3.8" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "structlog-25.4.0-py3-none-any.whl", hash = "sha256:fe809ff5c27e557d14e613f45ca441aabda051d119ee5a0102aaba6ce40eed2c"}, - {file = "structlog-25.4.0.tar.gz", hash = "sha256:186cd1b0a8ae762e29417095664adf1d6a31702160a46dacb7796ea82f7409e4"}, + {file = "structlog-25.5.0-py3-none-any.whl", hash = "sha256:a8453e9b9e636ec59bd9e79bbd4a72f025981b3ba0f5837aebf48f02f37a7f9f"}, + {file = "structlog-25.5.0.tar.gz", hash = "sha256:098522a3bebed9153d4570c6d0288abf80a031dfdb2048d59a49e9dc2190fc98"}, ] [[package]] @@ -4386,15 +4494,15 @@ telegram = ["requests"] [[package]] name = "twilio" -version = "9.8.4" +version = "9.8.5" description = "Twilio API client and TwiML generator" optional = false python-versions = ">=3.7.0" groups = ["main"] markers = "python_version == \"3.11\" or python_version >= \"3.12\"" files = [ - {file = "twilio-9.8.4-py2.py3-none-any.whl", hash = "sha256:03a137e2538ed2a6448c8b21c067f97ebabe273d76701744db4b6e5e47755df2"}, - {file = "twilio-9.8.4.tar.gz", hash = "sha256:392c8a1d2a938a041d07fc39d05cce30f88b4642d9539035399d7eabab90dd61"}, + {file = "twilio-9.8.5-py2.py3-none-any.whl", hash = "sha256:7e1d04bb2cd480a97937f1fbea5fe35377925b6f70745baade08bde9cd4fb319"}, + {file = "twilio-9.8.5.tar.gz", hash = "sha256:b69dc2226294ef579fcdd92b502aef7982a60577110a0799f8c2b739428e1dcf"}, ] [package.dependencies] @@ -4873,4 +4981,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = "^3.11" -content-hash = "9efe1856c3a90b2b601d03b292107f86812475cd89082e91438d54e29aa83c2f" +content-hash = "41981e274e958a70f5034827967fc28998561ae42040776fa79113456f26c156" diff --git a/api/pyproject.toml b/api/pyproject.toml index ad5cf17108..92cb36c8c0 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "api" -version = "0.59.12" +version = "0.60.0" description = "Agenta API" authors = [ { name = "Mahmoud Mabrouk", email = "mahmoud@agenta.ai" }, @@ -21,7 +21,7 @@ pydantic = "^2.11.7" uvicorn = "^0.34.3" redis = "^6.4.0" sendgrid = "^6.12.4" -restrictedpython = { version = "^8.0", python = ">=3.11,<3.12" } +restrictedpython = { version = "^8.0", python = ">=3.11,<=3.12" } celery = "^5.5.3" newrelic = "^10.17.0" openai = "^1.106.0" @@ -46,6 +46,7 @@ watchdog = { extras = ["watchmedo"], version = "^3.0.0" } sqlalchemy-json = "^0.7.0" python-multipart = "^0.0.20" gunicorn = "^23.0.0" +python-jsonpath = "^2.0.0" # opentelemetry-api = "^1.36.0" # opentelemetry-sdk = "^1.36.0" diff --git a/docs/blog/entries/more-reliable-evaluations.mdx b/docs/blog/entries/more-reliable-evaluations.mdx index c5bb504702..7c1287fb95 100644 --- a/docs/blog/entries/more-reliable-evaluations.mdx +++ b/docs/blog/entries/more-reliable-evaluations.mdx @@ -32,8 +32,6 @@ We have worked extensively on improving the **reliability of evaluations**. Spec - We fixed small UI issues with large output in human evaluations. - We have added a new export button in the evaluation view to export the results as a CSV file. -Additionally, we have added a new [Cookbook for run evaluation using the SDK](/tutorials/sdk/evaluate-with-SDK). - In **observability**: - We have added a **new integration with [Litellm](https://litellm.ai/)** to automatically trace all LLM calls done through it. diff --git a/docs/blog/entries/new-onboarding-flow.mdx b/docs/blog/entries/new-onboarding-flow.mdx index e2cdc0ac28..189ffb75e9 100644 --- a/docs/blog/entries/new-onboarding-flow.mdx +++ b/docs/blog/entries/new-onboarding-flow.mdx @@ -38,6 +38,4 @@ We've redesigned our platform's onboarding to make getting started simpler and m - Enhanced frontend performance - Fixed scroll behavior in trace view -You can check out the tutorial for the RAG demo project [here](/tutorials/cookbooks/RAG-QA-docs). - --- diff --git a/docs/blog/entries/viewing-traces-in-the-playground-and-authentication-for-deployed-applications.mdx b/docs/blog/entries/viewing-traces-in-the-playground-and-authentication-for-deployed-applications.mdx index 926afc7528..7117044e43 100644 --- a/docs/blog/entries/viewing-traces-in-the-playground-and-authentication-for-deployed-applications.mdx +++ b/docs/blog/entries/viewing-traces-in-the-playground-and-authentication-for-deployed-applications.mdx @@ -23,7 +23,6 @@ We’ve strengthened authentication for deployed applications. As you know, Agen We’ve added new cookbooks and updated existing documentation: - New [cookbook for observability with LangChain](/tutorials/cookbooks/observability_langchain) -- New [cookbook for custom workflows](/tutorials/cookbooks/AI-powered-code-reviews) where we build an AI powered code reviewer - Updated the [custom workflows documentation](/custom-workflows/overview) and added [reference](/reference/sdk/custom-workflow) - Updated the [reference for the observability SDK](/reference/sdk/observability) and [for the prompt management SDK](/reference/sdk/configuration-management) diff --git a/docs/blog/main.mdx b/docs/blog/main.mdx index 6c6187423a..208ffed0bf 100644 --- a/docs/blog/main.mdx +++ b/docs/blog/main.mdx @@ -582,8 +582,6 @@ We've redesigned our platform's onboarding to make getting started simpler and m - Enhanced frontend performance - Fixed scroll behavior in trace view -You can check out the tutorial for the RAG demo project [here](/tutorials/cookbooks/RAG-QA-docs). - --- ### [Add Spans to Test Sets](/changelog/add-spans-to-test-sets) @@ -630,7 +628,6 @@ We’ve strengthened authentication for deployed applications. As you know, Agen We’ve added new cookbooks and updated existing documentation: - New [cookbook for observability with LangChain](/tutorials/cookbooks/observability_langchain) -- New [cookbook for custom workflows](/tutorials/cookbooks/AI-powered-code-reviews) where we build an AI powered code reviewer - Updated the [custom workflows documentation](/custom-workflows/overview) and added [reference](/reference/sdk/custom-workflow) - Updated the [reference for the observability SDK](/reference/sdk/observability) and [for the prompt management SDK](/reference/sdk/configuration-management) @@ -899,8 +896,6 @@ We have worked extensively on improving the **reliability of evaluations**. Spec - We fixed small UI issues with large output in human evaluations. - We have added a new export button in the evaluation view to export the results as a CSV file. -Additionally, we have added a new [Cookbook for run evaluation using the SDK](/tutorials/sdk/evaluate-with-SDK). - In **observability**: - We have added a **new integration with [Litellm](https://litellm.ai/)** to automatically trace all LLM calls done through it. diff --git a/docs/docs/evaluation/_evaluation-from-sdk/01-quick-start.mdx b/docs/docs/evaluation/_evaluation-from-sdk/01-quick-start.mdx index 02150aa368..c7d594aeff 100644 --- a/docs/docs/evaluation/_evaluation-from-sdk/01-quick-start.mdx +++ b/docs/docs/evaluation/_evaluation-from-sdk/01-quick-start.mdx @@ -26,10 +26,6 @@ pip install -U agenta - How to configure and run evaluations - How to retrieve evaluation results -## Step-by-step tutorial - -For a comprehensive walkthrough of evaluation with the SDK, see our [Evaluate with SDK tutorial](/tutorials/sdk/evaluate-with-SDK). - ## Quick example ```python diff --git a/docs/docs/evaluation/configure-evaluators/05-llm-as-a-judge.mdx b/docs/docs/evaluation/configure-evaluators/05-llm-as-a-judge.mdx index 14ead426f9..399dfde99e 100644 --- a/docs/docs/evaluation/configure-evaluators/05-llm-as-a-judge.mdx +++ b/docs/docs/evaluation/configure-evaluators/05-llm-as-a-judge.mdx @@ -10,40 +10,48 @@ The evaluator has the following parameters: #### The Prompt -You can configure the prompt used for evaluation. The prompt can contain multiple messages in OpenAI format (role/content). All messages in the prompt have access to the inputs, outputs, and reference answers (any columns in the test set). To reference these in your prompts, use the following variables (inside double curly braces): +You can configure the prompt used for evaluation. The prompt can contain multiple messages in OpenAI format (role/content). All messages in the prompt have access to the inputs, outputs, and reference answers (any columns in the testset). To reference these in your prompts, use the following variables (inside double curly braces): -- `{{correct_answer}}`: the column with the reference answer in the test set (optional). You can configure the name of this column under `Advanced Setting` in the configuration modal. -- `{{prediction}}`: the output of the llm application -- `{{$input_column_name}}`: the value of any input column for the given row of your test set (e.g. `{{country}}`) +- `{{inputs}}`: all the inputs to the llm application formatted as key-value pairs +- `{{outputs}}`: the output of the llm application +- `{{reference}}`: the column with the reference answer in the testset (optional). You can configure the name of this column under `Advanced Setting` in the configuration modal. +- `{{correct_answer}}`: alias for `{{reference}}` (for backward compatibility) +- `{{prediction}}`: alias for `{{outputs}}` (for backward compatibility) +- `{{$input_column_name}}`: the value of any input column for the given row of your testset (e.g. `{{country}}`) -If no `correct_answer` column is present in your test set, the variable will be left blank in the prompt. +If no `correct_answer` column is present in your testset, the variable will be left blank in the prompt. Here's the default prompt: **System prompt:** ``` -You are an evaluator grading an LLM App. -You will be given INPUTS, the LLM APP OUTPUT, the CORRECT ANSWER used in the LLM APP. - -- Ensure that the LLM APP OUTPUT has the same meaning as the CORRECT ANSWER - - - --The score should be between 0 and 1 --A score of 1 means that the answer is perfect. This is the highest (best) score. -A score of 0 means that the answer does not any of of the criteria. This is the lowest possible score you can give. - - - +You are an expert evaluator grading model outputs. Your task is to grade the responses based on the criteria and requirements provided below. + +Given the model output and inputs (and any other data you might get) assign a grade to the output. + +## Grading considerations +- Evaluate the overall value provided in the model output +- Verify all claims in the output meticulously +- Differentiate between minor errors and major errors +- Evaluate the outputs based on the inputs and whether they follow the instruction in the inputs if any +- Give the highst and lowest score for cases where you have complete certainty about correctness and value + +## Scoring Criteria +- The score should be between 0 and 10 +- A score of 10 means that the answer is perfect. This is the highest (best) score +- A score of 0 means that the answer does not meet any of the criteria. This is the lowest possible score you can give. + +## output format ANSWER ONLY THE SCORE. DO NOT USE MARKDOWN. DO NOT PROVIDE ANYTHING OTHER THAN THE NUMBER - ``` **User prompt:** ``` -{{correct_answer}} -{{prediction}} +## Model inputs +{{inputs}} +## Model outputs +{{outputs}} ``` ### The Model diff --git a/docs/docs/evaluation/evaluation-from-ui/03-viewing-results.mdx b/docs/docs/evaluation/evaluation-from-ui/03-viewing-results.mdx index 8cfdd869d7..52b3b7eb55 100644 --- a/docs/docs/evaluation/evaluation-from-ui/03-viewing-results.mdx +++ b/docs/docs/evaluation/evaluation-from-ui/03-viewing-results.mdx @@ -75,4 +75,4 @@ Export your evaluation results for further analysis: - Learn how to [compare multiple evaluations](/evaluation/evaluation-from-ui/comparing-runs) - Try [human evaluation](/evaluation/human-evaluation/quick-start) for qualitative assessment -- Explore [evaluation from SDK](/tutorials/sdk/evaluate-with-SDK) for CI/CD integration +- Explore [evaluation concepts](/evaluation/concepts) to understand evaluation approaches diff --git a/docs/docs/evaluation/evaluation-from-ui/04-comparing-runs.mdx b/docs/docs/evaluation/evaluation-from-ui/04-comparing-runs.mdx index 895e1dbf95..5546045a93 100644 --- a/docs/docs/evaluation/evaluation-from-ui/04-comparing-runs.mdx +++ b/docs/docs/evaluation/evaluation-from-ui/04-comparing-runs.mdx @@ -68,5 +68,5 @@ The prompt configuration comparison tab shows the prompt configuration used for ## Next steps - Learn about [human evaluation](/evaluation/human-evaluation/quick-start) for qualitative feedback -- Explore [evaluation from SDK](/tutorials/sdk/evaluate-with-SDK) for automated testing +- Explore [evaluation concepts](/evaluation/concepts) to understand evaluation approaches - Understand [evaluator types](/evaluation/configure-evaluators/overview) to choose the right metrics diff --git a/docs/docs/getting-started/01-introduction.mdx b/docs/docs/getting-started/01-introduction.mdx index c1c526d2b7..7c51b57d8b 100644 --- a/docs/docs/getting-started/01-introduction.mdx +++ b/docs/docs/getting-started/01-introduction.mdx @@ -53,6 +53,3 @@ Agenta is open-source and MIT licensed, so you can self-host it, modify it, and Agenta enables prompt engineering and evaluation on any LLM app architecture, such as **Chain of Prompts**, **RAG**, or **LLM agents**. It is compatible with any framework like **Langchain** or **LlamaIndex**, and works with any model provider, such as **OpenAI**, **Cohere**, or **local models**. -[Jump here](/custom-workflows/overview) to see how to use your own custom application with Agenta. - - diff --git a/docs/docs/prompt-engineering/01-quick-start.mdx b/docs/docs/prompt-engineering/01-quick-start.mdx index 08b34dcca0..dc1824c076 100644 --- a/docs/docs/prompt-engineering/01-quick-start.mdx +++ b/docs/docs/prompt-engineering/01-quick-start.mdx @@ -302,7 +302,7 @@ To continue your journey with Agenta: +> + + context={"endpoint"} +> + + + + Accept an invitation to an organization. Raises: -HTTPException: _description_; status_code: 500 -HTTPException: Invitation not found or has expired; status_code: 400 -HTTPException: You already belong to this organization; status_code: 400 + HTTPException: _description_; status_code: 500 + HTTPException: Invitation not found or has expired; status_code: 400 + HTTPException: You already belong to this organization; status_code: 400 Returns: -JSONResponse: Accepted invitation to workspace; status_code: 200 + JSONResponse: Accepted invitation to workspace; status_code: 200 +> + + + + + -
- -

- Path Parameters -

-
-
-
    - - -
-
-
-
+ + - -

- Query Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/add-trace.api.mdx b/docs/docs/reference/api/add-trace.api.mdx deleted file mode 100644 index 991dad4ee9..0000000000 --- a/docs/docs/reference/api/add-trace.api.mdx +++ /dev/null @@ -1,1032 +0,0 @@ ---- -id: add-trace -title: "Add Trace" -description: "Add Trace" -sidebar_label: "Add Trace" -hide_title: true -hide_table_of_contents: true -api: eJztWllz2zYQ/iuafWpnJMuXnFZPVWRmotqRNBKdh2o0GoiELMS8AoBuVI3+e2cBHiB12nHaPDAPjma52F18e2FBrkGSRwHtCdicOCx4hGkdwohyIlkY9FxoA3HdmeTEoVAHTr/GVMj3obuC9hqcMJA0kPiTRJHHHLWq+UWEAdKEs6Q+wV8RR5mSUaHoEQnUDxKsBgtoT9YgVxFFXZyTFWzqGSGIPQ820zpIJj0kjNXaTR2USSUpxHUZWkC8YUHhUfX7FuYc3y0CHMad2CP8l4FNPdzGr1BfA5PUF9De+bSEynSTUcL5F+rI04ByOCWSujMid0IuJEe312ERch95wCWSNiTz6UH5XS221kEzII7cH6HkQYtNlLjUoz9Aya0WmyhJ4ZqvZsw9UU8cM/cksN6vaj3XxOtNtaRoZVpSwN5USwpXpkVlYqKgLDZdhNWFJvyYPEfYMXgT7ohwGsgj9h+yd6gEmLqfWHAEDRrEPubseNjpz+56/dvZQ388tLq9Dz3rFuoGvde3rVG/c18gjq3RZ2tUIHXve1bfLpCGo8HtQ7fMN+iPHz5ZIzB2kJaEO7R7e6vptgLi09eCpADvE5UpICThcqby5jvyjAWSPlJ+WC1qqtl6JdDA/U+0WoGb6RSSyFjMnNA9ojYLCbtjP4xn3cGthUFhKZ8atMFdiWCNRoNtdyq1XdS626HaLJ8KQR5f71UlpfYpkbKpA5GSs3ksT+2cJ2jdibg/L1LmYehREijSbl15B/wQe96fIgwavSCKpdEHja631Tb3Ljp+pCguhRd12U6OJwbwMw1kCbfE0vIJIk3WfRUwzUWMbyGJH71JUhiW25ngKix+aFhsLdTHaMapi/VEBYLp51KlsDCmDO3HDbd0FG7q4LHg6bRwfFlPfmnHr8Lrfwuv1LGG00oBds+CpxfF172KqmOKM3X5gW/HkcaEtRqyqiGrGrKqIasasqohqxqyquNONWRVYVENWdWQ9fOH188/ZL3FlLPDlrImYXNKXwazrd/jHZOevJ4c6ReQsEH+HAnJY6oIIgoDoeP78vwS/3OpcDiLMCpxK7HjUCEWsVcbJcxQf+17zGfKBdMs+xL0c8KCM08YaxWl5DIGGMWxu6S8ceCkpqdm7QhXkQG0UWhfX+7A8zPxmKvQqlmch/z1YLpUEubhrz3V0wudwtOX1K9pOQMMvEJtIOLui8dDzjSOeJplP6sCo2bj02OuwH1p1Qmf4YscXo3u/m3cavgOpdFH2x5uCdS+LTq147o1O3nj71O5DPEzgCgUKCwicgltaEacPjP6d1PqvGzq1/FNLESUY3Qpz8TcgzYspYxEu9l0vDB2z8gjDSQ5I6xJIgZbutXTWhdZVVwL6sScyZWS1xn27ujqIyUu5dCeTE2GMQaWDpUiW548EbujCJo+F0InlsuQs3+0/+vA0IClXoWoYMiO8i8erG/EjzxqXE1N1oWLHyw5rcZ5q3HRsi+u2ucX7db12fl16y8o3t0c4jOvXw7xlW5Q4GpBfmstbq4brXcX7xrXrZvLxvxq4TQund9vrhY3N2RBbmDrSuTUZaU7jlOX5UeYPEOyQ1BOMm4fSnz6EmHvDYExkRsLjcH6EIL5IHyIqzC67pxLy1NkbknhRGZMLpN0MjHrRjaBHLKmKBGjP2kVk/UuYHfhXxahekf6LQ1GPQsWoUqa9BykM/I9cZ5ogCeNrO3B+dnF2fm+FE4W1DrDXtIViCPzqSxhw5gsFImsPKCLfNUSQFLi/5E/QCuxHPkkMOUZVatgUJb/kn6TzcgjTBV7pXadFLQJJAUtQc3AT0AdsCYvsQC2J7Bez4mgD9zbbJD8NaYci9O0Ds+EMzJH0CbYcJZpmVrDE12p/q46Y0O1BWT3Yl2WSl0SO5he0XEcGsmDvFOjRg8HY4zIefJ5lq+DlhPcFf5tA+DXXbha1UlFW4NHgsdYx66Wif/+BTXi0IE= -sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Add Trace - - - - - -
- -

- Body -

- required -
-
-
    - -
    - - spans - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - parent_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - span_kind - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`SPAN_KIND_UNSPECIFIED`, - `SPAN_KIND_INTERNAL`, `SPAN_KIND_SERVER`, - `SPAN_KIND_CLIENT`, `SPAN_KIND_PRODUCER`, - `SPAN_KIND_CONSUMER`] -
    -
    -
    -
    -
    -
    -
    - -
    - - span_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - start_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - end_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - status_code - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`STATUS_CODE_UNSET`, - `STATUS_CODE_OK`, `STATUS_CODE_ERROR`] -
    -
    -
    -
    -
    -
    -
    - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
    - - timestamp - object - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - - anyOf - - -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - - anyOf - - -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - traces - object - -
    -
    - anyOf - -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/add-variant-from-base-and-config.api.mdx b/docs/docs/reference/api/add-variant-from-base-and-config.api.mdx index d0fa2cf904..b79ae2556a 100644 --- a/docs/docs/reference/api/add-variant-from-base-and-config.api.mdx +++ b/docs/docs/reference/api/add-variant-from-base-and-config.api.mdx @@ -5,668 +5,77 @@ description: "Add a new variant based on an existing one." sidebar_label: "Add Variant From Base And Config" hide_title: true hide_table_of_contents: true -api: eJztVk1v2zgQ/SvEnHYB1c4Ge9JplTRFg+62RpL24hjGRBzbbCVSJakkXkP/vRhSsiQ7SbOXnjaX0JzvN/OG2oHHtYN0Dl/QKtTewSIBSS63qvLKaEghk1Kg0PQg7qOOuENHUhgtUAt6VM4rvRZG0+RWX2NJAp2Yfbq+EdPc6JVa3+pbndm1S2+1EEJUuC0MSvFbJmUb9Z015Rk6mkXR76loTyI32qPSHICj7lO4fJuMUtJYUiJQS1GhxZI8WTfhwFeoHHWh39/czC4ecwqlpSLIpFAr4Te969zUhRTaeHFHAqXkUq3APCfnSEan5GurO6+ftTJ6nlVVW80VucpoR4nI9HaRio+DPCV5VIVjj9QlMoEETEUW+celhBRQymVrsVxZUy659iVquYyIQgKWvtfk/JmRW0h3wDiR9nzEqipUHpxNvzpu4Q5cvqES+VRZDuUVOf4V/CrJR7+tCFJw3irNAbzyBV9wX8SlhCYBTQ/7tBjwl8y46BYP8ZF1W/tYwKvMz4Pq3rpvbKhSSsUlYjEbVORtTUnn1Nx9pdwPnM56D00CuSlL5ZclOYfrkAzq7acVpPPDtJpkf6ProoBm0fs8D17EP62XpjkOz61SliTTrAP8CTCP8RnVPIj5LHGg4fh9PIYjXMSBDMCdnpzwvzHHr+sw3qu6EN30QvL6oToC7snasapi6XxoC+wQCPcHcFTWsJcoC8C1gh7EMVqW7pXjgoZYHdFyyf0ctrATCN503cwysiLMfqZlO4oMb5PAn6enxwh+wULJgI+4sNbY/wLfmJNxRfBJeSrdsUJh8pH0FWOrtKc1WWgW/XyitbgdsONvExNkbpRu/RI799PeOXteNYAhblj6M25wXTF0qzfoUQ9vRPf5Mt5G+J4K1qnwM3DkMPa2JL8xvIIr43wgoN9ACtN2NN2U1/EbHkBIwJG9D+tovoPaFpDCxvvKpdNpXphaTnBN2uME1RQrBUfvapCKc1YNK8VRXlvlt8FfNrv8QNv3hJIspPPFUOGaJyfOwlht3was1AdiVOKehaz2G2PVv7HBCShOYBOtuGyeyav+Rbl4xLIqaPRC9K09fgbGstGK70Wj/f3E/u3HFpRemVBNR+II1Rnm30iHTUHWRRRPJn9MTp7DtjUQ2eyy5SPmgY8dLEENkoPu7fsGCVAZyAiesPyrFzBoPCIl6qG/ny2QgzwH7/b/n1m/4jOrpYenRz+tClRh2YXm71qqz7tXyEECPdkXCWx4I6Rz2O345rMtmoavv9dkmbKL9v2644md857ddOTdwTfahm+F0Ow3YRuyelFHsh48Dry4o0WWc/Iv6i4GS4vHgd/H9qOwNJJtLD7wpsUHSCF8arJ12B7hbgcF6nUdORh98t8P8fAyug== +api: eJztV01v2zgQ/SvEnHYB1c4Ge9JpnTaLBt02Rj66B8cwJuLYZiuRKkkl8Rr+74shJUuykzhNgD1tLpHF4RvOzHvD0Ro8LhykE/iKVqH2DqYJSHKZVaVXRkMKIykFCk334i7aiFt0JIXRArWgB+W80gthNA1u9CUWJNCJ8fnllRhmRs/V4kbf6JFduPRGCyFEiavcoBS/jKSsvf5pTXGCjsZx6ddU1E8iM9qj0uyAvW6PcPYh6R1JY0GJQC1FiRYL8mTdgB1foHLUuP54dTU+fcgohJaKsCaFmgu/bKEzU+VSaOPFLQmUkkO1ArOMnCMZQclXVjeo11oZPRmVZR3NBbnSaEeJGOnVNBVfOueU5FHljhGpOcgAEjAlWeQfZxJSQCln9Y7Z3JpixrHPUMtZzCgkYOlHRc6fGLmCdA2cJ9KeH7Esc5UFsOE3xyVcg8uWVCA/lZZdeUWOfwVcJfnRr0qCFJy3SrMDr3zOL7gu4kzCJgFN99tjccKf28ZB1/kQX9i23h8DeNH298F0u7stbIhSSsUhYj7uRORtRUkDam6/UeY7oOMWYZNAZopC+VlBzuEiHAb16nwO6WT3WJtk+0ZXeQ6baYv5PqCIzzXKZrPvnkulLEmWWZPwR5K5n59ezB2fTwoHNuy/9cfpCC8iIUPijo+O+F9f45dVoPe8ykXDXkheTqo2cX16YVkeYNeoLGtyse0hVrB1Q4cmd8/jNxSMPl5K3l3iltZwLQ/4Gker2leo9CFHQVyNl58T4wuFtCOiyqrXMv3aKghkulNORQbUpkp7WpDteL1ojPigltCTnKF/tcYighj5EEIp34h3HRFqvMJINVckZ7erOvuvwfxco4iTVV0gYxeo1T9BM28APu/A1Mj3xn53JWb0Bti/G4yAeaBr1TruiLSnvx1h9fTSFULSaX/9Prcl1bQn9p0LdcYRdYNoFgTPKI1ouSeKIJSRlvUlwo1xk8Dvx8f7ve8r5krG9J5aa+zPNL5+u4uXOz8pT4XbN8hN1lt9QeEabW2mbY3QWlx11PaXiQcMbHaL59rB9p5qwJ42DckQV7x6iB8cV3Rd2027vbRJb8zu02F8iOl7zFljwgPcHmCsbUF+aXh4Ko3z4er0S0hhWFPTDXmQescEhAQc2bswSEzWUNkcUlh6X7p0OMxyU8kBLkh7HKAaYqmCbhxllVV+FbaMxmefaPWRUJKFdDLtGlwyOWK5+2bbTGOpPhEHHns3jCq/NLaWOCSgmJXLuIsjY9pdtOPe6QMWZU698a2t3v6M1l/rXRvtUm+4emQ4apkJSs9NiKbRaciVGI3PuBGQjZcDHA1+GxzB3sdE1zgM91mQWZOKsAzJTlG25YAEqAgaA09Y/NEucKK48gXqLt6hvrBzvs4g/f93z3/x3VNLwtODH5Y5Kh2HlNBEo4InzeXiIIFWw9MEliz0dALrNb+5tvlmw69/VGRZptP6Wrpllk64fS4bwa7hO63icMTFfheaHJvnVRToTs/nfhx3jDI+/LO2004vYjrwtVd/pRVG8h6L99xA8R5SCN9+vDt0jPBuDTnqRRV1FzH571+oCGap sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Add a new variant based on an existing one. Same as POST /config Args: -payload (AddVariantFromBasePayload): Payload containing base variant ID, new variant name, and parameters. + payload (AddVariantFromBasePayload): Payload containing base variant ID, new variant name, and parameters. Raises: -HTTPException: Raised if the variant could not be added or accessed. + HTTPException: Raised if the variant could not be added or accessed. Returns: -Union[AppVariantResponse, Any]: New variant details or exception. + Union[AppVariantResponse, Any]: New variant details or exception. +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - - - - -
    - - - - parameters - - object - - required - - -
    - -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
    - anyOf - - - - - - - - - - - -
    - - uri - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - created_at - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - modified_by_id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - organization_id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/add-variant-from-key.api.mdx b/docs/docs/reference/api/add-variant-from-key.api.mdx index 9a933fea78..ecf39ddad0 100644 --- a/docs/docs/reference/api/add-variant-from-key.api.mdx +++ b/docs/docs/reference/api/add-variant-from-key.api.mdx @@ -5,36 +5,36 @@ description: "Add Variant From Key Route" sidebar_label: "Add Variant From Key Route" hide_title: true hide_table_of_contents: true -api: eJylVk1z2zYQ/SucPbUzjOl6euKpsptOPGobje3motFo1sRKREICCAAmYTn875kF+CUrdtNWF4nA28Xi7dtHdeDx6CDfwsoYB7sUtCGLXmp1KyAHFGL/Ca1E5fcHq+v9B2ohBYMWa/JkObQDhTUx2Ji9FJCCVJCDQV9CCpY+NtKSgNzbhlJwRUk1Qt6Bbw1HOW+lOkIKXvqKF1bGJLcC+n4Xo8n5ay1aDnmarNDKk/K8hcZUsgiVZ++dVrw2n2Us38tLcvw03ijW/Xwl7yIu+ZNxfQp8+Rfga2oZVei6ln5fk3N4DPlRtW8PganT0D6dVlRTVcA3HpPdhCzJH0OWPoVHdDSV/F9SXqOj6S6FVgd5/F/5bkKKIWOfjjj9+J4Kf9L67SnlkclFppUQA9e/WV2vqd1gW2lkEXBiS85o5WLzri4v+UuQK6w03G/I4b4pCnLu0FTJ3QCG75dHPOXnq6vzxO+wkiKEJa+t1fZfZH0iOkEeZcW/pKfanQMqXZzsfkdLpPJ0JAv9bqYfrcV2ocrfdSyQm16740sCXogtQp6HBjKSB979p9bzveLRA263nLCR3sju89f4NdL3rcNGyJuHh81Zwtjb06auhEjG2WbBJWtqkzvdeBZNTb7U7H1GOx+8zpeQQ4bGuKyLHtdng54zNsVXnmpTYYh2ZD+NttjYCnIovTcuz7Ki0o24wCMpjxcoMzQSzgoLu8kNQ8OoOSoaK30b8q02t2tq3xAKspBvd0vAPasu6ugUNrUQjVwH8x7cetX4Ulv5dxTHYNpljGLKWM93s/2+/oK1qejcPmdtBHucH5/64LyzcLIlfGFIs9ZBqoMO1xi9InJ0jcUHUvy2Yb4jfZcXP11cPkfqEJCsNrfDEGMRhnjkI8AgfdK2qWGQAtVhgsET1r/MG8wWi6VGtcz3kshOKpxa5OmLz0yFMgxrqKMb9Ldlr3GQQj69ZYc2QAqnItylULJ08y10HVP9l636npc/NmRZSrsh+JEJ3XYgpOPfAvIDVo7OypscD364Gwb7xwTSb5c9yk21ocaq4adJHUP1wbDKUcndsHkTz3kVbGUOPnNZdsAYsSoKMv5F7G4x0pu39w+sv+HvRK0Fx1j8zJaFn2OhOtw7jFJY66BCdWyihmNO/nwFaaQndQ== +api: eJylVk2P2zYQ/SvCnFpAWW0WPelUZ5siCyeNsbvNxTCMWXFsMZFIhqSSqIL+ezGkvrzObtPWF0vkm+HwzZtnd+Dx6CDfwsoYB7sUtCGLXmp1IyAHFGL/Ba1E5fcHq+v9J2ohBYMWa/JkObQDhTUx2Ji9FJCCVJCDQV9CCpY+N9KSgNzbhlJwRUk1Qt6Bbw1HOW+lOkIKXvqKF1bGJDcC+n4Xo8n5V1q0HPI4WaGVJ+V5C42pZBEqzz46rXhtPstYvpeX5PhtvFGs++lKPkRc8gfj+hT48s/A19QyqtB1Lf2+JufwGPKjat8fAlOnoX06raimqoBvPCa7DlmSd0OWPoUHdDSV/F9SvkJH010KrQ7y+L/yXYcUQ8Y+HXH64SMV/qT121PKI5OLTCshBq5/t7peU7vBttLIIuDElpzRysXmXV1e8pcgV1hpuN+Qw11TFOTcoamS2wEMPy6PeMovV1fniT9gJUUIS15bq+2/yPpIdII8yoqfpKfanQMqXZzs/kBLpPJ0JAv9bqYfrcV2ocq3OhbITa/d8TkBL8QWIU9DAxnJPe/+U+v5XvHoAbdbTthIb2T36Wv8Fun73mEj5M39/eYsYeztaVNXQiTjbLPgkjW1ya1uPIumJl9q9j6jnQ9e50vIIUNjXNZFj+uzQc8Zm+ILT7WpMEQ7sl9GW2xsBTmU3huXZ1lR6UZc4JGUxwuUGRoZpslR0Vjp2xCy2tysqX1DKMhCvt0tAXcsrCiVU9jUJTRyHfx5MORV40tt5V+x/4MvlzGKWWHJ3s4O+/ob1qaic4ec2x8ccH59bHXzzsKslvCF58xyBqkOOlxjtINAUrLa3EAKTGds2+XFy4tLOGvmEsyziUWYzZGDsA3po25MfYAUqA6DCZ6w/nXeYIZYAzWqZb7ntHNS2dQWT998ZiqUYQZDHd0gqy1biIMU8unHc6AeUjjV1i6FkhWZb6HrmN4/bdX3vPy5Icvy2Q3BD0zitgMhHT8LyA9YOTorbzIy+Ol2mNefE0i/X/YoMdWGGquG3yZFDNUHHypH9XbD5nU850Vwizn4zDzZ2GLEqijI+Gexu8Wkbt7f3bPmhn8JtRYcY/ErOxF+jYXqcO8wPmGtgwrVsYm6jTn58zcXChjm sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Add Variant From Key Route @@ -43,347 +43,29 @@ Add Variant From Key Route as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - - - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - base_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - config_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/add-variant-from-url.api.mdx b/docs/docs/reference/api/add-variant-from-url.api.mdx index 1949d6d4d5..32a9ec7766 100644 --- a/docs/docs/reference/api/add-variant-from-url.api.mdx +++ b/docs/docs/reference/api/add-variant-from-url.api.mdx @@ -5,36 +5,36 @@ description: "Add Variant From Url Route" sidebar_label: "Add Variant From Url Route" hide_title: true hide_table_of_contents: true -api: eJylVk1v2zgQ/SvCnLqAGmWDPelUJ9tFg3Zbw0l6MQxjIo4tthLJklRbV9B/L4bUl+MmbXd9sUW+Gc68eXxyCx73DvI1LIxxsElBG7LopVbXAnJAIbaf0UpUfruzut42toIUDFqsyZPl0BYU1sRgY7ZSQApSQQ4GfQkpWPrUSEsCcm8bSsEVJdUIeQv+YDjKeSvVHlLw0le8sDAmuRbQdZsYTc5fanHgkIfJCq08Kc9baEwli1B59sFpxWvTWcZyX16S46eho1j345W8j7jkLeO6FLj5J+B3tmJUoeta+m1NzuE+5Ed1eLcLTB2Hdum4opqqAu54SHYVsiT/9lm6FO7R0Vjyf0l5iY7GXgqtdnL/v/JdhRR9xi4dcPr+AxX+aPTrY8ojk7NMCyF6rv+xur5bvVniodLIIuDElpzRysXhXZyf85cgV1hpeN6Qw01TFOTcrqmSVQ+GX5dHPOWvi4vTxO+xkiKEJS+t1fY3sj4QnSCPMuhHeqrdKaDSxdHuL4xEKk97stBtJvrRWjzMVPlGxwJ56LXbPyXgmdgi5HFoICO55d2fjZ77ikf3uM38hg30RnYfb+PvSN+PDhsgr25vlycJ42yPh7oQIhnuNgsuubNVstKNZ9HU5EvN3me088HrfAk5ZGiMy9rocV3W6zljU3zuyH6WBQfzr8EVg1tA6b1xeZYVlW7EGe5JeTxDmaGRcFJX2E2uGBpumqOisdIfQr7F8vo1HV4RCrKQrzdzwA2LLsroGDZOEI18TUxob9aLxpfaym9RG71nlzGKGWM5ryb3ffkVa1PRqXtO0oj9jo8PbXDamRnZHD7zo0nqINVOhzYGq4gcXWLxkRS/bJjvSN/52Z9n54+R2gcki+V1f4exCHd44CPAxjaGsY0DgxSoDhcYPGH9YtpgtlgrNap5vqc0dlThOCJPX31mKpRq9rKJ8luz1ThIIR9fsv0YIIUjDW5SKFm4+Rralpm+s1XX8fKnhiwradPH3jOf6xaEdPxbQL7DytFJdaPfwbNVf63/SCD9cdWD2tQhlFg1/AQpfKTD9A8h2FU5CLntN6/iOc+DqUzBJx7L/hcjFkVBxj+J3cwu9PLdzS3Lr/8zUWvBMRa/sGHhl1ioDn2HmxTWWqhQ7Zso4ZiTP98B3TMmrw== +api: eJylVk2P2zYQ/SvCnFpAWW0XPelUZ5sgi6SN4d3NxTCMWXFsMZVIhqSSqIL+ezGkvrzObtPUF1vkm+HMm8cnd+Dx6CDfwsoYB7sUtCGLXmp1IyAHFGL/Ga1E5fcHq+t9YytIwaDFmjxZDu1AYU0MNmYvBaQgFeRg0JeQgqVPjbQkIPe2oRRcUVKNkHfgW8NRzlupjpCCl77ihZUxyY2Avt/FaHL+pRYthzxOVmjlSXneQmMqWYTKs49OK16bzzKW+/KSHD+NHcW6n67kQ8QlfzKuT4GbfwZ+bytGFbqupd/X5BweQ35U7ftDYOo0tE+nFdVUFXDHY7LrkCX5Y8jSp/CAjqaSfyTlS3Q09VJodZDH/5XvOqQYMvbpiNMPH6nwJ6PfnlIemVxkWgkxcP3a6vp+826NbaWRRcCJLTmjlYvDu7q85C9BrrDS8Lwhh9umKMi5Q1MlmwEM3y+PeMqvV1fniT9gJUUIS15Zq+1/yPpIdII8yqAf6al254BKFye73zESqTwdyUK/m+lHa7FdqPKdjgXy0Gt3fE7AC7FFyNPQQEZyx7v/NnruKx494HbLGzbSG9l9uo3fI33fOmyEvLm7W58ljLM9HepKiGS82yy45N5WyUY3nkVTky81e5/Rzgev8yXkkKExLuuix/XZoOeMTfGFI/tZFhzMv0ZXDG4BpffG5VlWVLoRF3gk5fECZYZGhsvkqGis9G0IWa1v3lL7hlCQhXy7WwJuWVdRKaewaUho5FtizgY/XjW+1Fb+Hcc/2HIZo5gUVuxmNthXX7E2FZ0b5Dz92NL0+Njp5p2FVy3hC8uZ1QxSHXRoY3SDQFKyWt9ACkxnnNrlxS8Xl3A2yyWYryYW4WqOHITtqfRxGtMcIAWqw70ET1j/Nm8wQyyBGtUy33PSOalsGounrz4zFUq1eIdEVW3ZQRykkE/vzoF6SOFEWrsUStZjvoWuY3bvbdX3vPypIcvq2Q2xD8zhtgMhHf8WkB+wcnRW3WRj8NNmuK0/J5B+u+pRYaoNJVYNP0EKf1E7v/iDC5WjeLth8zqe8yJ4xRx8Zp1sazFiVRRk/LPY3eKert/f3rHkhv8ItRYcY/EL+xB+iYXq0He4PWGtgwrVsYmyjTn58w+qdxgg sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Add Variant From Url Route @@ -43,347 +43,29 @@ Add Variant From Url Route as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - - - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - base_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - config_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/admin-cancel-subscription.api.mdx b/docs/docs/reference/api/admin-cancel-subscription.api.mdx index edc3d48fa3..065d52e7f1 100644 --- a/docs/docs/reference/api/admin-cancel-subscription.api.mdx +++ b/docs/docs/reference/api/admin-cancel-subscription.api.mdx @@ -5,36 +5,36 @@ description: "Cancel Subscription Admin Route" sidebar_label: "Cancel Subscription Admin Route" hide_title: true hide_table_of_contents: true -api: eJyVVMtu2zAQ/BVhTy1AWG7Qk0510wIx0iJGnPZiGMGaWttMKFIhqaCuwX8vlpRfcdKiJwnk7HA4u8MtBFx5qGYwqhtlQMBnpbUyK5gLsC05DMqacQ0VIAPuJRpJ+t53Cy+dankXBLTosKFAjqm2YLAhqMC6FRr1O1HcqxoEKAMVPHXkNiDA0VOnHNVQBdeRAC/X1CBUWwiblut9cKxEQFBB88LNEWExriHGOdP41hpPnisvhkP+1HRQV8G0k5K8X3a6uO3BIEBaE8gEhmPbaiUTbfnguWZ7UBNjjAI+XlycE/9Ereqs5qtz1v0HK7SO7Q0q664poNL8pwI1/hygrTzZRbO5WSazT82KYr+iTKAVOYjzKHZr6Bxujhz9ZrNAiAIav/qb+d/Je1wR7MnehiYzijvejYez7eKBZDhp/CzdKx/d4+YHmoO92d23r/El2/faYTvI1d3d5Iww9/a0qZdpwovp0YQXKRzFre0CT05DYW05Eq31IU1/WEMFZUpIucgBKo8jUubYgABP7nkXk85pqGAdQuurspTadvUAV2QCDlCV2Cp4qW2UdotLhgIPvyfZORU2iW80GV/T5oqwJgfVbH4MmPLg5VE6he27iK26Jja1T++oC2vr+rTtsrvOVeyaMkubynuDe22fUT6S4bDzPbPs4eDDYPjWZfqCYjQZ9/lBmfKz05FgIF7YtTcKBFCTwgOBsPl02GCV3KIGzRHfv/t7InPvT6BfoWw1qhSWJGbbt36WH0cQ0DefG336QvYDMBew5qGpZrDdLtDTD6dj5OX8KnIba+VxoTkeS9SezvTsnxh4d9sn6X0B4nWdj7R59SV+Rt0xOk3RMzrFR6ahEbsms5ZcPpKS2nBUdfa0Mcs+FpOb6R3E+Ae6Ji4p +api: eJyVVMtu2zAQ/BVhTy1AWG7Qk051H0CMtIgRu70YRrCm1jZTilRIKqhr6N+LJWVbipMWPUkgd4fD2RkeIODWQ7GESVkpAwI+Kq2V2cJKgK3JYVDWTEsoALngXqKRpO99s/bSqZp3QUCNDisK5BjqAAYrggKs26JRvyPEvSpBgDJQwGNDbg8CHD02ylEJRXANCfByRxVCcYCwr7nfB8dMBAQVNC/c9gCzaQltu2IYX1vjyXPn1XjMn5LO7AqYN1KS95tGZ3ddMQiQ1gQygcuxrrWSETZ/8NxzOLNp27YV8P7q6hL4B2pVJjZfnLPuP1ChdixvUIl3SQGV5j8VqPKXBdrKwS6a/e0mij0UqxWnFWUCbclBu2rFcQ2dw31P0a82EYRWQOW3fxP/G3mPW4IT2OulUYxswbvt+Wy7fiAZBoNfxnulo7u61RnmLG9S9/VrfE7yvXTYseR6sZhdAKbZDof6KTo8m/ccnsVwZHe2CeycisLOciRq60N0f9hBAXlMSL5OAcr7EclTbECAJ/d0jEnjNBSwC6H2RZ5LbZtyhFsyAUeocqwVsL89ycapsI8tk9n0hvbXhCU5KJarfsGcvZXcMiw7DQprdUOsWxfQSRN21nWBOsZzl7pYGGU2NrZ3Gk4iuWwym4IAvkZSbDx6NxrDcx0HxRwLlDEWx7PjNohnKpzuDwKoipmAQFh9OG8wM1a+QtPD+/fYBvROmgT6FfJao4oZiGQO3USX6c0DAd1MeX7Dh6+b60rAjr1QLOFwWKOn7063LS+nx45HVyqPa82u36D2dMHn9HLAm7suIG8zEC/z/En7Fx/YJ9QNV0fnPKFTfGQ0ijgOlrmk9omUVIde18WLxSgnt89u5wto2z/tnx+a sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Cancel Subscription Admin Route @@ -43,254 +43,29 @@ Cancel Subscription Admin Route as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/admin-create-checkout.api.mdx b/docs/docs/reference/api/admin-create-checkout.api.mdx index aebd498ffc..e786824d6d 100644 --- a/docs/docs/reference/api/admin-create-checkout.api.mdx +++ b/docs/docs/reference/api/admin-create-checkout.api.mdx @@ -5,36 +5,36 @@ description: "Create Checkout Admin Route" sidebar_label: "Create Checkout Admin Route" hide_title: true hide_table_of_contents: true -api: eJy1VU1v2zAM/SsGTxsg1Fmxk0/LugEttqFBP3YJgoCx2VirLGmSXCwL/N8HSnbiNG2BbegpscSPx0fyaQsB1x6KOUyrRmoQ8FEqJfUaFgKMJYdBGn1RQQHIBsvSEQZaljWV96YNIMCiw4YCOQ6zBY0NQQHGrVHL39F9KSsQIDUU8LMltwEBjn620lEFRXAtCfBlTQ1CsYWwsezvg2MUAoIMig8uRwGziwq6TuySWYX63zOQbhtmoFSmrZYPk2VtVisOsTuwzow/67ZBLcNmqXDlxxe/jk5wTTrgEiXzOZQyY7hj/L4tS/J+2Tr1/0Rdp2DZrVPQdQsO4a3Rnjx7nU4m/FORL520TObe5a5V2VVvzEUYHUgHNkdrlSwj9/kPzz7bPZKu6zoB709PjwN/RyWr1LLPzhn3F1HBOp6/IBPuigJKxf9koMYfGyhTHtyi3lzexYk8JIpp70+kDrQmB92iE8MZOoebEZtfTQIInYDGr18i/ht5j2uCXbDnTSMZ2Q3fdvvcZvWDynDQ9HmsK6Xu7UaDtKc3sft8GZ8SfU8lG0zOb25mRwFTbw+behYlIDvrJSCLypFdmTbw1DQUasN6YY1P8hBqKCCP8pGvkrrkzIilfJARn4MAT+5hUBHehALqEKwv8jyu00napROUOVoJj1FN4212xqbAY++pbJ0MmxhvOrv4QptzwoocFPPF2OCaRy4N0aHZrn9o5RdiOvt9nbahNq4Xo2Fj6+TFfEl9Z6J7T22P7SOW96RZC7nOBHty8u5k8lwxvUM2nV30m4Nl3JwBRzQD8YiuHVEsbk1cGwiEzYf9BaPkBjWoR/Fe7uwBxB03gX6F3CqUcUUikG3f9Hl6M0BA33Zucmw8VzO0HgTwTNc8LsUcttsVerp1quv4OOkgt7CSHleKl+IOlacjPDthgTdX/f68zUA8jfOeNk8+Ug+oWraOMvEKGfuX6rXTHD4o+2wL/nCS08UtEMPUMsHJdVqWZMPI60ilOcpuy2eX1zfQdX8AZkzTOQ== +api: eJy1VV1v0zAU/SvRfQLJWsrEU54oHxIToFXb4KWqqtvkrjE4tmc700qV/46unbQJ3SYB4qmNfT/PPfd4DwG3HoolzKtGahDwViol9RZWAowlh0EafVFBAcgG69IRBlqXNZU/TBtAgEWHDQVyHGYPGhuCAozbopY/o/taViBAaijgriW3AwGO7lrpqIIiuJYE+LKmBqHYQ9hZ9vfBcRUCggyKDy5HAbOLCrpOHJJZhfrvM5BuG0agVKat1vezdW02Gw5xOLDOjD83rZeavB+f1W2DWobdWuFmcvFwcoJb0gHXKBnjob0FtzDuybdlSd6vW6f+HbzrFCz76hR03YpDeGu0J89e57MZ/1TkSyctA3x0uW1VdtUbcxNGB9KBzdFaJcs4j/y7Z5/9sZKu6zoBr8/PTwN/QyWrNMYPzhn3B1HBOuZkkKnuigJKxf9koMafGihTTm5R7y5vI0unQDHs/YnUgbbkoFt1YjhD53A3QvOzSQVCJ6Dx2+eA/0Le45bgEOxp0whGdsO33TG32XynMkyGvox9pdS93YhIR3gTuk+38T7B91iyweTjzc3iJGCa7XSo76IsZO96WciimmRXpg3MmoZCbVhDrPFJMkINBeRRUvJNUpycEbGUD9LicxDgyd0PysKbUEAdgvVFnsd1Oku7dIYyRyuBme2pbJ0Mu+gyX1x8ot1HwoocFMvV2OCaWZV4MjU7jAit/ESMWL+S8zbUxvUaNCxlnbwYEqlvTXTv0ZvH4rL54gIEcBsJq9nZq7MZ/I7gxJgXAsu4EEPueA3iNxQO/bOONXEbIBA2b44XXBnj3qAexXt+YJPSDngEegi5VSgj82Mh+36Wy/Q8gIB+mjy7OE/uZpgoCGCq1syCYgn7/QY9fXWq6/g4yRuPrZIeN4q5fovK00k9B72AF1f9WrzMQDxe5w/aPfoe3aNq2Tpu/3/I2D9K/zvN9J04Zlvxh5OcLjJfDExlgJPrvCzJhpHXifhylMPyLi6vb6DrfgGvJ8wB sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Create Checkout Admin Route @@ -43,282 +43,29 @@ Create Checkout Admin Route as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/admin-create-portal.api.mdx b/docs/docs/reference/api/admin-create-portal.api.mdx index bf8be2b30c..6a7fd47816 100644 --- a/docs/docs/reference/api/admin-create-portal.api.mdx +++ b/docs/docs/reference/api/admin-create-portal.api.mdx @@ -5,36 +5,36 @@ description: "Create Portal Admin Route" sidebar_label: "Create Portal Admin Route" hide_title: true hide_table_of_contents: true -api: eJyVVF1rGzEQ/CvHPrUgfG7o0z3VTQsxaYlJ3L4YE9a6ta1Ed1IkXahr9N/LSuevOAn06Q5pdjWa2dEWAq48VDMY1Y1qQcBXpbVqVzAXYCw5DMq04xoqQAbcS0cY6N4aF1CDAIsOGwrkuMkWWmwIKjBuha36m4rvVQ0CVAsVPHXkNiDA0VOnHNVQBdeRAC/X1CBUWwgby/U+OOYgIKigeeHmqGExriHGObfx1rSePFdeDIf8qclLpyzjoIK7Tkryftnp4rYHgwBp2kBtYDhaq5VMbcsHzzXbA5sYYxTw+eLivPFv1KrObL47Z9x/dAXrWNigMu+aAirNfypQ488B2siTXWw3N8sk9qlYUexXVBtoRQ7iPIrdGjqHmyNFf5hMEKKAxq/eE/8neY8rgn2zt6FJjGLKu/Fwtlk8kAwnxs/SvfLRPW5+aHOQN6v79jW+ZfleO2wHuZpOJ2cNs7enpl6m2S4mabaLFIji1nSBZ6ahsDYcA2t8SHMf1lBBmVJRLnJoStbDUpnT4UsQ4Mk978LROQ0VrEOwvipLqU1XD3BFbcABqhKtgpeMRmm3uGQo8Mh7kp1TYZP6jSbja9pcEdbkoJrNjwF3PG55gE5he+/QqmtiKfvMjrqwNq7P2C6x61zFWql2aVJ5L2vP7SvKR2o54nzPTHs4+DQYvnWZvqAYTcZ9alCm1Ox4JBiIF3LthQIB1KTIQCBsvhw2mCXb02B71O89V08I7pUJ9CeUVqNK4Ug0tr3hs/wMgoDecrY4mc4zkW0HATzLax6Uagbb7QI9/XI6Rl7ObyDbVyuPC81hWKL2dMZm/6DAh9s+Nx8LEK+zfKTNq+/uM+qO0Wl6ntEpPjINi9iZy1xy+UhKsuGo6uwh4y77KExu7qYQ4z/fhSNb +api: eJyVVEtv2zAM/isGTxsgxFmxk0/LHkCDbmjQZrsEQcDYTKJOtlSJLpYF/u8DJefVtAV2siGR1KfvoR0wrgMUMxhVtW5AwWdtjG7WMFdgHXlkbZtxBQWgFCxKT8i0cNYzGlDg0GNNTF6G7KDBmqAA69fY6L+xeaErUKAbKOCxJb8FBZ4eW+2pgoJ9SwpCuaEaodgBb530B/aCQQFrNrJwezIwG1fQdXMZE5xtAgXpvBoO5VNRKL12UgcF3LdlSSGsWpPd9cWgoLQNU8NSjs4ZXcax+UOQnt0RTdd1nYKPV1eXg3+h0VVC88176/9jKjgvxLJOuCti1Eb+NFMdLguMLc92sdneriLZ52R16rCiG6Y1eejmndqvofe4PWH0u00AoVNQh/Vb5P+gEHBNcBj2emkkI5vKbnc82y4fqOQz4WfxXunovm5+HHOkN7H7+jW+JvpeOmxfcj2dTi4GJm3PRf0SvZ1NorezGIjszrYsnqmJN1Zi4Gzg6HveQAF5TEW+TKHJhQ9HeUpHyEFBIP+0D0frDRSwYXahyPPS2LYa4JoaxgHqHJ0GcXWgsvWat7FlNBnf0PaasCIPxWx+WnAvjkoeOS87yINO35Cw1cdy1PLG+j5G+1BuUpfQoZuVje09c6MILhtNxqBArpF4Gg4+DIbwnL2zYgkDljEM+7PjNqhnLBzuDwqojkkAJqw/HTcEmbBeY3My7y2xzoAd2GD6w7kzqKPnI4xdr+MsvW6goFdSlItaitRJTVAgFt2I/sUMdrslBvrpTdfJcnraRLJKB1wa8fgKTaALNId3At7d9XF4n4F6GeVv2r74nD6haaU6OuYJvZYjo0HUXlDBktpHZUmOT7ou3ieZcnD45PZ+Cl33D53uFMw= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Create Portal Admin Route @@ -43,254 +43,29 @@ Create Portal Admin Route as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/admin-report-usage.api.mdx b/docs/docs/reference/api/admin-report-usage.api.mdx index 6863ec0003..8d1f6b5339 100644 --- a/docs/docs/reference/api/admin-report-usage.api.mdx +++ b/docs/docs/reference/api/admin-report-usage.api.mdx @@ -5,72 +5,59 @@ description: "Report Usage" sidebar_label: "Report Usage" hide_title: true hide_table_of_contents: true -api: eJx1kkFvnDAQhf/K6p2tZdsjp5Jeusqhq2xzQiiaNZPFDRjXNqtSxH+vxpBNslK4IPCb8TfvzYRI54C8RFF3xkLhzrStsWdUCr1jT9H0dl8jB4ngybPrfXwaAp0ZCp6D623ggHzC191OXjUH7Y2TQuQ4DlpzCM9Du3lYxVDQvY1so8jJudbodE/2O0jNhKAb7gj5NMujblo+JIbN48rQcWx6IXR9iFBwFBvkyBJwdlrmyRJxtuBDIbC/sJfJJwy+RY4mRhfyLNNtP9RbOrONtCWTkTO4JSjS6ea7SDFX0k4P3sQx9SsO+3sefzDV7JGX1XvBUSZb7PoomxBHx+KzM/c8QsFSJ9/FEJvem3/JISgYAWiWKvHG2Oc+lZvY8hvbHekXtjUUZM4Fe7f9st19NsxasCkO+zUg0imgV44kg7qx62oUFLgjI2eRqfv2diCUkk1H9l2/mxQ/MF3NiPw3Zq4lYzGvN09rwOWykVBYIxa061qmmCuFRnYiLzFNJwr86Nt5lt9/BvYSVqVwIW/oJNaV1axenZUcX3iUubVmJytzoXZYArpZWMn3uoSHn8dfmOf/GkgjyA== +api: eJxdUk2PmzAQ/SvRO1sh7ZFT01OjPTTadE8IrSbObHALtmubqBTx36sxbLqBCwK/53kfMyLRNaKssL90xkLhq2lbY6+oFZznQMk4e7igBAngNbB3Ib32ka4MhcDROxs5ohzxebeT14WjDsYLESVOvdYc41vfbp4XMBS0s4ltEjh53xqd5xQ/o3BGRN1wRyjHSR61uvI5a9i8LBo6To0Thd7FBAVPqUGJIgsuzrOfIisuZvlQiBxuHMT5iD60KNGk5GNZFLp1/WVLV7aJtmQK8gZTLQzdB5OGTNkfD088fGO6cEBZ1R8BJxE/J/IIG5EGzxKlN088QMFSJ9/7PjUumL85BCgYcdnMLLFv7JvLdJPajM/iNvvjAQpiY85lt/203WGd1gNYciedc3+fnY+hVinc/UOBOzJylpi6L/8PRJlE3pH9cN+qnAct9wAS/0mFb8lYTMvkcemtmhcNCktzIu2+bbm9WqGRqssK43imyC+hnSb5/bvnIAXVCjcKhs4SV1VP6j1N6e4XD+Jba/ayCTdq+7mU1R5Kp/fdOn4//cA0/QMXMBU5 sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Report Usage -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/admin-switch-plans.api.mdx b/docs/docs/reference/api/admin-switch-plans.api.mdx index 3c52fe7f2d..88b6454739 100644 --- a/docs/docs/reference/api/admin-switch-plans.api.mdx +++ b/docs/docs/reference/api/admin-switch-plans.api.mdx @@ -5,36 +5,36 @@ description: "Switch Plans Admin Route" sidebar_label: "Switch Plans Admin Route" hide_title: true hide_table_of_contents: true -api: eJy1VU1v2zAM/SsGTxsgxFmxk09LtwENuqFBm+0SBAFjs7FaWXIluasX6L8PlB0nadoCG7CTbYkfj+R79BY8bhxkC5gUldQg4FwqJfUGlgJMTRa9NHpaQAbIBiv3S/q8XNUKtQMBNVqsyJPlGFvQWBFkYOwGtfwdfVeyAAFSQwYPDdkWBFh6aKSlAjJvGxLg8pIqhGwLvq3Z33nLEAR46RUfXB0ETKYFhCCGZAzl3zOQbiouP1emKVaP41Vp1msOMRzU1hx+lk2FWvp2pXDtDi+eTk5wQ9rjCiU3c1fKjOGGsGSQrjbakWNcZ+MxPwpyuZU11wkZ3DR5Ts7dNiq57o05vtGetGdzrGsl89iW9M6xz3ZfawghCPh4dnYa+CcqWXTd/GqtsX8RFWrLvPCyw12QR6n4TXqq3KmBMvnRLer26jaS5XgUPNH+RGpPG7IQlkHsztBabA8Y8c10ACEIqNzmLfJ8J+dwQzAEe900NiOZ823Y5zbrO8r9Ea0Wsa4udW93MON9e7vuvl7Gl659LyXbmVzM57OTgN1sn7ElSjNhgrkkyjm5No1nylTkS8Miro3zUba+hAzSqOl03Uk+jaJOO4WDAEf2cSfsxirIoPS+dlmaRoaPOnqPUKZYS3iOZhJvk89sCkx3R3ljpW9jvMlsekntBWFBFrLF8tDghqnWkefYbJgb1vKSuI39Cpg0vjS23w+7XVB2XtwnqW9NdO9b2mM7x/yeNK8nrrODPR59GI1fK6Z3SCazaa8YzKNidjiiGYhn7RoaxfuminIBT1h92l8wSp5Nhfog3hsTPcI3NMbTk+cxyqiLiGLbD3vRLXAQ0I+badBv8X7kSwEl8yNbwHa7Rkc/rAqBj7u9yoMrpMO1YgnconJ0AmRYI/DuulfL+wTEywDvqX3xb/GIqmHruBT+Q8b+l7FPs+QPKzlPZKPYsYdL7nwmeU61P/A62ZIcZRDa7OpmDiH8Aa0BhEs= +api: eJy1VU1v00AQ/SvRnEBaxaHi5BNBIDUqqFEbuERRNLan8Zb1rru7LpjI/x3NruM4TVsJJE5JZufzzXuTPXjcOUjXMC8qqUHAR6mU1DvYCDA1WfTS6EUBKSA7bN1P6fNyWyvUDgTUaLEiT5Zz7EFjRZCCsTvU8neI3coCBEgNKTw0ZFsQYOmhkZYKSL1tSIDLS6oQ0j34tuZ45y23IMBLr9hwPUo4WRTQdWIoxq38ewXSTcXj58o0xfZxti1NlnGKwVBbM/6ZNU5qcm5sK5sKtfTtVmF28vDrzII70h63KBngw3hLHqHrNty4q4125LjXi9mMPwpyuZU1zw4p3DZ5Ts7dNWpy0ztzfqM9ac/uWNdK5gGq5N5xzP44f9d1nYD3Fxfnib+jkkVE+LO1xv5FVqgtc8XL2HdBHqXib9JT5c4dlMlPXlG313eBQKfr4S33Fqk97chCt+nEwYbWYjtiyRcTG4ROQOV2rxHqKzmHO4Ih2cuuAYzJil+7Y22T3VPuT6i2DnPF0r3faMdHeCO6L4/xKcL3XLGDy+VqtTxLGHf7hC1BrhMmmJsEiU9uTOOZMhX50rCwa+N8kLIvIYUk6DzJ4hlIgtCTqHoQ4Mg+HsTeWAUplN7XLk2SwPBppPcUZYK1BGa0o7yx0rchZL5cXFF7SViQhXS9GTvcMpsiP07dhtVgLa+IkeqVP298aWx/Fg4noIxRDIXUdyaE96jNQ3OT+XIBAniMiNFs+m46g6fInTizEDAPQjjUDs8gnqAwzM+npQoqAE9YfTg+cGcMeYV6lO+VRZ30NYDh6Zfn7chA99DFvt/hOt5qENBvkbfbH+x+kxsBJa89XcN+n6Gjb1Z1HZvjCeVlFdJhppjZd6gcnTUyXAd4c9OL4O0ExPMN/qD22T+GR1QNewet/4eK/b/DscyGf1jJdQIDxYExPHKMmec51X4UdXb8OMugn+X17Qq67g9LL30T sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Switch Plans Admin Route @@ -43,273 +43,29 @@ Switch Plans Admin Route as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/agenta-api.info.mdx b/docs/docs/reference/api/agenta-api.info.mdx new file mode 100644 index 0000000000..7ebb8f7847 --- /dev/null +++ b/docs/docs/reference/api/agenta-api.info.mdx @@ -0,0 +1,95 @@ +--- +id: agenta-api +title: "Agenta API" +description: "Agenta API" +sidebar_label: Introduction +sidebar_position: 0 +hide_title: true +custom_edit_url: null +--- + +import ApiLogo from "@theme/ApiLogo"; +import Heading from "@theme/Heading"; +import SchemaTabs from "@theme/SchemaTabs"; +import TabItem from "@theme/TabItem"; +import Export from "@theme/ApiExplorer/Export"; + + + + + + + + + + + + + +Agenta API + +
+ + + + + + + +
+ + + + + + + + +
+ Security Scheme Type: + + apiKey +
+ Header parameter name: + + Authorization +
+
+
+
+
+

+ Contact +

+ Agenta: [team@agenta.ai](mailto:team@agenta.ai) + + URL: [https://agenta.ai](https://agenta.ai) + +
+ \ No newline at end of file diff --git a/docs/docs/reference/api/agenta-backend.info.mdx b/docs/docs/reference/api/agenta-backend.info.mdx deleted file mode 100644 index d2ad3ad8d7..0000000000 --- a/docs/docs/reference/api/agenta-backend.info.mdx +++ /dev/null @@ -1,73 +0,0 @@ ---- -id: agenta-backend -title: "Agenta Backend" -description: "Agenta Backend API" -sidebar_label: Introduction -sidebar_position: 0 -hide_title: true -custom_edit_url: null ---- - -import ApiLogo from "@theme/ApiLogo"; -import Heading from "@theme/Heading"; -import SchemaTabs from "@theme/SchemaTabs"; -import TabItem from "@theme/TabItem"; -import Export from "@theme/ApiExplorer/Export"; - - - - - - - -Agenta Backend API - -
- - - -
- - - - - - - - - - - -
Security Scheme Type:apiKey
Header parameter name:Authorization
-
-
-
-
-
-

Contact

- Agenta: [team@agenta.ai](mailto:team@agenta.ai) - URL: [https://agenta.ai](mailto:https://agenta.ai) -
diff --git a/docs/docs/reference/api/apps.tag.mdx b/docs/docs/reference/api/apps.tag.mdx index a11d2d7c56..80bc87791b 100644 --- a/docs/docs/reference/api/apps.tag.mdx +++ b/docs/docs/reference/api/apps.tag.mdx @@ -5,9 +5,16 @@ description: "Apps" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-evaluator-revision.api.mdx b/docs/docs/reference/api/archive-evaluator-revision.api.mdx new file mode 100644 index 0000000000..3e59a50051 --- /dev/null +++ b/docs/docs/reference/api/archive-evaluator-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-evaluator-revision +title: "Archive Evaluator Revision" +description: "Archive Evaluator Revision" +sidebar_label: "Archive Evaluator Revision" +hide_title: true +hide_table_of_contents: true +api: eJzNWduO2kgQ/RVUT4nkDLOjffLTsjOJZjbZDJrbPiA0KuwCOrHdTl/IEuR/X/UNMAYWGJB4GgZXneo6Vd1dPsxA4UhC3IOPE8w0Ki4k9CPgJQlUjBd3KcSAIhmzCb1SsHkVNGGS8QIiKFFgToqEgZlBgTlBDE3TV5ZCBKyAGEpUY4hA0A/NBKUQK6EpApmMKUeIZ6CmpQGRSrBiBBEMuchRQQxaWxTFVGYM5otuPfgorbsUqqpvwGXJC0nS4F1dXpo/KclEsNLkBTE86iQhKYc6az14Y4gg4YWiQhlzLMuMJZaG9jdpfGZLayyFIUkxFyHh2jn5pbNC0YjE0lqvrUUEKQ1RZwriyypaQ5MNXEzvh5bNepCF9QQFw0IZTmv224mrorlFobMMDE9NKl8ctmUygp9cfB9m/OcJQv7joVciLrI8RXYrWZ0gGxfh+HTVWUKh2BCTYwboeMgQQasxF0cDd2hVBCkq2hHVmH5QLKet0DcGsIogJylxtBV7G8zf3r2KYJjZU3HzTmTyNdFS8XxtsAHnGWGxNdqdbF07hCoycPOufwvivM096FjnWLwF8NYCVFUUjPjgGyVq3RH8yXLWxLOFUVhfBaYpM+cqZt0arzvULZystUj5oP7NcnrrY0HCRKIzFO8+6Sz7S/Liw71WpVbvYTVZA8IU5Tt6oRA43Ursii806N3epgqtR6NFz4nUr/wLk+p/ad2UZMN9P46eXCv6YeSw4+Ar2mOnPjQcBnWzBFFFkAhCRekrqqMeg9cOttWxZOkyPUWQZwfrg6SU0QmC3DhYHyTQNZge8a4LZP059bdd4OuoUQJb8yiBsKNGCXTNo0xINEfJ3dv1xbtXEchMjw6FeTS+5h46WqKeQ1y9Tep38/Gy14IdivIsmEPIDkfIDMKYMLXvVvud9Kei5PwaYsts8kBDElQktdMmLLS/141y68tQhdfUXStyRnfyWQ46e9Tg0RNvJkosS1bsOgCtUrzPtBUC2cKbS/zg7nfeVV0xOdf57Sx7ZbNzd0GpKRSJCUtoF3ad8rRHD3royipFQzbSTic7RazrWoCdXsKCDHaD9iWh8S62D8Zb/eeiWlUZv9+vrpoa3AtmLLX5tT4KwcXhAlxKCpm9bH1XrhpkPKk93WdXLd0VrpEXaX/hCYbBPpejderlGoHBmWw2tWS0nszTdZwvlNOezcuF9nY1ySjQ69jdnMaNo29bgW+fnroNQFfbelE7Ti5uNdVZsFrAmBtRueRSWflYjSGGdmkEUPrZnusgsh0kUdmerZWTq7YXpsFt+SBB26ELxkqVMm63k4zr9AJHVCi8QNbGktldJinRgqmpdel07z7T1F3yEPf6ywb22nE9VDeblw9L9pkMm178dloX++Uaw4vebpCzDLNiyK170Mbs4lqd7h0sDe9wefHbxSU02F02NpsFE7tZQmz7GKIVFub5QwSU250CijD/Y/HArMwUxUtGAW9bMVfejT0div5V7TJDViyNwK7OPfB1hiWdV9qO9rWGCOJNPx6EcvcjGJvuiXswmw1Q0rPIqsp8/UOTMBXtewF2YPjtzSBl0nxOIR5iJqmx8vmhA+8e/N5631rcXvWMQtULU3KzVPMfRPCdpht/+bBHyDj018zbdpKESrWE0jjxTCPOt0z3/vEJquo/GhLXQw== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Evaluator Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-evaluator-variant.api.mdx b/docs/docs/reference/api/archive-evaluator-variant.api.mdx new file mode 100644 index 0000000000..16be9417a2 --- /dev/null +++ b/docs/docs/reference/api/archive-evaluator-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-evaluator-variant +title: "Archive Evaluator Variant" +description: "Archive Evaluator Variant" +sidebar_label: "Archive Evaluator Variant" +hide_title: true +hide_table_of_contents: true +api: eJzNV01v20YQ/SvCnBJgY6lGTzxVtRNYTVoLsZIeBEEYkSNxkyWX2Q+5isD/XuxySYmipNqOAvTkD868N/NmdndmCwZXGqIpvF2jsGik0jBjIAtSaLjMRwlEgCpO+ZrmVNvM16g45gYYFKgwI0PKoWwhx4wggo7lnCfAgOcQQYEmBQaKvlmuKIHIKEsMdJxShhBtwWwKh6GN4vkKGCylytBABNZ6FMONcAZNyL3PFUlvlEBZzhy2LmSuSTu468HA/UhIx4oXLimI4MHGMWm9tKL3MRgDg1jmhnLjzLEoBI+9Bv0v2vls90IslFPI8IohlrZyCpHz3NCK1F6oN96CQUJLtMJANChZVyTPm2/ul17KNsfOmCdtu/NylayxyK0Q4OTpCuiEY/Ao1delkI8XpPg7QAYGVIYvMTYXZBgGyMCwFL6hTwvJ9Ty22sjsaAALKQVhfpZxpHs3FULJHFxTmh9BbGoRQFObYf4jgHceoCxZbSQXXyg2x87PO69ZF69kkJHBdhSYJNydChTjlq6narkHW5+LFlO2aP9nP73jXBBzFVuB6tU7K8QfWuZv7q0prHkNh8k6EG4oe6IXKoWbs8Ie+EJH3nPOfzoxnUenRf9Pov4lP3Bt/lPWU0l23J+n0aRqxfCQPEmBbgjOt2TtK/9lULd7ECWDWBEaSuZonnh9JWjojeE+ntMsNxVsb+jFskXyM0g+VbCBJCFBP4HktoINJLVci80FL/xarN834cqv9booS61Ww1ILdlGWWq6GRQu7emmvPjhf93pcLDw/Tz3hAQnz17En5BnuzSBWls7t1+vr7tz2GQVP/FTWe6uUVC8f2hIyyIWfCKoH4tBAyLj19Tl38aw8eFN2WX+QVYCuUpleHRt4d++F1rii3QV62tSL0Zu4r8ck3w3bU59XRR3s9gq+k7dS93Qat5V85+p7N5mMO4BVbdtFHVb7Ra8z0IMfQFLplpBC6mrfMClE0C8UrTk99pvhS/fDFK3722PrR9kPawww0KTW9cZilYAIUmMKHfX7sZA2ucIV5QavkPex4P5EaIqt4mbjXYbj0Xva3BEmpCCazvYNHly7VQ3UNmtqhwV/T07KsCsNrUml4t+rrghLUlp5Oa14vpTevR54fXC94XgEDFwalYiDq1+uBtCRdt/YnRSM/Umpuf1nYAcqNPkDA8r8MQFDmP22++AicyUJU2qNd6aSB69xUMPQP6ZfCOT+QPgwtqHIUwhFhr1dSbukQ6GBQXRi06xrPWOQusaJprDdLlDTJyXK0v37myXlyjkLeAsn7nQLCdfu9wSiJQpNnbib6wZefQyn6nVvNyG186lLnm982MK6v4DBV9qc2pL93ZHWvbUNpsM4psLsgXSuOteEzWEZ3z9MoCz/BcJVcY8= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Evaluator Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-evaluator.api.mdx b/docs/docs/reference/api/archive-evaluator.api.mdx index 21c7c75940..1948975256 100644 --- a/docs/docs/reference/api/archive-evaluator.api.mdx +++ b/docs/docs/reference/api/archive-evaluator.api.mdx @@ -5,36 +5,36 @@ description: "Archive Evaluator" sidebar_label: "Archive Evaluator" hide_title: true hide_table_of_contents: true -api: eJydVdtu2zAM/RWDTxsgxFmxJz8t6wIs6IYGbbaXwChYmYnV+qJKcrbM8L8PlC9xbhiwpzjWIXV4DknX4HBrIVrDfIeZhVhAqcmgU2WxSCACNDJVO3qiHWYVutKAAI0Gc3JkOLCGAnOCCAbEk0pAgCogAo0uBQGG3iplKIHImYoEWJlSjhDVgMX+fuOzuL3mLNYZVWxBwKY0OTqIoKpUAo04RTSxAKdcxq/m/dXBIoGGTwxZXRaWLF9yM53yT0JWGqW5NIjgsZKSrN1UWfDQgUGALAtHhfPUtM6U9EqEL5Zj6hFxbVgnp9obZFm1QR1HVTjaEmvVU7z1iEYcZLpYfvn8QtLBhdLGEhRVlkETN404iztIve5YXdJpqLhpOMnHm5tzgX5iphJffjA3xhv/n+ok5FBl/KQc5fYckJXy6PRaV4wk6BVu4oMIaAzuR9p9K1uCLHtutyN/hi7rod/JWtwSDMmuQ70YwYpP/2UA19Ve3eFGXhzkbdW9XsaXVr5Ll/WQr6vV8ixh6+2xqbN2nIP5aJxzcmnJs65L6/x4uxQiCLWhnaJf4dCxNqzHQ96E3XIAAZbMrt8HlckggtQ5baMwlFlZJRPcUuFwgipEreCMlT8NbhnqB9uSrIxye59vtlzc0f4rYUIGonU8Bjxyy7VNdAwb/EOt7ojl7NbUrHJpadSftjO6PZW2UayXKjalD++k7bh9RvlKBS82rrOlPZ18mEyvFdMFBLPlopsclH5yeh4eBuJErkEoEEC5HxtwhPmnwwGzZKtyLMb5Ljh7RGxQxNFvF+oMlR8Mf33dmb6GznQYLSoLAqKT7d47HwtIuWuiNdT1M1r6YbKm4ddvFRn2LxawQ6PwmdVc15Aoy88JRBvMLJ2RHHYMvHvoRul9AOIy+d7jgg1mhvwPBLzS/vSL5BdF2jdR3UFmUpJ2o+CzvcbdNkzI8v5xBU3zF7ymeKI= +api: eJzNV9uO20YM/RWDTwkwWbuLPump7m6CdZN2jazTF8NY0BJtTTq6ZC5uXUH/XnB0sWTZW+92A/TJtkQekoec4XEBFrcGgiW836FyaDNtYCUgy0mjlVk6iyAA1GEsd/RIjQ0IyFFjQpY0exeQYkIQQGvxKCMQIFMIIEcbgwBN35zUFEFgtSMBJowpQQgKsPucfY3VMt2CgE2mE7QQgHMexUqr2KBNcTSLoCxXjGnyLDVkGOZ6MuGPiEyoZc7JQwAPLgzJmI1To8+1MQgIs9RSatkc81zJ0Nc6/mrYp+iklmtmwsoqQpi5yqnOWKaWtqQ7Kd54CwERbdApC8GkFAdSfLx0f7/xlPWxN8o34ryBNI+hMzZL+kZ1KussU4QplKJ9lDqlgFlqkpuZ0U2FUAqGO5PX8xDbptSgsUsw/S+Adx6gLEVjlK2/UmhPzcEHz9kQrxSQkMV+FhhFkruMat7jdZBnPYcd2KbPvUjJuv+kW97pWBBKHTqF+s0Hp9QvJkvf3TubO/sWjotlEGkpudALtcb9k8Qe+cKA3qecf2Uy2WMwov8nUn/LPklj/5XWc0UO3J/H0aIaxfoivIiBYQrsW4r+FfYyqNsORCkg1ISWoke0TwF2rt4ILb2z0udzPspNBTuaerJcHn2PIF8q2DpIRIq+Q5DbCrYO0tC13vMeuyyOX1aXkPXz3u+vA1+vGqVhq43SEPaqURq62ihGue1LZ/WBfXl7vFp6Xh9csEBO7Y5L/FopUZZs/+P19VB5/I5KRl5XjN5r7TXTC2VHRBal8hqgWgnHBioLe2+fc/uuyqMtcij3U1YlyL1JzPaUVDtsCGNwS4cr87ypJ2O04LenuD7IxKWvqwpd23VafKC3Yvd8GbcVfU819m6xmA8Aq972mzqtlHBH9XipEWcsk/PMWK+MbQwBjHNNO0l/jluZZcZFVx+X41pXgwBDetdIaacVBBBbm5tgPA5V5qIr3FJq8QrlGHPpR91Q6LS0e+8ync8+0v6OMCINwXLVNXjgqarmpG/Wtghz+ZGYsVrET52NMy3/rppfq/i48mJKZLrJvHvN3tQnN5rOZyCAy6i4mlz9cDWBAYNdYz4QGPoD0cT2r0EcsdDWDwIo8acBLGHy0+EFZ8YdqOVng3eiYUfrtWbB0l92nCuUft59+KLu5RLqXkJHzBsQEBz932kauhIQ8zAESyiKNRr6olVZ8uNvjjT3bCVgh1rimhlcFhBJw98jCDaoDA2SbK8OePO5PiFvRwd900++6WvKTeUM+RcI+IP2x//R/PmPm8EpapNpGFJuO86D64onrB38+f3DAsryHwt44zI= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Archive Evaluator @@ -43,955 +43,29 @@ Archive Evaluator as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - evaluator - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - is_custom - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - data - - object - - -
    -
    - - anyOf - - - - -
    - - service - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - configuration - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-query-revision.api.mdx b/docs/docs/reference/api/archive-query-revision.api.mdx new file mode 100644 index 0000000000..2d75cabce2 --- /dev/null +++ b/docs/docs/reference/api/archive-query-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-query-revision +title: "Archive Query Revision" +description: "Archive Query Revision" +sidebar_label: "Archive Query Revision" +hide_title: true +hide_table_of_contents: true +api: eJy9WVFz2zYM/is+PK13bJz19uSneU17zdomWZJmDz6fj5Zgmy1FKSTlxPPpv+9AUooUyYrjuXtJZBn4AHwgCRDeguVLA6MJ/JWjFmhgyiDNUHMrUnUewwi4jlZijbP7HPVmpnEtjEgVMMi45gla1KS/BcUThBE0xWYiBgZCwQgyblfAQON9LjTGMLI6RwYmWmHCYbQFu8kIwFgt1BIYLFKdcAsjyHOHYoWVJECebgbXwcLgPIaimBKwyVJl0BDWu9NT+hejibTIKBYYwU0eRWjMIpeD6yAMDKJUWVSWxHmWSRG50IffDelsa/5lmoixwluI0twrBbeFsrhEXfPzvZNgEOOC59LC6LRgz+hxRtXmcuEYbBrwkmuuBVeWeGzI9pNVsEpC5VIC8dOk787jOvYYHN9KE9/HcuwYPDbXVix4dEznxwGytJDbVaqPBu7RCgYxt7gnKom+tSLBXugzAiwYJGgMX/Zi98F8DeoFg4V0x0Mdh8exoB3C5VVjvbYszdNUIld1U6XxacHKV+n8O0a215+PzgkXl+UHOtMOu9ywDcvJvPmmHkO3LYiEjnLJ9S8fcyn/NKl6e5nbLLdvoCtGYTHZU4trzTf9xDR14VWsfiUySePwDP8PpF6kX4SxL9K6K8iW+us4ug0Lz9e2w3bTBXe7tlmLDoM6q0EUDCKN3GI84/aop8h7DzsYO7LyLP4ZRr552GAkRok/wciZhw1GSrrmx6xEJVl/lOWo5OuoVkq2KislYUe1UtJVWVmjbncp+y/Xu6BeMDAyXx4Kc0O6BYPjBRo45M+rSbMBexAqTh8Iu0dI4QOa467aCw9ZMEhlfGzwSw9JZxo+7gv9IqEXhFUwkCIR3aCdheEZyhenTXHrGF/ot1DlCV1buIlQxf4dnbDhw7SXAwdPK0pZ1GsuD/b4vAQoGOhd3Vy7ALZwrl3j1ipNTwJ/V2uxDUNtmpAW9QtL1V/rfCNb3UmAq/iporbpdd+mdK1RKTmk/BuVaqhnLl2KiMvL0kLhrlW+sjvboe3Z7dxCoIy7boFVr+MECgY/cHPoSfIZN/62I/N9y/mrG5oy0qKjj+tudvw9eP+m5M65X7BGQl/eKcLQTdzMKI/1ApYmGdfCpKqWvd0oeE/Zd3+XtB6kdU/oHunv3D6oOv5FnqAW0V7gxnJtzYNwgwJUcflIV3QuFAWQcButkJ6k+IF1QzcObS87Qvn1PBMNV6lV3Et/xcmBFW+ReSai/RDwURhrghfhQw3nA71BFWEXWPs8K4VqswZKt1si1RbctfMibnBmUBlhxbp7W3Tc5NqNEDc4uKlgaq4suDRYMMBHuqW7BB5s5QNhDL46jJaJnvPzFh/tZeCC8JsUcNldAvbxaCzlqzzxi+zJk91JDTIdWE8ztEk4OBsbOhy87hSurpllhXgD0+dHU4euqcc0mfYFVCF3laYePTfDKad4Z9xdRg/W/y+61SywKEjnt3fv2qPDOy5F7AaDgw9au6124NwwRsuFbNTEpoBMox0V8+Ui1ZPaL6l30M1RzLKv1NbmP15kt6gjY3BL3760UCkubzrINUtaoNezuzuMM09fX3I/3d5etQB9bptJHfvJ9qA5UAY3Z1qlNPvOUmPdpNuuYATDjOa2+DC897PyYTnGNcNta+xdDMPgHBgY1OtyTJ5rCSNYWZuZ0XAYyTSPT/gSleUnXAx5JtwpYDDKtbAbpzK+Ov+Mm0/IXVc8mdYFbmiZ+YXTFKtyxjNBfU85xAjzR/GPXw1hOL/yWoVrihepUy8POOfcYHx1DrUbIZye/HpyCi1K68KubEduh5S23dfAnrFQxU8VMnHbAyzy5PenL8gzykbCVR1vVwafDVsCFRYf7TCTXLhd4HzYhuROICQX/LRauB6jSjAwGHX9slHmeMpgRWtlNIHtds4NftOyKOi106KshSn7nEidbCEWhp7jUDJaLlfHC/xyHXbRm8FTp94MpUy1ojyH9hYg9ModP8m4g2JVLqhtkBtHEWa2htA612jlVZvj6vLmForiX5yb9dA= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Query Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-query.api.mdx b/docs/docs/reference/api/archive-query.api.mdx new file mode 100644 index 0000000000..3b17664746 --- /dev/null +++ b/docs/docs/reference/api/archive-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-query +title: "Archive Query" +description: "Archive Query" +sidebar_label: "Archive Query" +hide_title: true +hide_table_of_contents: true +api: eJy9V0tz20YM/isanJKZjal6euKpatxM3KS1Eiu9aDQeiITETZdceh9qFQ7/e2cflEhJdmyN05MoLoAP+IAFwAYMrjWkc/hkSXHSsGAga1JouKyuc0gBVVbwDd3dW1JbYFCjwpIMKafWQIUlQQr+9I7nwIBXkEKNpgAGiu4tV5RDapQlBjorqERIGzDb2ulpo3i1BgYrqUo0kIK13orhRjgB59d2dJ1D2y6cPV3LSpN2Ji7HY/eTk84Ur53DkMKtzTLSemXF6HMUBgaZrAxVxoljXQue+fiSr9rpND23auWiNzwgZNIGpegtrwytSfXce+slGOS0QisMpOOWBTI8VrW9WXmahnZXwrPeF8A8584nFNOB6F4i+rCUUhBW0LJDEttFy7pXcvmVMtMXqqwQ4DjsXH/nnWgZlGTwTGc6ZHZE0QC5XA7f9GM4jQUZV5kVqF69s0L8rmX15saa2prXcCpGbqh8ohYqhdvHiRnqwrNY/cOR6TTOz/D/QOqf8iPX5ru0PhTkkfrzOJrFwgu940kMHLvgdFs2vP3nmbrqmWgZZIrQUH6H5jGDvY6Vo6E3hnt/HkZ5G8yOJp4sW+c/AuRLMBtBchL0A0CugtkI0tG19O3/aTi+xz+FrF9D69/z9aIoHVs7lI6wF0Xp6NqhaGHX59bqrdNtGbyce360Ht7eg/l7wsB3dXbTt22d7M+Xl8fD+i8UPPejePSbUlKdP6lzMsiFe4qj4FBAyGxw+pyu25urYXrsQ/0og4N+jur1qc1mPxm0xjXtW+XDop6M0cydnuJ5v1XNfVwBOsr1UrunN7D7cBhXgb7Hkvp+NpseGQy5HSZ1EhbG0ae4MJZkCuk2yVpq4xdIU0AKSa1ow+mf5D5snknT7ZBtEndOYKBJbbpV0yoBKRTG1DpNkkxIm1/gmiqDF8gTrLmva02ZVdxsvcpkev2Btu8Jc1KQzhd9gVtXSqE4hmK7vGDNP5ALIS65E2sKqfi3kPG46RZBy/HAq5X06pGyiXduNJleAwMXRiBofPHTxRiOaOsLu1uAmb8FHbY/BnbAwi5+YEClvwJgCMtf9gfOM0d9iVXf3kGWDuZoZMDQvyapBXJf4B66iQmcQ0wghIXX3TMGae9DoMvigkHhUp/OoWmWqOmLEm3rXsdFeb5gsEHFcelomzeQc+2ec0hXKDQdebdrEvDqc7wLr0f7DWbodZfMyoW5QWHdP2DwN237Hy7+lhddpTTxeJJlVJue4lFTciW1K/Hpze0M2vY/CKGL/A== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-simple-evaluator.api.mdx b/docs/docs/reference/api/archive-simple-evaluator.api.mdx new file mode 100644 index 0000000000..f77fe7d837 --- /dev/null +++ b/docs/docs/reference/api/archive-simple-evaluator.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-simple-evaluator +title: "Archive Simple Evaluator" +description: "Archive Simple Evaluator" +sidebar_label: "Archive Simple Evaluator" +hide_title: true +hide_table_of_contents: true +api: eJzNWEtv20YQ/ivCnBKAsVyjJ56q2gnsJq2F2M5FEIzRciRuunxkH2pVgf892AcpUrRcSbYBneKIM9/MfjO781iDxoWCeAIflygM6kIqmEZQlCRR8yK/SSAGlCzlS3pUPCsFPVItChGUKDEjTdKCrCHHjCCGRuKRJxABzyGGEnUKEUj6YbikBGItDUWgWEoZQrwGvSqtrtKS5wuIYF7IDDXEYIxD0VwLK9B4OrhJoKqmFlOVRa5IWZiL83P7T0KKSV7aM0AMd4YxUmpuxOBrEIYIWJFryrUVx7IUnLkjD78rq7NuuVZKS4jm3gIrjFcKHvNc04Jky8VLJxFBQnM0QkN8XkUbUpy9fHU7d5R1sefCxWO3AFePzChdZF2h4MqsKARhDlXU/JQbIcCyVDt3owaXHqGKLNwOvw5DbIISQFOTYf4SwGsHUFVRLVTMvhPTLZLvXDY2hj855vqoVQQZaez6gknCbaxRjDvs9rwN2diCraPdsZTNur+0D/m0LWBcMiNQvvtkhPhDFfmHW6NLo9/D9pEtCNeU7amFUuLqWXq3dKFH8nPKf1oyrUYvUU+J1L+KL1zp/6V11yF76odxdO9TMTyHezHQd8HqVlH3ITsO6qoFUUXAJKGm5BH1c4CtBzhBTR80d/7stnLpYQcjR5Ypk7cw8uBhg5GEBL2BkSsPG4zUdM1WtprtZ8eVrH3I+n3lqtiGr1e1UrPVWKkJe1UrNV2NFSXM4thcvbO6toa8mnvh5LhdA7p1dUlSveCKfQvqNpKSH4vyILlHEMcjCIuQEiauJzvsfX4rSk4vIZ7pK77SnCTlrPNG1I5OD6oD1yEMVd3n7huRE6qkJ9meHBCDu0C87QOxLHm+b9uyTfEhPVJtyAXelt6js99rV91J61S7rpPMld3K4w2lNlAkl5zRPuz60fWAHAzQlZs553xh/HT9FrYuOwYOGKCu0DX2vflpf4SXaTeDeVVZrV8vLvpz/DcUPHEnG3yU0m0gjhziE9LIXZkN+bgtIArW+XrIfWpVCZ/Cm0N/KRjWjXimFk8tPjaTllK4oE1O7xZ1ZAzu7denGN8sXSbuXN50kGuX7IZez+7uY1x5+p4L7/X9/bgH6GPbDerIr5cGPh9aqwQ3uaeFXUGVhdJu3aRTiGFYSlpy+mfoN1LDZoWhhuv27qkahtUV+Otdr6lcgwWp1qWKh0MmCpOc4YJyjWfIh1hyd6MUMSO5XjmV0fjmM618QYd4Mm0LuBLjs6Yr1gQMS/6ZLH9hQTYyOi0k/8+nQtiQ+abNccrzeeHUA5cj59xgNL6BaNOXwfnZL2fn0OOzLWyvBzJ3PWrb7jNEWyw054cIKHN3AzRh9tvmg/XMBiKsdmq83eHbml0DGZr+1cNSIM9bza6P7ARCZG3AHB60FmcKIoi3dot1gKcRpDZH4gms1zNU9CBFVdmffxiSNobTCJYoOc4so5M1JFzZvxOI5ygU9bxtHhZ49zXcn/eDTW3qnqKOc26DbD20/4MI/qbV9j7UvQ5pnUjrIDJijErdUu49Zjbjmvswvr27h6r6CRGYeTw= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Simple Evaluator + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-simple-query.api.mdx b/docs/docs/reference/api/archive-simple-query.api.mdx new file mode 100644 index 0000000000..8c03d4270a --- /dev/null +++ b/docs/docs/reference/api/archive-simple-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-simple-query +title: "Archive Simple Query" +description: "Archive Simple Query" +sidebar_label: "Archive Simple Query" +hide_title: true +hide_table_of_contents: true +api: eJzNWFFv2zgM/isBnzbAa3rDPfnpeuuG9ba1XdPtHoIgUGwm0SZLriSnzQL/9wMl2bFrJ02DDriX1pHFj+RHiqK5AcsWBuIxfC1QczQwiUDlqJnlSl6kEAPTyZKvcGp4lguc3hWo1xBBzjTL0KIm6Q1IliHE4N5OeQoRcAkx5MwuIQKNdwXXmEJsdYERmGSJGYN4A3adk5yxmssFRDBXOmMWYigKh2K5FbSBzFsPLlIoywnhmVxJg4Yg3p6e0r8UTaJ5TnZDDKMiSdCYeSEGN2EzRJAoaVFa2s7yXPDEuTn8YUhm0zAr10SC5V5DogovFKzl0uICdcO8d25HBCnOWSEsxKdl5MlwuuT6au5oauN60prv23SUUb0iCyGAXK80XpJsGbXdPg7qvAFRRpBoZBbTKbP7ABuhSpnFN5Y7e3ZreedhB2eWlBR5+juUfPOwQUmKAn+DknMPG5RUdM1c3h+mxyX3IWT97XN+y9eLaqnYqrVUhL2oloquWosRxeLYXB2RbBnBy5nnbZoLVwebkCxNOZ0JJq5bp7ajdKaUQCabWipPJmVULanZD0zsXlM+OCNI5HhjuhxW1aqlOZu1V5o+9OuChOukEEy/ulSfubH/GCXfXBU2L+xreI6XHXF4Fkm3gaMMLfv/cvShEOJJhrjF7EAppjVb70+etuzzSP1CZFIBYI9Jbd9Y91ym6p7I23et4T2aly25lx6yjECJ9KXBrzxkGYHEh0Ohn6wrl4RVRiB4xvtBe5PuEcpnJ01+6xT1fttQFhm1cswkKFO/Ru1B+DHZy4GDp8IqLeoVE0dbfFEBlBFoZvsbnO7h6uDckGzZyeLthn/rXOzCUEXnwqJ+IlV9q6u0byBD7wZMptuT16XXvVXU/klFBkm/IpWGZuTUgidMXFUaStd++qrhdIfTv9u4OUeR9jXJ9ZF3G8oIfuL62Av1E1JZgRUTxaG96LOLZeVp2VPO+gup/0w4vH59d+aXUSugT58UbuhDxUwpjs3uS2U509wo2YjebhS8o+i7vwvKB2HdE7pH+juz97KJf1lkqHlyELixTFtzz913FMq0eqRPGcYlOZAxmyyRngT/iU1FI4d2kB4ufT5PectUuqoPkl8yMmDJOmSe8+QwBHzgxppgRfjRwHlPKygT7APr1rNqU+ObjMLtUqQ+grtOXsIMTg1Kwy1f9R+Lnqav28Uzg4NRDdMwZc6EwTICfGCJnboAHq3lPWEMvjiMjoo99fMWH+xV4ILw2xQw0X8FHGLRmRDPssQn2daS3UENe3qwtiOGcSicrQMdCq+rwnW3Vd0Qr2HyuDT1yJqmT+PJPodq5L6raY+cm3Lc4IobruQ5cz3Zc+RHbkbjUI6XrOclZUkSf7592x2vfGeCp254MnivtTtmR85WUrSMi9Z92N4gVLLjtnz6gtoT1s/KG+g+Jcxi3zX7BY1hC9x21Lu3OjIGt/T2qSQlv7zqsK99nQV6Pbu73Tj39O0L7cfb2+sOoI9tO6hnftI38Lkw+BomfRnapaJJYK6MdZM/u4QYhrnGFcf7oR8MDu/8AHG4qWaA5TCMDiECg3pVjQoLLSCGpbW5iYfDRKgiPWELlJadMD5kOXdn3mBSaG7XTuTs+uITrj8icz3weNLcMKLE8qnS3lZHieWcupyoGlKeFXapNP/l4x8mlUsvVboWeK6ceFXOnHGDs+sLiIDc8HSdnvxxcgodEpub3SWd2O2sL7yG6BELtf90H2buQIBFlv21fUGWUQQyJpt4/TF7NBUMRFh8sMNcMO6y3lmwCeEcQwgnBcthgR9gctdYxI3BbhXVSQRLyoh4DJvNjBn8pkVZ0nIYfI4n1FdqzmZE43gDKTf0nIYroWNmXULg1U04Ka8H2068bX4VXEn+hvYVIPTC20G0qwHLKnM24fVZkmBuG4KdkkUpVmf+9dXoFsryPzkJ5bE= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Simple Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-simple-testset.api.mdx b/docs/docs/reference/api/archive-simple-testset.api.mdx new file mode 100644 index 0000000000..c50b4aed50 --- /dev/null +++ b/docs/docs/reference/api/archive-simple-testset.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-simple-testset +title: "Archive Simple Testset" +description: "Archive Simple Testset" +sidebar_label: "Archive Simple Testset" +hide_title: true +hide_table_of_contents: true +api: eJztWEtz20YM/iscnJKZjeV6euKpatyM3aS1J1J60Wg8EAmJmy4f2YdaVcP/ntkHKVK0bNmRZ3rwyTIJfAA+YLEgtqBxpSCewZSUVqQVzBmUFUnUvCyuU4gBZZLxNd0pnleC7rQXBAYVSsxJk7QAWygwJ4ghvL/jKTDgBcRQoc6AgaRvhktKIdbSEAOVZJQjxFvQm8pqKi15sQIGy1LmqCEGYxyK5lpYgeBjdJ1CXc8toqrKQpGyIBfn5/ZPSiqRvLLeQwwTkySk1NKI6HMQBgZJWWgqtBXHqhI8ccGOviqrs+04VklLhebeQlIarxT85YWmFcmOg++dBIOUlmiEhvi8Zg0hzlqxuVk6svrIS+GycFggQ+WITzBEuxMMzizKUhAWULP2UWGEAMtT494VqmjaotTMw0pMfhTTQ9Q2WC9WLr5Sooep++ACHeLVDHLS2PcC05TbxKC47ZEx8DMUTge2SU3PUr7oP+mGd78tSLhMjED55oMR4ndVFu9ujK6Mfgv7oVoQrik/UgulxM2DxO7pwoDch5T/sGRajUFd/Z9I/bP8xJV+lNZDQQ7Un8bR1Jdi6FtHMTB0werWrN91ngd12YGoGSSSUFN6h/ohwE6vTFHTO82dP4etvPew0diRZar0JYx88bDBSEqCXsDIpYcNRhq6Fht78Rxnx90ux5D168ZdOTu+TmqlYau10hB2UisNXa0VJczqubU6sbo1g9O5FyLH/Tugfw02V+AdT/eaVmi9j7twfANubsroOnV94sD921oeuhrGoBNR1J1+GJwWe9Livvad177zon3n1D3jntn56BnnngG36X7zJ80SzVz7OnAdMXC9TvovMOkPr85XUp9N6qUl87HPWTsLPGugOOpL+TOtueJl4V0ZfjA/gDBxi5qA8yO67cqkrq3OzxcXww3LXyh46vYn0W9SlvL565WUNHJhfx0YqUSZ9N4+pZDn+4nahfyp9A661qRW9w2Ru8OmFK46WT8s6siIpvbtfXzvlmEzF5c3HeQ6NbOj17N7OIxLT99Dyb2aTm8HgD63/aSO/cov8tUQTduVX046K+1SsCqVXwHqDGIYVZLWnP4Z+R3hKAy/arTdjcH1KCwSwQ6vct2sDY0UEEOmdaXi0SgRpUnPcEWFxjPkI6y4O0OKEiO53jiV8e31R9pcEaYkIZ7NuwITW12+Xvpibaqw4h/JMhcWlmOjs1Ly/3wRhJ1l5rUsNbxYlk49sDh2zkXj22tgYMPwnJ2f/XR2DgMmu8L2YGDiDkZj270GtsdCGz8woNydCtCE+S+7F9Yzm4Qciy7eocTtLSgCFZr+1aNKIHfF73zYhpzOIOTUpsuhQbvKVMAg7u15m9TOGWS2MuIZbLcLVPRFirq2j78ZkjZ7cwZrlBwXlsvZFlKu7O8U4iUKRQNP22YCbz6HM/M22l0E/QiaDBc2vWsUxv4HDP6mTX8z7fpB1hTQNgiMk4Qq3VEdtC9bae0ZuL2ZTKGuvwPsevUe +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Simple Testset + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-testset-revision.api.mdx b/docs/docs/reference/api/archive-testset-revision.api.mdx new file mode 100644 index 0000000000..f861d45d3a --- /dev/null +++ b/docs/docs/reference/api/archive-testset-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-testset-revision +title: "Archive Testset Revision" +description: "Archive Testset Revision" +sidebar_label: "Archive Testset Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWUtv20gM/isCTy0wjbPBnnRab7NFsu02QePmYhgBLdHWdEePzoy86zX034t5KZZlO47rAHvIKY5FfiQ/cjgUvQKNcwXxGEaktCKtYMKgrEii5mVxnUIMKJOML+hBO4kHSQuueFkAgwol5qRJGogVFJgTxLAp+MBTYMALiKFCnQEDSd9rLimFWMuaGKgkoxwhXoFeVgZCacmLOTCYlTJHDTHUtUXRXAsj4N2Nvngb0XUKTTMx0KoqC0XKoF2cn5s/KalE8spEBDHc1UlCSs1qEX3xwsAgKQtNhTbiWFWCJ5aAwTdldFZrHlbS0KO5s5CUtVPyjvNC05zkmqfvrQSDlGZYCw3xecN6FFmzxfJmZnnsmgiyC5QcC23Y7Ejvp6xhrURRCwGGo00S7x2y5ZDB6e108UM8p4/D4aPUfIbJKQ0MPWSwUOuslCcDd2gNgxQ1HYhqRN9pntNe6EsD2DDISSmc78XeB/OXV28YzITtF7urNUNlO0WC/gz2DE7LUhAWey1eoYpGLUrDHKzE5GcxHURjytCJldNvlOh+Z/lgA+3jWTY1dr3ANOWmXaC47ZBxANmhYXQs5dPuN+vhbbcFCZdJLVC++VAL8acqi3c3ta5q/RY2QzUgXFN+oBZKicu9xG7oQo/c/bWl0Wr06ur/ROrn8hNX+kladwXZU38eRyNXiv5+Pe4Mf0bbK7p34XFQl2sQDYNEEmpKH1CftHe9d7DR0JJVV+lLGPnqYL2RlAS9gJFLB+uNBLqmyxNeUIGs35f+igp8ndRKYKu1Egg7qZVAV2tlQbI/Ix1ervdevWGgRD0/FubO6DYMTheo5xA3b5P++GeuwQeebrQ/38SfduHwVh7u3Og6VWFW23KTt5a3T6ovNdmdFvuuxX3tYK8d7EU72Kl7xpYp/OBpacuoHLrf5FlTSZiQX0e3A0a313eGF3hn6F+dr6QeTeqlIfOpF2MzCxw1UBz0zh2Wec6V/qv34Qg/p92uBZvGaP16cdHfIt6j4KndEUZ/SFnK41eIKWnkwnzaMVaJMuk8fU4xTzaT9Rj0p9I5aNuTmm8bJLcsgJzIblFLRjQyT7cx/rj5Hdu4nGkv11kZBnodu7vDuHT07Uvv1Wh02wN0ue0mdehW3dHmdhlsA89Ksw6vSqXt6ltnEMOgMitc+mfgZ181CCtdNVhtWYQ3A79OBzPOykVYnddSQAyZ1pWKB4NElHV6hnMqNJ4hH2DF7alSlNSS66VVGd5ef6TlFWFKEuLxZF3gztSaq56uWJs4rPhHMjz6pb3bQvL/XEn4dX3mtAxRvJiVVj1sLa1z0fD2Gtbe0OD87Jezc+jxui5sjgkm9pgE2/YxsA0W2viBAeX2jIAmzH97fGA8MwnJsVjH253GjfWHJ0PTv3pQCeT2MFgvVj7DY/AZhnZzrWwd+ywDg3j7Dx4h0RMGmamZeAyr1RQVfZWiaczX32uSJpcTv3SfGmbHK0i5Mp9TiGcoFPW8bhsNvPniz9Pb6PGi6EYT8l2YZC9Q1OY/YPA3LXf8VmObRhbqauUlh0lClV7D6PU4U4DtMbm9uRtB0/wA0hUIpA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Testset Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-testset-variant.api.mdx b/docs/docs/reference/api/archive-testset-variant.api.mdx new file mode 100644 index 0000000000..3be2d9b923 --- /dev/null +++ b/docs/docs/reference/api/archive-testset-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: archive-testset-variant +title: "Archive Testset Variant" +description: "Archive Testset Variant" +sidebar_label: "Archive Testset Variant" +hide_title: true +hide_table_of_contents: true +api: eJzNV01vGzcQ/SvCnBKAsRyjpz1VjRvYTdoYsZyLIRgj7khiyv0IOXSrCvvfA36spNVKiuMoQE9a7c68N/NmSA5XwDi3kN3DmCxbYgsTAVVNBllV5XUOGaCRC/VIDxwtHh7RKCwZBNRosCAm4xFWUGJBkMGO3YPKQYAqIYMaeQECDH1xylAOGRtHAqxcUIGQrYCXtUewbFQ5BwGzyhTIkIFzAYUVa2+Qgh18ihSD6xyaZuKRbV2VlqwHuzg/9z85WWlU7dOBDG6dlGTtzOnBx2QMAmRVMpXszbGutZIh++Fn631WWwHWxmvDKjLIykWnFLcqmeZktgJ9EywE5DRDpxmy80bsChRYy+WHWRCxy9CaqrxrdVyoRqwtSqc1eGl2pfOSCUDDaobylASjBJkYZjo02OEUF2hDa0lMdesFMa0qTVgeZb1COxivURoRYQ3KH8WMEI0vWzSrpp9Jcr8Z34ZE+3iNgIIYu1FgnivfYqhvOmIcKsAWbNtkHaZi2n2znd5+LpDKSKfRvHjrtP7DVuWrD45rxy9hN1UPopiKJ3qhMbg8KuyOL/TEPeb8pxfTe/T66v8k6l/Ve2X5m7IeSrLn/n0ajWMrph35SQr0Q/C+jejun8+DutyCaARIQ8iUPyA/cc/JkekVqxDPYZY3EXYwCmK5Ov8ZJHcRNpHkpOknkFxG2ETSyjVdnnCXbsX6bZn26Vavk7K0aq1ZWsFOytLKtWax2s2f26u33rcRcLrwwnDyzeMjjTL7DpAnO68nmqbxTr9cXPQHoE+oVR7Gm8HvxlTm+dNPToxK+6d0OOwa6Ep2vn7PPjxpds6TTc7vqxigr1Jh5/vmxs1ZYS3OabN5HjYNYgzG/us+wTcz633IK1Inu61ib+SN6h5O4zLKd6y6V+PxTQ8w1rZb1FEc0Qc7czGE0WNR+SnenyEiTuAZDGtDj4r+Gab50g7TLGqHq/743gzTFQAEWDKP7bzvjIYMFsy1zYZDqSuXn+GcSsYzVEOsVVgGlqQzipfBZXRz/Y6WV4Q5GcjuJ9sGt77PYud0zdZFw1q9I69hummMHC8qo/6L7ZAuGYvo5UVS5awK7u1oGoIbjG6uQYBPI6p3fvb67Bx6mm4b+yWCMiyRljt8BrGjwjp/EEBFWB/AhMWvmw8+srqyXGC5jXewhDsHcNKC6V8e1hpVWAchiFUq7z2k8sL6rmF9wqnEICDbe0drqzwRsKgse6DVaoqW7oxuGv/6iyPjCzlJaFMv6/0KcmX9cw7ZDLWlXszrHQZefEwL6eVgMxB1c2mLXS5D0Nr5fyDgb1ruv12GzWLR9tQqGY6kpJq3IHp7m2++9fq4uRtD03wFGhApvw== +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Archive Testset Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/archive-testset.api.mdx b/docs/docs/reference/api/archive-testset.api.mdx index 84425b6c21..6be77a582c 100644 --- a/docs/docs/reference/api/archive-testset.api.mdx +++ b/docs/docs/reference/api/archive-testset.api.mdx @@ -5,834 +5,67 @@ description: "Archive Testset" sidebar_label: "Archive Testset" hide_title: true hide_table_of_contents: true -api: eJydVU1v2zAM/SsGTxsgxFmxk0/LugENuqFBm+0SBIUqM7Faf6gSnS0z/N8HyrLj1C0G7BTHeqQeH/noBkjuHSQbWKMjh+RgK6AyaCXpqlymkIC0KtMHvKcOAQKMtLJAQsuRDZSyQEggnN/rFAToEhIwkjIQYPG51hZTSMjWKMCpDAsJSQOyPN7sfA46Gs7hyOpyDwJ2lS0kQQJ1rVNoxUtEuxVAmnJ+FahHyxRafm/Rmap06PiKi/mcf1J0ymrDRUECd7VS6NyuzqPbAAYBqioJS/LEjMm18hrEj45jmhFtY1kh0t0Nqqq7oMBQl4R7tHAieOkRreglerX06uERFcGkrHHxZZ3n0G5bTvUi6iTyJjCaKjTU2rac4uPFxVSanzLXqS88+mptZf9flxRJ6pyfNGHhpoC8Umenb03DSIBe23Z7kkBaK48j3b5VHUEWvHD7UWeG6eqh39E5uUcYkr0N9WJEaz79l/xcV3d1wI06cZK3U/ftMr508r12WQ+5Wq9Xk4Rdb8+buugsHK0HCxdIWcXuNpXrLE0ZJBAbiweNv+IwqS5uTrZu47AKQIBDe+j9X9scEsiIjEviWOVVnc7kHkuSM6ljaTRM+PjT6JKh3soOVW01HX2+xWp5jccrlClaSDbbMeCOh60bn3PY0Dlp9DWykGEtLWrKKqv/dDMRNlPWRbFSutxVPjyIGrh9luoJS15lXGdHez77MJu/VUwIiBarZfCMVN4zPQ8PA/FCrkEoEICFNwwQyuLT6YBZcpsKWY7zTXp6RmvQg/A3xSaX2hvCX96Edm8gtBuG1eRAQHK2yfuebwVkPCvJBprmQTr8YfO25dfPNVru3FbAQVotH1jHTQOpdvycQrKTucMJwWGvwLvbYJ/3EYjXiffdLbm1B5nX/A8EPOHx/NvjV0PWD08TAAul0NAodLLJeMoGV6xu7tbQtn8BJEpv6w== +api: eJzNV9tu20YQ/RVhnhJgYylGn/hUNW5gN2ltxEpfBMEYLUfipstL9qJWJfjvxV5IkaJlO44D9EkSd+bMzJnhzlENBrcakiUsSBtNRsOKQVmRQiPK4iqFBFDxTOzozgQLYFChwpwMKedZQ4E5QQLx/E6kwEAUkECFJgMGir5aoSiFxChLDDTPKEdIajD7ynlqo0SxBQabUuVoIAFrPYoRRjqDmNzkKoWmWTlEXZWFJu1Azmcz95GS5kpULm1I4NZyTlpvrJx8isbAgJeFocI4c6wqKbivcvpFO5+6l1ilHAdGhAi8tMEp5isKQ1tSvQTfeQsGKW3QSgPJrGEtIT5asb/eeLKGyBvp6T9tkKH2xHOM1R4MYzLrspSEBTSse1RYKcHx1KZ3iXqy6FAaFmAV8u/FDBCNKzaYlesvxM24de99oWO8hkFOBodZYJoK1xiUNwMyRnnGwenBtq0ZRMrXwyf98u6PBVwobiWqV++tlL/psnhzbU1lzWs4LtWBCEP5E71QKdw/SOyRL4zIfcj5d0em8xjN1f+J1D/Kj0KbR2k9VeTI/ds4WoRRjPfWkxgYp+B8Gza8dZ4HddGDaBhwRWgovUPzEGDvrkzR0BsjfD6no7wLsJO5J8tW6Y8I8jnAxiApSfoBQS4CbAzS0rXeu8XztDh+uzyFrF/2fuUc+HrRKC1bXZSWsBeN0tLVRdHSbp87q7fOt2Hwcun5lf7o+rhvczzu1W3+pnHWP52fj4XCnyhF6mXA5FelSvV8lZCSQSHdt7gOjg1kyQen33LzrpqjDXIo9mMZEnR9yfX2Pl112A5a45YO1+VpU0/GZOFO72P6oOmWvq4QOtr12nugN7B7uoyLQN9Dbb1cLG5GgKG3w6bOg2SdLDrJmpPJSqdmq1IHCWsySGBaKdoJ+nsatZqe1gcZ20yj9AUGmtSu1btWSUggM6bSyXTKZWnTM9xSYfAMxRQr4QdcE7dKmL13md9cfaD9JWFKCpLlqm9w6+YpTMjQrGsOVuIDOa6i0p5bk5VK/BvaHsV2FrwcGaLYlN498jb3yU3mN1fAwJURWJqdvT2bwYi7vrF7FZD7V6GN7Y+BHbHQ1Q8MKPfvARjC/OfDgcvMsZ9j0ccbtepopUYODP1jppVE4efcB69jF5cQuwid5tbAIBn8IWlbuWKQuRFIllDXa9T0WcmmcY+/WlKuWysGO1QC1467ZQ2p0O57CskGpaZRgt11Aa8+xbfi9eSgZ4aJtx0tXDt3KK37BQz+ov3wL5R/47N2YOpoMOecKtNzHV1QbrK6Yb+5vl1A0/wHM+W/Ag== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Archive Testset - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/archive-workflow-revision-rpc.api.mdx b/docs/docs/reference/api/archive-workflow-revision-rpc.api.mdx index 6ee704bb22..0c356843c1 100644 --- a/docs/docs/reference/api/archive-workflow-revision-rpc.api.mdx +++ b/docs/docs/reference/api/archive-workflow-revision-rpc.api.mdx @@ -5,1999 +5,67 @@ description: "Archive Workflow Revision" sidebar_label: "Archive Workflow Revision" hide_title: true hide_table_of_contents: true -api: eJydVcFu2zAM/RWDpw0Q4qzYyadl3YAF3dCgzbZDYBSqzMRqbUuV5HSZ4X8fKMuOUzcbsFOU6JF6fHxkGnB8ZyHZwE9lHreFeraQMlAaDXdSVcsMEuBG5HKPd88BcmdwL61U1Z3RAhhobniJDg0laqDiJUICA0hmwEBWkIDmLgcGBp9qaTCDxJkaGViRY8khacAdNIVaZ2S1AwZbZUruIIG69lmcdAUBbkLuaJlB26aU0mpVWbSU5WI+p48MrTBSUxmQwG0tBFq7rYvoJoCBgVCVw8oRnGtdSOGrjh8sxTQjZtqQJk52LwhVd0GBsKwc7tCMGF56RMsGGfwT1eF66zUKcer+AYUbhfVd6AuElg3gqi4KaNO2ZZPwo6KbwC09n3Mov20p1/uLi6laP3ghM69F9NkYZf5fqgwdlwWdpMPSTgGFEie3E5GCG0ZK9HK36VELbgw/jJT8qjqC1IPS7l5zVw/9htbyHcKQ7DzUixGt6fZffaC6uqcDbtSSo7yduufL+NTJ99pjPeTLer2aJOx6e9rURTfHUW+IaHAZgxJdrmjYtbLOz7TLIYFYk3/xOb7nFuN+Adi4d7WNm9Gct3FYFcDAotn3G6E2BSSQO6dtEseiUHU24zusHJ9xGXMtYULV30aXBAUacIuiNtIdfL7FanmFhy/IMzSQbNIx4JZ82DnrFDY0lWt5haRxWFSL2uXKyN+dXcKqyrsoElFWW+XDg96B20cuHrGirUR1drTns3ez+bliQkC0WC3DOHHhx6nn4WHAXsg1CAUMsPSzBA55+eF4QSypbyWvxvn+0u4TgoMyDn+5WBdc+qnxNJrghA0EJwAD8gIwGNwAxy1H5+R08/eWSBnk5K1kA01DKb6bom3p56caDTU2ZbDnRvJ7knnTQCYtnTNItrywOGE9bCR4cxMG720E7PVq+uZX1Pk9L2r6Bgwe8fDiz8pvlbw3VxMQCyFQu1HsZAmSC4cxWl3frqFt/wCO9opx +api: eJzNWdtuGkkQ/RVUT4k0MV5rn+ZpvXYie5ONLd/2ASGr6Cmgk55L+mIvQfPvq74BwwALBEs8YZiqU12nqrt6jqegcaQg7cE/pfw+FOWrgn4CZUUSNS+L6wxSQMnG/IWeX4PJs6QXrnhZPMuKQQIVSsxJk7RAUygwJ0ihbc0zSIAXkEKFegwJSPphuKQMUi0NJaDYmHKEdAp6UlkMpSUvRpDAsJQ5akjBGIeiuRbWIK66cxeCdK4zqOu+xVZVWShSFu7s9NR+ZKSY5JVNDFK4N4yRUkMjOnfBGBJgZaGp0NYcq0pw5njoflPWZ7qwxEpaljT3EVhpvFNYOS80jUguLPXCWSSQ0RCN0JCe1kmbJBe3mNwMHZXNGDPjF5QcC20JbZhvZq1OZhaFEQIsSy0enzy0ozGBwwdq4s8yeoNMfASUmg+RHTKF8wAZIxg9LuXBwD1anUCGmrZEtaYfNM9pI/SlBawTyEkpHG3E3gTzd3CvExgKd3is71iunplRusxXBhuUpSAsNka7Vp0Lj1AnFo5eUBjUawjfEvHjDMSDjk2Oxa8AXjmAuk6iUTn4RkyvOKg+OcracK4uGpuLwCzj9vRBcdugdYuyxfOnESkfNH9ZzG51LGBcMiNQvvtkhPhLlcWHG6Mro9/Dcq4WhGvKt/RCKXGykdclX2ixu7lLNTqPVoceE6lfyy9c6f+ldV2SLffdOHrwrRgG9n6nwVd0p05ztO4HdbkAUSfAJKGm7Bn1QU/BCw/bOXdkmSp7iyCPHjYEyUjQGwS59LAhSKRrMDngqItk/TkJwy7yddAoka1ZlEjYQaNEumZRXki2b1zbt+tTcK8TUMKM9oW5t752DB0s0cAhLk+T5mg+XPZG8n1RHiX3CGJ/BGERxoSZe//Y7aR/K0qOryE2XE3uaEiSCtY4beJC+ztNlKtQhjq+y21bkSOayUd50dmhBveBeHujxKrixbYXoGWKd7ltxUCu8HaI79393rtuqgrHen87yl5Z73w7p9QWiuQLZ7QNu16e2aEHA3Tt9JQhHxkvJ71FrItGgG3ewaJWdInuHaH1KrYDxC+6z3SnurZuv5+dtWWqJxQ8c8l1PkpZyv01qow0cjdpQ0suG4iSNZ7usqUWBoXv4nnWX0qG8Vafq9EqfW+FuOBN1ps6MjoP9ukqyufaYs/l5UMHu4YgFen17K5P49LTt6m+Vw8Pty1AX9tmUc+9pNpp6ZfgdIBxaXXXqlTayat6DCl0K6sR0ms3imaqG0VD1Z2uUlvrblBuwW/2KNC66xaMta5U2u0yUZrsBEdUaDxB3sWKu/2liBnJ9cS5nN9ef6aJH++Q9vqLBm7g+AZqms1qhxX/TJbKIA17kYv/9F0RNGF/hXP08mJYOvcoirnFdc5vr2Hh2g6nJ7+dnEKL2kVju1OQuZ0SY7vHkCyxMMsfEqDcbRPQhPkf8wd2ZbYkQSuKeBsqufRSHNjQ9K/uVgJ5sXD39UXuQSgyzLVR5Zo5FBoSSNcI67HW/QTGtnHSHkynA1T0KEVd259/GJK2nP0g7A4sub0pZFzZvzNIhygUtdY9O27g3V3YVe8786HVzCeWvLD1tjqb/QYJfKfJun8KuLNjHHtrGkzPGaNKL4C0jjrbhLPNcntz/wB1/R+GFYkO sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Archive Workflow Revision - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - revision - object - -
    -
    - anyOf - - - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/archive-workflow-variant.api.mdx b/docs/docs/reference/api/archive-workflow-variant.api.mdx index 5be93e8fde..03cbc2b65e 100644 --- a/docs/docs/reference/api/archive-workflow-variant.api.mdx +++ b/docs/docs/reference/api/archive-workflow-variant.api.mdx @@ -5,1008 +5,67 @@ description: "Archive Workflow Variant" sidebar_label: "Archive Workflow Variant" hide_title: true hide_table_of_contents: true -api: eJydVcFu2zAM/RWDpw0Q4qzYyadl3YAG3dCgzbpDYBSqzMRqbcmV5HSZ4X8fKMuOMzcYsFOU6JF6fHxkGnB8ZyHZwE9tnreFfrWQMtAVGu6kVssMEuBG5HKPD68B8rDnRnLlgEHFDS/RoaEcDSheIiQQ7h9kBgykggQq7nJgYPCllgYzSJypkYEVOZYckgbcoaJI64xUO2Cw1abkDhKoa5/FSVcQ4L5LHS0zaNuUMtpKK4uWklzM5/SRoRVGVsQfErirhUBrt3UR3QYwMBBaOVSO4LyqCil8ufGTpZhmRKwyJIaT3QtC111Q4CuVwx2aEcFLj2hZL4J/QR1utl6gEKYfn1C4UVSvfigPWjZgVV0U0KZtyybRRzk3gVl6NuVQe9tSqo8XF1Op7nkhMy9E9NUYbf5fpwwdlwWdpMPSTgGFFie3E4mCE0ZC9Fq36VEKbgw/jHT8pjuC1IDS7t5yVg/9jtbyHcKQ7DzUixGt6fZfbaC6uqcDLh17t5e3U/d8GV86+d56rIdcrderScKut6dNXXTTG/V+iO6H6S3R5ZomvNK2m2aXQwJxZXAv8TV+5BbjfuptHBxt4+Y44G0ctgMwsGj2/SaoTQEJ5M5VNoljUeg6m/EdKsdnXMa8kjDh6W+jS4ICjbZFURvpDj7fYrW8xsMV8gwNJJt0DLgjE3a2OoUNHeWVvEYSOCyoRe1ybeTvzithR+VdFCko1Vb78CB24PaZi2dUtI6ozo72fPZhNj9XTAiIFqtlmCUu/Cz1PDwM2F9yDUIBAyz9IIFDXn46XhBL6lrJ1Tjf+V6f8BuEcfjLxVXBpZ8Yz6IJNthAsAEwICMAg8EKMKw3OiYn+773Q8ogJ1slG2gaSvDDFG1LP7/UaKiracjySBpvGsikpXMGyZYXFiech10E727DyL2PgL1dS995dfBki5q+AYNnPJz+Q/l1kvfGagJgIQRWbhQ62X7kwGGAVjd3a2jbP8qKgps= +api: eJzNV9tu20gM/RWDTy0wjdJgn/S03qRFvO1ugsbtPhhGQEu0Ne1Io84lWa+hf1/MRbZl2W6aukCfchF5DnnI4XBWYHChIZ3AP1J9mQv5qGHKQNak0HBZjXJIAVVW8Ae6f4wm9w+oOFYGGNSosCRDymGsoMKSIIVdw3ueAwNeQQo1mgIYKPpquaIcUqMsMdBZQSVCugKzrB2ENopXC2Awl6pEAylY61EMN8IZtPEOPgWOwSiHppk6aF3LSpN2aBfn5+5HTjpTvHYZQQp3NstI67kVgw/RGBhksjJUGWeOdS145gVIPmvns9qKsFZOHsMDQyZtcIqB88rQgtRWpJfegkFOc7TCQHresJ5EnrZa3sy9jl2KtS3Pu2bHtWrY2qKyQoATp6eeU40BKsPnmJkTMgwjZGSYC99nh5Pk+j6z2shybwAzKQVhdZRxpAeXAaFhDo4eUFg0Uv0I4ps1SAAtbInVjwBee4CmYa2RnH2mzOzp7Ldesj5cw6Akg90gMM+561cUtx1ZD5VyC7bt2A5TOev+Zzu7/VyQcZVZgerFWyvEn1pWr26sqa15Cbu5OhBuqHyiFyqFy6O67vhCT91jzn85MZ1Hr0N/JVH/lu+5Nt+U9VCSPffv02gcWjEO+Ccp0A/B+TasO4yfB3W1BdEwyBShofwezROnV46GXhnu4znMchlgB0Mvlq3zn0HyMcBGkpwE/QSSqwAbSVq5ZssTzvtWrD+WceK3ep2UpVVrzdIKdlKWVq41ixZ28dxevXO+7vI4WXh+0/n2/REXo303yNO91wtS0ziv3y4u+vvUJxQ899vS4I1SUj1/mcrJIBd+HQjXw66BkFnn6/dM4mmzc6Nskn4vQ4CuTqVe7NtDN7eF1rigzfg8bOrFGIzd132Kb3bgic8rUEe7rXJv5A3qHk7jKsh3rLzX4/FtDzDUtlvUYVj6B7t7Nvjto5DuYVBLHR4BpoAUklrRA6fHpN1XdRKXW52s9jwJmiQ+LICBJvXQPiKsEpBCYUyt0yTJhLT5GS6oMniGPMGa+8OgKbOKm6V3Gd6O3tHymjAnBelkum1w53otdE/XbF04rPk7cjrG58vQmkIq/l9oifhwKYKXE4pXc+nd21XXBzcY3o6AgUsjKHh+9vrsHHq6bhu7Y4KZPyYtt/8MbEeFdf7AgEp/RsAQlr9vPrjIXEHiftriHS7jzj0cxTD0r0lqgdwfBh/FKlZ4ArHCsHm/aJdyrDIwSPc//dpCTxkUrmfSCaxWM9T0UYmmcf/+akm5Wk4j3MwpO1lBzrX7PYd0jkJTL+r1oIEXH+J5ejnYbEbdbNp6V0sftbDuL2DwhZYHXq1+aBRtX62i5TDLqDZbGL0Z5xpwfUxub+7G0DT/A3FdSl8= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Archive Workflow Variant - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/archive-workflow.api.mdx b/docs/docs/reference/api/archive-workflow.api.mdx index 88c5714e4a..9b7e347ed3 100644 --- a/docs/docs/reference/api/archive-workflow.api.mdx +++ b/docs/docs/reference/api/archive-workflow.api.mdx @@ -5,598 +5,67 @@ description: "Archive Workflow" sidebar_label: "Archive Workflow" hide_title: true hide_table_of_contents: true -api: eJydVcFu2zAM/RWDpw0Q4qzYyadl3YAG3dCg7dZDEBSqzMRqZcuV5HSZ4X8fKMmOM7cYsJMN65F6fOSjW3B8ZyFbw502T1ulXyxsGOgaDXdSV8scMuBGFHKP9y8RAgxqbniJDg3FtlDxEj3QyS0X7l7mwEBWkMFzg+YADAw+N9JgDpkzDTKwosCSQ9aCO9QUa52R1Q4YbLUpuYMMmsancdIpAixi8mSZQ9dtKKWtdWXRUpaz+ZweOVphZE3UIYObRgi0dtuo5DqCgYHQlcPKEZzXtZLCV5o+WoppR8xqQzo4GW4QuglBkbCsHO7QjBiee0THYBCKrqgOV1svUozTD48o3CisV74vEDo2gKtGKeg2Xccm4UdF15HbZppzKLvrKMfHs7OpSj+5krnXIPlqjDb/L1GOjktFb9JhaacApcXJ6UScOAUjBXqZu81RA24MP4wU/KYDQdK+tLvXpqqHfkdr+Q5hSPY21IuR3NLpv/SnusLVETdqxVHeoO7bZXwJ8r12WQ+5uL1dTRKG3p42dRE8m9wdPVuiKzT5udbWeQ+7AjJIa4N7iS/pA7eY9qNr07Z/vZd5l8YdAAwsmn3v+8YoyKBwrrZZmgqlm3zGd1g5PuMy5bWECS9/mpwTFMjFFkVjpDv4fIvV8hIPF8hzNJCtN2PADQ1dGKNT2NBBXstLJEHjOlo0rtBG/g6zERdSEaJIMVlttQ/vN0zg9pmLJ6xo9VCdgfZ89mE2f6uYGJAsVsvoHXJxNqzFAAP2l1yDUMAAS28ccMjLT8cDYkndKnk1zjft7QmvQRCHv1xaKy69M/ztbWz7GmLbgQE1Ho5bywKDbNR8YP0fgMa6oOHJ1tC2FPbDqK6jz2HPUw9zafmDIl9subI44TbsFnh3HS30PgH2OucnPEz+K3uuGkL68dlzI+k6Py2s7y7xCKELIbB2o6jJPqMsgzVWVze30HV/AHk2bqA= +api: eJzNV01v2zgQ/SvGnFqAjd1gTzqtN2kRb7sbo3G3B8MIaGlssaVElRw66xX03xekvi07ddMU6Mm2NPNm5s2Q85wD8a2BYAmflP6ykerBwIqBylBzEiqdRRAA12Esdnj/UJkAg4xrniChdr45pDxBCKA2uBcRMBApBJBxioGBxq9WaIwgIG2RgQljTDgEOdA+c66GtEi3wGCjdMIJArDWo5Ag6Qzq/EazCIpi5SBNplKDxqFcTibuI0ITapG5zCGAOxuGaMzGytGHyhgYhColTMmZ8yyTIvSFjj8b55N3Msu0o4FEGSFUtnSqEhYp4RZ1J8Mrb8Egwg23kiCYFKyhxIdL97cbz1cfeiN9D04bCHMfWkMq6RtVmayVkshTKFjzKLVSgiOpzm1mRlclQsEcHO64tJyU/hHENw1ICRrbhKc/AnjjAYqC1UZq/RlDOjIFbz1lQ7iCQYLE+0nwKBKux1zOe7QO0qyGsANbd7kXKVn3n3SrOx4LQqFDK7l+8dZK+adR6atbS5mll3BYqwMRhMmZXlxrvn+U1wNfGLD7mPNfjkznMZjQX4nUv9V7YeibtJ4qcuD+fRwtylGsLsGzGBim4HwL1r/AngZ13YEoGIQaOWF0z+kxwM69G3HCVyR8PqejXJWwo6kny2bRzwjysYStgkQo8ScEuS5hqyA1Xeu9W2LnxfGb6hyy/tj77dXy9axRaraaKDVhzxqlpquJYqTdPnVW75yvWx7Plp5XB9/eH8dWxxlujYwoCmf+2+XlUHX8w6WIvKYYvdFa6adLjgiJC+kFQLkQDg2kCntvv+fuXRUHO6St9r0qE3SdScz2mEpr94MxfIvthXna1JMxWri3x6huFeLS11WGruw6DW7pLdk9XcZ1Sd9jfb1ZLOYDwLK3/aZOSwk8+tRK4AQpVk4eZ8qQl8QUQwDjTONO4MO4Vn5mnHd0cTGu1DQwMKh3tYK2WkIAMVFmgvE4lMpGF3yLKfELLsY8E37KDYZWC9p7l+l89g73N8gj1BAsV12DOzdS5ZD0zZr+8Ey8Q0dXpd2nlmKlxX9l5yv1Hpdejg+RbpR3r6ib+uRG0/kMGLgySqImF68vJjCgr2vsTgMP/WmoY/vXwA5YaOoHBpj4owCEPPm9feEyc/xXwrPGG3brYLFWJBD+S+NMcuFn3UfPq0YuoWoktCLeAIOg/yen7uaKQezmIFhCnq+5wY9aFoV7/NWidg1bMdhxLfja0bfMIRLGfY8g2HBpcJBic2nAiw/V2Xg5anVNP/W6qanrqJPl7hcw+IL7g/9l/uDH9dDklcU0DDGjju/gnnLT1Yz8/PZuAUXxP5y63go= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Archive Workflow - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - workflow - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/assign-role-to-user.api.mdx b/docs/docs/reference/api/assign-role-to-user.api.mdx index 5f0160cd87..51414d68f8 100644 --- a/docs/docs/reference/api/assign-role-to-user.api.mdx +++ b/docs/docs/reference/api/assign-role-to-user.api.mdx @@ -5,359 +5,79 @@ description: "Assigns a role to a user in a workspace." sidebar_label: "Assign Role To User" hide_title: true hide_table_of_contents: true -api: eJztVk1v4zYQ/SvEnLKAaqdBTzrVu5vFGtsihuNsD44RjKWxxY1EakkqjivovxdDSpZsN+723PpikZzPNzOPrCElmxhZOqkVxDCxVm6VFSiMzkk4LVBUloyQSqDYafNsS0xo9Kge1cRsbfyohBCixH2uMRVXD5bMXOf0LhaLjA77iVYOpZJqK1xGQpstKvknslMh0yi4oAJlHglUae/chzMKTg7en2QqrqwzrZPpR6E33u4wPtYw9L0i68TVPHy0Cp/QuslsejjW62+UOJ/TnFxlVJfWWus8FgtTkZDBgw9sh1bYKknI2k2V5/s2TEoj8QlzS0K7jMxO2oDTHKWlzuTnxWJ2+5qQBzwW02DW559qskJpJzJ8IVGSKaS1jJDTvNpoUwiXSSswYeXRBYOGBMspQcZo08bXod+B2zkeQQS6JOPLMU0hhiD/xIJPTj+xEERQosGCHBkL8bIGhQVBDMOqQASSu6hEl0EEjK80lELsTEUR2CSjAiGuwe1L1rXOSLWFCJx0OW/80RkT0xSaZhVskHXvdbpnxVOT3FikHB9hWeYy8UmMv1nu5nrgsTScopNkeeVb7VIgt16giWDYqpzhBZ27YVdz/BEwgj42tb/beNSOlZvosKOqPAfOuDPHYwRNE3UCoUuPYF22iZyHObDTjSQ0DVszZEutbMDh5vqa/4454P7Q2mLeCsOPIx28/HJzc274K+YyDfDccl/+C6sn9UvJtQWUjgp7LpDr5Oj0BwoglaMtGWhWPeZoDO4HJf5NhwC5toXdXuqG38la3BIcjF1oNj+kCz79p3pzXsF1KzcodA9vQPftND4G+P7OWSfCtHJmMNS2IJdppolSW+d5wWUQw/jABHZcD1mhGfMYWIjAknnp6KMyOcSQOVfaeDxOcl2lI9yScjhCOcZSQnR6N/lT8YFF/aRYSioj3d7bm8ymX2j/mTAlA/FyNRS45zYKjXEsdqgJlvILMUQtq00ql2nTDlRHa1nQYgy4Qec9Nd2+YlGGUW+ppa/yGYP0R4Ee+l4EqTbaR9VWoU35PSbPpJheGb6AxvXo59H1Wxi1CmIym7ZDhokfsi49LwbRSRUO+EN0yMMRFr/2B5w8171ANbTnLwzBNCMWWjyEC+MotLqf9f9fGf/RV0Y7bI5e3bjMUXoe9S1Ytyyy7N8TTBjxyesiEMkqgoypJ15CXa/R0oPJm4a3v1dkmA5WEbygkbjmKVrWkErL3ynEG4buQmv6IjLbvhNvBdxRhmK+eMG84hVE8Ez70/eQv0uyjpPqVuRD8PaTZ/zexNkFyJdT0JgkDP1F2dWAmGd39wuIYN0+mgqdso7BHUOIuxCu9tl7UvR7NeSothXfWTEEm/z7C72UMEE= +api: eJztVt9v2zYQ/leIe0oBzs6CPelp3pqiRjckcJzuwTGCi3S22EqkSlJJPEH/+3CkZMl263bPW15ikffzu7vv2EBGLrWq8spoSGDmnNpqJ1BYU5DwRqCoHVmhtEDxYuxnV2FKkwf9oGd265IHLYQQFe4Kg5m4uHdkF6agN4lY5rQ/T432qLTSW+FzEsZuUau/kZ0KlcnogkpUhRSos8F5CGcSney9P6pMXDhvOyfzt8Jsgt1xfKxh6UtNzouLRfzRKbxD52e38/21efpEqQ85LcjXVvdpPRlTJGJpaxIqegiBvaATrk5Tcm5TF8WuC5MyKd5h4UgYn5N9US7itEDlqDf5frm8vX5NKQCeiHk0G/LPDDmhjRc5PpOoyJbKOUbIG/7aGFsKnysnMGXlyRmDlgTLaUHWGtvF16Pfg9s7noAEU5EN5ZhnkECUf2TBR28eWQgkVGixJE/WQbJqQGNJkMC4KiBBcRdV6HOQwPgqSxkk3tYkwaU5lQhJA35Xsa7zVuktSPDKF3zwV29MzDNo23W0Qc7/ZrIdKx6b5MYi7fkKq6pQaUhi+slxNzcjj5XlFL0ix1+h1c4Fch0EWgnjVuUMz+jcjLua45fACIbY9O5mE1A7VG7l/kTXRQGccW+OxwjaVvYCsUsPYF11iZyGObLTjyS0LVuz5CqjXcTh6vKS/x1ywN2+tcWiE4YfRzp6+eXq6tTwRyxUFuG55r78F1aP6peR7wqoPJXuVKAw6cHtDxRAaU9bstCuB8zRWtyNSvyHiQFybUu3PdcNf5JzuCXYGzvTbGFIl3z7vXpzXtF1Jzcq9ABvRPfbabyN8H3NWS/CtHJiMNa2JJ8bponKOB94weeQwHTPBG7ajFmhnfIYOJDgyD739FHbAhLIva9cMp2mhamzCW5Je5ygmmKlwjA4Smur/C6ozG7nH2j3njAjC8lqPRa4406JtT8U28OOlfpAjEJHXLPa58Z2M9MzVx61OE3uwcXAPtevWFZxmjv2GAp5QhLDVWSAod1A6Y0JUXVAz0LOYnY7BwmMTpyVy8nPk0uQx+t5LByWahpmp08pXIM8AncPK8h97J6w/HW44IS5nCXqsb2wBwSzh1gacR/3wEFIzTDC/z8e/qOPh27APL36aVWgCvQYWrDpyGE1PBOYB5KjR0Pkh7WEnBklWUHTPKGje1u0LR9/qckyBawlPKNV+MSTs2ogU45/Z5BsGLozrRmKyCT6Rnwr4J4mNHPEMxY1f4GEz7Q7fuaEFZH3PNR0Ir9Hbz8FIh9MnOw13jlRY5Yy9Gdl1yO+vb25W4KEp+4tVJqMdSy+MIT4EsM1IftAhOGsgQL1tuZVlEC0yX//ALNiIbI= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Assigns a role to a user in a workspace. Args: -payload (UserRole): The payload containing the organization id, user email, and role to assign. -workspace_id (str): The ID of the workspace. -request (Request): The FastAPI request object. + payload (UserRole): The payload containing the organization id, user email, and role to assign. + workspace_id (str): The ID of the workspace. + request (Request): The FastAPI request object. Returns: -bool: True if the role was successfully assigned, False otherwise. + bool: True if the role was successfully assigned, False otherwise. Raises: -HTTPException: If the user does not have permission to perform this action. -HTTPException: If there is an error assigning the role to the user. + HTTPException: If the user does not have permission to perform this action. + HTTPException: If there is an error assigning the role to the user. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - - - -
    - - role - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/bases.tag.mdx b/docs/docs/reference/api/bases.tag.mdx index bb773bf0b1..153eae0bbb 100644 --- a/docs/docs/reference/api/bases.tag.mdx +++ b/docs/docs/reference/api/bases.tag.mdx @@ -5,9 +5,16 @@ description: "Bases" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/cancel-plan.api.mdx b/docs/docs/reference/api/cancel-plan.api.mdx index 1226e51e5e..af3caf7845 100644 --- a/docs/docs/reference/api/cancel-plan.api.mdx +++ b/docs/docs/reference/api/cancel-plan.api.mdx @@ -5,72 +5,59 @@ description: "Cancel Subscription User Route" sidebar_label: "Cancel Subscription User Route" hide_title: true hide_table_of_contents: true -api: eJyFUstu2zAQ/BVhzoTl5shTnVxq5FAjbk6GUKzpjcWGohiSMuoK+vdiJcVxDBTVRRA5O5rH9sh0TNA73FvnrD+iUmgDR8q29esDNAx5w+5ncOShEDmF1idO0D3ulkt5HTiZaINMQGPbGcMpvXSueJrBUDCtz+yzwCkEZ834g/JXkpkeydTcEHQ/yKNuKB9GCcW2219Oi+fEsXhquyzsDee6FbGhTRkKgXINjXI/mSrT1WQ5GYJC4njiKO57dNFBo845JF2WxrXdYUFH9pkWZEsKFreiVuNt8SBQDJXQmS7afB75Vpv1I5+/MR04Qu+qa8BWzE4Jfob1yOfA0KBgH/kMBU+NfK+6XLfR/hlDg4IVAfU0JXFZ/9KO4zY7/tB2T+aV/QEK4nOSvVx8WSz/ZWYeKFab9dwZmbGzdx0jDOomrktQUOCGrNxlpubrx4WolHIa8ld8/y32k8pLPJl/5zI4sh7DrKWfO99h7lz6vaIVO1PvlUItW6J36Ps9JX6Obhjk+K3jKO1VCieKlvaS5a4a1HvUUuwrnyUIYzjIpp3IdVNjN0sthV/WcvN9+wPD8Bc7pSz6 +api: eJyFUk2P0zAQ/SvRO1tN4egThQvVHqi27CmK0NSdbQyOY2ynIkT572iSbml72VyseOaN38eMyHRK0BU+W+esP6FW6AJHyrbz2yM0DHnD7kdw5KEQOYXOJ07QIz6u13IcOZlogyCgse+N4ZRee1c8X5qhYDqf2WdppxCcNfMD5c8kmBHJNNwS9DjJpx5GfpkpFPv+cL0tXhLH4rnrs0xvOTedkA1dylAIlBtolIdFVJlukOUiCAqJ45mjqB/RRweNJueQdFka1/XHFZ3YZ1qRLSlYTLUgTB9tHmbIZrd94uEr05EjdFXfNuxFz2LSfduIPASGBgX7xAMUPLXyv+lz00X7d/YFClaENwtKHLH+tZvhNru5fyZXbHZbKIiMxar16sNqjUcD75olCjJzFG9vz2WoBxeu+qHALVmpZab20/+CMBPPW/I3897N647d1ZLMf3IZHFmP6cJlvERZ4RKlxHYzVuQscdYKjYSvK4zjgRK/RDdNcv275yiJ1QpnipYO4l9VT+rNXgnzFw9ihDEcZIHO5PolpYddlZCv27b7tv+OafoH7X8eaw== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Cancel Subscription User Route -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/close-evaluation-preview-simple-evaluations-evaluation-id-close-post.api.mdx b/docs/docs/reference/api/close-evaluation-preview-simple-evaluations-evaluation-id-close-post.api.mdx new file mode 100644 index 0000000000..e9a2d5cfd7 --- /dev/null +++ b/docs/docs/reference/api/close-evaluation-preview-simple-evaluations-evaluation-id-close-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: close-evaluation-preview-simple-evaluations-evaluation-id-close-post +title: "Close Evaluation" +description: "Close Evaluation" +sidebar_label: "Close Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJzlWN1vGzcM/1cMPrXANc6CPd3TvCRFs2ZrFrt9MQxDvqNtdbqPSJQ3z7j/faB0nz7bTZoUGJCnxDryR/JHiqK0AxIrA+EUrjdCWUEySw3MAshy1O7XTQwhRCozOMdaZJ5r3Ej8e25kkqv2FzNvi8l4Pve6eWYIAsiFFgkSara5g1QkCCF0NCAAmUIIuaA1BKDxwUqNMYSkLQZgojUmAsId0DZnZUNapisIYJnpRBCEYK1DIUmKBZrIBjcxFMWMQU2epQYN41ycn/OfGE2kZc5yEMLYRhEas7RqcF8KQwBRlhKmxOIiz5WMHOzwq2GdXcu3XDOBJL2FKLNeqXRZpoQr1C0fL51EADEuhVUE4XkRtGhxBtPtp6VjrQu+VC6DxwWk8TmIu0KlL4ssUyhSKIJ6KbVKAdNUeXdjBpceoQgYTskNPgfslvU9lIjomWAjj1AUQSWVLb5iRAcr4N6m7x1ffdAigARJdF0RcSxZT6i7Dqc9Z8sqbMFWSe5YShbdlXaMh21BJHVkldBv3lulfjNZ+u6TpdzSW9gPmEEkYfJILaG12J5kd08XehSfUv6dyWSNXnn+n0j9I7uVhr5J67Ege+pP42jiS7Hsg49ioO8C6xZBt399H9RVC6IIINIoCOO5oFOArcYbC8J3JJ0/x61cetjByJFl8/hHGPnsYUsjMSr8AUauPGxppKJrseVT7HF23FH1GLJ+3brDq+HrRa1UbNVWKsJe1EpFV23l5aA93ga1eUb5fynVOX6xfxJ0z1RDguzJphUApjbhySrHNPYrDxYt8miibZr6JePnDA5WSGU1TxmodaZ5KRJphEphDLNDh9nYO3HwKHuwqLdzQ5jveVkeEN8mu39MHOvbxwKPrKEsgQDWNhEpBCAsZcDelWRuuXf5IeaI8Uf00D850sHYRcqKaMggvYrQJz7WJvjWUPoqCBg18TYklGNzpl8FBddVtA0BGnMUdLg7HRyg9iDvS/1TI/XYXfyaXnQl3LTX60RPgHimen1NKwpW+/nion+r+yKUjH25XHOT/f4rXYwkpHLXq6qiugIqizpfnzLczvbLr4n6NosqsiAxq0P11wzgxogVNuV0XNSRMZjw10OUN3fwqYvLmy7l2gdoTa9n93gYV56+U/n9MJnc9QB9brtJdVfTQauO3EVunfHDRf3sQGsIYVg+Wwz9s8Ww9Wwx3HUeIYqhuzLzAY16Uz1XWK0ghDVRbsIhS9j4TKwwJXEm5FDk0m0jg5HVkrZOZXR38xG3H1DEqCGcztoCY64tXy1dsTpRIpcfkXkrH0pGltaZlv9WcbqHkrXXYmJkusycetUfnXOD0d0NtKYjOD/76ewc9nnsCPO2EJHbFpVt9xmCPRbq+LnzJW5PAKFIfmk+sGecCO6CDd6BtO1dYUoSCP+hYa6EdEXvrO/KjE6hzCgnyuUU2s8mPEOF+49LPrGzANZcG+EUdruFMPhZq6LgZTc5caoC2AgtxYKZnO4glob/jyFcCmWw523dSODNfblf3g6ay2Q3iiq/KSeXHeRfEMBfuO29h7l2sK4qaFfKjKIIc2pp97oXl1q9Ee4+jSdQFP8BQnHajA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Close Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/close-run-preview-evaluations-runs-run-id-close-post.api.mdx b/docs/docs/reference/api/close-run-preview-evaluations-runs-run-id-close-post.api.mdx new file mode 100644 index 0000000000..63f79ec4c3 --- /dev/null +++ b/docs/docs/reference/api/close-run-preview-evaluations-runs-run-id-close-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: close-run-preview-evaluations-runs-run-id-close-post +title: "Close Run" +description: "Close Run" +sidebar_label: "Close Run" +hide_title: true +hide_table_of_contents: true +api: eJzNWEtv2zgQ/ivGnFpAjdNgTzqtN2lRb5JNYKe9GIbBSGObXYpi+fCu19B/L4aUZMkPxXkU2FNiauab4TdDznA2YNnCQDyBTysmHLM8lwamEeQKtf81TCGGROQGZ9rJmdK44vjPDLfitG5m/itPZ7Mgq3JjIQLFNMvQoiYbG5AsQ4ghiEIEXEIMitklRKDxh+MaU4itdhiBSZaYMYg3YNeKtIzVXC4ggnmuM2YhBuc8iuVWkMDIyd4whaKYEppRuTRoCODi/Jz+pGgSzRU5DTGMXZKgMXMneqNSGCJIcmlRWhJnSgme+D32vxvS2TScUpoosjxYSHIXlEpfubS4QN1w7tJLRJDinDlhIT4vIiLCW5Lru7knqI06Fz44xwW4CXSnbaHSicc8F8gkFFG9JJ0QQPxUbg1N7zIgFBHBCb7C14DdkH6AYol9JdggIBRFVEnlj98xsQ1at2k7cvKz52sftIggQ8varrA05aTHxH2L0z1ny7xrwFbRbVnKHtsrzT0etgUJ14kTTL/77IT40+Tyw52zytn3sLthAuEWsxO1mNZs3cnuji7sUdylfEtkksZeev6fSP0rv+HGPknrsU3uqT+Po4eQiuWVdxID+y6QbhG1L66XQV01IIoIEo3MYjpjtguwcdWmzOIHy70/x61cBtjewJPlVPorjHwNsKWRFAX+AiNXAbY0UtH1uKa6dZodX5xOIeuPta9aW77e1ErFVm2lIuxNrVR01VbeDjrgrVCbV6T/t1K9iMBYZl3npRQBSpdRU6RQpmHlh0OH1GxoJ2VYMqGBoM0wLpym9gG1zjUtJUwmKASmMD1UrMbBiUMu1w1CbZ2CxnbLV7sRMBbVzp7KcrEr+TeuD/VUlYvXuN7ec8eJ4ZIuRGrgVnlokSACJmVuw4/mRUgQRQS55gsuu0ATZ2yeQQRLlzEP6GzehLoLENQ44Rw1yqSsLkeqTnvnb5hCwi1eCjMm3Tc/IB0d0qiiar9+HRDyNctH9+3S6YDdbbM/8RAHD8nIyStm2diiGsp2AX66wRmGPZxivJSoU7SVXk959iynxv6Y+vxVyHYp7mqEdoBGpX7juvhIXS5TisvdpuxI6JJcuEweCCmXaWdM6XujszkmF7qXp/gnsBKri+rbsLPL4LO/xlG99HbzL84OsXv6flrmeKgTHA+p8gRkGZFycyegPiv5bqvkOPk9RZYOPadO1X+Nbv0mLwrS+e3iYv8J/40JnnqF3icqvC9/v6doGRf+SX34sIg8aX19zoNmuhul7ZZvqupJh9csupLyFo1hC+yqzjWRREYvFN4nUo72FUyXcs2KV9Mb2D2+jatAX1dwvzw83O8Bhti2g+rHET3KHv9qX+Y0gKrHSXRwoV9OofqNKVSfplD9TRgtFX0/FqGThHpVTZ+cFhDD0lpl4j5JuPSMLVBadsZ4nynuj4vBxGlu115lcD+8xvUXZClqiCfTpsCYcilkR1usDgxT/NrfEuXca+DsMtf8v6ph8uOvZdAqfN2d51695GzgnesN7ofQ6IDh/Ozj2Tns8tYSpmPAEn8MKtv+M0Q7LNT7pz4s82cALLLs9+0H8oz4p55si9cM0877tNy9xX9tXwkWOjZvdlNGcAJlBMlqY/Do22v6E9cjwhDIaQRLSoF4ApvNIzP4VYuioOUfDjXFahrBimnOHom5yQZSbuj/FOI5Ewb3nKwvCng3Ks/D+952QNB2voqnpGCSv/QLolBuqnGmP+fLKlXKWgSDJEFlG2p71xLlVJ3o93fjByiKnzuOXs0= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Close Run + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/close-runs-preview-evaluations-runs-close-post.api.mdx b/docs/docs/reference/api/close-runs-preview-evaluations-runs-close-post.api.mdx new file mode 100644 index 0000000000..a18d5a749d --- /dev/null +++ b/docs/docs/reference/api/close-runs-preview-evaluations-runs-close-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: close-runs-preview-evaluations-runs-close-post +title: "Close Runs" +description: "Close Runs" +sidebar_label: "Close Runs" +hide_title: true +hide_table_of_contents: true +api: eJzNWG1v2zYQ/ivGfdoAOU7TNt30aW7Sol6bJbDTfjGCgJbONjuKVPmS1TP034cjJVvyi+ykKbB8cCTq7jnec8fjkUuwbGYgHsO7ByYcs1xJA3cRqBy1fxukEEMilMF77aS5zzU+cPznHtfy4UOQyZWxEIHGbw6NfavSBcRLSJS0KC09sjwXPPGKva9GSRozyRwzRk+5JsOWo6E37eQ9T/0jt5j5B7vIEWIwVnM5gwimSmfMQgzO8RSKqBJgWrMFRGC5FfQ+dLIzSA0UaxE1+YpJNVuuMSUeKpt3a9U1NUMnB6kZBuegIKy1rtUO/YDJlTTBg7PTU/qXokk0zwkCYhi5JEFjpk50hqUwRE/lKFEuKJVOcWlxhrrm+YWXiCDFKXPCQnxKs3SyyWsTdSp8WiyBycX1FOLxpgAvA542hcpJTJQSyCQU0WpIOiGgqLE6MJ2LgFBEBCf4A/4I2CfSD1AssT8I1g8Iu5JlZ1a893xtgxYRZGhZcyosTTnpMXHT4HRrsmWS12Cr6DYsZZPmSN3H3bYg4Tpxgulf3jsh/jRKdq+dzZ39FTYdJpAySY7RCsuujd0NXdiiuE35isgkja30/D+R+pf6xI09SOs+J7fUH8fRbUhFkCzbvQa2GdieAukWUbNwPQ3qsgZRRJBoZBbTe2bbAGt1PWUWu5b7+ey3chFgO31PlsvTn2Hkc4AtjaQo8CcYuQywpZGKrsninu+utXt3wsNkvV10Bmmdr2e1UrG1slIR9qxWKrpWVp4POuA9oDY/kP5fSvUiAmOZda1FKQKULqM2JEeZhpFvDh2m4LdsGYZMaCDIGcaF09Q+oNZK01DCZIJCYLq7hRmFSeya8qpBWFmnoLHN7avZCBiL+YZPe3qKv3Gxq4GrpvgRF+s6t58YLqkgRsDlgwotEkTApFQ2vNQLIUEUESjNZ1y2gSbOWJVBBHOXMQ/orKpDXQcI395NUaNMyt1lz67T9PwZU0i42VNhRqT77AukpUMaVlRt7187hPye5aP7fOl0oNcniH19/iWzbGQxH8jmBny4wRkEH44xXkqsUrSRXodm9qhJjfwy9fmbI9ukuK0R2gAalvq1cvGCulyW51xuNmV7Qpco4TK5I6Rcpq0xpe+1zmafXOheDvFPYCVWG9VXwbOLMGdfxjF/anXLmZ23id3Q9+Myx0MdMfGQKgcgy4iUzh2B+qjku6qS4+jzFFnadZw6Vr/9IqCRvePjUc3quF74s/+rs7Pt0/0XJnjqNTrvaE9++tE+Rcu4aDmlC5U0vj7mrHO3n6FP1cZK69rM2vL1Co1hM2zbuFdMEhmdsCcfyEbyK5gu5eqb4YrewO5+Ny4DfW3R/XB7e7MFGGLbDKq/qeiUqZOhnSu6Fisvu8Kihl55NdarXY316J6l529KaHGhplbAR8hpATHMrc1N3CMJl56wGUrLThjvsZz7FWQwcZrbhVfp3ww+4uIDshS1z9uawIhyKGRFU2wVEJbzj75whOoJfWfnSvN/qx6KOiSYBy0igLJzuL7Ge/edZbnAxrXcGF5O2W+vp+evuq/fvHjTffX6/Kw7eTlNumfJ7+cvp+fnbMrO4c5v7FPlJ1My3/eudvo3A6i12HB68uLkFDbZbwjTYmKJX0yVJ/4zRBucrtikRi/zKwkssuyP9Qfyk4JITd8arxHsjRNwSabF77aXCxZ6Qm93WebBGMo8ILO1S9Xyzi0Kl6mU0nNKn3gMy+WEGfysRVHQ8DeHmgJ+F8ED05xNiLAxkTivQl9uN3ARCkv3NnQRZC2EeqPIUAEIGv0kwdy2yt7VMvzmenQLEUzKe9xMpaSjGTlHvzFQ85IHDyk1aGwJgsmZo7oQQ8Ckv/8AfFen2A== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Close Runs + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/commit-evaluator-revision.api.mdx b/docs/docs/reference/api/commit-evaluator-revision.api.mdx new file mode 100644 index 0000000000..7069ebaaab --- /dev/null +++ b/docs/docs/reference/api/commit-evaluator-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: commit-evaluator-revision +title: "Commit Evaluator Revision" +description: "Commit Evaluator Revision" +sidebar_label: "Commit Evaluator Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWm1v2zYQ/ivGfdoAOU7TNt30aWnSolnXNUjS7oNhBLRE2WwpUSWptJ6h/z4cScmSX1RLsYegdT4ktsR7Tnc83ssTzUGTiQJ/CK/uCc+IFlLByAORUkk0E8llCD4EIo6ZvqPFkjtJ75liIgEPJP2SUaVfinAG/hwCkWiaaPxI0pSzwKAMPimR4DUVTGlM8FMqUYdmVOG3Veg7q7Rp6T2RjCT6joVGXTJ7H4E/nIOepRR8UFqyZAIeRELGRIMPWcZCyL1yRZJxDvnIA800xwulE3ofLXbvEgXgq5CfIy6+7kHlPw56SePCyn1Yt2TVHqyxGnbvrrqXiNQsIsEuFZw5SKch4uZ8VLHr4cjUXZApLeK1DzAWglOSNGq8VL1zi5B7CFdu/UMQy712oNMsJslDAN8YgDz3ikVi/IkGGtaE12vjs1W83IOYalJ/ChKGDFME4Vc1v27aywosSzSdUFnXFI/rV6rmrdcFAZNBxon85XXG+Z9KJP3LJM30r7BsK2IwTePthIiUZNbo1roorPi2SfYdehIlVuLzMXn0b/EXU/p7Pt1k47J0Ow/d2iiEhMR0S/tXnwBlcw9CqgLJUjS1K9RFBSL3QPFs0hXqBmXxqcjyaarnpnsq1QOe+KMTzz3IJOuK8kEyi8C7I3BEmFISUtk62Pflkl1s4O7KFlarhtx8TSMqaRLQKkjxoKNWx+qN2wZ0genmtt2RR5SWHl+ib7EBN87rWE5JmrJk2wKw7N821aZQZHYd01jn0LfSuQcpkSSmusOR/pkDZbPs1cKfuEtU3rOAbuNaLTPaKgAddO7huBexSWZnxX3oOq8p2Kr9vHYT5AUxHdLaLlQpMuncFLxz4q2e5tyOs+tkcIRmkoY4hm8ehNcNcnXwazuKQ45KFqDocnNBpSJR9iydHB/jn1pbAzdZEFClooz3rt1i8LpO9IHIrNDS0axuLa7A3ioiGdfgH9fm3pJjaKjmBy7gwAX8f1wAyfR0w1TeBdyi2Ta+MRdVUHFpX7OYNkJfIOAO89yBBvk5aZD3me7Q9axItWh7rOwPzoQ0uXULKqSLjx43FxJISjQN70jjVNE6DZ5b2N6ZcVaWhvtQ8sHCOiUh5XQPSi4srFNSuGs822GtK5z1cuaqXeGvnWopvFVqKRy2Uy2Fu0otPzLrc6ABDzTggQb8cRqdAxP4KPu3RxkrBzLwoWRgG4yHypekWm4YumcnJ6sc3EfCWWjs672SUsjuBFxINWGm2LqoXF7ARVC72+ZUVWqFDeSF2X+JgBSNfawmq+lmLcFgl2xeapzRu8W736NQ0S6r2q2rUUaFe613N5txYd3XtMFvbm+vVgDt3tY31dKzCzKid714fyqmeirwJatUKARPiZ6CD4MU+U/6dVDSIGpQMKJq4Chhe7BN2hzObWsFU61T5Q8GARdZeEQmNNHkiLABSZk5S4oGmWR6ZkTOri7f0pkt5eAPR9UFprjYSKkvKzeJpOwtRZ/ZqdIxWuxfu/0eMLTdtmvGjxix14vXxV59I3HK6Xdf/1pP8sLTiPz2PDp91n/+4smL/rPnpyf98dMo6J8Ev58+jU5PSUROYQNdu61wnXltrbKNUJfHq1Ge2wqVVF6FsrOJuE66ldccZ+b+jeCoqwXfUrIKi0Nbj/7ysm2VK8vc3FI244tbZtCofuXVr4sRoNZ91tugSn+ykKx1GrXCuKZ+5VUKtcyG2K8nkTDnoKByzSnrnV1dQmXWhOOjJ0fHK+6oLcbcTgIT5sUhMrdLm4vjXB5kjMrYJHbQlMR/LG7gk2EScQynw2vKPUtMjjvWmn7Tg5QTllQGNpuWhuDSUvVsKJN/XWoyNhX/r5piSvOHMJ+PiaIfJM9zvPwloxLzz8hF/RidOByVs51JTZ/pzFZ8rH19k/hxOc9s5lmqg1ijrMRZENBUN64dVbLu1fubW/Bg7F5fjUWIMpKghfjbB8C3YbWxzZ/ba3PgJJlkNi4sJv78BzpL2qE= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Commit Evaluator Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/commit-query-revision.api.mdx b/docs/docs/reference/api/commit-query-revision.api.mdx new file mode 100644 index 0000000000..4b7639ab5c --- /dev/null +++ b/docs/docs/reference/api/commit-query-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: commit-query-revision +title: "Commit Query Revision" +description: "Commit Query Revision" +sidebar_label: "Commit Query Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWltvGjkU/ivIT1tpCITm0vK0aZKq2W2bbJJmpUUImZkDuPVcanuSsGj+++rYnhsDw4Slq2pFHtBgfL5zfGyfy5dZEEWnkvQH5I8YBANJhg4JIxBUsTC48kifuKHvMzX6HoOYjwQ8MsnCgDhEwPcYpHoXenPSXxA3DBQECh9pFHHmaoTOVxkGOCbdGfgUnyKB+Ap19RekDDsyytZNe6SC0UCNmKfVBPPrCekPFkTNIyB9IpVgwZQ4ZBIKnyrSJ3HMPJI42Ywg5pwkQ4copjgO4KrnrQeD27rCyWT3Wsr4Zi27XoPBpkKxCXV3afyZhbQaJlwfmCI29TyGm035TWnTKtrHYciBBkV11qBkmDjpUDj+Cq6qtem9NiJxiA+KbmlMqjlXwwIFUxBlzf64PFJcw2pdxGXCjTkVv7yPOf9NhkH7Kohi9YqsWiJT4DcTokLQeb1bSqLkRS79hJ5Eie239z/w6OfwI5Nqk0/XrXFZ+mUeurdnLqA+NFx/1QKUTRzigXQFi3Cp20JdFCASh0geT7eFukNZtIou36ZyFH5igRc+IVrNpACeQKqG0cejCtqKaafUeM1AJg4Jubdr8GsDiRsLz02hN0bNz4iVOIQzm88qoCvvxhLKRy2N6xYeiHrbIIh9TORUuhB4ZgyPmf0yrPWBhk8cbZR4pHxri69SgMQhgqrVF6UaAyo4tyibVO5nPuHP7CxWYTBNMa5AbDiqptAJtWM9mNCY497SwMujStW9+tdQEIcEIRoUmJEgFKS4c+GUuZRfpxoSByskE9y0bhv31xs3YcB1El+2JIv2ekLikG8w3/bm/w5zU/LwuGlMe3FMT1earMhkq+O9EjG8JDI/aPMTp7Shm28Kk8QhTI5wHwto56EfUcFkGBR2bz0KfMfd159TPA9c6SfQj/g5Vk9BEf9z7INgbiNwqahQ8ompmR700kestikLcAE+Ve4M8Imzb1BUdKfRGulhgTnPI1YyFdNlI/kZRQNmtOLMC+Y2Q4BnJpW0VtgvBZxLHIHAhVVg1XiWTnIK95pJc0SyK7ju5rlUwkhCIJlij6uvxYpKtmLEOZXQustgCqZMKJeQOASesVTXG7i1lkvEaH3SGBUVNfHzHp7VtfUF4pddQPnqFNDEojPOX2SJOWS5Jes31c5ZgYXNKBPg4UkygbN0oW3g1VE4q7PTDPGKDJdD0wpZWVzTYFi3oAx5VWqqkdON3K1thS+orsdXpDYfpKTTrUvQT1a8sSXnpiff5PbVnfxyn1oGvTUcAkkQPAfD+K8HZBQG0pzIXrdr0nShcCZ3seuClJOYt27tZBsct6Ai3DA2QkuJrngYcEbhHHSzdj4jRmriyp7E+FlIDBqr2aYq4QXgBs00ULX38sXNyYUug3d35/f8zVb8zXWstiBwKlIvYHCM7P+cwqlzawMOZxsf/dwkjiuAKvBGdLcUx7mBbZ1pZ8WR9yOUfDGwVokHHH6AkgsDa5Wk7hrvMhOlznqXpqPUXzvVknor05I6bKdaUndlWh5BVKuU5sf1wYrviG/c3UKtD/f85Z6/3POXe/5yz1/u+UvY85d7/nLPX/5s/GVT+X8jm3GBiSYWj3q9KnX4QDnzNDHYuhRCX7UteUMPFGW8lBPLE3jorsmYm5NUzdZ+DI2BmkeR07pUW+B/zJT1U7UzWvf466aDiusyqu28ckqz7jXeXb+MC+O+us39cH9/UwE0e1veVMMqtwyZeJu/q+aDmoX4MlsUSgSOqJqRPulESNvCU+e7efmtk7K4smPpa4dIENg06e2KBSd9MlMqkv1Ox+Vh7B3QKQSKHlDWoRHT912CGwum5lrk7Obqd5h/AKrr38GwOOEOD5Q5IuVp2e7QiGGFk9IVlmlkf5t9x3IX7TFS6A08qrf5e3mXz9SPONS+Z1clpcnrCX1zPDk5ah+fHp62j45Peu3x64nb7rlvT15PTk7ohJ6QMsXcVCanjZtKlMjgpkIpyZkzjDktlpE/+dkvH6Js2LS4hWm2vSy1kWm7SHrd3lG7e9ruvb0/PO4fH/Z7bw66p4d/kbzrq5tjmremC7RtWTfrrEptU94FddMuprvcU+Slpm0JiuX9ICvf89XrKj3/akvufKAAqAvTQqGyXJCY+rhUPeh/+SQORnod5zPCOwuOurubhPp2pJla373W2c0VKVAbpHtweNCtbGtpsq4/XX0B0qulfybO0iXPrjeWer6O80QB9X/Nf0DLMK74NCjgrQtFS6ShvegKnlUn4pTpaK5NWNgoNSA2Stnrw3StnEUqvZj0X20zDG/9AVksxlTCF8GTBIf1rcPoYy/tGL03wNQySwPTwu7vucmBbZ0A8l2u5EPMVUbizHUhUrVzh4UIfHN9d49NhX1t2A89lBEUl4effVI+O3psQTgNprE5EAYT//4BWqsxtQ== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Commit Query Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/commit-testset-revision.api.mdx b/docs/docs/reference/api/commit-testset-revision.api.mdx new file mode 100644 index 0000000000..8ad5630d78 --- /dev/null +++ b/docs/docs/reference/api/commit-testset-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: commit-testset-revision +title: "Commit Testset Revision" +description: "Commit Testset Revision" +sidebar_label: "Commit Testset Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWtty2kgQ/RWqn3arhMHYxome1omTCptk7bKJH5aiqEEaYLK6ZWbkhKX4962eGQlduAgiV9lZ/GBj0X16pqfVlyMtQJKpAHsAfSqkoFLA0IIwopxIFgY9F2xwQt9nciS1wIjTRyZYGIAFnH6LqZBvQncO9gKcMJA0kPiRRJHHHIXR+irCAK8JZ0Z9gp8ijhYkowL/KwKPtMHNgo+EMxLIEXOVqWB+MwF7sAA5jyjYICRnwRQsmITcJxJsiGPmwtJKJYLY82A5tEAy6eEFs/nGg0Zu9FAc6reTx0/2U/8+ND7hkk2IU6eBKwNpLEw8FT1Z7PyRzYhQgeMQQcXaRYzD0KMk2Gr1AxGNfoqytDQsJ87PYmqIJZ6FFgvHX6kjoeTR92qjZbylBT6VJL8K4roMI594tzlnbDqADCwLJJ1Snrfkj/NXsttbbwscxp3YI/y397Hn/SnCoNkLolj+DsWdIgaT1K+mRDgn861uzatCybPbdD+jJ1GjFFTPyaN/hZ+YkLt8ummPRe39PNTXUQgB8WnF/ZdXgLpLC1wqHM4i3OqhUNcZiKUFwounh0Ldoy6uihTvpnINwDQwYm4hAkwU785u1YM5yTmNniuShL0mk6WW15erp0rv9WLfp7gOp0RSd0RkRWyXSNqUTIXVZgNvNWzjSsV8HLlPYeSLhjVGXOrRJzByrWGNkcRd43mNp5E4683cHErir1qtJN5KrSQOq9VK4q7USn3QG7uQygVjTauQZKvhXqk56RCO1Wtn9Tp2THV3TOWqefToYR69Rk/uGgiwBziokag0a9yZOVgvZf3IIQSZHtwBfjbqe6zlrR7J12kgCcA4dZFE2DTKl3uYPPCdJhJgiQZWgJLHVF0QURiYtqvTbuOfXPcK97HjUCEmsde4M8JgHcpHOGGslQr3Q6Y6KwkslxMSexLsdmaaT/mRHV3skcl4TkwGieUs5LWBazSdmbfep/s3nwhYYw44kjgviMS5ieUBFbSktUcJ1bq/OI+zza0VWuFDfPS8mZwjBXCkAJ6UAnikvNwjVQ/XB6NeE+lYNyFxJDGPJOYxg/3aGexIYv7fW7fjzPAEM8MLYTJfhlNfAJlZHeHntFNacKk4xvNOp8wiPhCPuYojbLzjPOSHU4gulYR5+GlDW+WFTu7bfYJ5WDys1aY/hXqBKj2J6bpGcg0BpEU2iypnNPr47S4CGPelTRu5HGWYuFd7d/M2rrX7th3vh37/tgSozzZ/qJpgbiRd593q7TWfylmIL7hFoUDoiMgZ2NCKkMGl31um9RWthNEVLUNnY9vKcYRRJxZzD2yYSRkJu9VyvDB2T8iUBpKcENYiEVN3j6BOzJmcK5Wr295HOv9AiUs52INhVuAeY0pHSV4sPSASsY8U/aXJA8M2sn/10VvAcN8zrYUOwWi9W72q9+4H8SOP7nj1bh1FDWcT8upi0j1vXlyeXjbPL7qd5vhs4jQ7zuvu2aTbJRPShTzdXFUnO2hU1cnRwlWV0karQGviw4Y8KWkeP5g6v+qKUtpmdavkYy69rIfTjJipbvkBcFBt6cPc7DZYHOSyfeWzcxR02p3zZvuy2XndP72wL07tzquT9uXp35AfhbbJZaeZbXKFgaTqcgsTRlW1wshQVe2QsMuF0Sq0TGQs88/30jKAA0cwCVXsJM8YVIppXN32IMOnQPvk9KRdisicMBY14qi7PMkg6mv0Xy6XpVkMLKC+qmggKfH/WH2BK8P86ZMgg7c56Ra4SpPRJP0hW5FHmKpcahELk48HYPLxKkcIVXRMTlb7SR4yzjCT2wNYLMZE0C/cWy7x8reYcky8Q5OaxujAAXp6lqTgBfxD52rlquA3VbVDcS/WKbdQ/LEwa40rx6GR3Co7zBSb25v7PlgwNu9M+6GLOpzg/vC3DYAvYEu1N3uhry3AI8E01jGhMfHnP27PgAo= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Commit Testset Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/commit-workflow-revision-by-variant-id.api.mdx b/docs/docs/reference/api/commit-workflow-revision-by-variant-id.api.mdx deleted file mode 100644 index 1932d11137..0000000000 --- a/docs/docs/reference/api/commit-workflow-revision-by-variant-id.api.mdx +++ /dev/null @@ -1,5443 +0,0 @@ ---- -id: commit-workflow-revision-by-variant-id -title: "Commit Workflow Revision" -description: "Commit Workflow Revision" -sidebar_label: "Commit Workflow Revision" -hide_title: true -hide_table_of_contents: true -api: eJztWdtu2zgQ/RVjnlpAjh0nTrt6Widp0Wy32yBJs8AGhkFLlM2WElWSSuo19O+LIamrL3VSB9iH9CG1qJkzw8MhecZegiYzBf4d/C3kt4iLBwVjD0RKJdFMJBch+BCIOGZ68uAsJpLeM8VEMpkuJvdEMpLoCQvBg5RIElNNJSIuISExBR8aJiwBH1Ki5+CBpN8zJmkIvpYZ9UAFcxoT8JdAksXnyGDoRYoYSkuWzMCDSMiYaPAhy1gIuVdaJBnnkI890ExzHLi1YTsXIeQ4jtGo0qciXGCIdvBAJJom2kRPU84CM//eVyUSHKtySyWyoxlVFsZysfqGZHou5L5mM7JouQch0XRHVDTtahbTrdDnCJh7EFOlyGwr9jaYT84999zCPw3mL2LShZCqQLJUO26fAnVeg8g9CCQlmoYTovdK35mF7Yw0BsnS8DmCfLGwLkhIOX2GIOcW1gUp6JoucOfuqYwLsk4XZl9WfO01SsFWGaUgbK9RCrrKKPdUql8o11vnnnugeDZ7Ksw1+uYe7G+idnYRNzfFGkgx/UoDDZVDcZe8Ny6r0Oaw0SQkunXakzBkuF0Jv2yepT/ngSWazqhsRounzZGpEJySxAytjwUBk0HGiXz1PuP8DyWS7kWSZvo1Tq8xXcRgmsa7OREpyWIry01XZHw13uaz17Fp74f1d+jGZTq3nmtWiUjNIhLoPe6akYN0e6aIsFvGhfP6bGtC4xk0RIn/OHIdxLqMV5Z41fuqkBfrjCsJc1fpkPFmkCurgCDPEU1SlYpE2Q026Pfxv8alC9dZEFCloox3rpwxPFkoBSKzTq39WrsbjIXJrNJUuxNdUbUT03XybG5bmXPTt9QdDwarbN0SzkLDReedlEI+naqQasI4fnLnS9uAi6Dx9jHH4zhvnUnVrP8UNkEjBtWstljl1lkj9qzJZlNDRucG3/5sHXBeNrSza2zFgl7L7uZpnFv6tm2vDzc3lyuAdm2bi3pmWp9OUQ+dssjMDTYX2B6lQmnT/Og5+NBLsXzpQ29KFO0VPZPqucND9ZbVMZX3bGsFHigq74u+KZMcfJhrnSq/1wu4yMIDMqOJJgeE9UjKoJ3myLztnKGpOcAUDTLJ9MLgjS4vPtLFB0pCKsG/G9cNrrEGbVU1zcoFJSn7SJFf187ZToT9a0vFdXRz64UEYnVfVb3Wux8kTjlt90pFdwRHEXk7jE6Ou8M3h2+6x8OTQXd6FAXdQfDbyVF0ckIicgJF1wOD/mDY7Q+7h8ObwyO/f+gPjw/6x2//gVr7UpWgy7h8bpJWDtcbg20R6tp+m11dnm+zaynsXaloSeadGWxq4F3dSlFb8WXVafX8GLhSRTI1CTKlRVw04ExN6D3hGdFYF+XYPItJYp+bsrEmdXDzsIDawUAkEZtl9vsLHGrrmF1TrUuTl0r69UraR9m0SqAl+nau6UrIvSzs/2Nh93IevGzzl2oojwaj5lgSCaNligbSCqVTEnyjSdi43voHhwf9TcrKOXRGlxdO1zcrxpoh1w3tVqo28IDGRtSDpiT+vXqBWaKCNPMo8bboztYXo06lafpD91JOmFHvJoulk6R34CQpeICiFDwoZWl1GOJHv/FVvdOmYw/mqHD9O1gu0f+L5HmOw98zKlFhjh3IFCm+W0LIFH4OwY8IV3Ql5bItgldXTv2/7lRflTSnUqjQZGFy5Rk+gQff6KL524LpbOaFyF06gzMbq2v6jwpgpR3DVsl6jIKApnqr7bim/i8/X98gse5nhViE6CMJso1/TbLCzN3+YIBjS+AkmWVWrlpM/Pcf4UpQfQ== -sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Commit Workflow Revision - - - -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
    - - - revision - object - - required - - -
    - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - is_custom - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - revision - object - -
    -
    - anyOf - - - -
    - - author - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - is_custom - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - data - - object - - -
    -
    - - anyOf - - - - -
    - - service - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - configuration - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - - object - - -
    -
    - - anyOf - - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - - object - - -
    -
    - - anyOf - - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - - is_custom - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - - is_evaluator - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - - is_human - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - artifact_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - - object - - -
    -
    - - anyOf - - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - description - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - created_at - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - updated_at - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - deleted_at - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - created_by_id - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - updated_by_id - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - deleted_by_id - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - - is_custom - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - - is_evaluator - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - - is_human - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - metadata - - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/commit-workflow-revision.api.mdx b/docs/docs/reference/api/commit-workflow-revision.api.mdx index e20d567960..aab7bf6f30 100644 --- a/docs/docs/reference/api/commit-workflow-revision.api.mdx +++ b/docs/docs/reference/api/commit-workflow-revision.api.mdx @@ -5,36 +5,36 @@ description: "Commit Workflow Revision" sidebar_label: "Commit Workflow Revision" hide_title: true hide_table_of_contents: true -api: eJztWW1v2zYQ/ivGfdoAOX5JnG76NCdp0azbGiRpBswwAlqibLaUqJJUUs/Qfx+OpF79Uid1gH1IPiQ2dffc8eGRfE5ZgSZzBf4E/hbyS8TFo4KpByKlkmgmkssQfAhEHDN9/+gs7iV9YIqJBDxIiSQx1VQixgoSElPw4YFIRhJ9z0LwgCXgw9eMyiV4IOnXjEkagh8RrqgHKljQmIC/ApIsP0YGRS9TRFFasmQOHkRCxkSDD1nGQsi90iLJOId86oFmmuPAnQ3cuQwhx3EMR5U+E+ESQ1TRtcyoB4FINE20iZ6mnAVmzr3PSiQ4VuWWSmREM6osjJv/2hOS6YWQh5rN2KLlHoRE0z1R0bSrWUx3Ql8gYO5BTJUi853Yu2D+dO6555b+eTB/EZMuhFQFkqXacfscqIsaRO5BICnRNLwn+qD0nVvYzlhjkCwNXyLIJwvrgoSU0xcIcmFhXZCCrtkS9+6Byrgg62xp9mXF10GjFGyVUQrCDhqloKuM8kCl+oFyvXPuuQeKZ/Pnwtygb+7B4SZqZxdxcztsgBSzzzTQUDkU98c747IObQ4bTUKiW6c9CUOG25Xwq+ZZ+n0eWKLpnMpmtHjWHJkJwSlJzNDmWBAwGWScyJ/eZZz/rkTSvUzSTP+M02tMFzGYpvF+TkRKstzJctMVGV+Pt/3sdWza+2HzHbp1mS6s54ZVIlKziAT6gLtm7CDdniki7Jdx4bw525rUeAENUeI/jVwHsSnjtSVe974u5MUm40rCTCodMt0Ocm0VEOQ5okmqUpEou8GG/T7+aVy6cJMFAVUqynjn2hnDs4VSIDLr1NqvtbvBWJjMKk21P9EVVXsxXSfP5raTOTd9S93JcLjO1h3hLDRcdN5KKeTzqQqpJozjJ3e+tA24CBpPn3I8TvPWmVTN+g9hEzRiUM1ri1VunQ1iz5psNzVkdG7x6ffWAedlQzu7xlYs6LXsbp/GhaVv1/Z6f3t7tQZo17a5qOem3ekU9dC5rtqdmOqFwJYoFUqb9kcvwIdeiuVLH3szomiv6JNUryhq1bMtFHigqHwouqVMcvBhoXWq/F4v4CILj8icJpocEdYjKYN2amPztHOOpubQUjTIJNNLgze+uvxAl+8pCakEfzKtG9xg3dlKapqVi0hS9oEip66Js90H+9eWh+vjFtYLScOKvq76q7ffSJxy2u6Pio4IjiPyyyg6PemO3gzedE9Gp8Pu7DgKusPg19Pj6PSUROQUik4Hhv3hqNsfdQej28Gx3x/4o5Oj/mjwD9RalqrsXMbl9yZp5XC9GdgVoa7nd9nVJfkuu5aq3peKlkzem8Gm7t3XrRSyFV9WkVbfnwJXKkem7oNMaREXTTdT9/SB8IxorItybJHFJLHfm1KxJm9w87CA2sFAJBGbZ/Y9BQ61tcu+qdblyGsl/XglHaJsWiXQEnp713Ql3l4X9v+xsAc5D163+Ws1lEeDUXAsiYTRMkXTaIXSGQm+0CRsXG/9o8FRf5uycg6d8dWl0/LNirFmyHVDu5WqDTygsRHyoCmJf6seYJaoGs08SrwdWrP1MtSpNE2/6V7KCTOK3WSxcjJ0Ak6GggcoRMGDUopC1WEpMzEjR6ceLFDI+hNYrdDlk+R5jsP2fT2KypApMuO1N/Zf6LL9ih8XDJMzktQ8meEqTLDvWBRydOU8z22D1DXdQeW71ixhI2M9xkFAU73TdlrT5lcfb26RAvfSPxYh+kiCvOBvHwD/w6ENFyhXcWwFnCTzzApLi4k//wFljCnF +api: eJztWttu2zgQ/RVjnnYBOU7TNt3106ZJi2Z7C5K0+xAYAS2NbLaUqJJUWm+gf18MSd18q+04gNF1HhxI4pwhh8O5HPAeDBtp6N/AP1J9jYX8rmEQgMxQMcNleh5BH0KZJNzcfvcjbhXecc1lCgFkTLEEDSrCuIeUJQh9qEbeMcVZam55BAHwFPrwLUc1gQAUfsu5wgj6MRMaA9DhGBMG/Xtg6eRjbOHMJCM4bRRPRxBALFXCDPQhz3kERVCNSHMhoBgEYLgR9KJcTeezm0HnPIKCBpBe1OaljCakq56GUTkGEMrUYGrsNLJM8NBaofdFy5Te1ZPMFNnIcNT0NGuaxUMaNnnMxQawfUVt/GpFj7ASp4Epw2MWbnMJJx7Sa4iFdf8mdnvbuL4Nc21kMncCQykFsnSpxnPdOXUIRUBweMdEzoxUD0F8VYE40HGesPQhgG8sQFEE5SA5/IKhgdm9eW1NNgtXBJCgmTrBLIo4nSAmLlpmXbSVDVieGhyhamtKhu03zdXN1wUhV2EumPrtdS7E31qm3fM0y83vML1UwuAGk9WEmFJsstSqbVGYMe0y2fdkSZKYcc9dsugH+Y5r8zObLlrjtPR6Frp2XuhTzkrrn50ByRYBRKhDxTPjA/cmUGcNiCIALfLRplBXJEuzYtOnqR2a7lDpB8z4sxcvAsgV3xTlk+IOQWyOIAhhjCyyZcR6zv5YJtnGBm4va9nqZXFovsQYFaYhNkHKiQ7WOlZv/DYUZUW26o7sUFjavUC/xgZceatTOmVZxtNVE8C0fdfJNqUiu+sUxjZ2fSddtDuDXc1fu+coi2UvanvSLqG64yGuYlrX2KzhgB66sN1QzEe5awUfQ9dpS8Eq1eelb7DOmC2Q5hahWrPRxjXBey++zmRObYM8V6RuMG/mdIlzWp825qVrV6EoCFyhzmSq3YE5Ojykf63aBa7yMESt41x0Lv1g2LirDWXuhKbOX3P/aAQVUDHLhYH+YbMvbDbDizL2vi3exbaY5Wa8oEHdBNyhuZJ26cFsoNLQruEJLoU+I8AtHvo9I/C/ZAQ+5maDAmBGao0KwMn+4qTAMrOuwApsYqPdpgVChcxgdMuWFthrR8FTB9s5scbKs+gxlHxysF5JhAIfQcmZg/VKSnMNJ1tMdaWxXk58sivttVUtpbUqLaXBtqqlNFel5VcmQPaM2J4R2zNiv06hsyfFdrJ+20lf2fNiD+TF1oB4oHjFOznO6tnR0SxN9ZkJHtnFdV4pJdXmHFWEhnGbab1LTg8QMmx9XedINRKF8+J61e9kyMqqPtGj2Vgzl1xwQxYPtcboXNPXn5GJtC6n2o9rEVKleZ11Fy/jzJlv2f6+ub6+mAF0e9veVMdYdiqy6rK+JpSgGUu6SpRJbey1ITOGPvQyogjxe6/kzHSv5Ax1z906AnemywtGtqqCsTGZ7vd6oZB5dMBGmBp2wHiPZdweI41hrriZWJGTi/O3OHFZHPo3g+YAm1ecn7SHVVvEMv4WyWL+apPjsvi/bvP9pSZXqVkrkr9e1neMXv1gSSZw4R2hufQnPI3ZH8/j42fd5y+evOg+e3581B0+jcPuUfjn8dP4+JjF7BjaTOaqMi12clWhFuG4qlBFpDUIMxcH25RX9c4zVvRcM0c13VE19fWxaftf9dpVqo1hvm2oauH6k63zm4+i+VhX4K3ir12FNMqDWrKV6Ft5aU76KJoEZhWPqFxOY2l9sSRSrad3Ti7OodHqweHBk4PDGXO0BlN0ZaGNrqUj28/VmssjVR0mCAATG1rBIEv+qj/QzOgce37R4y05/VM8ij9ZBn+YXiYYTxvtkgsMN+ADQ8NhtY1/PjjYFdnwMAhgTDGlfwP390Om8ZMSRUGv3U1DigAR12woGncNv+Jk4S1Fckyang0k9suQbH8zqDoyi+kgTl3S6tqIXcvOJDBKLk7iJAwxM0vHDhrx8uLj1TUEMPTXFRMZkYxiZBn67QPQbU1jjUL3GendPQiWjnLnTg6T/v4DHI5mOQ== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + path={"/preview/workflows/revisions/commit"} + context={"endpoint"} +> + + + + Commit Workflow Revision @@ -43,5401 +43,29 @@ Commit Workflow Revision as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
    - - - revision - object - - required - - -
    - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf - -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - is_custom - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - revision - object - -
    -
    - anyOf - - - -
    - - author - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - is_custom - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - data - - object - - -
    -
    - - anyOf - - - - -
    - - service - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - configuration - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - - object - - -
    -
    - - anyOf - - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - - object - - -
    -
    - - anyOf - - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - - is_custom - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - - is_evaluator - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - - is_human - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - - anyOf - - -
    -
    -
    - -
    - - artifact_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - - object - - -
    -
    - - anyOf - - - - -
    - - name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - description - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - created_at - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - updated_at - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - deleted_at - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - created_by_id - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - updated_by_id - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - deleted_by_id - - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - - anyOf - - - - -
    - - - is_custom - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - - is_evaluator - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - - is_human - - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - metadata - - - object - - -
    -
    - - anyOf - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/configs-add.api.mdx b/docs/docs/reference/api/configs-add.api.mdx index c966bf55eb..3fbcb17ae9 100644 --- a/docs/docs/reference/api/configs-add.api.mdx +++ b/docs/docs/reference/api/configs-add.api.mdx @@ -5,33 +5,36 @@ description: "Configs Add" sidebar_label: "Configs Add" hide_title: true hide_table_of_contents: true -api: eJztV99vGjkQ/lfQPC+B5ge926ejP6RGvSoooXmJUDTYs+B2197a3rQU7f9+GnuBBQI5RYnu5Xhh1575bOab+WZYgseZg/QObtEq1N7BJAFTkkWvjL6UkIIwOlMzd49SQgKWflTk/DsjF5AuedOT9vyIZZkrEfx635zRvObEnArkp9Iyqlfk+O0hnnZvKdvfdHk1C4B6cZVBercEvygJUnDeKj2DOlmv6CrPoZ4k4JXPeeGGfesEHsg6Fe+wB6O0pxnZozi3jX+dgDBFofx9Qc7hjJ57sfcBpfOlQakTUPIYVgKZsQV6SKGqlDyKfSmhrpPVtpl+I+Fhs31NGVnSgq4jd1+MpJxv0GLsfyb+QyYe8eAyU5Ykl2a7WPZJa53ORXnfLteaoTdQ3lYUFlxptIsUn/b7/CXJCatKH5iCm0oIci6r8s51YwzJc2u9RItFeEIpFbtgPmpZ8K0Oh2wUvesEKps/l/Kv9lC+76E9yoCS7TCvWfwwvnrk2DoBR/ZBCXrdQ3Y09HUOIf2grNEFvfZBbW5ylZFYiPzxEt9Lkb9X5k/y8eLAKw5eHLgd9xcGf0JtmnLdEkxWlJUQrDSLcc5PT/fF4xZzJQORnY/WGvt85ZDkUYWiV56ihGwb5EZs7f4LbVi3nMkmDmgtLtoRNPGCrBmFCx1wtyWsTFtdJJocNg3B6Ix59ykO+HfFoxu7dj9chzdG9/DP+BDDd6whfRqPR3uAkdttUmMOuM4wDIEF+bnh2bA0juFK9HNIodeUg+s1TagXZ0YuP7IuEBNUHObely7t9URuKnmCM9IeT1D1sFSwe/Qw7Hbes2lQdUeissovAt5wdPmZFp8IJVlI7yZtgxvOq5gp22ZrkrBUn4ljprHg92Hl58aq35H+BBRfYB69OCicsdebCfjjLyzKWJc7ahwnp00SrKeg/v4Ys7HiQQTOMvzjIhucdy/evnnbPb8YnHanZ5nonoo/B2fZYIAZDg50s1c/lYclnZkQwSaFGnreofhOWrYPhf7Jm5P+IT4bh85wdNkoBIqgECsqghkkOxmzzhVIgIogD+AJi782G3xLTswCdQtvO4O3rrROB0+/fK/MUenWwBGTez2GuXhbxuJpTIY+N+c6SO9guZyio682r2te/lGR5TSdNJ1iyhG7Y+WZrxJ2Cd9pEa/HEtkN+sDmeRUTdEcuWcqix1AIKv1R20mrVEdXN2NIYNr8cSuMZB+LP1l78CekAPzPj71DxYS1JeSoZ1VMmIjJn38AtvDYmQ== +api: eJztWd9vGjkQ/lfQPC+BkoTe7dPRa6VGbRWUkLwghAZ7FtzbX7W9affQ/u+nsRdYoJCKqrpGghcWe+azd75v7LFZgsW5gXAMj6gVptbAJIAsJ41WZemNhBBElkZqbqYoJQSg6UtBxr7JZAnhkjstpZYfMc9jJZxf57PJUm4zYkEJ8lOuGdUqMvzryY821RTtd5q4mDvAtLyNIBwvwZY5QQjGapXOoQrWLWkRx1BNArDKxtxwz75VAE+kjfJz2INRqaU56aM4j7V/FYDIkkTZaULG4JxOndjfDqX1qUapAlDyGFYAUaYTtBBCUSh5FPtGQlUFq+5s9pmEhU33HUWkKRV057n7lEmKeQYNxs5M/I9MfMeD00xpkpyazWTZJ60xOifltJmuFUNvoKwuyDWYPEuNp7jX7fKXJCO0yq1jCu4LIciYqIhbd7UxBKfmeo4aE/eEUip2wXjYsOBZHQ7Z0HtXARQ6PpXyB31I7xu0s/J/hfKbOlayKdZ1Lrwd3X4HuQrAkH5Sgs5U/f5U7eznZ6p+X6oofVI6SxM60/US6GruWbGKSJQipmOkCU1oSU7Rnhwhj9AaWLft5vIn8R48wg7erJweD/yPQL4pWxzzJurPQx4t4T7SHEX5ccXEs5vXmbOXw9lqFztz9nI4a25nZ95eCm/PbJL1kXFr1+ZT7eowujo3M85Vr7d/gH3EWEm3abbeaZ3p00+vkiwqd/BUlvwxdtsgzsRW7w/Edl33TDZxQK2xbMYx8xNk8hLjyrDdumRl2ihlvMlhUxeM1oh7n+OA38sPXds1i7J1eH10D7/GWx++Y4p5PxoN9wA9t9ukeg2Y1sBdRCZkFxnfT+aZYbgc7QJC6NSLuOnUFyEdf2/J+zFp44hxNwmwsDY3Yacj4qyQFzin1OIFqg7mygnfkCi0sqVzGQxvPlD5nlCShnA8aRrcs3S8GLbN1jxgrj4QhyXFhH8PCrvItPrXMxyA4tdbeC9+bxbl3eai9d03THK/qu0ctHyFvuF5XW1398vljRWvK3AZ4R/XUf+qff361ev21XW/155dRqLdE3/2L6N+HyPsH7g0+eWjclGeRpmLYK2SgeOnNRjeNAeE7sWriy7sKmXLmBMfhUv8VfhdNwQ7QlhLAAKgxGU9WMLkr00Hz4z1lmDawNsW5tZU1hKw9M128hhV2rjL8ppd3/AZP1vG4os+6Y4KC5Z3OIblcoaGHnRcVdz8pSDN0pzUZcuMozTmBWWxEukS/qHST49XvrZLezaPCy/KnVWQVyjvMRCCcnvUdtLIwOHt/QgCmNX/CSSZZB+NX3lJwa8QAvCfCuztssS1LSHGdF54kXhM/vwH+GRdvg== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Configs Add @@ -40,1921 +43,29 @@ Configs Add as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
    - - - - variant_ref - - object - - required - - -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - application_ref - - object - - required - - -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - - params - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/configs-commit.api.mdx b/docs/docs/reference/api/configs-commit.api.mdx index fe9e7dec4a..84fce6c351 100644 --- a/docs/docs/reference/api/configs-commit.api.mdx +++ b/docs/docs/reference/api/configs-commit.api.mdx @@ -5,36 +5,36 @@ description: "Configs Commit" sidebar_label: "Configs Commit" hide_title: true hide_table_of_contents: true -api: eJztWFFvGjkQ/itonpdASULv9uloWqlRrwpKaF8QQoN3Ftzuere2Ny2H+O+nsXfBBEhOVYh0UnhhsWe+8c54vm/ECizODcRj+IpaorIGJhEUJWm0slDXCcQgCpXKuZmKIs+lhQg0/ajI2HdFsoR4xfuWlOVHLMtMCufa+WYKxWtGLChHfio1A1tJpnZL5Xx/vUSNuXvCJJEMhdkwsLC6ogjssiSIoZh9I8FnstJmvDD03usIKp05ELW8SSEerxoXY7VUc1hHmxVVZRmsJ1uQLzpjhOBtpprSg2ibA3BSpKaEcykTCNBuKSVNStD70c2BsOsIDOl7Kei0Qe59gU8bhNS91IXK6dSBwtpkMiWxFOz5WLgG/O/G/Ml6PDtwU4NnBw7z/szg6/1mCwtXt2tQvCvX2A7tCd+aAvZ8bz3BwJoBtg7c+W7BlIUyni163S5/JWSEliVfB4jhrhKCjEmrrHVbG0P0uzz1ykevfPTKR/97PmqI4HORUMbMso7gotfbJ4+vmMnEFbL1QetC/z5zJGRRuqaXljyF7BpkhdjZ/Q/cIJWlOWmf5XoNtcZlmMHCH5A5IzduxNrF25p+JmNwTrABO27qktEa8e5TNeD38qFru6Aa2/T67B5/jfc+fYeCNSYfR6PhHqCv7W5R/R0wratmhs3JLgqebsvC8O8S7QJi6NQdYTr11NvZTL3chKSNK4/jclhYW5q40xFZUSVnOCdl8QxlB0sJDw8wcLutKzZ13G5IVFrapcMbDK8/0fIjYUIa4vEkNLjj2+Xvy67ZplRYyk/EmVOY8+9BZReFlv/4SxCB5AMsvBenhu/t7XaG//AL89J3ZzCTN6rXKNf2QhyQIZNV89CEE+Xeu8vNwwmc5vVNC6wk5/88xT8u0/5F+/Ltm7fti8t+rz07T0W7J/7sn6f9PqbYh31NeoGIDwTqBSIeUKsXiHpUuoQmtJRM0YbYVZk8sjpbTl3wAxshnx2WtFMGPCh1pwx4VAJPF5SbW6q0cNxQU2RNPO9QfCeVhDcIumdvzrrHmKp2aA2G17UConAK2JCMM4PoARduWBAioNzJH1jC/K/tBp+SWTdHFeDtMfTOqTZcZ+mX7ZQZShXM1J68x02NjT8ww0HTJSxBC6b6eAyr1QwNfdHZes3LPyrSTMOT+pLMOG9j1tdFQ8gr+E5Lf0geBNpOBdk8qzwBPxgKWLC9x0AIKu2jtpNAjYY3dyOIYFb/tZIXCfto/MkKiz8hBuC/Z9jbKYJbW0GGal55DvCY/PkXTc0ZEw== +api: eJztWttu2zgQ/RVjnuXYdRK3q6d1L0CDtoiROHkxDIOmRjJb3UpSaVVD/74YUrLlS5zCRYJqobxEpmYOqTnUzBxJK9AsUOBO4Z5JwWKtYOZAkqJkWiTxlQcu8CT2RaDmPIkiocEBid8zVPpt4uXgrui8xljTIUvTUHDj2vuqkpjGFF9ixOgolQSsBarSzRfB/njKJIvMEfM8QVAsHNcstMzQAZ2nCC4ki6/IaU1a6JAGxta7cCCToQGJ82sf3OmqclFaijiAwlmPxFkYQjHbgNzJkBBqVzOX6G+jbS9ahVlw6my35Fs48IBSCRuzPRgRawxQHsW5L/0LByxV8wiVYgGeurB3BqXzpUQpHBDeMSwH/ERGTIMLWSa8o9hXHhTFPo20tYREj3ak8KDmcIM+Sow5vp9cH0AuHFAoHwTHlqq/n6oHm2xaqv5+qjB+EDKJI2zpagJd9ZoVCh95zkM8RhqXyDR6c6ZPjpBF6Iy0Kbup94d4dxZhB2+Rz48H/ncg3+Ydinkd9c8hD3JYmX3GgPH8c8XEk8Wr5aw5nFVVrOWsOZzVy1nLW1N4e6JIlpJxq2qTuDRoT/iWMnTP98aKXCgIYONA6tMMqDSJld0ig36f/nmouBSpNu0L3Gaco1J+FnZuSmNwTtXKrSZu28FWE/+/qWo1cWOoajVxo+hqNXETe75WEzeRs1YTN4+zVhM3kbcTNXElRr8kHoakbgsHLgaDfQF7z0LhmaLZ+SBlIk9Xrx5qJozwFBqtjN02CBO+dfY3Yrvue2abODApWV6PY2IXSORFyrRhu31JZVprZazJ46YmGJ0JnX2KA7ouO3VpV2/K1uG10X38Mt7b8B3bMR8nk/EeoOV2m1S7B1TnXfUuP0K9TOgtf5oo+p0yvQQXemUeV73y7X9v/fafqjJKZegxzxNgqXWq3F6Ph0nmnbEAY83OmOixVJjtr5BnUujcuIzGV58w/4jMQwnudFY3uKUNZLfEttmaDZaKT0jBiVlEv0eZXiZS/LI8OyDoIpfWi66etubN5nOFDz9ZlNrcVvv8oHq4Uj0g2XB+4GmHbeg3JuvmvL/fXW+sKA3Buc/eXPrDi+7l61evuxeXw0F3ce7z7oD/Mzz3h0PmsyHsi/YXmHFHe77AjAck1AvM+qgSqFe0DXa9Lu2PltXl0Il6yjrcxj7nhAd7sOec8NEG4vkmpZtbxH5ickOZBUcm83RG46v67oH+2auzPuxmwi1jKmyMm8JWJRZzGpydFLdObuAARqaqgUYW/bs5QSujZBqxuIa3l3i3VrPObxp/6l4aMhHXHtfanDyteFV2wQQH1Z1BlWVJGdydwmq1YArvZFgUNPw9Q0mpd1ZujAXFakplc1kl4RV8w9wukup71xQ3Mg8zm3R3aj3VYesx4hxTfdR2Visy4+vbCTiwKL8cixKPfCT7QYWT/QAXgL4+I29TBczYCkIWB5m97y0m/f0HI34x3Q== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Configs Commit @@ -43,2931 +43,29 @@ Configs Commit as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
    - - - config - object - - required - - -
    - -
    - - - - params - - object - - - required - - - -
    - -
    -
    -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - - params - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/configs-delete.api.mdx b/docs/docs/reference/api/configs-delete.api.mdx index f25c7100a9..2930054eab 100644 --- a/docs/docs/reference/api/configs-delete.api.mdx +++ b/docs/docs/reference/api/configs-delete.api.mdx @@ -5,36 +5,36 @@ description: "Configs Delete" sidebar_label: "Configs Delete" hide_title: true hide_table_of_contents: true -api: eJy1VlFv2jAQ/ivonk2htGVbnka7Sau2alXb9QWhyjiX4M2xU9vZxlD++3R2CAFa1k0aLyS+u8+f7z5/sALPcwfJFO65lVx7BzMGpkTLvTT6MoUEhNGZzN1Digo9AgOLjxU6f27SJSQrinvUnh55WSopQungqzOa1pxYYMHpqbQE7CU6evseN3ywmO0HnaryAKiXnzNIpivwyxIhAeet1DnUrF3RlVJQzxh46RUt3FJtzeA7Wicjhz0YqT3maA/i3Df1NQNhikL6hwKd4zn+K7GLgNK7alBqBjI9hMUgM7bgHhKoKpkexL5Moa7ZOmzmX1F42IRvMEOLWuBNnN2VSVERg87E1pPYo/NitF16TzEi8UiLKWmuK4HOWUhYDzuqqwlrU+tthWHBlUa7qJnRcEhfKTphZenD6OG2EgKdyyrVu2mSgb1csjty6bYggvUuIs/eu5ZnzeB0NNqncs+VTMNGvffWGvs3PLZvR4qeS0VP0mPh9hOUEVvRF6i1vRGzzdC4tXzZOfQnEwmScAqXdxrUKnad2hF5THk+NTSjd0fRPwmGzhW3bvK617Vtb+zu88d4F9t36L58uLu73gOMs90e6s74GRToF4ZsszSOEEvuF5DAoNG6GzTCHrR26tCSVYXxVFZBAgvvS5cMBkKZKj3iOWrPj7gc8FLCLoFJiPYuKDU4gkNRWemXAW9yffkRlx+Qp2ghmc66CbekrqiX7bR2VLyUH5E6p3lB75PKL4yVv6IIGEgisIhV1BrS7c3mx+H9T16UCp8w+2jvGym0Vj3c99pNFrklnGT89Vk2Pu2fvTp+1T89G4/685NM9EfizfgkG495xsfPGNt/35UcXWcmdLARUjOecy6+oU67m8Lw6Pho+Nw8m4Le5Pqy8Qkugk+sRxHSgO0optUKMMAimAR45MXbTYBYkjYLrjt4ezreYtUqwuNPPygVl8EDwt6rRuKtnbtImOACTgCcMVjQhUimsFrNucMvVtU1LT9WaEmsMxYB5tS3KbnQYi3bFXzDZSRJdtkPXkHpqooy3bFOsrVYMRECS38wd9a5s9efb++Awbz5Z1OYlGos/0E+xH9AAkD/jqg63JuwtgLFdV5F2URM+vwGewsv2w== +api: eJztVt9P2zAQ/leqe3ZpKVC2PK37IYEYAlHGS1Uh17mk3pw42A6sq/K/T2enadpCxyZNe1lfmvjuPp/v++6cJTieWogmcMeN5LmzMGWgCzTcSZ2fxxCB0HkiU3sfo0KHwMDgQ4nWvdfxAqIl2R3mjh55USgpfGjvq9U5rVkxx4zTU2EI2Em09PYYNrw3mOwarSpTD5gvrhKIJktwiwIhAuuMzFOoWLOSl0pBNWXgpFO0MKbYisEjGitDDjswMneYotmLc1fHVwyEzjLp7jO0lqf4p4l98CidyxqlYiDjfVgMEm0y7iCCspTxXuzzGKqKrcx69hWFg7X5BhM0mAu8Cdxd6hgVZdBibMXEOp3/nPwLTrYBn8OgFpQGY+rcdiO1dqf2vN/q3Yqw1rHOlOgXbKFzG1ge9Pv0F6MVRhbOkwXjUgi0NilV56Z2Bvb6xt8iuF2CANb5EPLsfGzyrBgcDwa7qdxxJWO/UeeTMdr8Th6beo7RcanoSTrM7K6D0mLD+gp9NRqerknjxvBF69CfdUiQxJbZtFWgRmMr15Ysg8vLrr4YnVuy/kowdK6wde3XbrCmvKG6Lx/jYyjfPoWf3d5e7wAGbjdJ3aKfQYZurunyKbQlxIK7OUTQq7Vue7Wwe82lZNHQcPH0lEZBBHPnChv1ekLpMj7gKeaOH3DZ44X0bWpRlEa6hQ8ZXZ9f4OIMeYwGosm07TAmAQVJbLo1bPBCXiAVJ+cZvY9KN9dG/gg8M5B0yHmIotOTNG/Wt+in7zwrFD5zK4aZu2a7mZ/93QG49qIRBkcJf3OSDI+7J6eHp93jk+GgOztKRHcg3g6PkuGQJ3z4wg3w13elMZsn2lew1srI89MZXZ+3N4T+weFBH7b1suFM7c+Fb/9V+b0Z2JYQGgkAA8x874NDnr1bGygzklzG8xbejjw3smlU4PC76xWKS9/afu9lrdxmStuQMMF5HA84ZTAnnUcTWC5n3OIXo6qKlh9KNCTQKQsAM6rVhIbLfCXVJXzDRUiSpmDXjwByV2WQ5tZEpGkVIkZCYOH2+k5brXh9Nb4FBrP6sy/TMcUY/kTjhT9BBECfjhTte8WvLUHxPC2DVAIm/X4C1tmP1w== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Configs Delete @@ -43,470 +43,29 @@ Configs Delete as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
    - - - - variant_ref - - object - - required - - -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
    - integer -
    -
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/configs-deploy.api.mdx b/docs/docs/reference/api/configs-deploy.api.mdx index f1bb51d0aa..3b8596193d 100644 --- a/docs/docs/reference/api/configs-deploy.api.mdx +++ b/docs/docs/reference/api/configs-deploy.api.mdx @@ -5,36 +5,36 @@ description: "Configs Deploy" sidebar_label: "Configs Deploy" hide_title: true hide_table_of_contents: true -api: eJztV01v2zgQ/SvGnOXYdRJ3V6d1mwINukWMxM3FMAKaGtlsKVIlqbReQ/99MaQky5/pBsnuZX2xTM48jmbePI7X4NjCQjyFe2YEU87CLAKdo2FOaHWdQAxcq1Qs7EOCudQriMDg9wKte6eTFcRr2neoHD2yPJeCe9feV6sVrVm+xIzRU24I2Am09OsxHPhgMN3ftLJYeEC1ukkhnq7BrXKEGKwzQi2gjJoVVUgJ5SwCJ5ykhTvyLSN4RGNFiGEPRiiHCzQnce4r/zICrrNMuIcMrWULfG5g7z1K53OFUkYgklNYEaTaZMxBDEUhkpPY1wmUZVRv6/lX5A4227eYokHF8TbU7rNOUFIEqB6F0SrD/yvxH1ei1Tt1JfbC+WW03fAORURtLAwm1P3tZtwnRevtqOkfdhShJPQNmjMF+gWba2UDiwb9Pn0laLkRufNkgLuCc7Q2LWTntjKG6LlykjPDMv/EkkSQC5PjlgVFdbwq4+BdRlAY+VxWfTH/vJDtIoiknemmtFeTm0MVjcCieRQcX/eQHZl+nUMOqNDrHNSujRQp8hWXh1VkjyJ/1uZP1uPFgesavDhwO+8vDP6E4FTtuqXJJCq1EFRC5qXlYjDYF497JkXiC9n5YIw2z1eOBB0TvumFwyAh2wZS863dX9CG5labbfLAjGGrdgZ1CJA0I7P+kt29dWrT1kUVTI6b+mR0JrT7VA3ovcLRlV37ym3SG7J7/DWuQvpO3XkfJ5PxHmCo7XZRAwds56oeNTN0S01DaK4tIebMLSGGXtURtlddRb1mOKUmRGN9ebyWw9K53Ma9Hpe6SM7YApVjZ0z0WC5gN4CR3+28J1Ov7RZ5YYRbebzR+PoTrj4iS9BAPJ21De6IXYEv22ZNqVguPiGFqFhGv0eFW2oj/gokiEBQAMvgRakh3t5uRu0PP1mWh+7c0eQwom2o0Ixb/f15aWNFEw+cp+y3y3R40b18++Zt9+JyOOjOz1PeHfDfh+fpcMhSNjwyJv4Lpx64SV/9VJoFVap93Sr6VqR4x/g3VEn7UOifvTnrH2NR5dAZja8rdWLcq1NNAG8G0Q5PG4bSJJZ5aQKHLPtjs0FRUkdkTLXw9rpnK6qGhw5/ul4umVCteSc0VjMI2hAwwXkcDziLYEltGE9hvZ4zi1+MLEta/l6goRaZVXfVnPI2Je1b1s2yhm+4CkGSSHe9QpG5LEJz7Ag2iWnwGHGOuTtpO2spxfjmbgIRzKt/p5lOyMewH6R+7AfEAPQPl7x9t/q1NUimFkWgTcCkz9+ykyhf +api: eJztWVFv2kgQ/itonk2gJKF3fjraVGrUVkEJyQtCaFmPYXtrr7u7Tusi//fT7BpjICEV1TWJRF4Cu7Ofx/PNzM4MS7BsbiAcwx3TgqXWwCQAlaFmVqj0MoIQuEpjMTfTCDOpCghA47ccjX2nogLCJe1bTC19ZFkmBXdHO1+NSmnN8AUmjD5lmoCtQEPf7v0Dpxrj3U0j87kDTIurGMLxEmyRIYRgrBbpHMqgXklzKaGcBGCFlbRwQ2fLAO5RG+F12IERqcU56r04d9X5MgCukkTYaYLGsDkeqth7h9L6UqGUAYhoH1YAsdIJsxBCnotoL/ZlBGUZrLbV7CtyC+vta4xRY8rx2nP3RUUoSQNM74VWaYJHJp6ZiUbsrJhYq3Pk5Dk42QZ8CIOSodAYUQ5tprTd0GroQ6lzupVXS0Jfo1mdo1swmUqN573X7dK/CA3XIrOOPrjJOUdj4ly2rithCA5NyhnTLHGfWBQJOsLksCFBWj1ux6E/XQaQa3moH9zqYzg8Tzg0XVlETX+tA+RidPVQXARgUN8LjkeqXj5VW4XXkaqXS9UD1dmRrpdLV/POkiJGXnCJ+0jjGpnFaMrswRbyCK2BddduFv0m3q1H2MKbFdP9hv8VyHdFi2zeRP19yL113WecM158XjHx5OV15Oz1cLa6xY6cvR7OmtfZkbfXwtsTl2TVMm7c2tTYrprRqpl27e1Zr7fbwN4xKSJ3abY+aK304d1rhJYJ13gKi76N3RSQim/s/oJt67pnsrYD05oVTTsqryCRlxhXhm3XJSvRRinjRR4XdcZojWj3KQ7ovfyjK7lmUVab11v38de48Obb5zEfR6PhDqDndpNU7wOmdbEaGidoF4rGyZkyhJgxu4AQOlUeN51qHNKpx8x0K6M2jh43T4CFtZkJOx0uVR6dsDmmlp0w0WGZcO5vkOda2MIdGQwvP2HxEVmEGsLxpClwQw7kXWJTrGaDZeITkhYpS+j7ILcLpcVPz3MAgl5y4U/R25NrXq/n4h9+sCTzuW2r3fJ1+prtuubu7hbNaynKLnAas7/O4/5Z+/ztm7fts/N+rz07jXm7x//un8b9PotZ/5GZ7h946gMDm//9qdQQpLFyvFUeOnBe0RoML5sPhO7Jm5MubHvphjAlHcZd0lmR7rYh2HK/2vFoyJe4jAMWWfLPeoM0I0dPWNrA2wmKDW1q37P4w3YyyUTaGKX5eKlnjMYrTHAOxwFOAlhQdIVjWC5nzOCtlmVJy99y1BQWk6pwmpGtxpTSFqsAWcK/WHglKfe2XeIhcZn7gNjKw5Qj/YkB55jZvbKTRgIYXt2MIIBZ9fNRoiI6o9l3SmrsO4QA9BMUnXYR6taWIFk6z72reEz6+w8CURwP sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Configs Deploy @@ -43,2036 +43,29 @@ Configs Deploy as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
    - - - - variant_ref - - object - - required - - -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - environment_ref - - object - - required - - -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - - params - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/configs-fetch.api.mdx b/docs/docs/reference/api/configs-fetch.api.mdx index d6eede6c4b..fcf353689e 100644 --- a/docs/docs/reference/api/configs-fetch.api.mdx +++ b/docs/docs/reference/api/configs-fetch.api.mdx @@ -5,36 +5,36 @@ description: "Fetch configuration for a variant or environment." sidebar_label: "Configs Fetch" hide_title: true hide_table_of_contents: true -api: eJztV01v2zgQ/SvEXNwCSpzmq7sCFti0TdCgLWI4bi+2EdDkyGIrkSpJJfEa/u+LIeVEdpw0bdPFHppLZGpmOHzz5g01B8+nDtIhfOJWce0djBOQ6IRVlVdGQwon6EXOhNGZmtaW0yrLjGWcXUYfZixDfams0SVqvz3SI32sfI52aXFhMWNn/bZVWCpr59kEWWXNpZIo2TOVMY3RV7mb9WSkOZOY8brwd4JcKZ8zV9TTv0ZQWSNrQSmOgF2poqDotUP5PGR1QplykTOLGVrUApmZfEbh2bNWpsn6FgnjVVUoEc5OC8/Tkd5ivZgda/LtUA4dAqOjZIdlCgtJZp1LtE4Z3aETmYAqLxjXkgmuKT+HnnnDdF0UZH+axQDt8zPlV47DpLIofDEjxywUyOfILDpTW4EU5oySulIOk2VmKwF4YfQ0Yrd2OAKqj7622qUjzRhjr0Pt++gqox1+MBKLlA1y3ECKmMXXGp1H+RBB+lw5XG7wdjDoHV8LDOCkhIC/E105po1nmam13IYETIXxzamEFKKtuwhYQAJNDq+MnEE6p9cetafH1mm7nx0xfA5O5FhyeqosxfUKHf1qkSK46tlZBulwDn5WIaQQyQMJeOULWugvedWP+wesYJHceFCRYTFeJLDGsSePv1bVJ46/SO6NQZhfrNZjsSAH2xAoQLu7s0P/VqXmvBYCncvqgi3ZBsmPFq/ilpfhiUupYtv1Whbe1nj/KXrRe5FAbYuN4DlvlZ5uAOc2yEdL4H1fKYi5yqIkUVYSxhuK82ZwtrnmDu2lEvhrN3l0U/zMJt/VHT+zUbs2hcpQzAR5PqZZ3i/Nv1mPJw+8rMGTB27j/sTBN0hGu3BNu7aKt2HsNEqyv7t7Vzw+8ULJOCuOrTX2x5VDoucqNL3yGCVk1aAwYuXtI7RBaY9TtBHlZo1by2dtBE1MkDSjdFOKvBrv1vQDOsenCDfB7jcNYLABvf1WDehccevGrlWNW3gjuvcf402E76EZQQP/TsBY2xJ9bmikV8aRS8V9Dil0G8q7bjNaustRT02G1gX4g1ZD7n3l0m5XFKaW23yK2vNtrrq8UrB+uz0Kb9lrMg3a7VDUVvlZiHfUO32Hs7fIJVpIh+O2wTmxJ/Jh1eymFLxS75CQ0byk30e1z41V/8QiJ6AogTx60dGJl/3bi8vxNS+r2H1rmkv3uXapmxsmpDvE+bJU/qJsCNKyUoTqXsb/OMgO97cOXr54ubV/cLi7NdnLxNau+PNwLzs85Bk/hM0C/B/sumFS/vJdF1SIzIS6NfRsSPGKiy+oZXtT2Nl+sb1zH4saB3bUO23Uh4ugPksCBDNI1nh6w1BIAMsgPeCRl3/fvqAsqSFKrlvxokI6dtK0wkpSrVvv72+4399w/8dvuEYnPV77blVwpVv37aj7w6X0udhQRHdIIGr/OIGchkQ6hPl8wh1+tMViQctfa7Sk4OPmqjShth7S6M2XWj6HLziLPURNshUGJJkXddTutfsCzfLocSTolA/ajltzrHd2PoAEJs2naGkk+Vh+RcOXX0EK4WuWvMMwCWtzKLie1lHVYkz6+xfaISQU +api: eJztWVFv2zgM/isCX7oBbtN1W3dn4IDrtg4rtqFB2u2lCQpFomPtbMmT5La5wP/9QMlJnTTLhg43tED6UkciKZIfRVLSDDyfOEgv4Au3imvvYJSARCesqrwyGlJ4h17kTBidqUltOY2yzFjG2VXkYcYy1FfKGl2i9ntDPdTHyudo5xSXFjN2OuhShaGydp6NkVXWXCmJkj1RGdMYeZVbjCdDzZnEjNeFvyPkWvmcuaKe/DWEyhpZC1JxCOxaFQVJrx3Kp0Grd6QpFzmzmKFFLZCZ8VcUnj3paJqsLpEwXlWFEsF2GniaDvUu60ftWKvvDumwQ87YUXKHZQoLSWQ7V2idMnqHLDLBq7xgXEsmuCb9HHrmDdN1URD9SRYFdO1nyi+Zw6SyKHwxJcYsAORzZBadqa1AEnNKSl0rh8lcsyUBvDB6En23Yhw5aoC+ttqlQ80YY28C9gN0ldEOPxmJRcrOc1wTFFGLbzU6j3JTgAy4cjhf4P35ef/4RmBwTkoe8HekK8e08SwztZZ7kICpMM6cSEgh0rrL4AtIoNXhtZFTSGc07VF7+uxY2/vqKMJn4ESOJaevypJcr9DRr05QBFY9Pc0gvVglI/cuz/tphZCC81bpCTTJYoRAhmaUgFe+oIEz4m0SaINkrRilPU7QbpTzpeVvEhCmLJW/LNE5PsH7KvYmSGGfWilNAkpukpVAZmzJPaRQ10pulH0ioWmS+XTcgnA7PZjvzkFEMUTcGoFNAis7dYvSg0RpJcNsUXqAKG2QQVn0cjnDNg0x2LYkBOQO9vfp33LzcFYLgc5ldcHm9QOS+6bjiltehi8upYqFtN+h8LbG71vRj9xNArUt7ovkZ0vO2wb07w9oqujKoqRmVUkYrQnxt+en6/OPQ3ulBG6hevhQbVuuRwPVtvd6VHB1a1ahMhRTUeAm0IRF7lFecn9vD0UJ7MiHslvJX5T3OUpYkTeeXm52/M+IfD1l5POu1F8XubEz+4gTLqYf50j8sHhtMXs8mM2r2Bazx4NZt5xtcXssuP2gSLZHxqWqfecysz3Nvjg4uHuA/cILJeMN5LG1xt7/9CrRcxUOnspjPMYuExRGLM3+hG8Xfc/o1g/cWj7t+tFEBQm80oU2bLUvmZN2WplI8n3S4Ax2TrM/woDsiku3dN2mbOHe6N3vm/E2um9TxNA18h2BEdsSfW7oorgyjlgq7nNIodcmatdrrzd68wtkqrpoXXB/uC+A3PvKpb2eKEwt9/gEted7XPV4pUJ4OxS1VX4aWI76Jx9w+h65RAvpxahLcEYBEiFfJlt4m1fqA5Lxmpf0+6j2ubHq34hjAooiM49cZB2F3uD2xvv4hpdVzF0rx6nYh9+iueip9+82xbdUlD3gecb/eJkdvth9+erZq90XLw8PdsfPM7F7IP48fJ4dHvKMH8L6U8FvWHXNhcz/vio1/DozAbc2Ao9CVLCj/kl3Qdjfe7a3D6sPa0vElFS4CEllDnqYhmQl/BaBBwlgGTIKeOTl37cTpBnFecl1R15MfI69ayN8SZnOE8n2wW/74PcQH/za3OjxxveqgivducqN6fxinu5c3FAU7nTqDgE/SiCn3J9ewGw25g4/26JpaPhbjZay9qjt28e0lS+ooubz/D2Df3Aa9xBtkt1Q94i8qGO+XmkDqERHjiNBVm6kHXXKU//07BwSGLfvlqWRxGP5NdVUfg0phKdP4g4FJIzNoOB6UsdMFmXS33+QQ/Ta sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Fetch configuration for a variant or environment. @@ -42,2082 +42,45 @@ Either variant_ref OR environment_ref must be provided (if neither is provided, a default environment_ref with slug="production" will be used). For each reference object (variant_ref, environment_ref, application_ref): - - Provide either 'slug' or 'id' field - 'version' is optional and can be set to null - If 'id' is provided, it will be used directly to fetch the resource - Otherwise, 'slug' will be used along with application_ref Returns: -ConfigResponseModel: The configuration for the requested variant or environment. + ConfigResponseModel: The configuration for the requested variant or environment. Raises: -HTTPException: If the configuration is not found. + HTTPException: If the configuration is not found. +> + + + + + + + + + + + + + + - - -
- -

- Body -

-
-
-
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - - params - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/configs-fork.api.mdx b/docs/docs/reference/api/configs-fork.api.mdx index 3dd2976ccb..a0b885758c 100644 --- a/docs/docs/reference/api/configs-fork.api.mdx +++ b/docs/docs/reference/api/configs-fork.api.mdx @@ -5,36 +5,36 @@ description: "Configs Fork" sidebar_label: "Configs Fork" hide_title: true hide_table_of_contents: true -api: eJy9V1tz2joQ/ivMPptASUJP/VR6m2Z6OmES2heGySzy2qixJVeS01LG/72zkgFDoU3bpLxgpN2VtN9FZgUOMwvxFD6ikaichVkEuiSDTmp1kUAMQqtUZvYm1eYWIjD0uSLrXuhkCfGKZx0px49YlrkUPrH3yWrFY1YsqEB+Kg2XdZIs/7oLy90YSn2qWl6mEE9X4JYlQQx6/omEgwicdDkPXFFKhpSgq7D+e51QDnW0yVBVnkM9qyMgdSeNVgU9Uv3WOR+hfh0drcE9v9mBo6453pAttbKhs4N+n78SssLIkjcJMVxXQpC1aZV3rppgiP4UuxINFv4Jk0RyCubjVoQzFR0/xDhk1xFUJj/YO+uMVNmB3myLfDDcu99DgokrDSXMdpnA7AA2ryaXhyG3ZO6koMdd5N6a+JtFfkscf7NQG5tcpiSWgjPvo5X/1+G/xOPBC68xePDC7b4/cPEDjtEGrpFrC7yX3kLWRtA4kXeSs8HgR/P4iLlMPJCd18Zo8+fOkZBD6UUvHQUL2Q3ItdiZvYc3SOUoIxO63IyhMbhsd1CHDbJnFDbjyrv1tqHvyVrMCDbFjof6ZnQmPPsrDPhcYekmroXGtr2hu8eP8Sq072dXxNvJZPxDwYDtLqiBA7bzJtzqBbmF5tu+1JbrlegWEEOv0YPtNddOr3kLYAGSsR4a7+OwcK60ca8ncl0lJ5iRcniCsoelhP3FR36285JDva9bEpWRbunrjcYX72j5ljAhA/F01g64ZmYFruyGbWDCUr4j7prCgn+PKrfQRn4LBIhA8gYWIYvbwpy92r7TvP6KRRmUuefHNq+yNg34/P44fdZDUUh3UzTkaUVJbuppiv+dp8Oz7vnTJ0+7Z+fDQXd+moruQDwbnqbDIaY4hMPm/A9WPXCLPvqqNQORao9bQ92GFC9Q3JJK2otC/+TJSf8Yi5qEzmh80TgTCu9MawL4MIj2eLphKERAhbclcITF8+0E75L1UKBq1dtTzs6eNix09NX1yhylar3pBFFN18SyYbtcDCLwwppFsGABxlNYreZo6YPJ65qHP1dkWB6z5o6ac8+m7HmLtVBWcEvLsEE25653Jg7PqyCMPaNmEw0ZIyGodD+NnbU8Ynx5PYEI5s1fgEInnGPwC7sefoEYgP9EcLZXqh9bQY4qqwJlQk3+fAf610MQ +api: eJztWVFv2kgQ/itonk1ISULv/HT02lOjtgpKSF4QQsN6DNvYXnd3ndaH/N9Ps2vAkIRUVFcFCV4wuzPfruebmZ1ZFmBxZiAcwR1qiZk1MA5A5aTRSpVdRhCCUFksZ2YSK30PAWj6VpCx71RUQrjgWUuZ5UfM80QKp9j5alTGY0bMKUV+yjXDWkmGfz345SaaYqealVcxhKNtMZMUs815W+YEIRirZTaDKliNZEWSQDUOwEqb8MAN61YBPJA20u/mEYzMLM1I78S5q/WrAIRKU2knKRmDM9p3Y387lNaXGqUKQEa7sAKIlU7RQghFIaOd2JcRVFWwnFbTryQsrKevKSZNmaBrz+IXFVHyBGAVAGUPUqsspSNLr5ilRswdWXqlLO3A4Cw62UiwVcXymkyuMuOJ656e8ldERmiZW2d/uCmEIGPiImld18IQ7JuNc9SYuieMIskqmAwaElYX9PxLDLx2FUChk32JvNVsu6M//35/5gNdaoq4CpARjJ/w8PfDq6fTjyH9IAUdqXr9VB0rroOh6lh6HRRdzTMrkTGJUiS0izShCS1FE7R7W8gjtPrWHbt59It4tx5hC29aTnYb/mcg35UttnkT9dchdxZmn2mGovy8ZOLFw+vI2eFwtjzFjpwdDmfN4+zI26Hw9sIhWbeMG6c2t7HLZrTuhl03e97tPm5g7zCRkTs0Wx+0Vnr/7jUii9I1ntKSb2M3BRIlNmZ/wrarume8tgNqjWXTjspvkMlLjSvDtuuSpWijlPEiz4s6Y7SGPPsSB/xefularlmUrczrrfv8a7z35tvlMR+Hw8EjQM/tJqneB0zrH39XnJKdK75DzpVhvBztHELo1FncdOqrj059t8wnMmnjqHF3CTC3NjdhpyMSVUQnOKPM4gnKDubSub4hUWhpS6fSH1x+ovIjYUQawtG4KXDDzuPdYVNsxQTm8hOxYTJM+Xe/sHOl5b+e4wAkv+Dca/Gbs1tery/DP/zANPd5bavV8jX6mulVvX36uGBeS3FmgbMY/7iIe+fti7dv3rbPL3rd9vQsFu2u+LN3Fvd6GGMPnu4YfsOqT1zW/O+rcjOQxcrxVntn33lFqz+4bC4IpydvTk5h20M3hDnhoHAJZ0m6m4Zgy/1WjgcBUOqyDVjC9K/1BO+M3TzFrIG3FRAbe1l5nqUftpMnKLPGJZqPldHSmYzfLoP5fueeo33OcRWOYLGYoqFbnVQVD38rSHNIjOuCacp2GnEqmy+DYwH3VPoNcs5tu4TD4knhg2Er/3Ju9Bp9ISi3O2XHjdAfXN0MIYBp/X9RqiLW0fidkxl+hxCA/3FibRedbmwBCWazwruJx+TPfw9sE+U= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Configs Fork @@ -43,2065 +43,29 @@ Configs Fork as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

-
-
-
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - - params - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/configs-history.api.mdx b/docs/docs/reference/api/configs-history.api.mdx index dcd00dce61..df6e7e2548 100644 --- a/docs/docs/reference/api/configs-history.api.mdx +++ b/docs/docs/reference/api/configs-history.api.mdx @@ -5,36 +5,36 @@ description: "Configs History" sidebar_label: "Configs History" hide_title: true hide_table_of_contents: true -api: eJy1V11z2joQ/SvMPouQkoTe66dLP2aSaTthEpoXhskIeQ1qZcmV5LSU8X+/s5IxBgJJOwkvYGl3td5zdHZZgedzB8kE7riVXHsHUwamQMu9NPoqhQSE0Zmcu/uFdN7YJTCw+KNE59+ZdAnJigw8ak8/eVEoKYJv75szmtacWGDO6VdhKbKX6OjpIZ54bzHb33SqnIeAenmdQTJZgV8WCAk4b6WeQ8WaFV0qBdWUgZde0cIt+VYMHtA6GXPYCyO1xznao3Huav+KgTB5Lv19js7xOf5tYu9DlM6XOkrFQKbHYjHIjM25hwTKUqZHY1+lUFVsvW1m31B42GzfYIYWtcCbiN0Xk6KiDFqIrZHYS+fZ0XbTeywjIo+0mBLp2hRovQsR636XdhUF2zh7W2JYcIXRLpKmf3pKXyk6YWXhA/ZwWwqBzmWl6tzUxsCez1npMXf7/Cy45XGdp6kkX65GLQtK7zAao+hdMSit+ls2fbV/DmC7+DJt17yB9MP4+jEkGTi0D1Lg6x6yIwqvcwjqB2mNzvG1D2pjo2SGYinU4+qxR5HPa/Mn8XjxwGsMXjxwu+4vHPwJoamv65YWk7ysFaGRwzoIt5YvtwQv2nWim+tcblSpYnDe7+8Lzx1XMg3Ydz5aa+yfqM622KTouVRH1EgZsbX7DDlpGuD08Ft/NjFBKkzuQj/ebVBr01ZPiyaHTUMxOmPafQo2eq94dG3X7s5NeWN1D7/Gh1i+Y+3xcjwe7QWM2G6Duos/gxz9wtCcVBhHIQvuF5BAr75Frlc3st5mfqKbi9YFgEIDgIX3hUt6PaFMmZ7wOWrPT7js8ULCbgrDsNt5T6ahITgUpZV+GeINR1efcHmJPEULyWTaNrglfkXGbJs1YPFCfkJKUfOcnoelXxgrf0caMJCUwCJ6UXGIuTebafDjL54X8UrvCHmc5zZkaGaz0/3hamNF4xGcZfyfi2xw3r14++Zt9/xi0O/OzjLR7Yt/B2fZYMAzPjjQCF/9VBrhdGZCBWsq1fC84+I76rR9KJyevDk5PYRn7dAZjq5qpeAiKMUaimAGbIcxDVeAAeZBJsAjz//bbFCWRM6c61a8fSZvpdVQwuMv3ysUl7o1r0SSNwOcixlTPGCwJvqUwYLuRDKB1WrGHX61qqpo+UeJlug6rZvNjCo3ISVarIm7gu+4jGmSZHaDXpC5KiNRd+STpC16DIXAwh+1nbau7ej6dgwMZvWfmdyk5GP5T9Ii/hMSAPpHRN7h5oS1FSiu52UkToxJn/8BFseNMw== +api: eJztWVFv2zgM/isBn5WmS9vszk+X3Qa0WIcGbdqXIAgUmU60sy1Pkrt5gf/7gZLjOM6S9joctgLpSxOJ/ETxIylKWYHlCwPBBB64ljy1BqYMVIaaW6nSqxACECqN5MLMltJYpQtgoPFLjsa+U2EBwYoELKaWPvIsi6Vwur3PRqU0ZsQSE06fMk3IVqKhb49+xZnGaHfSxPnCAabFTQTBZAW2yBACMFbLdAElq0fSPI6hnDKw0sY0cEe6JYNH1EZ6G3ZgZGpxgfogzkOlXzIQKkmknSVoDF/gSw3726F0PlUoJQMZHsJiECmdcAsB5LkMD2JfhVCWbD2t5p9RWNhM32KEGlOBt567TyrEmCxoMLZmYmPOkZNfwUkb8EcYlIJSY0ip20ykxuqUnrN28pYEtlG2Okc3YDKVGk9z//SU/oVohJaZdWzBXS4EGhPlcee2Egb2/MyXFhOzm+UZ19yP8zCUpMvjUUOCzNvvv5HXLhnkOn4p//f6mAa/Jg2aISzDZuTWifF+fPOjfGBgUD9KgUeqfn+qWsf8karflypMH6VWaYJHul4DXc0zK5YRikLEeIg0oZFbDGfcvthDHqEztO7YzcKfxLv3CC28eTE77PjnQL4rOuTzJurPQx7s565xwUVxvWbiycPryNnr4Wx9ih05ez2cNY+zI2+vhbcnDsnqyrh1atMVd30rrR82KhCuNS+2Lt1eruPVTOdyczMuGZz3+7uX3wcey9Cds50PWiv9X26+2xEWouUyPnAjjpXYmn0GHXWrNN2/62vlDSTHJMZ1bu1WZi3a6H68yH5R54zOmGafoo325Zeu5Jp9XO1e793923jv3XcoyC7H49EOoOd2m9Q2/wwStEtFL56ZMgSZcbuEAHpV7Te96jGlt3kJpaMctXEEuUcIWFqbmaDXE7HKwxO+wNTyEy57PJMuZwyKXEtbOJXh6OojFpfIQ9QQTKZNgTsKIR8U22I1HzyTH5GsSHlC34e5XSotv3umGUja5tJr0f4pOG83T7cfvvEk8wWxdUfzzf2G77pRP93ttDdSVJLgLOJ/XESD8+7F2zdvu+cXg353fhaJbl/8OTiLBgMe8cGe95b/fVXq59NIOQ9W0TJ0/HSGo6vmgnB68ubkFNoRsyVMBYALVwDW7nfTwFqBUIcAMMDEZT9Y5MlfmwmyjGIu4WkDbzdAt8ypw8DiN9vLYi7TxlOYj936bdB4iwkPGKzjd8pgSaEeTGC1mnOD9zouSxr+kqOmEJ1Wnc+cvDWhArNcB+sK/sHCm0mVsOvKAInHuQ/OVlWkiuU1hkJgZg/KThvZOLq5GwODefVrQ6JC0tH8K5UY/hUCAPrJgrRdtrixFcQ8XeQ+WDwm/f0Lo6aA4w== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Configs History @@ -43,1959 +43,29 @@ Configs History as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
    - - - - variant_ref - - object - - required - - -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - -
    - - - - params - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/configs-list.api.mdx b/docs/docs/reference/api/configs-list.api.mdx index a5f2180151..e04a6e7f8d 100644 --- a/docs/docs/reference/api/configs-list.api.mdx +++ b/docs/docs/reference/api/configs-list.api.mdx @@ -5,36 +5,36 @@ description: "Configs List" sidebar_label: "Configs List" hide_title: true hide_table_of_contents: true -api: eJy1V11vGjsQ/Stonk2gJKG9+1T6ITVqqqAkzQtCkfHOgluvvbW9aSna/3419i5Z2IS0VZKXgD1zPJ5zZjxswPOlg2QGN9xKrr2DOQNToOVeGn2WQgLC6Ewu3a2SzgMDiz9KdP6dSdeQbGjXo/b0kReFkiI4Dr45o2nNiRXmnD4VlmC9RLdne2sx6xo4VS6DoV5fZJDMNuDXBUICzlupl1Cx7YoulYJqzsBLr2jhinwrBndonYxxdGCk9rhEexDnpvavGAiT59Lf5ugcX+K/BvY+oPS+1CgVA5kewmKQGZtzDwmUpUwPYp+lUFWs2TaLbygauqTFlDiWKbQcLjFDi1rgh+uLJ133+XoI5zIqAyoCu3f2tsSw4AqjXWR3NBzSvxSdsLLwgSS4KoVA57JS9S5rY2B/LjDpMXddIRXc8rjO01SSL1fTlgWF1717c7lp9K4YlFb9K+1frSKEBzTfQftr3jrHVgwc2jsp8GUPuYsN42UPQX0nrdE5vvRBbW6UzFCshXq4zDsSOW/Mn+Tj2YEbDp4duJ33ZwZ/otHU5brTNOn9aTrCF5NiqKYahFvL19CmOtr1opvrncvYkioGJ6NRt+vccCXTQHzvo7XG/k3L2e00KXou1YFWpIzY2f2DXrJ9puaPX/ncxAApK7kLr+b+M9KYtl6eaPK4aUhG75p2n+KM7hWPru3ab+g2vTG7j1/jQ0zfQ4c1Jp+ur6cdwMjtLqk75DPI0a8MzTKFCd8L7leQwKCuHzeoZ5xBPeNQwaJ1gZrQ92HlfeGSwUAoU6ZHfIna8yMuB7yQsH/4JOz23pNpeAccitJKvw54k+nZZ1x/Qp6ihWQ2bxtckbKiVnbNtjTxQn5GyprmOX2flH5lrPwdBcBAUgCr6EVpIc1e3k9sH3/xvKgrufsaxZnrXgrb+WnYHYDurWiEgeOMvznNxif909evXvdPTsej/uI4E/2R+G98nI3HPOPjEJDUmQn3qSmtk/WOi++o0/ahMDx6dTR8LLu1Q28yPasrlotQsU1ighmwPf62zAEDzEO5gkeev73foChJJznXLbw9Re3EtGXH4y8/KBSXujUxRLHNmmbtYrgEBgyC4OYMViTMZAabzYI7/GpVVdHyjxItyWZe9/oF5WxGvWDVCGgD33EdA6Sm1Q8VS+aqjILZa2DUXKLHRAgs/EHbeat2phdX18BgUQ/+uUnJx/Kf1A34T0gA6KcDeQcFh7UNKK6XZZRMxKS//wHaI0Mi +api: eJztWF1vGjsQ/Stonk2g+aD37tOlH1KjpgpKSF4Qiox3FtzrXW9tb9ot2v9+NfYuLJCQ3PShjUReAvbMwZ5z7BnPEhyfW4gmcMuN5JmzMGWgczTcSZ2dxxCB0Fki5/ZOSeuAgcFvBVr3TsclREuadZg5+sjzXEnhHXtfrc5ozIoFppw+5YZgnUS7ZXtnMNk1sKqYe8OsvEwgmizBlTlCBNYZmc2hYquRrFAKqikDJ52igWvyrRjco7EyrGMHRmYO52j24tzW/hUDodNUursUreVzfOnC3nuUzpcapWIg431YDBJtUu4ggqKQ8V7s8xiqijXTevYVRUOXNBgTxzKGlsMVJmgwE/hhfPmk6zZfD+FcBWVARWBrZ2cK9AM215kN7B73+/QvRiuMzJ0nCa4LIdDapFCdq9oY2PMFJh2mdldIOTc8jPM4luTL1ahlQcvb3XuzuVHwrhgURr2U9hujCOEBza/RDur/nerfQa4YWDT3UuCBqj+fqvuQvA5U/flUYXYvjc5SPND1Guhq5ywlExSlULiPNGGQO4zvuHtxhAJCZ+h82s3jX8S7CQhbeLPybn/gnwP5ruxQzNuovw75IIeN2QXOuSgvGiaeTF4Hzl4PZ00WO3D2ejhrp7MDb6+FtyeSZP1k3Mja1ANpXqVfdIz+RVeDcGN4Ce20Guw6wc12LmR4FlcMTo+Pd1++t1zJ2CfZzkdjtPk/z95NecXouFR7nsNKi43ZZ3CxqpOmj2/5QocFUlRS68u27TqmMW2VPsHkcVMfjM6YZp/ijPYVfrq2axdxq/CG6D6+jQ8hfPsU9mk8Hu0ABm43Sd0gn0GKbqGpn5Zr/z3nbgER9Opb3/bqPluv7rNRBkdjPTW+9wAL53Ib9XpC6SI+4nPMHD/issdz6Y+KRVEY6UrvMhydf8byE/IYDUSTadvgmsQT5LBptmKC5/IzUmAyntL3YeEW2sifgWMGkja4CF60c5Ll1box+PEHT/P6HtxteoS6fs32qkbv7xbZayu6jeAk4X+dJYPT7tnbN2+7p2eD4+7sJBHdY/H34CQZDHjCB35BMku030/N2tBHqzMcnbd/EPpHb476sM3chjEdRC78QWyC4aeBbdGyIgQYYOpPITjk6T/rCVoZ0Z/yrIW3JZSNtawYcfjD9XLFZdZqRgUNTZrKwYblEhgw8DqaMliQ3qIJLJczbvHGqKqi4W8FGpLKtC48ZhSnCR3xRSOaJfyLZVgg3UVdfxDJXBVBJFv3Et0ZwWMoBOZur+20dSRGl9djYDCre8qpjsnH8O90yPl3iACoK03eXrV+bAmKZ/MiyCRg0t9/uIrIOA== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Configs List @@ -43,1852 +43,29 @@ Configs List as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
    - - - - application_ref - - object - - required - - -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - -
    - - - - params - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - application_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_ref - object - -
    -
    - anyOf - - - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - commit_message - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - - required - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - application_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - service_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - environment_lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/configs.tag.mdx b/docs/docs/reference/api/configs.tag.mdx index 5debe215a4..079f90d7a7 100644 --- a/docs/docs/reference/api/configs.tag.mdx +++ b/docs/docs/reference/api/configs.tag.mdx @@ -5,9 +5,16 @@ description: "Configs" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/container-templates.api.mdx b/docs/docs/reference/api/container-templates.api.mdx index 40bc78e698..2c68b3ec1f 100644 --- a/docs/docs/reference/api/container-templates.api.mdx +++ b/docs/docs/reference/api/container-templates.api.mdx @@ -5,69 +5,59 @@ description: "Returns a list of templates available for creating new containers. sidebar_label: "Container Templates" hide_title: true hide_table_of_contents: true -api: eJytkkFv2zAMhf+KwLMQZzvqtKwYtqCXou1OQTCwChNrlSVNorNlhv/7QMe1kwC71ZfAIfn88fF1wHgoYDZwFwOjC5QLbDXsqNjsErsYwMAjcZtDUai8K6ziXjE1ySNTUXhE5/HFk9rHrGwmZBcOKtBvZSfJBWiIiTKK4HoHBqbaj0kKNGQqKYZCBUwHH5dL+blGeWqtpVL2rVePYzPoQY0CSzum5J0dPlT9LDLTQbE1NQim6+XR0BDXUSgOxKAhIddgoJp5q0uoQvkotphNB232YKBmTsVUlfWx3S3wQIFxga7C5ODWu9VQVXfSCv1W5GybHZ8GvdXD+p5O3wh3lMFstpcNT0J9tuK6rQM+JQIDmNw9nUBDwEbeVy3XMbu/w/agwQlAfZ6SvV3Yx2HcsaeZ7TPaVwo70CB7nrGXiw+L5f+WGQfU6mE9mo92MP+NY2gDfWPXZBRooAad1Jiw+TQXhDLFwg2GC70pm+r54i5XaN2cgfeJ62gx0x+ukkcXoB/36cbAbOYQC84cma2GOhaWjq57wULfs+97+ftXS1kOv9VwxOyEY7i6fruSZOKVTuKhtZQknUf07fnYN8GWrExJ/vrlGfr+H3cdUY4= +api: eJytUsuO2zAM/BWBZyFOe9SpQVG0wV4Wu9tTYBRchYnVypIq0WlTw/9eUMk6j/PqYsgcUjPDGYFxX8Bs4HMMjC5QLtBq2FKx2SV2MYCBJ+Ihh6JQeVdYxZ1i6pNHpqLwgM7jqye1i1nZTMgu7FWgP8rOIxegISbKKAPXWzAw137Mo0BDppJiKFTAjPBxuZTPLZXnwVoqZTd49XQGg67TKLDAMSXvbH2o+VmkZ4RiO+oRzDjJ0dATd1FY7IlBQ0LuwEBz4dtckyqUD2KL2YwwZA8GOuZUTNNYH4ftAvcUGBfoGkwOplY67JAdH2vL6nH9QMdvhFvKYDbtNeBZiJ3U3sJG4GMiMIDJPdARNATs5b4auIvZ/asCQYMTU7pTl0hzYRdru2Nf8ZWcWj2uQYPIONm4XHxYLOF+zzfg6oatnr69Xcug71yY9YMG6tFJjQn7T5eCMEuxcI/hat4cOfVyZfcNpfGy2vdJ4dlWpr/cJI8uwHTWM55zsLlkU+hcktBq6GJhQYzjKxb6nv00ye/fA2VZdqvhgNkJj7pp/bYZycEvOoqH1lKS0B3QD6cF3+VV8jEH9OuXF5im/3FuQv8= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Returns a list of templates available for creating new containers. -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/containers.tag.mdx b/docs/docs/reference/api/containers.tag.mdx index cd25ac1df8..0e073f7378 100644 --- a/docs/docs/reference/api/containers.tag.mdx +++ b/docs/docs/reference/api/containers.tag.mdx @@ -5,9 +5,16 @@ description: "Containers" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/create-account.api.mdx b/docs/docs/reference/api/create-account.api.mdx index 5ecd23392c..d007134d19 100644 --- a/docs/docs/reference/api/create-account.api.mdx +++ b/docs/docs/reference/api/create-account.api.mdx @@ -5,33 +5,36 @@ description: "Create Account" sidebar_label: "Create Account" hide_title: true hide_table_of_contents: true -api: eJydVV1P2zAU/SvVfc7aDu0pTysMCcQmKlr2UlXTrXNpDIltbAfIovz36dppm5LB0PrSxD6+H+ee4zTgcesgXcEsK6WCdQLakEUvtbrMIAVhCT39QiF0pTwkYOmxIudPdVZD2oDQypPy/IjGFFKEo5N7pxWvOZFTiWFX1dd3kK4a8LUhSEFv7klwRC99wQuzmOMmJoA22UNVVRTQrgdQaNu25ZKc0cqR4zwn0yn/ZeSElYaLgRQWlRDk3F1VjG46MCQfr91YJsXLmKFyZD/W0XfaoqhvHdl91mFXbQJOaBNjD2KitVi/y8UiHmYi/snsrohA25eTkyFTP7GQWeBhdG6ttv9PU0YeZcFP0lPphoBCi6PdQe/OW6m2/eal8rQlG1k7YqhHuo4FQptA6bYc+TjeAfqDnMMtD6WDvA0NZIyWvPs3ptkV0lLGTuK+YuoO1xvWgd7I7tttfIv0vTfWi+VyPggYZ3s81LNg4tFsb+KSfK7Z3kY7fjfoc0hhgnwJTA5md2SfyLowlMoWkELuvXHpZCIKXWVj3JLyOEY5QSPhddpZ2B2dMTRI1pGorPR1iDebX15RfUGYsZ1W6z5gwZqKKjmGHXxh5BUxXwrLIPHK59rK33H0CUguII+nmBBW683h6jp/wdIU1LdzF2g/eSqDfA8qjDYdQnmn2vQab8AUqHqAluu506H8nSUjN6coHkhlkADzHGmbjj+Pp2+R2R0YzeaXnTVR+F5NEQbJq3HtB9VrzBOWXw8bXCXLoUTVizeQzlFV+3F4evETU6AMtgu5m05VKwiqggR2ulonkLPu0hU0zQYd3dqibXn5sSLL6lgn8IRW4oa5WrHZ851OGnigmguLt9KnYEmGF1XUxasbim+PeGImBBn/Lnbds8b8erGEBDbdh67UGZ+x+Mx2x2dIAfhjyaeDUMNaAwWqbcWXSgoxJv/+AJCgiB0= +api: eJy1V01v2zgQ/SvGnLlxGvSkU902QIN2N0aS7h4MI6CpicyWIlmSauo19N8XQ0qyFMdar5P1JY448/jmzYfGWwi88JAtYJaXUsOSgbHoeJBGX+WQgXDIA95zIUylAzBw+KNCH96bfAPZFoTRAXWgr9xaJUV0nX7zRtMzL9ZY8niqN9cPkC22YB1dESR6el55dGPnmpc4PA8bi5CBD07qAmrWPdGVUlAvGQQZFD34g3xrBlhyqU4FuYzOdc1aC7P6hoKkaC2+YMHF5qtHd5PEeQavZuCFsfj/hvqvJG+JwzjLauWFk5bSOEbWKq5PJTsn3yPI9qiMcB7BmaWyPey8Zwp1TYAOvTXap1Avzs/pT449YeC2EgK9f6jU5KYxBnZ8O/y3JpD5mNQMHowreYAMqkrmo2Fe5UeXchPU4Vr2Q1IyYOn3YzOu4Fr+HYW4f71ArnuwE4qKDW96STMNsNsh8mjcd2+5wFcM4q8Ws4lgd8dL6O9QW+7WGUr0KzKfJ8SGd4v/EtYtYstZ+vscS/Ms3MoYhTRDxirdTz6Sf81ie907o07mRg0xuSGAmtErMUcdJFf+VLwPPYgjh7bvNWRrz53jm9GLkuvoHd2MbOHjAHx7cbE/8/7kSuapKy6dM+70gZdjaF7JB6aGMmJweoTKUgcs0KUBNVCoJ6hJBEnE0heE/LQHWtPf0Xte9OQ+bBrFmNzR6XNK08okHea0ZlFc6erGrpesnbxJ3cNhfEzyjaX1093dfA8w5XaY1A9xw5vMug2vxLA2tPtZ4+l/y8MaMphy2hCnu03Qo/uJzsekVE5BBusQrM+mU6FMlZ/xAnXgZ1xOuZWxKj2KysmwiS6z+dVn3HxCntO7b7HsG9xS2aRCGJp1OeBWfkaSJI0cmFVhbVwzs4GBpNDWyYtipoK82a2ul794adM8aN+9DVCX3GZp3BXaboEbmj6zNKXlqDOgaaYf4ijrui6KM5nNr4AByZiScX725uwcnqZoYEwdx0Xo8UjHwJ5kodO/F0xAXr7bHRAzynKZdrkGb68iBmy6FAT8FaZWcRm7Kd69bYplAbFYgEFbLksGayqnbAHb7Yp7/OpUXdPjHxU6qoglg5/cSb4ifRbUw+u2NrbwHTdELA2b32KnkbmqUi08GTw0FJLHTAi0YdR22av4+fXtHTBYNT9uSpOTj+OP1MX8ETIA+oFE3rE447MtKK6LimZFBgmTPv8A4AWS3A== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Create Account @@ -40,881 +43,29 @@ Create Account as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

-
-
-
    -
    - anyOf - - - -
    - - user - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - email - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - scope - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - subscription - object - -
    -
    - anyOf - - - -
    - - plan - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - user - object - -
    -
    - anyOf - - - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - scopes - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - organization_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - organization_name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - project_id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - project_name - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - is_demo - - object - - -
    -
    - - anyOf - - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - user_role - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - credentials - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-accounts.api.mdx b/docs/docs/reference/api/create-accounts.api.mdx index 9fdc1fe357..b799cfda67 100644 --- a/docs/docs/reference/api/create-accounts.api.mdx +++ b/docs/docs/reference/api/create-accounts.api.mdx @@ -5,33 +5,36 @@ description: "Create Accounts" sidebar_label: "Create Accounts" hide_title: true hide_table_of_contents: true -api: eJztWdtu4zYQ/RVjntU4G/RJT/UmATbYpjGSbPfBMAJaGtvcUKSWpJJ1Df17MaQulO0oThZFGzd5MSMOL3PmnOFtDZYtDMQTGKUZlzCNQOWomeVKXqQQQ6KRWbxjSaIKaQ1EoPF7gcZ+VOkK4jUkSlqUlooszwVPXNvhN6MkfTPJEjNGpVxTz5ajof8Kg9oVWJpyasHEuGPQNZcsQ/q1qxwhBmM1lwuIwHIr6MMfVF9GgBnjos/w3BmUZVRbqNk3TGzlF9eYEhhuuLq3adv6i0F97f2HHV2EZoYMlF4wyf9ykPwD3qZoEs1z6rDP/CwwKyPg5i5nKzJp28yUEshk0OjCDMbeak+wwsmEgwTwXQVw7AHjVQe9MoJHpe9NzhL8L2GZ4pwVwj4H5llltsGKO43z7Unz1DkoV1dziCfbs5krnTELMRQFT6GMGgtZCAFlAPkFVYMRxaKvx74ebqjtLg7UBtc4R40ywVczpYZwBzTBRL7W0d+DOl9bppQRgUv1b5s1DfkPizLvcuiRQzfm/fIYe5LvIY5xLYdN8DPMZqjNkucvkIpWYqdUUBYZeakeJWqI4IHjoytgyq1yhQcmCubLrafMbUQIllyoVYbS3mVMsgXq0NtrGrWWUqae11GmyJy2HYfFsf+xfhzzWgoE0e1XSrivuGwo/8INyeAyEEsnPb+r6O0x7WCX15+QUBeRXRuxF4mnabWpnGp39q6bN0ivNnoH5dZPqCbEY3t39iLFVG26enlmav5eZfPmoXN0Ds5DPfu/p1a03XoNPD2XllP8KwcvVYp04VKG87S6QPfB5Eoaz5WT42P66Zyo4KZIEjRmXojBdWUM0WvvnPY5Bu6XdRKNKUrLmTB9x77TwIzc/VdzleWo+yZ7S/VVkjocJTd0PSSXGgocklNhJjocv55J12Eiiep1xSm1EmLL3zDsG2htrzM3icpxe23Z51KA8kl9N1X2eenGMHVabvJ8GcGvJyfbqfxPJnjqj07nWrtU9so8nqKtbvm5xWxHehYq6dTuEWQuLVLiLKetx0xrtgoc/l35CRKMmVn0JdNLNIYtggj0vEgQGINbqn2OLeSXH7qyCwLfwuvRfdqNMw9fX2g/3d6Otzr0se0G9dQ9Dw1G7fNQhnap6OUoV4a6zJldQgxDt1gNg3ckg/rBvQFN1lBoATEsrc1NPBwmQhXpEVugtOyI8SHLOWwOPHK1g1MydeI0mBSa25XrbzS++IyrT8hSWssm09DghljledI1a0LEcv4ZCTF/Cwyjwi6VrsUWAacJLH0rgoT4et2+ip3/YFnuV/r6lWvHU9Dmc0b3mrr/Zq7nuuHJ8xRNlMu5P6tUYa5A/MiSe5Qp7TxQG4/v8dGHo+OnUK8aDEbji0rFzC+wNWDOjFJYJ65NRJuntRgssuy3toJmScTJmAz622bZ7nt3iz/sMBeMO4m6wdcVASdQ75YaCk4jWBJH4wms1zNm8IsWZUmfvxeoiUjTCB6Y5mxGaE0oMyxrSq3hHlc0NZ/CfnH6JXNReAptpDNKNb7FKEkwt72200BG46ubW4hgVj23ZiqlNpo9Um5gjxADrQZ588Lovq1BMLkoKAPF4Pukv78B3TRN3Q== +api: eJztWU1v2zgQ/SvGnLVxNtiTTuttAtToZmMk6fZgGAEtjW22FKmSVFKvof++GFIflO0oToqiG29ysSIOKc6b94YfswHLlgbiKYzSjEuYRaBy1MxyJccpxJBoZBbvWJKoQloDEWj8WqCxf6h0DfEGEiUtSkuPLM8FT1zf4WejJL0zyQozRk+5ppEtR0P/FQa1e2BpyqkHE5OOQddcsgzp165zhBiM1VwuIQLLraAXf1F7GQFmjIs+wwtnUJZRbaHmnzGxlV9cY0pguM/Vo83a3h8N6mvvP+wZIjQzZKD0kkn+j4PkB3ibokk0z2nAPvPzwKyMgJu7nK3JpO0zV0ogk0GnsRlMvNWBYIWTCT8SwHcVwHEAjFcd9MoIHpT+YnKW4H8JyxQXrBD2KTDPK7MtVtxpXOxOmqfOQbm+WkA83Z3NQumMWYihKHgKZdRYyEIIKAPIx9QMRhTLvhH7Rrihvvs4UBtc4wI1ygRfzJQawj3QBBP5VEf/AOp8aplSRgQutb9u1jTkPy7KvMmhRw7dmPfLY+JJfoA4JrUctsHPMJujNiueP0MqWom9UkFZZOSlepCoIYJ7jg/uAVNulXu4Z6Jg/rn1lLmNCMGSC7XOUNq7jEm2RB16e01fraWUqad1lCkyp23HcXHsf6wfx7yWAkF0+5US7isuG8o/c0MyuAzE0knPbyp6fUw72uX1OyTURWTfRuxZ4ml6bSun2p296eYV0quN3lG59R2qCfHY3Z09SzFVn65enpiav1fZvnnoHJ2D81DP/u+xFW2/XgNPL6TlFP/KwUuVIl24lOE8rS7QvTC5ksZz5ez0lH46Jyq4KZIEjVkUYnBdGUP00junQ46Bh2WdRGOK0nImTN+x711gRu7+1FxlOeq+yd5Se5WkjkfJDV2PyaWGAsfkVJiJjsevJ9J1mEiiel1xSq2E2PI3DPsWWrvrzE2ictxdWw65FKB8Ut9NlX1eum+YOi03eb6M4Lezs91U/jcTPPVHpwutXSp7YR5P0Va3/Nxitic9C5V0Wg8IMpcWKXGWs9ZjpjVbBw7/qfwECcbMLPuS6SUaw5ZBBHoqEgTG4JZan2IL+eU/XdkFgW/h9eg+7sa5h68vtO9vbyc7A/rYdoP6zpWHBqO2PJShXSmqHOXK0JA5syuIYegWq2FQRzKo710NaLqBQguIYWVtbuLhMBGqSE/YEqVlJ4wPWc6d/gwmheZ27bqMJuMPuH6PLKXlajoLDW6IOJ4KXbMmCiznH5BA8Re9MCrsSulaTxFwcm7le5HXRMnrtvB18Y1luV/M60LWnmrPdsWiexPdf/nWc6Pw6JGJJsrlwh9HqkiOHIqD0WRMGwvUxsft9OTXk1PYjmbHmMTJ/LpZg+SaKTN1wtUEqqmYxWCRZb+3DTQz4kPGZDDeLnn2X6db/GaHuWDcKc99fFPxagr1Jqhh1iyCFVEvnsJmM2cGP2pRlvT6a4GayDOL4J5pzuaE0JQEv6pptIEvuKap+cz0i5MlmYvC02YrS1EG8T1GSYK57bWdBeqYXN3cQgTzqoqaqZT6aPZAkmcPEAMl+bwpHLp3GxBMLgtKLDH4MenvX4C7P04= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Create Accounts @@ -40,2217 +43,29 @@ Create Accounts as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
    - - - users - object - - required - - -
    - -
    - - - - property name* - - - UserRequest - - - -
    - - -
    -
    -
    -
    -
    -
    - -
    - - - - organizations - - object - - required - - -
    - -
    - - - - property name* - - - OrganizationRequest - - - -
    - - - -
    -
    -
    -
    -
    -
    - -
    - - - - workspaces - - object - - required - - -
    - -
    - - - - property name* - - - WorkspaceRequest - - - -
    - - - - -
    - - - - organization_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - projects - object - - required - - -
    - -
    - - - - property name* - - - ProjectRequest - - - -
    - - - - -
    - - - - workspace_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - organization_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - organization_memberships - - object - - required - - -
    - -
    - - - - property name* - - - OrganizationMembershipRequest - - - -
    - - - -
    - - - - user_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - organization_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - workspace_memberships - - object - - required - - -
    - -
    - - - - property name* - - - WorkspaceMembershipRequest - - - -
    - - - -
    - - - - user_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - workspace_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - project_memberships - - object - - required - - -
    - -
    - - - - property name* - - - ProjectMembershipRequest - - - -
    - - - -
    - - - - user_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - project_ref - - - object - - - - required - - - -
    - -
    - - id - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - - projects - - - object - - - -
    - -
    - - - - property name* - - - object - - - -
    - -
    - - - - property name* - - - ProjectScope - - - -
    - - - - -
    - - - - user - - - object - - - - required - - - -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - project - - - object - - - - required - - - -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - workspace - - - object - - - - required - - - -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - organization - - - object - - - - required - - - -
    - -
    - - id - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-annotation.api.mdx b/docs/docs/reference/api/create-annotation.api.mdx index aa8209f70c..1357a60ece 100644 --- a/docs/docs/reference/api/create-annotation.api.mdx +++ b/docs/docs/reference/api/create-annotation.api.mdx @@ -5,1878 +5,67 @@ description: "Create Annotation" sidebar_label: "Create Annotation" hide_title: true hide_table_of_contents: true -api: eJzVWNtuGzcQ/RVhnlpgZTm+pd2nKomLuE4Qw3bzIhjBaHckMeKSG16cKML+ezHkSrsrybKTJgXqB1smh4ecwzMXagkOpxbSEZzfo7Rwl4AuyaATWl3kkEJmCB19QKW0C6OQgKFPnqx7ofMFpEvItHKkHH/EspQiC3aDj1YrHrPZjArkT6VhbCfIBtsGcmtuLlTOf3OaoJeOz+Gt0wUk4BYlQQrWGaGmkAApX/D51wYzXyCfEr3T7I8TTvKK4Xq/S0avErDam4y6+2Ap9mzymcaQgM3njF+K3fA3EbZKIEcXHMc8FzyD8mqDgsW7CaSj5caGVbIeEcrRlEx7SPli3B0Zay0JVRjavRdkwmReovnlTy/lX1ar/oUqvfu1cVaPP1Lm2rBoDC66O0sJVcvpLhi73AVrLF8xFVUCBTlc07J2//9GkHBUPG3Rv+dw39q3KzYrjsoJGVJZZK4bT3SP0qPTZntK5PuITmCiTYEcGd6LfO9hLmJQST994tVtIdzw2iqBezK2zgvfA/O+Xl4lgM4ZMfaultPOq3fG08PCHTYI1R59N+F/vbqHcJVknSW305MnYmz6WaNmaOmHwu5wjhO9MJRz6msktDPpXTfqqxKQQs33ML6pQVui+hCFuCm/tTRKVL2oMGcwo0fMb9mmtv/pGmjTtHKldcydfL0Rar4vX74JDD62W4j9TuivuN+56ctQzB9FbVXmPTDXsQuAqqray5nJMGBLrWzk/OjwMFZZmxlRxpIPNz7LyNqJl73r2hiSH9NMPBwTj1xV8q2MPjGQdsVL7XIV+Ds5Otpm6D1KkQfr3rkx2nw/PTk5FDKk+1i5Ng2kzjqz31J476qNatdSsc5WNEFhp/si9i1Zi1NqYuJh00BG75ZnH5My+xW3ru3aZWJNb2T3YTdeRfr23ezr29urLcB4t91LjcHTG7Yb6oLcTHO3XWrLoCW6GaQwKA3dC/o8aNRtB9x/kuEKGa7HGwkpzJwrbToYZFL7/ACnpBweoBjEbrZ7gGGY7b1k01A2LWXeCLcIeMOri0tavCbMyUA6umsb3LC6ol66Zk3HWIpLYuYUFkHv3s20EV9Xjgo+wCyuYmpYt9fNa+L8CxalpO2Aju+Bpsdfde51u143lN32cqsl6jRBXD7geIK/nU7OTvqnz58975+cnh31x8eTrH+U/X52PDk7wwmewaqlaXS4bk+aoU6NqbqF/7/YatUN/Ny9WpU9/CPURIfbX6W3KK0XmM1J5R3Iw4NnB4cPabFe0BteXdQ5DrNA3UpGwQySDbWvdc4vtCIkOHCExR/NBJ+Sg4qfhA3erhjsHGwtaEdf3KCUKEIKC9sv6/AcQR2ezFMToJAAJ5kZR3I6guVyjJb+NrKqePiTJ8OBdpfAPRqBY+ZtxBl0tgq5JcxpwYeMqb4f8hybSx8Vv5H2OSXHFcMso9Lttb1rJZurdze3kMC4fsYXOuc1Btkh/p0C8LcB0at0GceWIFFNPWfqFCIm//wDk8aStA== +api: eJztW1lv2zgQ/ivGPO0Ccpymbbqrp02PRbNtN0GS9sUwAlqibTaUqPJI6zX03xdD6vSV+ALSgnlwLGoO8uMxo/msGWgyVhD24SxNhSaaiVTBIACRUWmvzmMIIZKUaHpLKhkIQNJvhir9WsRTCGcQiVTTVONXkmWcRVau91WJFNtUNKEJwW+ZRNuaUWVla5ML94RkY2bb9TSjEILSkqVjCICmJsFOR0ZpkUAAE5MQ7BQxWmD3NdMcNa5ZknF6I0lEL5y1AGI6IoZrHJZTzwO4Y2m8zhGJJyLC63vCIYCMk+kKNx/QUtOJU80DiCYkTSlf50ZonkEA3+kQAlDxHY4oYys8vSnstZxlDF25SUV0pxcjCPszIHHMEGXCL+fwLyXafcqDqoWlmo6pbDalJhm2W4ZCcEpS27TcF0RMRoYT+du/4iNT+h8l0u55mhn9OwSlGTH8SiPddsU55A0E5rXteB+tfYPI5AEkVJOni9DfhvOH8GGaJo9TIlKS6VpU2qqbIfoJkcwDiEmBqMdxJY615FviUJN0RCVNI4dR+/z7ZqictqFrC9xTqYqT8xHoLvT2S6GeB6C4GW9r5hp18wBYvM5CACMhE4KHlDEsXmvxPIZ8DXZXJWZLjOSBg+32nkhGinjk4dsYPknv2SI4Hr+H8dNUaUX9wtsWOL9zdwXQ791tEWw8uXjwdgDP7+F9gOj38bYo4mO6IVpID93W0Pk9vDuEfgfvkstERFGP3GbIrdFrlA6v6qpDHgBn6d0jy4XtCVAZSW/Xj3stchlJOzjYADT2agdTdlSdB4D7yNK75bWtogb0a42vKFcN2gJqqQks5jNJYyxC20JeqzJVLpGGqZoueGO5gQetNgr9a8xcOVIB8jxvqmtpqG1QmUiVm5yT42P8F1MVSZa5lB2uTRRRpUaGd64KYQi25SYiYZzSXHmy7v4bK9EowB9jCteiNFYdXo5SiW+JfuSxERNNu5oly7Z9o0fObOfMVh9NFh/CyWdntnASU04P4OStM1s4KeEaTh/YRZsctCVYr6fFNi3x2quXEq3KSwnYXr2UcFVenuLhFXhO79fn9C6M3oXUc+q/NKu3DqHVdNSC1gZ81Dag/hTE3tOB0nN7ntv7OeDzVYldqhKe2/Pcnuf2fj4EPbfnub2nA6Lfx9ui6Lk9z+09BQj9Dt4ll/Hc3ubIeW7Pc3vtetWhub0NV2GtWJFvuWXyXpycLHJ1XwhnsZXuvJNSyO2JuphqwmwRfsVkcxG17m5SshzMo97AXEQlTJCo8TIWoC6mKkXGtJ7C1aIWjM4N3n1oOrklMNB1Idc8Ait4Hbqrh/HWwbduZt/f3FwuGHRz255UR6l1zppviiVUTwS+RpYJhUYzoicQQi/DEEq/92rCVPWQI6EST387PUZyCGGidabCXi/iwsRHZExTTY4I61lmZIAakZFMT63K2eX5Bzp9T0lMJYT9QVPgGheQWxJtsWo2SMY+UAQnJYld0kZPhGT/lWNB7gomTgtHj0vzqn4T7t0PggexW2NNGrjkvWp6y9FTFQtVMUmW76nonprUqCvxC6XlqphcRc16VbnwV1/jOQXPR+SPl6PTF92Xr5696r54eXrSHT4fRd2T6M/T56PTUzIip7Cs3HoYB81Uat8eGiW7A5k+JD7Lyj779jFXGDmg+UMiterhet9+Wo+fBzN+SKSWP8IcYuWWSf5+bTeyWhuAWDoS9gQvsxAbHzpnl+cQNFwfHz07Oob5eNUSxvSDRBb08vi3tyGYC0RVCEKeP7G5B2hKkr/qG9gzjHf4G4ba3rLw2OpQFYg0/aF7GSfMZhfW/ayInH0oIic0f2yEqRzG/wkG2bAPs9mQKPpZ8jzH5iJG9AcB2LU1RKz6mNxMylA5gzs6tb9qsllY16YgKM6NC41zGRlmS07jLIpoptfKDhp5wOXF9Q0EMCxeHU9EjDqS4IDwMwTAN9DdqMKZa5sBJ+nYYBIVgrOJf/8DhLsxXw== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Create Annotation - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - - annotation - object - - required - - -
    - - - -
    - - - data - object - - required - - -
    - -
    - - - property name* - FullJson-Input - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - - references - object - - required - - -
    - -
    - - - evaluator - object - - required - - -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - attributes - object - - -
    - -
    -
    -
    -
    -
    -
    - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - attributes - object - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - testcase - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - attributes - object - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - links - object - - required - - -
    - -
    - - - property name* - AnnotationLink - - -
    - - - -
    - - - attributes - object - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - annotation - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - - - -
    - - - data - object - - required - - -
    - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - - references - object - - required - - -
    - -
    - - - evaluator - object - - required - - -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - testcase - object - -
    -
    - anyOf - - - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - links - object - - required - - -
    - -
    - - - property name* - AnnotationLink - - -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-api-key.api.mdx b/docs/docs/reference/api/create-api-key.api.mdx index 70d2a2e15a..ce71059e48 100644 --- a/docs/docs/reference/api/create-api-key.api.mdx +++ b/docs/docs/reference/api/create-api-key.api.mdx @@ -5,81 +5,65 @@ description: "Creates an API key for a user." sidebar_label: "Create Api Key" hide_title: true hide_table_of_contents: true -api: eJzVVMGO2jAQ/RVrTq1kAe3Rp6a7hyIORbA9AVoNzkC8JI7XnqDSKP9eTRLYXaR+QHNJbM+M37z3Ji0wHhOYDWTBqQVdEuw05JRsdIFd7cHAQyRkSgq9ypZzdaKLOtRRoWoSxcnWb30Wj8lsvVJKRXptKLH6tBo+Phv1VNBtu96/kGVla8/ovPNHxQX1hdT8UTnfL6/BiZGpv2BF3ER/vSNxHKraHll+hTUBDXWgiAJ8noOBIeAZg3s+0QU0REqh9okSmBa+zmby+tjturGWUjo0pVqNwaBBAJNnCccQSmf7O6YvSXJaSLagCuWLL4HAQOLo/BE0sONSNq611MCmGumGTh4NFXFRC+JQJwYNAbkAA9OTKKIhUTxTFJ1aaGIJBgrmkMx0asu6ySd4JM84QTfF4OBewKw/VQ8SCt1OytkmOr709bLlfEGXH4Q5RTCb3fuAtfQ1kPUx7NYoBrfomfVYyTpruKij+9PzAxqcACiGLGnU+UPdp4+8jNi+oz2Rz0GD9DnAnk2+TGb/amZMEOlHedD28lxx9GGg7+i6EQUaqEInZ0xYfXs7EJSiQoX+Xb072e5QtW8G+b/GZVSR6TdPQ4nOQzdS1o4e3MBp/CsUYk2zgbbdY6Jfsew62X5tKIqTdhrOGB3uRdfNrtNX2cVkMn0GMmspiL3PWDaDe+5mScx3m4Xlz/UTdN1fyDiT9Q== +api: eJzVU02P2jAQ/SvWnFrJIrRHnxq1hyIORbA9AVrNmoF4CY7XnqDSKP+9GiewC/+gucQfM+M3773pgPGQwKyhDE7N6ZJgq2FHyUYX2DUeDHyPhExJoVflYqaOdFH7JipUbaI42fiNL+MhmY1XSqlIby0lVp+Ww+KzUU8V3Y6bl1eyrGzjGZ13/qC4olxIzX4o5/P2GpwYmfIDS+I2+usbieNQ1WZkuyusCWhoAkUU4LMdGBgCnjG45yNdQEOkFBqfKIHp4Ot0Kr/7blettZTSvq3VcgwGDQKYPEs4hlA7m98oXpPkdJBsRSeUFV8CgYHE0fkDaGDHtRxca6mBTTXSDb18Gk7EVSOIQ5MYNATkCgwUR1FEQ6J4pig6ddDGGgxUzCGZorB10+4meCDPOEFXYHDQbyXDttHxJaeUi9mcLj8JdxTBrLcfA1YCfeDjPuzWCwY3z+R5PMm+bLlqovubKQANTmirhizpxfl9k9PH1ssMTkQCDdLGQPR08mUyhUez3QVnm9jM+vXtfA36gYVb/6CBTujkjglP394vBJmQe0L/od6DGg9ounfd/68pGJVj+sNFqNF56EfKutFaaziOw16J48wauu4FE/2Odd/L8VtLUdyz1XDG6PBFtFxve32VWowlQ2WgtJaCuPaMdTs45mFExHA3iy9+rZ6g7/8BgAqFZg== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Creates an API key for a user. Args: -request (Request): The request object containing the user ID in the request state. + request (Request): The request object containing the user ID in the request state. Returns: -str: The created API key. + str: The created API key. + + + + + + + + + + + + + -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
    - string -
    -
-
-
-
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-app.api.mdx b/docs/docs/reference/api/create-app.api.mdx index 4170815040..a2ba74d105 100644 --- a/docs/docs/reference/api/create-app.api.mdx +++ b/docs/docs/reference/api/create-app.api.mdx @@ -5,405 +5,76 @@ description: "Create a new app for a user or organization." sidebar_label: "Create App" hide_title: true hide_table_of_contents: true -api: eJztVt9v2zYQ/leIe1kLaHYa7ElPU9MANdotRuJtD44RXKSzxEYiWZKK4xn+34cjZUt2lvRHgD41CBCGvPuO993dJ27AY+kgnUNmjINFAgW53ErjpVaQwpkl9CRQKFoJNEYstRUoWkdWaP4tUcl/ka1H1+paZbZ06bUSQgiD61pjIV5FjMyY16mYVbQ/yLXyKJVUpfAVBXSFDQlUxQGwmLwTr3S4EdavQ5hL8q1Vu0j7ABetN62PUXRYHwdRtKrXIg8OBYf8xTE8h+TYERylox32+9lsev6QUwifismSYSwJ6QQqQdZqG+GGaWgbloGlQpMTSntR4T0JQ7aRznFWXgvMc3Ju5zaCBLQhG5KeFJBCvOcNGgMJWPrckvNvdbGGdBP+lZYKSL1tKQFOlJTnIzSmlnmAGX9yXMcNuLyiBnllLAfxklxne8OZ89qvDUEKzlupSkjAS1/zRmaM+JNttgl4akzNl7qjcA1U64slpPNj722y31FtXcN20ePNOgzxgdaMaaz+RLm/kcX3Ik4jgpgUjLfS9s4ZzOkFiP/sMDrMYUO+APbioK8L2DKl0VbfcgpdoWNl5315Bhj7dr+B7ZYBLDmjlYsFPT054T+HY3zVhk5btrW47IzhRS0TGXiuYSJt39ZeX0GGLCB5npUoAh01v52ePmbjb6xlEUtwzgP8/VQU5FHWvJKeGvfYoNb5welX9IxUnkqysF30dKC1uB5Q9lHHCzLFjSufY/cPcg7LOLvB5GnTQIaY8emXSsF5xdCd3aASPb2R3afTeBfp+79gOxPW30eAsbYN+UqzTBrt2MWgryCFMfKXLAFH9p6sC2S3toYUKu+NS8fjvNZtMcKSlMcRyjEaCccfviycijM2DRPsKG+t9OuAl00nH2j9nrAgC+l8MTS44l6J1T802xOPRrLyJRAnA7LWV9p2qgAJSL5AFb04Ue7Cy179zx+wMTUdqvegmgcK3e8PVbbfPdTKfv+R3vWdClItdUhnN8CRq7eY35Hi+WTeI40nozejk6fI7RxENp10I4h5GMEdL8EMkqPy7QsHCVAT5g88YfN7f8CscVc0qAZ43WMmC5/TgxttegH4+eT5wU+ebig8PfixqVEGUQsV33QjHZQ/PE4rnvR0DpvNLTr6y9bbLW9/bsnyYC4SuEcr8Zbbcs76We1GdANxHM5inX8NKsfmdRtH8kj0WZCjR5YzFc/aLgZiNL24mkECt90zrdEF+1hcsYLiClIIzzz2DhoR9jZQoypb1ukUIib//AfmrwDx +api: eJztVlFv2zYQ/ivEvawFNDsL9qSneW2AGt0WI/G2B8cILtJZYkuRLEklcQ3/9+FI2ZKcNesaYE8LAoQh777jfXf3iTsIWHnIVzCz1sM6g5J84aQN0mjI4Y0jDCRQaHoQaK3YGCdQtJ6cMPxboZafka0nN/pGz1zl8xsthBAWt8pgKV4ljJm1r3OxrOl4UBgdUGqpKxFqiugaGxKoyxGwmL8Vr0y8EarXMcwVhdbpQ6RjgMs22DakKCauT4NoelBbUUSHkkN+5xmeQ3LsBI7S0wH73XK5uHgsKIbPxXzDMI6E9AK1IOeMS3DDNIyLy8hSacgLbYKo8Z6EJddI7zmrYAQWBXl/cJtABsaSi0nPS8gh3fMWrYUMHH1qyYefTbmFfBf/lY5KyINrKQNOlHTgI7RWySLCTD94ruMOfFFTg7yyjoMESb6zveXMeR22liAHH5zUFWQQZFC8MbNW/MY2+wwCNVbxpT5SvAbq7eUG8tWp9z477uhWKdive7xlhyHe05YxrTMfqAi3svxWxEVCEPOS8R6M++gtFvQCxD8PGB3msCFfAHs56usS9kxpsjV3nEJX6FTZVV+eAcax3W9hv2cAR94a7VNBz8/O+M94jK/b2GmbVomrzhhe1DKJgecaJtH279rrK8iQJWTPs5JEoKPmx/Pzp2z8gUqWqQQXPMDfTkVJAaXilQzU+KcGyhSj06/oGakDVeRgv+7pQOdwO6DsF5MuyBQ3vnqO3V/Je6zS7EaTL5tGMsSST/+pFJxXCt3ZDSrR05vY/XIabxN9fxfsYML6+wQw1bahUBuWSWs8u1gMNeQwRf6SZeDJ3ZPzkezWKcihDsH6fDotlGnLCVakA05QTtHKOKSeitbJsI0us8X8PW3fEZbkIF+thwbX3A6pwGOzI7doJYtbBqn5YdaG2rhu8CEDyX1YJy/OhRvtqhf4i0dsrKKxQA8KNhLhfn8opP3uWA77/SeS1jcjSL0xMZ3DjEayxGwxhwyY1jRJZ5MfJmdw+mgYGccPcBEn68BFPIbspCrHekAG1MSxgkDY/NQfMFNc7Ab1AK97o8ziV3J0k10/1/+/ZP7jl0w3CIEew9QqlFGrYsV33aRGQY9vzpoHOF/BbneHnn53ar/n7U8tOR7GdQb36CTecSuuWBbrw1juII3Am1Tn76N4sblq0xieaDnrbPKYFUzFs7brgcYsLq+XkMFd9/pqTMk+Dh9YGPEBcoivN/aOuhD3dqBQVy3Lbw4Jk3/+Ajnw8lM= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Create a new app for a user or organization. Args: -payload (CreateApp): The payload containing the app name and organization ID (optional). + payload (CreateApp): The payload containing the app name and organization ID (optional). Returns: -CreateAppOutput: The output containing the newly created app's ID and name. + CreateAppOutput: The output containing the newly created app's ID and name. Raises: -HTTPException: If there is an error creating the app or the user does not have permission to access the app. + HTTPException: If there is an error creating the app or the user does not have permission to access the app. +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - - -
    - - template_key - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - project_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - organization_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-checkout.api.mdx b/docs/docs/reference/api/create-checkout.api.mdx index afd91e5cbc..f025174cb7 100644 --- a/docs/docs/reference/api/create-checkout.api.mdx +++ b/docs/docs/reference/api/create-checkout.api.mdx @@ -5,36 +5,36 @@ description: "Create Checkout User Route" sidebar_label: "Create Checkout User Route" hide_title: true hide_table_of_contents: true -api: eJy1VV1v2jAU/SvRfdqkiLBqT3ka6ya16qailu4FIXRxLsStY7u2UzVD+e/TdUKA0lbapD0B9v0495x7zBYCbjzkc/gqlZJ6A4sUjCWHQRp9WUAOwhEGWoqSxIOpA6Rg0WFFgRwnbkFjRZCDVaghBakhh8eaXAMpOHqspaMC8uBqSsGLkiqEfAuhsZzkg+OmKZCuK4YhlKmL5dN4WZrViksMB9aZw59lXaGWoVkqXPnDi+eTE9yQDrhEycMFGRR3njLctk0H/L4Wgrxf1k79+xi76rddseTOKWjbBZfw1mhPnrPOxmP+KMgLJy0zvU9Z1yq56YN5CKMD6cDhaK2SIgqT3XvO2e6RtG3bpvD57Oy08C9UsohpyXfnjPuLqmAdL0OQHe6CAkrF32Sgyp8GKCOOblE31+u4JMdEMe39idSBNuSgXbTp7gydw+aAzR+mAwhtCpXfvEf8T/IeNwRDsbdDIxnJjG/bfW+zuicRjkSfx7m61n3cwSLt6e3YfXuMbx19rzXbhVzMZtOTgp22x6KeR1cm570rkztPLrkxdeClqSiUhr1rje8MG0rIIVt1Hs+YCkvZztI+gxQ8uaedo9kCOZQhWJ9nWfTRqDPRCGWGVsJLOJN4m5xzKPC+exK1k6GJ9SbTyytqLggLcpDPF4cBt7xr3fYchw3CoZVXxDz2Rp3UoTRO/u5Wordq2WUxUVKvTUzvOe2xfUXxQLqAFHjODvZ49Gk0fmuYPiGZTC97y6CIltnhiGGQvqBrIIpftSr6BQJh9WV/wShZmgr1Qb13JT1COFAT6DlkVqGM1og4tr3ac+jVZm2j3jzETnFIgXe45P3I57DdrtDTnVNty8fdu8fKFdLjSrEJ1qg8neAYHhL4cNP75WMC6ev4HqjZ/088oao5JL4F/6HN8XO+77bgH05yu7iK6W51eNwudSIE2XCQdfJGcpXBZNPr2xm07R9csHzQ +api: eJy1VVtr2zAU/ivmPG0g4qzsyU/LukFLNxradC8hBNk+idXKkirJpVnQfx9HviRu2sIGe0oinet3Ufbg+dZBtoSvQkqhtrBioA1a7oVWlyVkUFjkHtdFhcWDbjwwMNzyGj1aStyD4jVCBkZyBQyEggweG7Q7YGDxsREWS8i8bZCBKyqsOWR78DtDSc5basoAVVPTGIXUTbl+mq4rnedUYjgwVh//zBsnFDp3fFY1NVfC79aS56OL55MTvkXl+ZoLWtgLL2maOa0QAht2ck1RoHPrxsp/X62vftsWS+6shBBWVMIZrRw6yjqbTumjRFdYYQj9Q8qmkclNF0xLaOVReQrnxkhRRLLSe0c5+8MkIYTA4PPZ2WnhX1yKMqYl363V9i+qgrEkEC/auUv0XEj6JjzW7jRA6mJ0y9XuehOFMwaKYO9OhPK4RQthFVh/xq3luyM0f+h2QAgMard9D/if6BzfIgzF3g6NYCQLug2H3jq/x8KPSF/GvdrWXdyRkA7wtui+vca3Fr7XmvUhF4vF/KRgy+2Y1PPo1OS8c2py59AmN7rxJJoafaXJz0a71sS+ggzSvPV9SlAYTHubuxQYOLRPvcvJAhlU3huXpWn00aQ10YSLlBsBJGmHRWOF38WU2fzyCncXyEu0kC1XxwG3JKdWIOOwgRtuxBUSVJ0XZ42vtBW/W9Y7N1ZtFmEh1EbH9A62WRwumc0vgQGt0YI0nXyaTOEldKNgcgIvohP63vEa2AsUhv3pAaujDcAjr78cLmgyQrzm6qjeu0yNJhvg8PjsUyO5iIqPc+w7EpfQkUiURRppiZ5IYEDSrIj2bAn7fc4d3lkZAh23zxmxVQrHc0na3nDp8GSO4X2ADzedDT4mwF6f7wF3h7+EJy4bCokW/w9txq/0oduKflhB7aL8WC8XWrdNnRUFGn+UdfL0UZXBO/Pr2wWE8AfJyHWY sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Create Checkout User Route @@ -43,273 +43,29 @@ Create Checkout User Route as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-evaluation-preview-simple-evaluations-post.api.mdx b/docs/docs/reference/api/create-evaluation-preview-simple-evaluations-post.api.mdx new file mode 100644 index 0000000000..e38ff4c714 --- /dev/null +++ b/docs/docs/reference/api/create-evaluation-preview-simple-evaluations-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-evaluation-preview-simple-evaluations-post +title: "Create Evaluation" +description: "Create Evaluation" +sidebar_label: "Create Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJztWVlvGzcQ/ivCPLXAylIUH+0+VYkdxE1Su7aTF0EQqN2RxJR7mIcTVdj/Xgy5p1aSrwRIY/tBlsg5OB+Hc5Ar0GyuwB/ByQ0ThmmexArGHiQpSvvrNAQfAolM4wRLmkkq8Ybjl4niUSrqM2oySROlwQOJ1waVfpWES/BXECSxxljTV5amggeWvPdZJTGNqWCBEaNvqSTlmqOiX5Xk9txM2MWvgMXLsxn4o3UCriaBSBSGTSK9TBF8mCaJQBZD5pVDsRECsrEHmmtBA6eq89pJyDwSJ/gNPkbYe+J3oligHyls6CRkmVdQJdPPGBD4BVW1rRcmfmPxagvNPIhQs+ZSWBhy4mPivIFpa7FKSx7P62J5rHGOsqkpmjZH6jZu1gUBl4ERTP7yxgjxp0ri7mmcGv0rrNtLMrjG6G5MTEq23IltkxVa+O7i/UBIEkfLN38kRP9K3nOlb8N0m43r3PdD6Mp5IcQs2uz+bfvbKyDezIMQVSB5WsSHh4g6ronIPLhBqXJpTRkVx6echNTPmBEafBj0Bwd7/aO9F/t2WWz9ODUDk9JMm52b7wHGJqLInGIcupFrgwZDCq0mjt2QMkGASoEHM8aFkUiMUiaShgIWBygEhjDeFBEu3SI2xoNrg3I5URrTtVXmx6y93FkiI0ZIGMPDmkNUp22b/28zPDBKJxF4sDARI7SZ0QnQ6nIwl+QFLhNsUX4Hb/ybLO1cWkuJEZVWqJ+E6VfO1sr4WmJ+EgAMK3srEPKKI5FPAoKTwtoKAIkpMr05Om1MRGsiL3L+XXXJpa0bq1h0zGzWbEWie4h4bYvUjVqpFOWSysBRvaAc3ybswpWwkGVZXYiWBu2ASpNYuS0Y9Pv0r5GP4NJF55kRnYucmMLywyrhIDGOaW0rKiNeW4paVupX7txKkM+l9NMupc+MfkAt3eK6RzHteH/yanoXrHcopx+C0Y9dT7u7g3DC9O5yt8xhIdPY1dyuZ7sWF6DDztCCZdLweyj56MTmSkIU+B2UHDuxuZICrulywjfH2q0lx+1gvVp2TsM6Xt9US4FWqaUA7JtqKeAqtXw70U5erQF8iPsXzeFzF/h/KoOfu8DnLvC5C/wJusBHspdtWmZ7vv3BoN3VfWKCh85dTijIPrylC1EzLmx7VXhUk0AkQWP2PsXteN39KqvfJ0EBFkRqvuuu8wMqxeZYudN2UgtG54pmb2vCyS6nOqerJ9ASXofudjOOHXy79vft1dV5S6Db2+amuhKpU3Mk28ktEnr/yl+0UqYX4EMvf/zqucevXu3xq0fJGCWVEHaXjBTgw0LrVPm9XiASE+6xOcaa7THeYym3R0ZhYCTXS8syPD99h8u3yEKU4I/GdYJL8iPnGU2yclNYyt8hYeSaARgavUgk/7cwiZOtC8dFIJCHXlQPdSdfGZnUfngr7wdq9wB0DVLr5MufRTeeX5Pk/XDVxJWtSuVCzb0oh8tSrH69XtVVRf3ULI6qimUEL2fst4PZ4X734OjFUXf/4HDQnb6cBd1B8Pvhy9nhIZuxQ+t7zXx/d8YNufLuzK0cc3fWMjr3rS/zeJZYLyhSmvWxzvD8tIFif+/FXr8Fd4OYIhkLbCQrXMhOg7fmzKUbU7KKbBgDjSz6o5qgldHRocRVydt00tbaztyZNX7VvVQwbgOVVb/KD+EI8kNIB84eQ6hfdVHdSzAt6OD6I1itpkzhRymyjIatl9Dh8uCGSc6mBNqIAuaiOHcr+AeX9k7NRvauDWtELow7Z2tRniKw4xgGAaZ6J+24FlvOzy6vwINp/kweJSHxSEaW0acPQM/xzip/5cZWIFg8NxSYfXAy6e8/8n/lZQ== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-evaluation.api.mdx b/docs/docs/reference/api/create-evaluation.api.mdx deleted file mode 100644 index 71002d395d..0000000000 --- a/docs/docs/reference/api/create-evaluation.api.mdx +++ /dev/null @@ -1,1466 +0,0 @@ ---- -id: create-evaluation -title: "Create Evaluation" -description: "Creates a new comparison table document" -sidebar_label: "Create Evaluation" -hide_title: true -hide_table_of_contents: true -api: eJztWE1v2zgQ/SsEz27iDfak0zppgAZNWsNJe3EMgZYmNluKUkkqiWvovy9mKMmU5Y98oNjL5hJLnHkkh28eZ7TmTiwsj6b88lGoUjiZa8tnA56CTYws8JlH/MKAcGCZYBqeWJJnhTDS5po5MVfA0jwpM9DuXk+EtGCje80YY5/u7saXzwkQSsTiADO+1xNwpdGNbWeQD3hegKHVXKU84gnNH0O7Rj7gBn6VYN15nq54tKZHaSDlkTMlDHiSawfa4ZAoCiUT8jv9YXFDa26TJWQCfxUG53ISbG0byxR/uVUBPOLWGakXfMCddApfjIqCXaW8whU8SosBi2VKztJBZvu+1aB5IYwRqwBr0iCwq9SiXb3D3Ng4yfWDXLwN97KFYRc1DBqDdRbckf3deatmjxh3JTPp+rGaC5csYyt/Q4AntYMFmADwHM3YLZpVA56J59iAMzXGXq8b8cwmtR3F2plVnIISq4Nu6LJiH8muQhorsYrn4J4AdEwLPjIvubJz78HOa49qE+t8/gMSVxPQM24ahqK7xe7K9y1otpn/+vpmUuqJcHBNUa+QysZA4mKh7ROYOMlVmRGJhV59feDRtE+M9o0uleJVgH/hwdiIwNiFBzu2vzottjm/k7AdonUYFCzjCzxtFIdXVUVnbItcW39AZ8Mh/uvq0G2ZJGDtQ6nYpDbmr0j1rWxp06pL68Pp4dPiNTJRmBwjesR+7K1qn0dhpNDuzcLy3fs3stLAaZHB+wC/EEIA2RDi3UtttLBZc8u09ylrX/jekjVdUWzwMJzvRcSAIqZ1wpU72Oj9D8g1vqfzUGV3MYdm/07WeOEYk5ude9ipAxlYKxYQZvIlIfQnOyYpNDYLT8yWivROLBYGFsJBGht62aVANz6tANX68/K9kDrREXZyNNC0+Ccgp3z1kcYCEcoibR5mOy5cf91SOESaShQiocbBin110l1XtQuJtVDcR+F/bhxz63GhDV2ANWrZtWHcHhHZmLJJTUSk5yMYsYA4ya17eXT20r0XmwF3uRPqD+I3O1DCgU5Wf2aSIGt2UPQhNxmOcMymD05SFrY1indlIzqcIONeC/TNuxLQEe5Q5rdlTkcPwst4+y7dcxGG11er7TuV7TXyQqVSJ/pUAjEfL9YrqP4+O+vXUN+FkilZMZ+eb+6VUnBCqgParPKkM/qCe7IpyH0e7E7L6zxpY5HZxSEFvKk1qQXbb0rBYF4yj3AF9+WnHvRSYhPeRvz2beOjD9+uyRoT7KB7gP5sM3DLHHvjAmViwAvhljzipxD08QNuwTyCsRTz0ige8aVzhY1OTxOVl+mJWIB24kTIU1FIvt32j2iUXaApXREWktJItyK80fjqM6w+gUjB8Gg6Cw1ukTKeBF2zTRFeyM90u/oiio9Kt8yN/N209xIXsPReuF8k42TT8l8+i6xQELbsmyPdasynzchsd4MdjoelYgDY6YLDvne41dEOt1rV4d4edLi/swvKW6kfcopaeyXRkZyL5CdoEicw1p/W8OSvk+G+M6wd2Gh8VSe8SGgzTfjJDAWow5KWH1gWZZTt3IHI/tkM4OEgBzOhA7y+JG0tbL1Rnf/g81JNQgfP7rRQQpKW0NbXdSa11UTzRWxJ1/GUr9dzYeGbUVWFr3+VYDAfZvVNMMdjmqJ6LZvMWHOsI7H1pg1/II1pq7K+5KIceo9Rgts7aDsLpGD89faOD/i8/iSW5Sn6GPFEFH7iEacva67pqujdmiuhFyWqZMQ9Jv79C9/g8/g= -sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Creates a new comparison table document -Raises: -HTTPException: _description_ -Returns: -_description_ - - - - - -
- -

- Body -

- required -
-
-
    - - - - - -
    - - - - rate_limit - - object - - required - - -
    - - - - -
    -
    -
    - -
    - - correct_answer_column - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - - - - - -
    - - testset_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testset_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - - status - - - object - - - - required - - - -
    - - -
    - - value - object - -
    -
    - - anyOf - -
    -
    -
    - -
    - - error - object - -
    -
    - - anyOf - - - - - -
    - - stacktrace - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - aggregated_results - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - evaluator_config - object - - required - - -
    -
    - - anyOf - - - - - - - - -
    - - settings_values - - object - - -
    -
    - - anyOf - -
    -
    -
    - - -
    -
    -
    -
    -
    - -
    - - - - result - - - object - - - - required - - - -
    - - -
    - - value - - object - - -
    -
    - - anyOf - -
    -
    -
    - -
    - - error - - object - - -
    -
    - - anyOf - - - - - -
    - - stacktrace - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - average_cost - object - -
    -
    - anyOf - - - - -
    - - value - - object - - -
    -
    - - anyOf - -
    -
    -
    - -
    - - error - - object - - -
    -
    - - anyOf - - - - - -
    - - stacktrace - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - total_cost - object - -
    -
    - anyOf - - - - -
    - - value - - object - - -
    -
    - - anyOf - -
    -
    -
    - -
    - - error - - object - - -
    -
    - - anyOf - - - - - -
    - - stacktrace - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - average_latency - object - -
    -
    - anyOf - - - - -
    - - value - - object - - -
    -
    - - anyOf - -
    -
    -
    - -
    - - error - - object - - -
    -
    - - anyOf - - - - - -
    - - stacktrace - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/create-evaluator-revision.api.mdx b/docs/docs/reference/api/create-evaluator-revision.api.mdx new file mode 100644 index 0000000000..c450a86720 --- /dev/null +++ b/docs/docs/reference/api/create-evaluator-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-evaluator-revision +title: "Create Evaluator Revision" +description: "Create Evaluator Revision" +sidebar_label: "Create Evaluator Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWltv2zYU/ivGedoAOU7TNt30tDRpUa/tGjiXPRhGQEuUzZYSVV7Seob++3BISrZ8q63YQ7AmD4kj8XxH5+O58chT0GSkIOzDm3vCDdFCKhgEIHIqiWYi68YQQiQp0fSOlkvuJL1niokMApD0q6FKvxbxBMIpRCLTNNP4keQ5Z5FF6XxWIsNrKhrTlOCnXKIOzajC/1ZAb1hzTyQjmb5jsdWTTT4lEPanoCc5hRCUliwbQQCJkCnREIIxLIYiqFZkhnMoBgFopjleqKxv3TrsVhcF4JuQXxIuvh1A5d8eekHjzMpDWLdg1QGscRr2T1edJSI1S0i0TwVnHtJrSLgNjHnsujsydRcZpUW68gGGQnBKso0au6p17hCKAOGqrX8IYrXXHnRsUpI9BPCdBSiKoFwkhp9ppGGFe721nC3jFQGkVJP6U5A4ZpgbCL+s8bpuL+dgWabpiMq6pnRYvzJv3mpdEDEZGU7kL28N538qkbW7WW70r7BoK2IwTdPthIiUZLKR1rooLHG7SfYjMokSS/75mBj9S3xgSv+I03U2LkrvxtC180LISEq3tH/5CVC2CCCmKpIs174iNYG6mIMoAlDcjJpCXaHsVqHY82X03JbulTJYuZmkMVb/FfV3Vf2oo/Zc6YcC0WdoWhpqL6hcZMq54MnxMf6psQlXJoqoUonhrZ5fDEHTDiISxgktePTMinO7Arc0IYZrCI9r5Xa+8ViX859akKcW5L9rQYjR4zXNQBNwh4Y5DTPCdqi4tK2ZzYUbMpxNMVjklSKjxjn3oxd/6r5+0u7rk9EN2q8lqR36Lyf7P2/ANtG6RQfWhKPH3YK5eUZ8R/Re06DriuLWmSXL5PEhlNw4WK8kppweQMmFg/VKSrqGkz3WupKs1xNf7Uq+9qqlZKvSUhK2Vy0lXZWWeyqXW8nt3fXWi+/ltBDA/gz1HJLFalKvzfuz3kjWFOVGMofAmyNwRBhTElO5c6Y/FCWPzyE29CY9mlBJs6iWbcoHHexUUd75bUAK7BFw2x15RDX5UTY6O+zBlSceO0qS5yzbtgFapHiXbqtUZDcei3hj73fSRQA5kSSlukFU/+S+sl74ckYpbhSV9yyi27CL06KdfNBDF3ZSlLCRcS+qDqHrvKZgp7nbBbGHhKWz2C4YD5WvhmqFndC9ODlZnsHdEs5ia1/rjZRCNh/AxVQTZout98rFBVxEtbu7RNVcrXCOPDP7g4hI2dinarScblYOGNyS9UstGa1rvPuj2Sna5VT7dbWRUUmvY3e9GReOvk0b/O76+nIJ0O1tfVNdbz0bRrR6s/e1KdVjgS91c6EQPCd6DCF0cpx/0m+dagyiOuVEVHXAhbRNmP2pa6pgrHWuwk4n4sLER2REM02OCOuQnNkoUjQykumJFTm77L6nE1fEIewP5hfYsuJ8pL6s2h6Ss/cU2XLnST/LYv+4jQ+AodWuUbMMoq/2Zi+m33wnac7p+hfNq+e68Dwhv71MTl+0X7569qr94uXpSXv4PInaJ9Hvp8+T01OSkFNYM6HdVrg+bN1Z5S5CTR6vNuXcVqia3s1N6Vzurc/Zqmt+TObfHPhp1WzEUg0SZnFad/jqsuuOq0yCvW6WCOtJ5RjU+mnr7LILc+c0OD56dnS8hFtbjHmRRDYvlm5ob0OwEBBVKOD2pjYpgqYk/WN2A58MA9BPBz3eprhdmIL4wND0u+7knLBs7rDjQroPPqTnnUzZ3OXDGgLAXDXGRBD2YTodEkVvJC8KvPzVUImxO/COM0T6+oPqRGTD+guduDqJFaNt0yUu58ZF7UL1wMzuJM6iiOZ649rBXK66/HR1DQEM/ZdMUhGjjCRoG/4OAfA7K9paFU7dtSlwko2MHUiDw8SffwFOY/Ua +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Evaluator Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-evaluator-variant.api.mdx b/docs/docs/reference/api/create-evaluator-variant.api.mdx new file mode 100644 index 0000000000..076c593466 --- /dev/null +++ b/docs/docs/reference/api/create-evaluator-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-evaluator-variant +title: "Create Evaluator Variant" +description: "Create Evaluator Variant" +sidebar_label: "Create Evaluator Variant" +hide_title: true +hide_table_of_contents: true +api: eJztWNtu20YQ/RVhnlqAshxflJZPVWwHVpPWhu24D4JgrMihtMmSy+zFjirw34vZpShRt8iyAgSF/SBLy5kzu2euywkYNtQQ9uDikQnLjFQa+gHIHBUzXGbdGEKIFDKDDzgVeXhkirPMQAAKv1rU5p2MxxBOIJKZwczQV5bngkcOpPVZy4zWdDTClNG3XJEJw1HTr2XkDSI8dvDZ+CqBsDcBM84RQtBG8WwIASRSpcxACNbyGIqgksisEFD0AzDcCFqoztzokiA8SfUlEfJpjyb+KSFLC0wZnrDI7NFCp4QsLSTCOXQeu04k1w+R1UamKzcwkFIgyzZa7OrGmUcoAoKrXPMSxMoXJejIpix7CeClAyiKYCokB58xophdcv97x9kyXhFAiobVd8HimFNQM3Fd43WdL+dgeWZwiKpuKR3UV+aPt9oWRFxFVjD1y3srxJ9aZs1ullvzKyyelTC4wXQ7JaYUG2+kta4KS9xu0v2LmCSNpfj8mRj9W37k2nyP03VnXNR+HkN3PgohYyluef7lHZBuEUCMOlI8p6PuCnU+B1EEoIUd7gp1S7pbpeK9r/9nruOsVKGOwxXG1LSW+8aq6l7DvPENCwrCnmEZZdEt6Fxm2sff0eEh/atRCbc2ilDrxIrGTSkMwa59L5LWKy2E8+wQZ06C/JkwKwyEh0Wwul2uq/evjfO1cb42znWN88qaHTrnktYzWqfX/Z/3zk20btE8d+Ho5+6e/goVPzCzZfmKmcGm4W4/6634nhY3Oo4sm8c/wsgnD1saiVHgDzBy7mFLI1O6BuM9FvwpWe/GZcmf8rVXK1O2KitTwvZqZUpXZeXl41kA+9se7ekZ496qFvIM9WoQK9xUd3J0tDy33TPBYzeVNS6Ukmr3oS1Gw7hwE4FvEIsCQka1p8+pxf1ioafMTv1R+g2Sp1I9nBsbKwfN+oXWbIizArpe1JHRuKOn35u26VzedCk35/AZvZ7d9cc49/Rt8u/l3d31EqD3bd2pPqNnI1DjvnoxlaIZSXp5lUtNv3NmRhBCK1f4yPGpVc1eulUO0boFAWhUj6i085ZVAkIYGZPrsNWKhLTxARtiZtgB4y2WcxfyGiOruBk7lc519wOOL5HFqCDs9ecFbimefITUxSrnsJx/QOLK9zDoWDOSiv/r3R4ApzOPvBaRQZF6M3sBd/GNpbnAtS/U6jcBOE7Yb6dJ+6R5+vbN2+bJafuoOThOouZR9Hv7OGm3WcLasDDbb6tUG9e3Vaom8LlJm+5li7NytVaOuuXdrZw4Z2NSNQzMor4ePtWyL55VXlIpzBLpPDO9LDi/NzrXXQiAIsQjHB68OThcwq0JU5VhkXPA1K3uMQQLAVaFFgSAqSsxYJClf8we0M4onssJv8TbkAULg0wZZwa/mVYuGHe1xO1iUiZID8oEgblrpqYzl0kCAVDejyirwh5MJgOm8ZMSRUHLXy0qyoR+qTAg8npU1EbTnJjAFxy7m62rvk1XekhcWJ8DC5WYqqTX6EQR5majbH8u8a+vbu8ggEH5ajqVMekoRkejzxCAXnSTtos6tzYBwbKhpeIZgsekv/8ACWvr4Q== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Evaluator Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-evaluator.api.mdx b/docs/docs/reference/api/create-evaluator.api.mdx index ed2d717a74..d8ae04e20b 100644 --- a/docs/docs/reference/api/create-evaluator.api.mdx +++ b/docs/docs/reference/api/create-evaluator.api.mdx @@ -5,957 +5,67 @@ description: "Create Evaluator" sidebar_label: "Create Evaluator" hide_title: true hide_table_of_contents: true -api: eJy1V21P20gQ/ivRfLqTHBICCVd/ulCoyvXuioDeSRdFaGOPky1rr7svtLnI/72aXccvSQgponwAM55nZveZV6/AsLmGcAKXj0xomAYgc1TMcJldxRBCpJAZvMdHJiwzUkEACr9Y1OZcxksIVxDJzGBm6JHlueCRA/c+a5mRTEcLTBk95YpMG46a/qstbr3KWIrOXLb8mEA4WYFZ5gghaKN4NociqCSZFQKKaQCGG0GCvwlbBBCjjhTP6SgvNXXRMFEEJRPxPTP7DAaQSJWSDsTMYNdwd56nvbz1ZjtjQ05sHv8MJ5+82dJJjAJ/gpMLb7Z0sqZrtrzn8YF+rOXxQWSdLztXcZOvV/WyZqvysibsVb2s6aq8aGHnL83VW8IWAbze8fyZEuHaww6TcvYZIwM14F+pHhIhv75zkG3TRQApGhYzw9oGWRxzKjImrltt4AAeeGZwjqrtLZ21JTMpBbLMiXb7goiryAqmfnlnhfhDy6x7leXW/ErXa12XbHCD6WEgphRb7mW5DSXGt/09hf1rzSZl6Barz4XpwiO3orR1hBp6WbXsXVo0FrjCmIZJ3dynO+A3foBAQWZqmFEWnUDnMtM+Bwb9Pv1pdXO4tVGEWidWdG5KZQheOociaT1oI6UaTcdpFEF7ZD3PdIOug2huEuhPtZu88saFo+90MNgm6B8meOyu37lUyg3tF7ITo2Fc0FOZ9ZsKQkattz9StNNio1Lq6/4p/QGJ9lTPG/GpWlldBlqzOda187SqI6NzR2+fCwDdy7su9RqxqOn17D59jQtP376ien93d71l0Me2HVQ/+zqXjU0sRbOQtKXlUpPNnJkFhNDLFT5y/NqrElb3IACN6hGVdsGxSkAIC2NyHfZ6kZA2PmJzzAw7YrzHcg6b7sfubectqbo2pDGyipulsze+vvqAy/fIYlQQTqZNhVvKLZ8tbbUqUCznH5B485sfjK1ZSMX/9ykQAKcDLDyKiKGsvam30MtvLM0Fbm2VpbUqDdoXqsTNxQ4G/cGw2x92j4d3xydh/zgcnh71T8/+g/Zutk+vuV7t09vYkOAkYb8Nk9Fpd3h2fNY9HY4G3dlJEnUH0ZvRSTIasYSNYGvlORS2scMcCvNLSU3Wj2Cr5YHr+8hqI1Pf5AMSNCJVyRY2ZVk1CBrbQmPCURbzCL0wklnC59Z/r5DI1Q3PEumyqyyxMnXPWfSAWQwBUBn4JOgfHR/1n8r1EtAZX1+VHZRFppFYXo1C0qqmqo4gAExd+wSDLP29fkGnpJp1163s7ajwjc+Ysl4MfjO9XDDu+qPzviqLfwJl8UNjXmkIgBrYgtpEOIHVasY0flKiKEj8xaKiMp4G8MgUZzNibULdebEu6BU84NLNQjdGuq6HkrqwvoA3Rgq1e48YRxHmZq/utNHJrj/e3kEAs/LjMpUxYRSj+9DvEIA+UQntUsvJViBYNrc0BULwNunnO7sd/nM= +api: eJztWEtv20YQ/ivCnFpgbalGTzxVsR1YTVoLttKLIBgrciRtuuQy+3CjCvzvxexSfIiSIisOEBTxQQaX89j5Zvbb4WzA8qWBaAq3z1w6bpU2MGOgctTcCpWNEogg1sgtPuFWBBjkXPMULWpS3kDGU4QIKoknkQADkUEEnxzqNTDQ+MkJjQlECy4NMjDxClMO0QZ4tr5feDt2nZMdY7XIlsBgoXTKLUTgnEigYJVE5qSEYsbACitpodp/b5RAQW/IIRr7RiVrclL7t9ohg1hlFjPr/ee5FLGPt//RqIzW6t3lmtCwAg091SB0Xi2kx7IZT1tAmKfYGavSvUHPlZLIs6NRjkzvOlgoGJlr7eZcixV0pdGVS3n2NQbvvIGiYFshNf+IsYU92XrrMevaKxikaHeqgyeJoCRxOW7heqh+GmZFZnGJuu0pnbdXmuHt9wWx0LGTXP/01kn5u1HZxSjLnf0ZdmMlG8JiepoS15qvj8LaVoUOtsd0/yAkSaNTn98Ton+q98LYL2F6KMZd7ZchNAlVWPLYSfF3d0C6BYMETaxFTqGea+qmYaJgYKRbnmvqkXRPOorXnuX3ytbcOW0Q4D72DUYeAvVCUZA1jSZXmQmVdTUY0L8WSPDo4hiNWTjZeyiF4WyGjpULSjuFWu/22ktQphbcSQvRoGBwgEp/UPwPir939gyO72i9gOSD7v+c5Y/BegLNn4PR983zoc9Onrg9sStOuMULK/x+DnsJnJz0hh4slyffwsmHYLZ0kqDEb+DkJpgtnWzhmq/pc+OVviO2YL1Z+w+JGq9X9bJFq/KyBexVvWzhqrx8fSPB4PW25z/UTrhA9t0dp+hVrURoQ369uup2Hn9xKRLfV/Rutfaftme2HQlaLqTvAcKVsCsgVdx6+xL2nRU7t0gd7nsVNki5Sc2y0fhUKalvCGP4EmvKPCzqwehN6O2XGkKKK7gu5RopruEN6B4O4ybAdyyxd5PJuGMw5Lad1HCGG02P7zRWimYZuTLWzy/sCiLo5xqfBf7Tr7os0wcGBvXzdrThtIQIVtbmJur3Y6lccsmXmFl+yUWf58LXtMHYaWHXXmU4Hr3D9R3yBDVE01lT4JHKJxREW6zKBc/FOyRoyqHK0NmV0uLfkOVyqrIKWhQ7FeZDPeu4/czTXGJnVlG1ro0WNUxC2k1mtVb2iPRct2p1f1HdonXxtLNQLQfWqcqbOCRbKB9xmdmhx7M3HI+AASEfLAwuf7kcdOy2hOmw8tgf1i1c/jWwncRVKQMGmPqTChZ5+lv9gnZG5VG2xqW9PcW0c/OXebP42fZzyYU/it77pqyzKZR1Bo3vDAMM6KysqCKjKWw2c27wg5ZFQcthbkbllAjD57IxOfsb191hGz3RNnw5PnMtSMdXH9tWCxkLuteB4y78Aa91O3xHXBQ0hnGMuT0qO2scs/H94wQYzMvhW6oS0tGcEKDfCICmjKTti9KvbUDybOmIoiIINunvPzvZFWA= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Create Evaluator - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - - evaluator - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - evaluator - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-human-evaluation.api.mdx b/docs/docs/reference/api/create-human-evaluation.api.mdx index 4689429aad..af0037c4ee 100644 --- a/docs/docs/reference/api/create-human-evaluation.api.mdx +++ b/docs/docs/reference/api/create-human-evaluation.api.mdx @@ -5,408 +5,71 @@ description: "Creates a new comparison table document" sidebar_label: "Create Human Evaluation" hide_title: true hide_table_of_contents: true -api: eJzFVk1v4zYQ/SvCnJU4DXrSqd6tgRjbNkHi7sUxhLE0sbkrUVpymMQ19N+LISVLip3sNkBbX2yT8/nmzQz3wLixkCzhypWoz2aPWDhkVWkLqxhysplRtfyHBD4aQiYbYaTpKcqqskajbKUjxnVBUV5lriTN9/oWlSWb3OsoiqKrxeJm9pyRt5JE6cBmeq9viZ3RnezoEmKoajI+mnkOCWTef7qVSFM6RAoxGPrmyPKHKt9Bsvd/laEcEjaOYsgqzaRZrrCuC5V5vckXK2ntwWZbKlF+1UY8siLbyqYql1+8qwkSsGyU3kAMrLiQg2ldR/Mcmhge0SjUnKrcqyqm0h5rNnF3gMbgbmDpc9CP5rkVqT67NCgcx0DalVK4AAem65TJcrizSm8KSssqp8IfSzE7V32NF2KyiUHp2vH74p4HVREgy5b4O4gtglSLmmVkd8JfL38XJJo+gmr9hTJuix6qvOxKNa7DMYyHVEfhHuIYgPQHPfmO6MGCppEoDNm60jYw5PLiQr7GbXLnsoysfXBFdNsKw7s5+Daa/wr3/gntf7yA/y2nv0OXE1Q5MKhN6Tjegbs7VdYF9U6vHdeOW4b8fHl5TIrPWKjcy0YzYyrzfkbkxKiKUaHHAkWVjW5R764fIFkeE+JwojTThgw0q9dZ8luVtX0QQ2k3b9X8d7IWN9RT7nVRD0b0Q0WTvILrVm41pHAHb0D39TR+DfCdctaJyMY6MhhqWxJvK9lFdWVFpUbeQgITT9gzGmzPGCyZRzLWI+9MAQlsmWubTCZZUbn8HDekGc9RTbBW8HLZTv1t9FFEoVmJucwZxTtvb3oz/0S7K8KcDCTL1VDgTogTqDAWO1QBa/WJBBSNpe9nx9vKqL+6daokgG3QkqyFkrf9ip09o9B/uCL7wo6G0bI7X51o/5Nd3q2ioeZws/SOutEzmG9KP1Q+zW5OBQw/YPaVtG95MjbAe3H+0/nFa6C3CtH0Zt72KWa+Tzu8vBjEL8p6KKgMj9I3KTBh+Ut/IWgKdUrUA3vhYRX5hRPNhg+bUXj7fmT8D2+xtmhMzzypC1R+EHgA9m0btHN71AarGLbSKskS9vs1WvrTFE0jx98cGSHzquXMWkq2lAG07Wi9h6+0k2RD2meLsMPFfKDxi6kpEy1oTDNJ8k3Z1aCbb67vFhDDun0/yo6BBAw+yQjCJ0jAP0ZDSvLAlLM9FKg3TgZdAsGmfP4Gl4/sxg== +api: eJzFVk1v4zYQ/SvCnJU4DXrSqWnXQIxtmyB29+IYwlia2NxKFJccJXEN/fdiSMmSYie7DbBbX2yT8/3ezHAPjBsHyRKu6xL12fQRixpZVdrBKoacXGaVkf+QwG+WkMlFGGl6irKqNGiVq3TEuC4oyqusLknzvb5D5cgl9zqKouh6sbidPmfkrSRROrCZ3us74trqTnZ0CTFUhqyPZpZDApn3n24l0pQOkUIMlr7U5PjXKt9Bsvd/laUcErY1xZBVmkmzXKExhcq83uSzk7T24LItlSi/jBWPrMi1sqnK5RfvDEECjq3SG4iBFRdycGVMNMuhieERrULNqcq9qmIq3bFmE3cHaC3uBpY+Bf1oljuR6rNLg8JxDKTrUoAL5cB0nTI5DndO6U1BaVnlVPhjAbNz1WO8EJNNDEqbmt8X9yyoigA5dsRfqdgiSLVVc4xcn/DXy8+DRNNHUK0/U8Yt6AHlZQfVGIfjMh5SHYV7iGNQpD/pyXdEXyxoGonCkjOVdoEhlxcX8jVuk3mdZeTcQ11Ed60wvJuDb1fzu3Dvv9D+2wH8sZz+Cl1OUOXAoDal43gH7uaqNAX1Tm9qNjW3DPn58vKYFJ+wULmXjabWVvb9jMiJURUjoMcCRZWNblHvbh4gWR4T4nCiNNOGLDSr11nye5W1fRBD6TZvYf4HOYcb6in3uqgvRvRNoElewXUrtxpSuCtvqO7raXwI5TvlrBORjXVkMGBbEm8r2UWmcqJikLeQwMQT9owG2zMGR/aRrPOVr20BCWyZjUsmk6yo6vwcN6QZz1FN0ChoVqKR1Vbxzqtc3c4+0u6aMCcLyXI1FJgLNwLaY7FDodGojyR5ayx9y9a8raz6p9uYSki5DVqSmLDurt+i02cUhg+3YI/daN4su/PViQ4/2cjdthlqDpdH76ibLoMRpvRD5dPsRpEvYnR1O5PAyLrQbhfnP51fwMsHzEhY2g8z335djfw1xC/QOuAkM6H0vQdMWP7SX0gFhREl6oG98F6K/B6JpsP3yiisfT8J/ocnVgsU0zNPTIHK97cvwL5ldzuOR+xexbCVDkiWsN+v0dFftmgaOf5SkxUCr1qerAWmpcyVbUflPfxNO0k2pH22CKtZzAfqvhiGMqiCxlUmSb4puxo06e3NfAExrNtnoawOSMDik0wWfIIE/BszpCTvRjnbQ4F6U8v8SiDYlM+/mmTeNw== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Creates a new comparison table document Raises: -HTTPException: _description_ + HTTPException: _description_ Returns: -_description_ + _description_ +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - - - - - - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-invocation.api.mdx b/docs/docs/reference/api/create-invocation.api.mdx new file mode 100644 index 0000000000..4c7e401e25 --- /dev/null +++ b/docs/docs/reference/api/create-invocation.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-invocation +title: "Create Invocation" +description: "Create Invocation" +sidebar_label: "Create Invocation" +hide_title: true +hide_table_of_contents: true +api: eJztW1lv2zgQ/ivGPO0Ccpymbbrrp02bLuptuwmStC9GENASbbOhRJVHWq+h/74YUqfP+ALSgHkILGoO8uMxo/mkKWgyUtDtQy95ECHRTCQKbgMQKZX2qhdBF0JJiaZ3rJSBACT9bqjSb0U0ge4UQpFommj8SdKUMyfX+aZEgm0qHNOY4K9Uom3NqMKrmsm5e0KyEbPtER0SwzX2xCgtYghAT1IKXVBasmQEAdDExDiOUmBsYoL9JEYLHJFmmqPGNYtTTm8kCemFc5AFcM+SqOmIRGMRrvBT3KcPhEMAKSeTJV4+ou0sgHBMkoTyGTcpW+FEaJ5CAD/oAAJQ0T0OJ2VL/LzL7WdBPqlTIMnkYgjd/hRIFDFEmfDLBsaVRLMPWVC2sETTEZX1psTEg2bLQAhOSWKbFvuCkMnQcCJ/+1d8Ykr/o0TS7iWp0b9XCIjBNxrqpivOIauNeFbbjvfR2jeITBZATDV5ugj9bThfhw/TNH6cEpGSTFai0lTdDNHPiGQWQERyRD2OS3GsJM+JQ03SIZU0CR1GzfPvu6Fy0oSuKfBApcpPzkegO9fbr7l6FoDiZrStmWvUzQJg0SoLAQyFjAmeecawaKXFXgTZCuyuCswWGMkCB9vdA5GM5PHIw7cxfJI+sHlwPH7r8dNUaUX9wtsWOL9zdwXQ791tEaw9uXjwdgDP7+F9gOj38bYo4kO5IVpID93W0Pk9vDuEfgfvksuERFGP3GbIrdCrlQqvqqpDFgBnyf0jy4XNCVApSe5Wj3slcilJWj1bG9XYqx1M2VG11gD3iSX3i2tbeQ3oeY1vfbnqk534RSaxuM8kjbAIbQt7jUpVsWTqa7as47+zXMFaq7XC/wozV45kgCzL6upaGmobVCoS5Sbr5PjYldZVKFnqUni4NmFIlRoa3rrKhSHYlqsIhXFKM+XKqvvvrERQ1feP8WBoUBzLDjNHsUR3RD/yGImIpm3N4kXHQK1HzmzrzFYjTRodwskXZzZ3ElFOD+Dk3JnNnRRwDSZrdtUmB28B1ttJvm0LvPbqpUCr9FIAtlcvBVyll6d4mAWe43v+HN+F0buQfE79WbN8qxBaTk/NaW3AT20D6i9B9D0dKD3X57m+XwM+X6XYpUrhuT7P9Xmu79dD0HN9nut7OiD6fbwtip7r81zfU4DQ7+BdchnP9W2OnOf6PNf36HrVQbi+DVdlpViScZll9l6dnMxzd18JZ5GVbr2XUsjtibuIasJsUX7J5HMRNu5uUsK8nZ2FGuYVTBCrUY06LE+KqriqFBnRakqXi1owWjd4d910cktfoOtcrn4klvA6dJcP49zBt2pmP9zcXM4ZdHPbnFRHsbV69S/JYqrHAj8zS4VCoynRY+hCJ8WQSn90KgJVdZAjoRKjgZ0eIzl0Yax1qrqdTsiFiY7IiCaaHBHWQR4F94CioZFMT6zK2WXvI518oCSiErr927rANS4gtySaYuVskJR9pAhOQmK8PjN6LCT7rxgLclkwdlo4elyaV9WXcu9/EjyYYe7Lt4IHq7gtR1eVHFTJLBV0kqN/KpKjqszPlZrL4nIZRatV5cJhdY3nFrwckj9eD09ftV+/efGm/er16Ul78HIYtk/CP09fDk9PyZCcwqLy62Ec1FOrfXuolfAOZPqQ+CwqA+3bx0yh5IDmD4nUsoftfftpPI4ezPghkVr8SHOIlVsk/fu1XctybQBiyVDYEzyPVWc2PrTOLnsQ1FwfH704OobZeNUQxvSDhBb04vi3tyGYCURlCEKeP7a5B2hK4r+qG9gzjHf4AkNlb1F4bHSoDESa/tSdlBP3boN1P80jZx/yyAn1l48wlcP4P8Yg2+3DdDogin6RPMuwOY8R/dsA7NoaIFZ9TG7GRaicwj2d2LecbBbWtikIinPjQuNMRobZktM4C0Oa6pWyt7U84PLi+gYCGOSflsciQh1JcED4vwuAX6i7UXWnrm0KnCQjg0lUF5xN/PsfQhA8Fw== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Invocation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-legacy-application.api.mdx b/docs/docs/reference/api/create-legacy-application.api.mdx new file mode 100644 index 0000000000..dc769f9e66 --- /dev/null +++ b/docs/docs/reference/api/create-legacy-application.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-legacy-application +title: "Create Application" +description: "Create a new application using workflow data stored in legacy format" +sidebar_label: "Create Application" +hide_title: true +hide_table_of_contents: true +api: eJztWt1v00gQ/1esebqTTNND9+SnCxRED+6o2sJLFFUTe5IsrL1mP1pykf93NLuOYzttaNJyiqB9SBN75je78z1rL8HizEAygmFZSpGiFaowMI4hI5NqUfJvSOClJrQUYVTQTYRr0sgZUcyiG6U/T6W6iTK0GBmrNGWRKCJJM0wX0VTpHC3EoErSnu80gwRSD3oViK5aqBCDpi+OjH2hsgUkS0hVYamw/LVFN/hkeHVLMOmccuRvpWYZVpDp0W7enEq/9SVgsXg/hWTUJxDmKnXGqrxLZBclQQITpSRhAVXcXCqclFCNY7DCSr5waqKXAaGKGY6uUTq0Sj8E8VUDEkDnLsfiIYBvPEBVxSsiNflEKdtrRfTOm6jlIq+97jZxqxhysthdDWaZYCaUZ13r9NdrrBbFrA0rCksz0l1J+aR7pb3N22VBKnTqJOrfXjsp/zaqeHZalM7+Dv09M4awlN+PCbXGxVb1dllhQ8fbeP9hTTLHhp8ekkb/Ve+Esd/T6V177HPvpqHL4IVQYE733P/mCpi36iW8/aBOWhBVDEa62b5QF8zLq8J+NHVz1DVp84AVf6zZqxicFvuifNAiIMj9ESQjzAkz0js7+49SyWMYUGTbEGKoa2MCzolse6bOtuboc5qSpiKlNshqoeOdwupNbQZWga+s97XIAaWlw0v0OxjgotY6l1MsS1HctwD09btLtVkJ8lbnNLa36wfuKoYSNeZk9wjpX9lR7uY9W+uTrUT6WqR0H9Va7WgnB6yhq5hb76mYOY2blfFxZL3sCNipDT1B3yFtdKG7YITR5la5PIQITRnPR+1RYvxduPMwvkDFsGsYVo2/YEpVmODzz4+P+V933rpwaUrGTJ2MzmtiiPedglLlAlMvhNomYArugabopIXkuIr7w9Nd5fZpjPqVx6j3zu6RNTe4dkibgfcnn6S2qfUeo9Q+OjrsWSqcFWVXuLUrabXTGVp6ZkVO22tPgI2GXlmuzH6EkA8BthaSkaQfIOQkwNZCVuqaLK4ebwBZKevFIuJZZK2vR5Wy0lYjZaWwR5WyUlcj5fBmvafh/2n4fxr+f5725Gn+P8iu6yB95ekI4P88AngofzOiV37e//P5882J/iNKkYVnpq+0Vnr/cT4ji8IX29or+wRSpZ27u0RVq1YER25tWzXagtzMNtNNe94yBme09uy7Sb0yoku++70jGN5XEF3TtQt3o96g3bu3cRLUt83Aby4vzzYAg21zsnPFD69LZZilRDuHBAalpmtBN4PwMHvQsqcZQIhTnwVHy9Apwdza0iSDQSqVy45wRoXFIxQDLIUPDUOp08IuPMvw7PQtLUJlhmQ0bhP4WhEM3yVrdI6leEusgjDawdDZudLiv9WzdsH+GbovrxZ2wPP18/dXXzEvJd3yPL05+mkd8YTQ7x7SNNfqM5b6GKw+4ljP5c30uXaTbhA1l0Nz1iKrO+Wm/Vvf8q1t+6ds/1w3nZ1+p1t4WxVxzdmpbZ1UfEvGDM4jiqnydqn9bOitHg3PTiFuLf346I+j4429d4g5dWDqU8fKqP52s8GVezWOBTFQ7vMGWML8r/UNXhl7c338VePVb3wMO29l9Ob6JoE91vshtcNa+moHpURRtCaLEGkjqCMNYgjc0DmpNBAD54U5h2cyguVygoY+aFlVfPmLI80hNY7hGrXACdthNG6mDx9tn2kRahJv7plPTUwuXQimXqbmLBo4hmlKpd1KO25lkLP3F5cQw6R+xSVXGfNo5K3xZwL+jZmwq2QZri1BYjFznFwTCJj89w1yvlik +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create a new application using workflow data stored in legacy format + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-metrics-preview-evaluations-metrics-post.api.mdx b/docs/docs/reference/api/create-metrics-preview-evaluations-metrics-post.api.mdx new file mode 100644 index 0000000000..67c07cc21c --- /dev/null +++ b/docs/docs/reference/api/create-metrics-preview-evaluations-metrics-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-metrics-preview-evaluations-metrics-post +title: "Create Metrics" +description: "Create Metrics" +sidebar_label: "Create Metrics" +hide_title: true +hide_table_of_contents: true +api: eJztWVlv20YQ/ivCPLUAdVi+Ej7ViR3ETVwbtpOHCoIxIkfSpssje7hRBf33YnZJkZRs+YBSJIX9YEvLOXa+/ebgeg4GJxrCAZzcorRoRJZqGAaQ5aTct9MYQogUoaGbhIwSkb7JFd0K+vuGKp3ls5s80wYCUPTVkjZvsngG4RyiLDWUGv6IeS5F5NS6X3SW8pqOppQgf8oVuzaCNH8rrPJHYSjR6xJj6QKYA6az8zGEgzlgHAu2jvKiIVpJmFlOEMIoyyRhCotguaSNEukEFsNFUC5loy8UmbpQaqWExTAAI4zkhXduE4uA94vP3EzpuXIjUkMTUk3Pyai5Uo/hbl8QCRVZieqXd1bK33WWtk/T3Jpf4a4QC5gfoYRK4WwzLA1VeBKkZ4wkazz/eP8DRP/IPgptHsL0vhhXtZ+G0HXBuVtSWvg0agZeiX4uRAKIaYxWGgih3+vvd3qHnZ09NqINGrsRxgAotQmXipzS2K98tWQp5my3aeqXtI0i0hoCGKOQVhErKpUpXoowjUhKiqEWR1V5rvwm1oNeBBDjS2ZtJ7OO0WcWg6BuUd6J2Z0IrRg6LQ2we5GQNpjkmyk0zlSCzL4YDbVZaTPFl1aZohGlqER2I+JHOrFWxBvtXxUmW6csxywujG82WRm4tKnTXTsA3wCFopgzpjB8J+nPfIt761ps7SQ9CRoF0bXCh3yVLfNhZ5e+RcOCTVYmjLLkFnSepdrnVL/X4z8x6UiJ3LhyA1c+1cdWti4LYc7x53X6KLNeaYWAVRRvnUSthPV8w30ZELZfxs6teUYdW9N6QiHzuv/zGWETrI8YEp6DUTkl+BE+vkGz1QrtK0ncOnLbsnn8PZx88mYLJzFJ+g5Ojr3ZwkkJ12i2xXZTgvVmVjScEq+teinRWnopAduqlxKupZftmfb2amPtI7J2zUg58v7ws219Ji+9/zzz7s/RKF5G3h9x5H3EsFtLjsHwLpf3Gl9OpAs33u71++sD7GeUInZKrRNO4+dPrzEZFHLDFCqzqPH0KUk7vB+nj5nfoBst9WTTHcAZaY2T2hvG/aIOjNY1P33omDku77qQq5fgJbwe3fvDOPbwbTrg99fXF2sG/dk2D9U32VbFoITMNONbzOJmMkczhRC6xS1mt3aL2S1eJ7pc7ElxC3JnZJWEEKbG5DrsdiOZ2biDE0oNdlB0MRcuxTRFVgkzcypHF6cfaPaeMCblyFsTuGIWeV40xZZHgrn4QIxQigl/P7Jmminxjz9sLmS8H6/FEDA/L6sb15NvmOSSGjeog+pVqHoPqYbneset3w1V7bPWG4vm1KiovUZFZBN77d5hu//6emc/3N8J+686vcOdP2GlqsHuGF/tjw/22vuHO4ftvf2Dfnu0O47a/ej1we744ADHeABVoXqcvMsZkY4zh2lBoSN3Yq2ji1OoB9vr7HR6sEqjhjBXBYxcVSgPxD2GYIUaS1LwZJC4kgCGMPmtesDHxUxMMK3ZW2NtYzdLXhj6Zrq5ROEy3vmeF4QeQEFodl27zK/ekQPg7JxyFoQDmM9HqOmTkosFL3+1pJi5wwBuUQkcMWQDhnFacngOf9HMvYi7Gtl2BYLFpfWcXamXXMu8xlEUUW42yg5riXpxfnUNAYyK/x0kWcw6Cjk0/h0C8H8ofHzh3K/NQWI6sVziQvA2+edf3xN+Tg== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Metrics + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-new-evaluator-config-evaluators-configs-post.api.mdx b/docs/docs/reference/api/create-new-evaluator-config-evaluators-configs-post.api.mdx index 6c6ad046b4..3576f65ebe 100644 --- a/docs/docs/reference/api/create-new-evaluator-config-evaluators-configs-post.api.mdx +++ b/docs/docs/reference/api/create-new-evaluator-config-evaluators-configs-post.api.mdx @@ -5,348 +5,73 @@ description: "Endpoint to fetch evaluator configurations for a specific app." sidebar_label: "Create New Evaluator Config" hide_title: true hide_table_of_contents: true -api: eJzVVk2P2zYQ/SvEnFpAtbeLnnSq9wOIsW1i7G5y8RoGlxpLTCSSIal1XEP/PRiStmQ78TZBL/XFNvlIzrz3ZsgteF46yOdw+8LrlnttHSwyKNAJK42XWkEOt6owWirPvGYr9KJiuEMzodVKlq3lhHVspS3jzBkUciUF48aMntSTmtjS5U+KMUZDS1mwX5y3v+bssUI2vWF6xXyFe/g9+taq3Yp9aNfhrJurvB86PJ9xI1mjC6xHkIE2GIenBeQgLHKPS4Xr5T76ZVzdD7g04pZGOw8ZWPzcovNXuthAvg1/pcUCcm9bzEBo5VF5muLG1FKE88YfHfG2BScqbDj9Mpai8RJdwi5lQb/8xiDk4LyVqoQMvPQ1DUyMYdMCugwUb/Ac8i3Ndxn0SX3CzbkFPXd3uKGVDr2XqnRLmkgBFoWkTHg9GwQec0776uePKPxg34e0DfsQt+m6U2zP33xHQsrwOIHTsBaDnHF9ZAroOjrPojNauZjE5cUFfR16+aEVAp1btTW7T2D4aR3Pa/hj+hmriaRXfDGLqOSN/1ZztXm3gnz+I+p32f5M1dY1dIszfshSDRZL7s8Fex1RbEL7Q2uKf7HmfUSFNa/4bui5AemnBhxEexDG4hu8Hrjwj8vLU+N94LUsYpe6tVbbn3ddgZ7LOvjPY+NOAbUWB7O9sof0DdSTymOJFrpFzx63lm8GHP+lY4CkSuPKc3L8jc7xMvg6Qs5Yk8hgjzT7mnKUVzw64QZK9PRGdr+fxk2k71uH7SBvHh9nJxtGbRv0lab7JF0QhvsKchj3V8g4XSGhhdkXtC5Q39oacqi8Ny4fj0Wt22LES1Sej7gccyPh+NqdhFl2TdBQWQ5Fa6XfhP0ms+kdbt4gL9BCPl8MAQ/knOiFQ9heBm7kXTB5bE8waX2lrfwnCpyBpACquIrSJk/e93fh7RfemBqHd1mvbNpy//+oS/UTp02IjpJqpUOku6sw0nDFxSdUVKdEaWToYvT76OJ7vKUFbDKbplrjItTaLuUAo9I+UGavCUXehEIDj7z5s5+gKEn+hqvBfrFtsbe4HjxPUl84CnHbl/7/9XGVfOTxix+bmsvQFQKT21QT8154FwUIVbHIoKLSyeew3T5zh+9t3XU0/LlFS95eZPDCreTPJP+cGlK1c/kWooWuI32/hbZB8LqNrj7qotTh4oqJEGj8WexiUN2zdw+PkMFzevdR2pCD5WtqSXwNOYQHZtAlPAxpbAs1V2VLjS+HuCd9vgJ1bfHe +api: eJzVVk2P2zYQ/SvEnFpAtbeLnnSqs7tAjG0TY9fJxWsYXGksMZVIhhyt4xr678GQsiXbqfOBXOqLbXI4fHzvzZA7IFl4SBdw9yKrRpJxHpYJ5OgzpywpoyGFO51bozQJMmKNlJUC99EiM3qtisZJjvVibZyQwlvM1FplQlo7etJPeuIKnz5pIQQPrVQufvHkfk3FvEQxvRVmLajEQ/gDUuP0fsUB2k3Y6/ZV2g8d7y+kVaI2OVYjSMBYjMPTHFLIHErClcbN6oB+FVf3A74b8StrPEECDj826OmVybeQ7sJf5TCHlFyDCWRGE2riKWltpbKw3/iDZ9524LMSa8m/rGM0pNDzPy1r5G/aWoQUPDmlC0iAFFU88Ibn2wR6oP/g9tKCno973PJKj0RKF37FE3FTmeeK0clqNgATz9HlNc8fMKNB3scujXgf07TteWzPySIe7BT3OZrl4Ki4OdEX2pa3ceit0T5iv7664q9jWz42WYber5tKPHTB8MOSqPwSv9OcSf1W2awzzM3qcs5ZjBIx98+VWm/friFdfI/obXLYUzdVBe3ygg2SrpzylaRLYG9ilJhwfmhs/g1r3sWosOYrdlM5JHvPDUg/N+AA7RGM5Rd4PXLhH9fX58Z7LyuVx4Zz55xxP+66HEmqKviPsPbnAZXJjmZ7ZY/pG6inNGGBDtplz550Tm4HHP9lIkBWpfbFJTn+Ru9lEXwdQy5Yk8kQc579mnJ8rrh1FzdQoqc3svvfx7iN9H1ps33I6/l8dpYwalsjlYavhq7XW0klpDDub4NxdxuEFuZe0PlAfeMqSKEksj4dj7PKNPlIFqhJjqQaS6tC8XjMGqdoG5ZMZtN73L5GmaODdLEcBjyyOaLcx2EHpqVV98HHsQPBpKHSOPVv1DABxa4s4yo+Gdvuob+57j7J2lbY3zy9dCdtp5847yqcWOm1Cbg6difh1GIym0ICzE8skKvR76MrOH1GHAVzwciMBpjiNNfnEb0HYhltHaoFCGX9Zz/ByFjDWupBvth7xBvcDJ4LXXGfQNv19ft/fex0TiH8RGNbSRVKOzC564y96MX2UYBg7WUCJfs/XcBu9yw9vnNV2/LwxwYdu3eZwIt0Sj6z5AvuKuXexzuItrmJ9P0Wap/Dqyb69qQVcpuKKyZZhpYuxi4HJTp7+ziHBJ67dxgfG1JwcsN9RW4ghfDgC7qEhxqP7aCSumi4e6UQc/LnMzubzFg= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Endpoint to fetch evaluator configurations for a specific app. Args: -app_id (str): The ID of the app. + app_id (str): The ID of the app. Returns: -EvaluatorConfigDB: Evaluator configuration api model. + EvaluatorConfigDB: Evaluator configuration api model. + + + + + + + + + + + + + + + - - - -
- -

Body

- required -
-
-
    - - - - -
    - - - settings_values - object - - required - - -
    - -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - -
    - - settings_values - object - -
    -
    - anyOf -
    -
    -
    - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-portal.api.mdx b/docs/docs/reference/api/create-portal.api.mdx index 5b3110f6db..da8f0674ad 100644 --- a/docs/docs/reference/api/create-portal.api.mdx +++ b/docs/docs/reference/api/create-portal.api.mdx @@ -5,72 +5,59 @@ description: "Create Portal User Route" sidebar_label: "Create Portal User Route" hide_title: true hide_table_of_contents: true -api: eJx9ksFu2zAQRH9FmDNhuT3yVCeXGjnUiJuTYRRremOxoUiWpIy6gv69WElxEgOtLoLE2eXsvO1R6JShd7izzll/wl4hRE5UbPDrIzRMYir8I4ZUyEEhcY7BZ87QPT4vl/I6cjbJRqmBxrYzhnN+7lz1OIuhYIIv7IvIKUZnzXhF/TNLTY9sGm4Juh/kUTct70cT1WY0UT1lTtVj6Ir0bbk0QYzGkAsUIpUGGvVhGqjOJdnI9eQ/11DInM6cZOoeXXLQaEqJWde1caE7LujEvtCCbE3R4tbKajyt7kWKYS/tTJdsuYz9Vpv1A1++Mh05Qe/27wVbGXHK7aOsR7lEhgZF+8AXKHhq5XvVlSYk+2eMCgpWDDRTlYRk/XMYy21x/ObtjswL+yMUZM7J9nLxabH81zBzQbXarGdSZEZSrz5GGdRNXNegoMAtWTkrTO2XtwNxKWBa8u/6/QfnB3/XYAr/LnV0ZD2G2UU/k95hJi1kR9ayBBNtKMhCN7IZeoe+P1Dmp+SGQX7/6jgJtb3CmZKlg2S42w/qNWIB+sIXCcAYjrJdZ3LdROpmhQX0dRU337bfMQx/AWDxJaY= +api: eJx9kjFv2zAQhf+K8GbCcjNyqtulRoYacTMZRnGmLxYbSmRJyqgq6L8XRzlu7CFaBIl3x/fedyMynRL0Dl+sc7Y7Ya/gA0fK1nfrIzRMZMr8M/iYyUEhcgq+S5ygRzwsl/I6cjLRBumBxrY3hlN66V31dCmGgvFd5i5LOYXgrClX1L+S9IxIpuGWoMdJHnU38msRUW2KiOo5cayefJ9lbsu58SI0+JShECg30KgPs6E65WgD17P+VEMhcTxzFNcj+uig0eQckq5r43x/XNCJu0wLsjUFi2kvHaaPNg+lZbVZP/LwjenIEXq3f1+wFRdzNLdlI/IQGBoU7CMPUOiole9Vnxsf7d+SBhSs2G3mLsnBdi++tNvsSn0RV602ayiIjTmg5eLTYon72G6KBQCZAuDt7nIMdZfC1T8UuCUrZ5mp/fz/QJRJ3i117+Z9QOlG1zWMzH9yHRzZDtNFxXgBuMMFoAArCIXtDBEKsqeNANc7jOOBEj9HN03y+3fPUUjtFc4ULR0kt91+Um+xCsRXHiQAYzjI0pzJ9TOdu80UuNcN23zf/sA0/QMPMRcX sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Create Portal User Route -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-query-revision.api.mdx b/docs/docs/reference/api/create-query-revision.api.mdx new file mode 100644 index 0000000000..7e32efd1f5 --- /dev/null +++ b/docs/docs/reference/api/create-query-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-query-revision +title: "Create Query Revision" +description: "Create Query Revision" +sidebar_label: "Create Query Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWt1T2zgQ/1cy+3SdMYTSlt7l6WihU64UOKDcA5NhFHuTqJUlI8lALuP//WYl27HjfJhcetO5KQ/BKNrfrnZX+2WmYNnIQO8W/kxRczTQD0AlqJnlSp5E0INQI7N4d5+intxpfOCGKwkBaLxP0dh3KppAbwqhkhalpUeWJIKHDqH71ShJayYcY8zoKdGEb4lXbwpzsEu+f2CaM2nveOTw5eR8CL3bKdhJgtADYzWXIwhgqHTMLPQgTXkEWVDukKkQkPUDsNwKWqDjTjo3HrdzQpth+1zq+P4s2z6Dx2ba8iELtyn8YQ6ZcxgK5ylVbBZFnKzMxEXNaA3uA6UEMllllwuU9bOgWFKDrxjalTJ9cEJkAcRo2YbCFJxnbLi0OEJd5xwP6ivVMyzmBSHXYSqY/uVDKsQfRsmdE5mk9gUsOiK3GLcjYlqzyWq11EjhWSr9TJokis3N+x9o9EydcmPX6XTZGeepn6eh69znJIux5fmbEhBtFkCEJtQ8sXmw2wTqqAKRBWBEOtoU6opos4Yy5kLMZR6d37tMsHA/JQOuMaJMMhfS5wNWHe3SZxHICHWGYnWKbsEkShrvdvt7e/SrpkG4SsMQjRmmonOZb4Zg02QUqtQTzXnx7ATv3Q4y45ClwkJvr4zr1Rw2s8XPbPZjZjOW2rHSWwP3aHS/6Ya0Q6WtO5a7uLDitrsrRwnPGDbaOP58zsl/JvLNEvl5ajfI5A2qZ6RyT/s/z+Wr1NoimW+iox87m/tuK7pjdqtRxCfbqHPolJUm0fdg8sXD5kwiFPgdmBx52JxJoa7BNjNRoax3RToq9LVVLoW2Si6FwrbKpVBXyeUBdbNKae+uNzn5VgrPALZ30FyHbD6b1AuwRy4j9UjYKzZJfKSSdJtee+YhswCUiLYNfu4hKabhU1votQo9I6wsAMFjvhh0YWKYQzl11HRuHeGaegtlGlMDwUyIMvJrFGHzP/ordeDgyaOkRf3AxMYSnxQA1H8sq+aaCbCBc7msVyo2/FX6YhOGyjQuLOo1rupHdb6QLXsSYDKaZdSmet23itoaqUgg6Vek0tVm7VSNeMjEecEhc22Vz+yOd172LBduyFFElXaqlKSsddyGLIBvONk0knzCie92RNo2nT+7oClOmi2o4xYXO9S/PqcouXHiZ0HNoOtvCjcQADd3ZMdqAlNxwjQ3SlastxwF78n67nNE/iCse0L3SJ8D+1jr48/SGDUPW4Eby7Q1j9yO3WJUPFKLzrikA8TMhmOkJ8G/YZXRlUNrxYdL7893vCYqlYqt6MeMBBizhjKPeNgOAZ+4sSaXIv+jgnNMKyhDXATWjGfFpsqsgcztXKS8gstuXsgM3hmUhlv+sPhaLOjkmoUQM9i5KmEqogyZMDSgwSfq0p0BN+ZyTBidzw6jwWJF/LzGJ3ue64Lw6ypgYnEKaCPRoRDPksQ72UyS5UbN96yZoPnAWbvQeeB1UbhsM4sM8QL686FpAa2pnum2v+pAJfKi1NR2XHjEXDO6Mf2/oS1ngZkbLL7e32+ODm+Y4JEbDHaOtXZXbcO5YYSWcVHLifUNQoVLMub6JLXCtKfKC+jmKGa0KtVW5j9+y/KtThmda/p2naPSuTzrfF89peXq9dpdfowjr75Vxv14fX3RAPS2rRvV924dP0y8nL2tjNGOFb3OTJQh4ITZMfSgm9DYFh+79/71Z7eY4pouBGBQU7vkDJVqAT0YW5uYXrcbCpVGu2yE0rJdxrss4e6mGwxTze3EkRxenHzCyUdkrvK97Vc3XJEreeeobyvtwhJOtU0xqMhnjPxvb3EqdEkeT0V6ICe9nL2TPX5icSJw8TvW5hwaXg3Zr2+GB6933rx9+Xbn9ZuD/Z3Bq2G4sx/+dvBqeHDAhuwA6lPltjSzSXFbitr8ty1RMdecDRVnk7By3jNz97rflMu+qy0vpOsohsrZpcgOzuqdw4sTqLTTsLf7cnevgVvb7Gqe0IWXwqjuawjm3Kt0LCovYhdbwCKLf599QZKRL8dMVvCWuf/coCp3MYtPtpsIxl0EcSJM85txC/nNyO3HXX1W3g4IgO76mC5T7xam0wEz+EWLLKNlZ3Dy+NxfBqS3Wwpk4+IyTH3NT9mJIu6OCzdlGd+MvhQZPcVhGGJiV+7tV+77xfnVNZWw+b8pxCoiGs3oYPTZA6iVVG5tCoLJUerm7eAx6ecfFShK7w== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Query Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-query.api.mdx b/docs/docs/reference/api/create-query.api.mdx new file mode 100644 index 0000000000..5552a5386d --- /dev/null +++ b/docs/docs/reference/api/create-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-query +title: "Create Query" +description: "Create Query" +sidebar_label: "Create Query" +hide_title: true +hide_table_of_contents: true +api: eJztWN1v2zYQ/1eMe9oAJvaCPelpbtKiXrvFTdy9GEZAi2ebHSUq/MjqGvrfhyMlS7ITJ3HTohjmh9ih7vN3x9+R2oDjSwvJFD54NBItzBjoAg13UucjAQmkBrnDm1uPZg0MCm54hg4NaW0g5xlCAuHpjRTAQOb1/8DA4K2XBgUkC64sMrDpCjMOyQZ4vr5cBBtuXZAN64zMl8BgoU3GHSTgvRRQsq1E7pWCcsbASadogYJe90YCSlolZ2jdKy3W5KDx7YxHBqnOHeYu+C4KJdOQY/+T1TmtNZEVhhBwhEayqVLZW16oAFw7Dy6EJJNcjTuie5nOtVbI83ZqVfLlrGT1kp5/wtQdzP9NCKJkkKHjRwZTe27cyNzhEk3XczbvrrRzuN8XpNKkXnHz0xuv1O9W5yejvPDuZ7gvRekwe5oSN4avD8PSUYVnQfoHIUkax5f3OyD6p34vrXsM04dy3NV+HkKTqufi1n9S/vsRkG7JQKBNjSwo1WNNXbRMlAys8stjTV2TbrkHxg7fnAdCvFeuoZxpxRu7ZBWVryJTQVmSFYO20LmN3XQ2GNBXBxi49mmK1i686l1VwnA0oaXaR6Wd5mwiPQ8SVJ0F98pBMihZw4MNsv8z4lcz4qV3R1DintYzODHq/sdJ8RCsT2DFYzD6sWkxnuLEDXdPPHsJ7vDEyRDPw14inYneMIDlC/EtnHyMZisnAhV+AycX0WzlpIZrHg61L3RarcF6FY+sDV4v6qVGa+ulBuxFvdRwbb18/dxl8HLhhSvBI3P8HgOP6mynb5zcv56d7Q/rv7iSIozi3mtjtDl+Ugt0XCr6VY2CXQGl087T57Bua67G6dGk+l7HAMMctcvWWWFbimYyWMuX2FDlw6IBjN6Enj52dqK8outKrlXaBt6I7sNpXET4DhX17WQy3jMYa9staty7vQ/VvTZDt9J0Oy60deFW7FaQQL8weCfxn/5tvE33gYFFc1fflr1RkMDKucIm/X6qtBenfIm546dc9nkhQxNbTL2Rbh1UhuPRO1y/RS7QQDKdtQWuqW9iJ3TFtkXghXyHFHB1Tx96t9JGfonlrS7rq6hFSVNHXjXX6NefeVYo7FyD62Nec8ZqDgbb8ddUvwvjdjnSxbY/afPnCx0ir0ozDLj0huMRMCAEo4XB6S+ngz27HWHabTwNu61OOzwGtlOALfTAALOw1cAhz35rHlBkVOOM5y17O92wM64r7B1+dv1CcRn2UfC8qRplClWjQDxX03ZmQF2+on5KprDZzLnFj0aVJS1X6E83IKTlc9V6o/I3rrsvYO648uQ/9NIdN5LkQ+uwutRkKOqdR2Y6Cduy0d1jKWKQqDFMUyzcQdlZa4OML68nwGBevZTJtCAdwyl1+psA0Bsn0g6NHNY2oHi+9EQsCUSb9PkXFK5kWw== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-queues-preview-evaluations-queues-post.api.mdx b/docs/docs/reference/api/create-queues-preview-evaluations-queues-post.api.mdx new file mode 100644 index 0000000000..7415790468 --- /dev/null +++ b/docs/docs/reference/api/create-queues-preview-evaluations-queues-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-queues-preview-evaluations-queues-post +title: "Create Queues" +description: "Create Queues" +sidebar_label: "Create Queues" +hide_title: true +hide_table_of_contents: true +api: eJztWVtv2zYU/ivGedoAOXbdJN30tLRpUa/tmiZpXwzDoKUjmy1Fqbxk9Qz/9+GQuvoWO0ixYmgeHJk614/nRnoJhs00hCN4eceEZYZnUsM4gCxH5b4NYwghUsgMTr5atKgnucI7jn9PsGYpX03yTBsIQOFXi9o8z+IFhEuIMmlQGnpkeS545Lh6n3UmaU1Hc0wZPeWKFBuOmr55ofTEDaZ6kyARzvolMLl4n0A4WifgeqLJFGk4E7RgFjlCCNMsE8gkBGC4EbQy1J2bmjKAGBNmhYEwYULjahWUrNn0M0amwVkj94HsfeVsWgWVLmmFgNV4FUCKhrWtZXHMiZOJq5bdNUUhRBvF5awplkuDM1RtTem0vVL6SUvbdUHEVWQFU7+8skL8qTPZHcrcml9h3WOSUezDAUxMKbbYAkONW5sVNhDex/uOkCSOjf3/kRD9K3vLtbkP010+rnMfh9Ctj0KQLMUD/d+0gHhXlAs6UjwnVx8q6rIhYhXAHSpdSGvLqDk+FSSNVIRBf3B20n928uSUhGjDjN27uQGgtCmVtxxl7FdcUYmpRlkp/ZK2UYRaQwAJ48IqJEalMkVLEZMRCoExjLfl/I03Ymu+x2w939vVyWpUEx6vuVDVuuph3akkUykjPKzlcSMsypw7PAc/alSdYewiRUcomeLZHouONWS34ptCWaXcYD75govDNB+lyWDeeUOSjyjil8zVly17qqyc8Ph+MGrR11Z2hvFW7dQmucKYIrQQvDXInE0vXBPe8L2m/+Db5X2Kiq66W5H2mq59D4cVCawFGGXRLeg8k9oH8qDfp3+tOgE3PqsSKzrXBTGl08NGgSiznmmtVtdOvHAUjWrRXwU/J4j/ZoJ4b80DRogNriNmCM/7Px8i9sF6wBTxEIx+7DHCn0viCTP7p4CqNMfMYNdwZ89uLb7+xZ0LB5bN4++h5KMXWyiJUeB3UHLpxRZKSrimi6KFHaCn6Oz3g/V84bpcjdejainRqrSUgD2qlhKuSsvjifbyGnPvQ8K/nIl/+OG3ObSX2n8OxD8H4kcdiO8fhRthOBof4a2uBtaVm35PB4PN+fYTEzx2PJ2XlC8PH25jNIyLPVOqyKLW22PmkPFulN5m3kACMtWzfafxd6g1mzUg303qwOjc0tv7tpj88qoLumatq+D16O5249LDt29/X9/eXm0I9Hvb3lTfzTpV/KRo5hldgRYXmzkzcwihV9yB9hp3oD1/2OhRTUVFld7tkFUCQpgbk+uw14tEZuMTNkNp2AnjPZZzl5waI6u4WTiWi6vhG1y8RhajcpHbILihGPJR0SarNoTl/A0SPn5mgwtr5pni//itDoCTn3PPRQBQdF7X97Uvv7E0F9i8fx01zklr5yF/tqkOJvU0Xc2MdYC0ka6Wq57YvN6pG1yje5Xto24TI3iasN/OkvPT7tmzJ8+6p2fng+70aRJ1B9Hv50+T83OWsHMKq3YxP4KvrsOj0uZm2TtMkMtCLpPM7VMRlBcuCjoXV8MWCv2TJyf9DbhaxFRnWOTqTLnJ7jUEa+FWBRo19dQVGTDI0j/qFxQCFNwpkw1563mwNrsXoWbwm+nlgnFXQpzqZZEiIyhShDQ3fluozuQBELxzSqtwBMvllGn8qMRqRctfLSrKhXEAd0xxNiXARgTivMyKJXzBhTv3u5rbdQWHyIX1WbBWf6k2eo6LKMLc7KUdNzL/6v3NLQQwLX7LSLOYeBQjz+gzBKDfS7x74dKvLUEwObNUMkPwMunvX80jrOY= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Queues + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-results-preview-evaluations-results-post.api.mdx b/docs/docs/reference/api/create-results-preview-evaluations-results-post.api.mdx new file mode 100644 index 0000000000..ab5a752d7b --- /dev/null +++ b/docs/docs/reference/api/create-results-preview-evaluations-results-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-results-preview-evaluations-results-post +title: "Create Results" +description: "Create Results" +sidebar_label: "Create Results" +hide_title: true +hide_table_of_contents: true +api: eJztWVlvGzcQ/ivCPLXA6rDiI9mnOheipmkMW8lDBUGgdkcSU+4RHq5VYf97MeSesryWBaeoC/tBlrhz8ZuDM9wNaLZU4E/g3TUThmmexAqmHiQpSvtrFIIPgUSmcSZRGaHVLJV4zfGvGVY85bNZmigNHkj8blDp10m4Bn8DQRJrjDV9ZWkqeGDZ+t9UEtOaClYYMfqWSlKtOSr6lUulr1xjpG5TLITdwAZYvP68AH+yARaGnKQzcdEgrSj0OkXwYZ4kAlkMmVcuKS15vIRsmnnFUjL/hoGuE8VGCMimHmiuBS28t0ZkHkSo2YHGFJorNTzWuETZ1BzNmyv1PezWBQGXgRFM/vTeCPGrSuLuKE6N/hl2bTGHeQ8mJiVbt8PSYIUHQfqJkCSOw937LyD6e/IbV/o+TO/a4zb3wxAa5zF3jVJxl0bNjVekX3MSD0JcMCM0+DAcDE96g7Pe0TEJWTG1mvGwDUcPFomMGPEaw8NW2z4wteqMQrshyQK8R3TrNom/kIVKB0zdJ+4hlo5zkbkGlDKR/914e0oZ/M5CmXmgNNOmFTIPMDYRHUMpxqFb+W7QYEgniYljt6RMEKBS5F/GhZEIucNoKWBxgEJgCHUbyhPqyhlx2+DMs26S10zsNHGnD7e2OioEEEA8QqVZlO4ZoSHT2CWm9jAtpWZ0tqbI9IyHNwdbfGlFdEbhTb0oDKy3MJ39ieu2enKlMe18xLX1boAxkzzJc7I9E2sicrY876SJHyjg0sSW91ZMut6DSwwpoMrtNC0tNe4MlkvbdryxXU8t6F2+1EF03cl9NhRdTIsu5ZRduq4Jsiyri9DSoF1QaRIrV36GgwH9C1EFkqfangBw5TJkYUTnMiem1Dis+QoS45i24qraxRtLsRVAzz3bD6n4n40+oOTf4npAzXe8//O2rQ3WPfq2QzAqGjc3VYUzph/1qHCVJOycW7NMGv4IJV+c2FxJiAJ/gJK3TmyupIBrvn7E9q8A6/U6P4gKvB5VS4FWqaUA7FG1FHCVWh5PtJNXmzQO6eSLKeR53Hhy48bTOHyeyMRRn8IL7c9TyPMUsnsy2GP+qGE3me4y5c6poxwSMjtxHA+Ht2eKr0zw0DJ1XIIdPFCEqBkXLYOBSILG04fUvOndOP2WOANtt6+WbTH1CZViy9rQdzepBaMzpqf3uZ/25VTndPVTsYS3LF93bOOtg6/NwR/G44tbAp1vm051fU+niqAI9Sqhu/78/j5legU+9PO7/n7trr+fT3h9imaU1BVYHxkpwIeV1qny+/1AJCbssSXGmvUY77OU29xXGBjJ9dqynF+MPuL6A7IQpQ3eGsEVRZGLiyZZ6RKW8o82p2IW0e9zo1eJ5H87Z1NFJXscF0FA8XlZvZd4d8OiVGDjPcOkmk6r0bCaZ+pNUP0GtdbRwIsFe3myOD3unpwdnXWPT06H3fmLRdAdBq9OXyxOT9mCnUK9UamFVr3h2FdQ0UPUzr3aoVadKoPGqUDWH3cHZ93hq/HRiX9y5A9f9gZnR39As7IP6rW4srRRb/e1tCiv+9HnV3OLxHo8D/BzG0+d84sR1F0x6B31BrAd5A1iqlkssDWrCBf7GLytwC1DlrCNbMECjSz6pXpAwUR5ErG4Ju9WTjWsKaNW443up4JxW4+s7k2ebhPI041U117IVZcqHlDtWFGO+hPYbOZM4RcpsoyWvxuUlFdTD66Z5GxOkE0IxlWRYRtwjnzjKnjXli8iF8Zl1FY1p0rrOM6DAFPdSjutlZGLz1dj8GCev/+LkpB4JKOt0acPQG8Z3f4oA2ltA4LFS0MF2Acnk/7+AUSfvbk= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Results + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-runs-preview-evaluations-runs-post.api.mdx b/docs/docs/reference/api/create-runs-preview-evaluations-runs-post.api.mdx new file mode 100644 index 0000000000..09ce2f35b6 --- /dev/null +++ b/docs/docs/reference/api/create-runs-preview-evaluations-runs-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-runs-preview-evaluations-runs-post +title: "Create Runs" +description: "Create Runs" +sidebar_label: "Create Runs" +hide_title: true +hide_table_of_contents: true +api: eJztWltv2zYU/isGnzZAjd2gwwA/zU1aNGuzBHbaF8MwaOnYZkeRKi9ZXUP/fTikJFOyLTtuCnSD85DYFM855Mfv3KisiaELTfpj8uaRcksNk0KTSURkBsp9u0lIn8QKqIGpskJPMwWPDP6ZwkbAP5hmUhsSEQVfLGjzWiYr0l+TWAoDwuBHmmWcxU6m+1lLgWM6XkJK8VOm0KhhoPEbqsS/zECqtx/PuVv3mlCxupuT/rg5gelpzKWGpD7JrDIgfTKTkgMVJI+qIWE5J/kkIoYZjgM3unPlNeQRquPsEb5H2QeU96pobL5T2cBryPOonCVnnyFG/MtZmxMdWvHW4bWtNI9ICobWl0KThKEc5fc1TLcWq41iYhGqZcLAAlTdUjqrj4R73G2LxEzFllP1y1vL+Z9aihc3IrPmV9LcL+ooOHKEEFWKrlqxrYuSLXzbZG8RSZTY4ubPhOhf8gPT5hCm+/bYlH4aQg+ehUTQdDf9t/e/vQKUzSOSgI4Vy3Crp6q6DlTkEXkEpQttdR0biU/FFDQ/p5Yb0ieXvcvfLnq/X7x8hUq0oca2Hm5EQNgUg24GIvEjXyxYSDB6WiH8kLZxDFqTiMwp41YBCiolFQ7FVMTAOSRkssvjR34RO/09oU1/r0dObSBrrH9PEP4bVm1YvYfVhh37QWCORhFh4lH65EAiQoWQxn8J6YMq8ohIxRZs5zmVSmOrjUxJRJY2pU6hNTJUdedV5Jiv5qBAxIVH7vHU+s4DppzCu5JFSBduF6eqGaEsZpTdSa4CZS5VSpGp1rKkPbMkrSllWEK17fU7JjlPd6f7fHTaYRfrDaYw0Y+dip0OMbTimho6MpA1w9bhnHDj93CM8WJGRdEavQ6t7EmLGjk3dfzNgDYhbkseDUXDQj4IaS+xLKBZxkQzke05ulhym4odR8pE0nqm+DzIB/vm+Zh/CH9UVuhqg/rW7+zKr9mFbMhOjW4ZNcu2aff4/DjmOFVHLNxT5YDK4kSKzR2h9Unkuy3JcXQBipZ25aNj5a9cC7K1yIDG2DAcQsV1FfvA0N7G0PcvJM/zUNgoC25AZ1JoT5HLXg//1CoRMvJ5e255Z1hMxoR9WhsUS+uFGg692cKVmxE4by+Pzt3TuXuqN0J31pzQPm1JPaF/8rL/8waqDdYjOqhTMPq5Wyh/U5RMqTmyJE2ogReGufXst+Ijc9IZOLBslvwIIx+92sJIAhx+gJFrr7YwUsI1W02fr4gvwXq96twkIV7PaqVEq7JSAvasVkq4KivP2+tEz9nJ/dSNf3hhUVo/XwacLwPOlwHny4DzZcD5MuA/dRlw6BogYO/4eK26atdz1/u/urzc7u4/Uc4SJ9F5gzn59NY+AUMZb+nSuYxrT5/S60z2I/ShTKzo13rRxtdb0JouoC1xV0giGB2fkw+wEfflTRfzwmRYwevR3b+Naw9f2+m+e3i431Loz7Z+qL5i7hTcScEsJb72Ll5oe68m3eLNdzd4893Fi5YuOhYoLAPc6VjFSZ8sjcl0v9uNubTJBV2AMPSCsi7NmPMeDbFVzKycyOD+5j2s3gFNQDnOBhNGyB/PiPq06jBoxt67oOEjJxlYs5SKfSvrJ6yOyNJL4eaRmcPNW/o3X2macdi8dR8HN0TBTRDegAV3OdXX8j6muCErbkQ2bXwV0jesqcNfDVeVVPhObVNZB2VzWbcW9em4iNABL0uH8PVkWSRuasFapRfUJk1VuTuMKq/2wmQ4DpOdT2+bFdT3HGSWxkoLepXzMAxO3Hrm0p1xQeaBY1BncH9TA6p38fKit4VobTLGJxq7+FQSxD0mUYOqFUmxdk5dcCIGaPrH5gHSB90C6+iNvrr/NG4VipMw8NV0M059ne0Mr4u9j0nhWmg3+D+U4h4zIhghluiM/TFZr2dUw0fF8xyHv1hQ6EOTiDxSxegMwRojgMvSm0rEr3ycfvHgizI05L2nEbMxnnqJQRxDZlrnToJ4cX83eiARmRX/+ZLKBGUUxX3h7z5BJmZ+c+htOLYmnIqFxTDbJ14n/vwLHWwpfA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Runs + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-scenarios-preview-evaluations-scenarios-post.api.mdx b/docs/docs/reference/api/create-scenarios-preview-evaluations-scenarios-post.api.mdx new file mode 100644 index 0000000000..424b48a1b0 --- /dev/null +++ b/docs/docs/reference/api/create-scenarios-preview-evaluations-scenarios-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-scenarios-preview-evaluations-scenarios-post +title: "Create Scenarios" +description: "Create Scenarios" +sidebar_label: "Create Scenarios" +hide_title: true +hide_table_of_contents: true +api: eJztWFlvGkkQ/iuonnal4bTByTwtSRyFTbK2bJKHRQg1MwV0tudwH05YxH9fVfdcHMYY2avVKn7AUFNH11fn9Ao0myvwR3B5z4RhmiexgrEHSYrS/hqE4EMgkWmcqABjJnmiJqnEe47fJ1hKVZ5O0kRp8EDinUGl3yThEvwVBEmsMdb0laWp4IEVbH5TSUw0FSwwYvQtlWRec1SOnumlH1xjpHZ5ZsK6sQIWL69m4I9WwMKQk34mrjdYSw69TBF8mCaJQBbD2itISksez2E9Xns5KZl+w0BXmWIjBKzHHmiuBRHe20OsPYhQsxMPk1suzfBY4xzlpuVoukmp+rDfFgRcBkYw+ct7I8TvKonrgzg1+lfY52IG8xFCTEq2PAzLhig8CdLPhCRJnB7efwHRP5JPXOnHMH3Ix23ppyE0zHLuHqXirpA2HS9Zv2YsHoQ4Y0Zo8KHT6nQbrYtG+5yUKM20OQijBxibiBpGinHoKHcGDYZU7yaOHUmZIEClwIMZ48JIJEEpE0mkgMUBCoEhVPwo+8+tO8Su02vPhk7eM7H3iHvjugXXIFdAIPMIlWZRetjhWSIjRliFTGOdhA4HpNC6tohMeLgvKIVWY3hYCdKNiWuDENY7SeDaKZcYEvqZ4v0AZg3zre3alXRytVqK3Bad9TFzZQ8+aFE5kzeu78Oa1JZqtDRoCSpNYuXKtdNq0b8QVSB5qm0Gw63LnpkRtZuMmdLmtPERJMYJbWVJ6cdby1GpihaVws+p8zJT58roE8bOjtQT5o6T/Z8PnkOwHjF5TsEoHz1uOwwnTD9rI3W9JKz17bFMGr6EkS9ObWYkRIEvYOSdU5sZyeGaLrPRcIQdOySOAevN0k6PEq9ntZKjVVjJAXtWKzlchZXnU+30VXalI6p2R0m+R/3nF6bqopdb/7lEPW2JOmp9qgA9Gu+zemBlKjactV2Xzjud3YXoKxM8tGK1S0qK07ehEDXj4sBOI5Jg4+lTxtr4Yaw+Je6AdlFR80OvKZ9RKTav7K0Ps1owakN6+lisyS9nOuOrFnQBr0P3YTfeOfgOhfjDcHi9o9DFdjOormXXqlkUoV4kdOGSXaCkTC/Ah2Z23dKsXLc0iwW1Se0DJTU1GycjBfiw0DpVfrMZiMSEDTbHWLMG402WcltpCgMjuV5akf714CMuPyALUdoUrjDcUia53NhkK8LCUv4RCaWYRfS7b/QikfxvF3DqN3QeJ0UwUI7elFdDlz9YlArcuuoZlet1uduWC1m1i1dfYsuWXOm3ZcNrbTQsEjyvty7qndfDdtfvtv3Oq0brov0nlE0HzmbsVXfWO693L9oX9fNur1Ofns2Ceid43Tub9Xpsxnr5y+kssbBkmdC3oNf61wOonrbVaDdasJ0NG8xU3CywxZ1jah+DtxXdIq40LiJb2aCRRb+VDwhxSqeIxRV9e5Jv4zxFcDX+0M1UMG5L11pfZXk5giwvyXjl+rD68uQBFdqC0tkfwWo1ZQq/SLFeE/nOoKQEHHtwzyRnU4JtRFAu8lRcwV+4tO9ott3Vba0TuzAu9bZaH7UlJ9EPAkz1Qd5xpeKur26H4ME0u6uMkpBkJCPn6NMHoFtR56G/crQVCBbPDXUrH5xO+vsHYz1K3Q== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Scenarios + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-secret.api.mdx b/docs/docs/reference/api/create-secret.api.mdx index 4f39b302e8..572daf3bbd 100644 --- a/docs/docs/reference/api/create-secret.api.mdx +++ b/docs/docs/reference/api/create-secret.api.mdx @@ -5,1163 +5,67 @@ description: "Create Secret" sidebar_label: "Create Secret" hide_title: true hide_table_of_contents: true -api: eJztVk1v2zgQ/SvGnLlxEuxJp3WTAA2yuzFqtxfDCCbU2GYjkSpJufUa+u/FkJJMf8Tt5lhUF0nkcDjz3rwht+Bx6SCbwSesCw9zAaYii14ZfZ9DBtISenpyJC15EGDpS03OvzP5BrItSKM9ac+fWFWFkmHl8LMzmsecXFGJ/FVZ9usVOf5bEeZkj8c1lhR86c3jArLZFvymIsjAeav0EhrRj+i6KKCZC/DKFzzwL69tBOTkpFUVx/FWV7eJi6YRnZ15/kySQejs3sc0GgEtPkcJvSid83t/bwGk65JRr6xZq5zs0wttQICsnTflUzcKSUyTsMMD++Mk0ePJ7PoYmShlKeddQhQCTrr1qHO0+bidu50+ptD8lDsBpcmpcKnfm5DJntcUYA7/FLIntgmpHgERPP7AQVtlPTtpeKGsU1dNutbbmsKAq4x2kcrry0t+7ZUXTGopyblFXQw+tMZM49tU8btYzhSLAJWf07OAhbElesigrlV+Vt/3AZZfrgkVakFyI4vT0R8t/LszP6CxjeT/yLMH86gGO1W0ImsE/Hl9fayjT1ioPKhkcGetsW8XUU4eVcFfylPpjg0KI/dmf4IbpT0tGeP5DhO0FjcpmiYGyESUbnlKx53pP+QcLkOdRJPXTQMYgynP/ogPzitu3dolXOzgjei+nsZthO9swU2n4yOHkdt9UmOTHUy6u0NJfmX4UlEZx/8V+hVkMFzz1WO4vhrGPu1Cx7Zrsi7QUtsCMlh5X7lsOJSFqfMLXJL2eIFqiJWCw41HYXZww6ZBU45kbZXfBH+j8f0DbVrZZLN5ajDhqop1sm/WU4SVegjtN7YJGNV+Zaz6L5IvQHEArRoYEq7XD7tL0903LKuo0F3/aV317O9n09djcsuIR8XhidA1+nbWVKRRpc2X52iT+AysKb0wIcOW4Ba+dyhfKGicqYixXF5cXVy+hne7YDAa37f6RemT/KIZiANGey75qCuDeMETln/tJjhKLpoSdeLvsL4Omm5LmKdvflgVqII0w9bbtvRmEEqPM7zqrwnhZFpxhWYz2G6f0dFHWzQND3+pyXIRzQWs0Sp8Zrxm8+QwmXUI38T29UfQLpsXdSyfg1bGbSauGElJlT9rO09ENH6cTEHAc3sT51MVMrD4lfsCfoUMgC/zvDrUcxjbQoF6WXP3ySD65Oc7LPAZeg== +api: eJztWVtP4zgU/ivVefZSQPuUp+0MSIuApZrCvFRVZZLTxoMTG9vpkKn631fHTtKkHTJQHnY1Ki9NfPl8zneuDmtwfGkhmsIEY4POwoyB0mi4Eyq/SiCC2CB3OLd+HhgYfC7Quk8qKSFaQ6xyh7mjR661FLHfOfxmVU5jNk4x4/SkDeE6gZbeUuQJmv3xnGfosfLybgHRdA2u1AgRWGdEvoQNa0byQkrYzBg44SQN/EN7NwwStLERmuQ4FOqiBbHZsHqdevyGMZFQr/s7qLFhUPGzp9CTyBP67Z7NAPMiI961USuRoJk/YQkM4sI6lc3rUWjJFCx0TXikJHe8q937zlUacy7oRJWiQWCEZGMu6TFB1CJfGE7DEnXKpU7pZWnUMzDIhHWGS7+f5y41SosYGGg0WuKLcKWfcmqJLkUz9290olGFQ0NAmIlcdNRzPE+4ScaV6rWiDRX71GL5Mw1rwGssf2o7cmBhMCEWCKJHhgk6J/Klvbi/+zUUydsStwfWw7H3Wiy4BjH+o/AGe8TEqPgJGFi+xIw/eWZXaBy+bCn/Xxn5s9fh7SYujDw0hB+MJOwVGvuBRPC12r5htbsdguJdkQG+OMNtF4QniaA0w+W4pbkzBe66W98BlwG5L1V1qe94NoNMJSi9ZMJhZvcNYWWx7Au2Cc3/Vyq2w9ALuudxt6Tfjs4VCjeGly1NbgMVLbec18ofYvqa8EHNkKeasv0OSw3xu9hdQfvO8qIPrgn6vdmqcYFXg9Wz1i6RVIDeeIwvVnul7C1ZteoTmvraFs83Jm2oTXsv+ZcfsFrlNnjx+ekp/XQaBJgUcYzWLgo5+FIt9hnzoL7mWO6P5f5Y7o/l/ljuj+X+Nyz3DETSRw2DhTIZdxBBUYikV/wrnwx+uw8BUiwwLmOJfeU6fFRJ5twdKljofpLBiMIICp18EO8hIOzgPZbzfoO/BfJTOQi23qJ+HLLXGje45HF5U1uiLsBd1Pf0ro2f7jVodctYdaAbBn+en+83mV+5FIlvIQeXxihzeIeZoONC9uRuqeLO7Bt4FrnDJbnv7PVEeaOCgD6p2d7qcIuWWpRtMnt9qSdjcE+zv7IH6RWOrta163ZDb2D3dTUuAn29sXx/P94DDLbtGjXE4GBSfxrN0KWKvplqZeldc5dCBMMVL6Qbrs6G4RJjh/4+Y6hX8XbxbQ+kzmkbDYexVEVywpeYO37CxZBr4WPAYlwY4Uq/ZTS+usayyjrRdNZeMCHPCb7QXdaYgWtx7e8fIcvCqHCpMuJHMDADQdpVHk9qk09+2X73vXzhmQ4Jbpu+K6jGwl2qtuVt+6E0dMC7V6L6plPNNj1tu2v0vVmD6S0j8oXyGlZGHHn+BqPxFbS6Qjg9OTs53ZOus5jikseupVOYBrZjqMZE1LVnPijBIc/+2k6QZOQMGc9beLt+s1OnKiM5fHFDLbnwIVe1xsGlpuBdijQ7a+7GFhhQTKTkfNEU1utHbvHByM2Ghp8LNOQ7MwYrbgR/JJqms1YJntbEfg6Z6Q8flrRcFsFrdrIUZZCwYxTHqF3v2lkrPsZ3k3u60VT/Q6BeBCIw/DuFPP8OEfi7Be32buzH1iB5viwosUQQMOnvX8hYe/I= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Create Secret - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - - header - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - secret - object - - required - - -
    - - -
    - - data - object - - required - - -
    -
    - anyOf - - - - -
    - - - provider - object - - required - - -
    - -
    -
    -
    -
    - - - -
    - - - provider - object - - required - - -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - key - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    - -
    - - - models - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - provider_slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - model_keys - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - data - object - - required - - -
    -
    - anyOf - - - - -
    - - - provider - object - - required - - -
    - -
    -
    -
    -
    - - - -
    - - - provider - object - - required - - -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - key - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    - -
    - - - models - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - provider_slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - model_keys - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - header - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-simple-evaluator.api.mdx b/docs/docs/reference/api/create-simple-evaluator.api.mdx new file mode 100644 index 0000000000..b992864e48 --- /dev/null +++ b/docs/docs/reference/api/create-simple-evaluator.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-simple-evaluator +title: "Create Simple Evaluator" +description: "Create Simple Evaluator" +sidebar_label: "Create Simple Evaluator" +hide_title: true +hide_table_of_contents: true +api: eJztWllv20YQ/ivCPLUAbblGn/hUxXZgNWkt+MiLYQgrciRtujyyhxvV4H8PZpfHUrRkSbYLIVAeHJCcY+eb2Tl29QSazRSE93DxyIRhOpMKHgLIcpRM8ywdxhBCJJFpHCue5ALHWFFCADmTLEGNkmQ8QcoShBBqijGPIQCeQgjfDMoFBCDxm+ESYwinTCgMQEVzTBiET8DSxdXUytGLnOQoLXk6gwCmmUyYhhCM4TEUQU2RGiGgeAhAcy3oRW1GbxhDQV9IISr9IYsXpKTRr6XBAKIs1Zhqqz/PBY+s2f2vKkvpXbO6XBIomqOipwaEzqepsJD69rQJuBpHRuksedboSZYJZOlaK4eqd+YkFAGJa61mV4k1dKXQuUlY+hqBl1ZAUQQVUTb5ipGGhujGRlSt+KNFriu1CCBBvRQjLI45uYqJUQvdVVHkieWpxhnKtqZk0n7jG/m8Loi4jIxg8pePRog/VZYeDdPc6F9h2WKSwTUmmzExKdliLbhtVuggvI73L0KSODpRuk+I/p195kq/hOkqG5e5t0Po1kVhmc02sr+7AuItAohRRZLnZOquos49EUUASpjZrqJuiJdWxZZ3UztDPaJUr1jxl5K9CMBIvquUO8mdBLG7BEES5shiW6G2C/b3guQtHMjjtyqYtkyuztDXOEWJaYS+kGqhD1ttq8vSDUVV8zf1yB6lpf1L9Fs44KZEncopy3OebloAlvHdptpUiqzXKY3tHPqOu2g3nftav/YvUFbzjho8yUsoH3mEm0DrOugtArAUXdi2e8pnxg0Z76HrrKVgiyb0nNn+qNODbi7hzI5Lz+pspo97b4R4eEHUtRthoChIpkSVZ6lysX16ckL/tdoMuDFRhEpNjehdl8Sw86QTZcYxLW0VH2qioF5nyozQEJ4UAawYSQ6j0mFUconqyugdMmOHa4vU6Hh/8mlpHawbjEu7YLTf85I7vIrHbG3n4bXMMdN4pHmC6+uLE9sbWLBMHr+HkjsntlQSo8B3UHLuxJZKKrgmi/HbDRkVWB8W9liuwetNtVRo1VoqwN5USwVXrWX/5rnDgH8Y8A8D/s/Tnhxm/L3suvYyVg5j/v815r+Oux7M3VD/++lpd47/wgSPrWW9CyntheuOQ3yMmnFbZst4XCYQWdT6us1+8qqEC+HG6M9ZxKpGPFGzbqLxJy2l2AybmF5NasHo3dLXlw5ZyC6nuqTzS3YNr0N3tRnnDr517r28vR11BDrftp3qeuGeCwfvJMEO7vOM7tvzTGl7ua7nEEI/l/jI8d++u3/v1ycYqg9uH1fX77aTgrnWuQr7/UhkJj5mM0w1O2a8z3Jut47CyEiuF5ZlMBp+woWr3BDeP/gEtpa48GiT1Z5hOf+EBFR58T8wep5J/p/zeXnz77ozCx6F6XVzH3/xnZFFnfv0+ljIO/5xiaF9gFO/K89f6Lk5AGmm9no2bUKp7ZP6tWvdPLKyj66bw+aTbXz9R+E/Ni1pqxtql2WvXjacrcrXStTP5FMXYDydZtYrZSwOrM97g9EQAm/pJ8e/HZ90bG8RU3phkU0vlUvt59rAKrjqsIIAMLG5BTSy5I/mA62MIrk8GivlrQ7/pdG/DDGN33U/F4yn3qzgdsY9lDuDHGflgXfuqCAA2u1z2kzhPTw9TZjCOymKgl6736PQFoi5YhPh/SLlH1x0f8RCT7Qeu4UemeTEY3dM5WwrzPGeuSx9ZFNUw9vJ2JRNHccgijDXa2kfvAwxurq5hQAm5Y9akiwmHskICvobAtCPeIjbbiT77gkES2eGkmwITib9+wFW1GmZ +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Simple Evaluator + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-simple-query.api.mdx b/docs/docs/reference/api/create-simple-query.api.mdx new file mode 100644 index 0000000000..ab7808d5a8 --- /dev/null +++ b/docs/docs/reference/api/create-simple-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-simple-query +title: "Create Simple Query" +description: "Create Simple Query" +sidebar_label: "Create Simple Query" +hide_title: true +hide_table_of_contents: true +api: eJztWm1PGzkQ/ivRfLpKGxLSQtt8OgpU5foCBdqTDkXI7E4St17v1vYCuWj/+2nsfc0mS8hRqXcKH1DieJ4Zj+ddnoNhEw3DK/icoOKoYeRBFKNihkfyJIAh+AqZwWvNw1jg9Y8E1Qw8iJliIRpURDwHyUKEIdhfr3kAHnCZfwcPFP5IuMIAhmMmNHqg/SmGDIZzYHJ2OrYYZhYThjaKywl4MI5UyAwMIUl4AKlX7JCJEJCOPDDcCFog2WedkwBSWiVmqM2bKJgRg5K3UQl64EfSoDSWdxwL7tuj9r7pSNJaKVmsSBGGlDKcZ0dpLLuDrz5Gm9ifiDb1IEDtKx6TGJtCHVUgUg+0SCabQl0QberBWFjLqIKwIODEgomzmhIabG6iSCCTVT4551Hq5UvRzTf0Taswb60QRLK5MM0zc2lwgqrOObypr1TPsJwX+Fz5iWDqt0/RB67NHzqS3RMZJ+YZPOaQi9TwKBVdZhoK0bBfV0NvEyEe0g83GK5HxJRis3bDqZE+TqMfSZPkl2xRo3Xfv+MyiO5Icy2bJN6hNmtGuoAZ7Bpuw0KLvTjI1INIBE8NfuogUw8k3q8L/WCE/kRYqQeCh3w56FKLW0D5YKnp3CpA1S4byiSkvMa0jzJwaxRosy+jVh1Y+NSzQqlbJjaW+CQHSD1QzCxPFU3PauCcE23asOJyw5+FLTZhKJhzYVA9YKou70dWsQGOWSLobpkMSsdrqtf+GinwQEYkkHQrMlJQvblown0mTnMOqc3DLmRY3pnvrxZuzFEE9GFRksLj7YbUg+842zT3vUeKKnDLRLJuVn90pMxPmi6JZsujqKtb1o9fX634qVe70Ic9hWsq2/Q13WMF7TAKY6a4jmTl9laj4A+6fft/QvYgjP2E9iP9vzF3sor/KQlRcX8tcG2YMvqOm6ldDPKPVNMxLukAITP+FOmT4N+xyujCoq3Fh0tnz9e8Jiql6bXop4wEmLKGMo+4vx4C3nNtdCZF9qWCc0wrKH1cBtaMZ/kmr+LXXDsTKVxwlef5TOO1Rqm54bfL3WJJvdcQ4pBp7FwUMBVRbE+QeoD3zDfX9gI35nJMGJ2PFqPBoiV+XuK9Oc10Qfh1FTCxPAWsI9GBEI+SxBlZKcnqS832LMEqe56rLHDWHDoLvDYKF7VWniGewWgxNC2h1dUzXY3aDlQgL0tNLXS2qzvHW655JI+YrckeQ39hO1aLcmh72AdV5Xq8UQvEuestIU0JS6GOI6mdjQz6fZc4K80cXCS+j1qPE9E5zzbDxi2oHyWOaCH1VK+HdlRupp96Zee6skT9JXtYN3cIrtnT1rfuHoPOgS0kkzj4GUy+ONiMSYACfwKTIwebMcnVdWPnL09UtufKeuOmK6W+npRLrq2CS66wJ+WSq6vg8hRDkqcTz8m0HbpsNHQ5Tcy/mbo48v/12KVNQ6vnLg2qRwxeNlHqdvKynbxsJy/byct28oLbyct28rKdvGwnL//xycvmlMW8xM1aXgwGzfHKVyZ4YIcnnWOlrJttOFsJ0DAuavmwvkFE/ops+XCCarnWD5ET0LYSetKWZj+i1myCZUW9eqtVRueSfn3ISOlcjnW2r57OMvU67a4+xpFTX9vVvru8PGsAurutX6obOnScKXQ+Z09IQjTTiN6jxJE29gGKmcIQerHCW453Pfc+pffDPWPpgQca1W3+PiVRAoYwNSbWw17PF1ES7LAJSsN2GO+xmFsH1+gnipuZJTk4O3mPs3fIbMF7NapuuCArcnZR31ZcCYs5lTRe/jLmIDHTSPG/3WVnz2OmjopUQPZ5Xj5cOb5ndJzaw5MMqbjsutaKZTfWqLQK2Uih7OfLrrXSatVaqrx1gkF/8KLbf9kdvL7c3Rvu7Q4Hr3b6L3f/grIDatvjGhl4Pmav9sb7L7p7L3dfdl/s7Q+6N8/Hfnfgv95/Pt7fZ2O2D0WL0i+6jFoLUXYE/byi7y/W12XZlZXH1VL3qihlS+XYirX8mpWf5UIF0BZplaS9mJxdrVjLpLSUph7FvZGzdC7HkbWSPEVZG+wcnJ0Qd1TaXWZ/Z3en37ji2mZbePmmYhjuZ/AWjL0wc6pxQhvkwCALfy9/IMnIrUImK3jL/XBh0JuZu8F704sF4zaQWQHmmYteQeaiZJsWC9xMmttakeLNlFx6eAXz+Q3T+EWJNKXlzPKv5hBwzW5E5f2Yu7fKc7P85qwf3zLFab91Wy93MwJydIcuR3RtgCxpG/mCYrmjOPB9jE3r3lElRp2dXlxSwZ09QQujgGgUIx3Q/yHUbcmuzUEwOUkoxA/BYdLfP+QcfAg= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Simple Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-simple-testset-from-file.api.mdx b/docs/docs/reference/api/create-simple-testset-from-file.api.mdx new file mode 100644 index 0000000000..d477e249ad --- /dev/null +++ b/docs/docs/reference/api/create-simple-testset-from-file.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-simple-testset-from-file +title: "Create Simple Testset From File" +description: "Create Simple Testset From File" +sidebar_label: "Create Simple Testset From File" +hide_title: true +hide_table_of_contents: true +api: eJztWUtv4kgQ/itWnXYkJ2SiPfm0zGSjZGd2Eg3MXhBCjV1Az7bdnn6wyyL/91F128bYQEgg0h5yimOqvur66tFFsQbD5hqiEQxRG41GwzgEmaNihsvsPoEIYoXM4ETzNBc4MV5uMlMyncy4QAhB4Q+L2nyQyQqiNcQyM5gZekytMDxnyvRmUqUXCTOMXut4gal7yhUZMxw1/efwojWYVY4QgTaKZ3MIgZSZgQimPGNqBSEYbkgUbkmjCJ3mxKt11TGzKfkY6yWE8F3LjLxsQgRDUgkhwRmzgiyRbBFC5a4Wdk7QLFs9zCAatY0UYf0ms0JA0TBQUhsMCKOBmbEUT8X8QhgNzAR1rHhOwTsV+qYB1bDgE+Y06CFhNDBT9HlxCuafhFEQqBeU0+8YmzI7ucKEMsAlWEOZUnbyVIIXhLpBMcqie6FzmWmfuNdXV/Rni30Y2DhGrWdWBF9LYQib1cHyXPDYVVrPZeWB0oil9UqlezwzOEfVKIWPTqKRw1cbhrfJbRWd6ER0W2DBtGMlZqW3nTBNpRTIsoNxumM6GNYoRehhFYtPxfQQuyLfSpFb4dOujVeE0E1AliScAsPE4xYZR6RoFZotS+l0+03Tvd22IOYqtoKpX26tEH9omV08WJNb8w7arhIIN5geqcWUYquDxLZ0oUPuIWVfiSF0O8X/idQv8jPX5kla9znZUX8eR1UHPOUOqHr/GXp+q9f7jphMmDkE2LiXE2bwwnB3nv1WPnrYoO/IsnnyGka+edjSSIICX8HIjYctjVR0TVcTnhxpx1qeHEXWh1VwnzT5OquViq3aSkXYWa1UdNVWThmnqjHqfMcrPWftO2D7GqyuwAlPWk2rbL1PH+H4BlzdlMF9Uk9KO+7f2nL3qDTDnI+iasoqw3dW7EGN+9Z33vrOq/adc/eMHbPz0TPOjgG36n7jZ80S1Vz7NnAdMXC9TfqvMOl3r843Ul9M6g3bs8hozwYvGiiO+qb8FZdcc5n5o3S/MB9AGLgtSolzim69Minc/uXX6+vuhuUvJnji9ifB70pJ9fL1SoKGcUFPe0YqIeOtT5+TyON2oDYuf5b+gK416fmuIXJTbFqzeSPq+0UdGX6n+dRGjPzypku5Rs5s6PXs7nfjxtN3KLh3w+FjB9DHdjuofgAJfDIE1eB5q2Qa3Pp9c4pmIWk1nUtNJnJmFhBBL1e45PhPz2/yeuUUrHs2F5IlQHOrWqLSLmxWCYhgYUyuo14vFtIml2yOmWGXjPdYzl35aIyt4mblVPqP959wdYcsQQXRaNwUGFBi+VTZFqujxHL+CYk0/50f+tYspOL/+fiHwMn5hdciVng2k069JLDvDhf0H+8hBHLD03V1+f7yCtokbglTTbDY1URl230MYYuF2n9amqeuIMAgS3/bfEAnI9pTljXwno5Za0lRcmLwX9PLBeOuANxh1mU4R1CGk+LmcKFeZ2o6uQ/qOIQFZUE0gvV6yjR+U6Io6PUPi4riNg5hyRRnU2JxRLW4qCK4hr9x5VanrmlclL8CLJmwdLpdv15QfXulfhxjbhrinX5D+VHn6uPDYAghTMsfSVKZkA4BO9xw80iHLIqfE33HDQ== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Simple Testset From File + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-simple-testset.api.mdx b/docs/docs/reference/api/create-simple-testset.api.mdx new file mode 100644 index 0000000000..516d14ae1c --- /dev/null +++ b/docs/docs/reference/api/create-simple-testset.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-simple-testset +title: "Create Simple Testset" +description: "Create Simple Testset" +sidebar_label: "Create Simple Testset" +hide_title: true +hide_table_of_contents: true +api: eJztWltvGjkU/ivoPO1KQyAkIe08LW1alW27iQLdh0UoMjMG3PVcanuyZdH899Wx5z5AJpRITZY8NKnnXHw+H5+bvAZFFhLsCYypVJIqCVMLgpAKoljgD12wwRGUKHonmRdyeqcMHVgQEkE8qqhA/jX4xKNgQ/L9jrlgAfPBhm8RFSuwQNBvERPUBXtOuKQWSGdJPQL2Goi/up5rKWoVohSpBPMXYME8EB5RYEMUMRdiK6PwI84hnlqgmOK4kBjQGroQ4zqqo1K9CdwVqsi1KxFRC5zAV9RXWnsYcuZogztfZeDjWr63UCAcilGJ/0vNr32Ycw1k0ZYywZJIDZ5DJJUbjZ4FAafE32nlByJb40xKbBmxgjg/KtOIiGMrJQtmX6mD51wB+L02tC4vtsCjqnKcxHUZ4kr4TQmMbQdeEMt8RRdUlDV5s/JK0bzNusBhwok4Eb+8jzj/XQZ+e+iHkfoVqpaiDKao14yJCEFWO2Ets0IN2V28nxFJ5Kg51c+E6B/BJybVQ5hus7HK/TiExsYLk7DTyP76DpA3tsCl0hEsRFP3FXVVEBFbIHm02FfUCHlxV6R6m+qhCMPAHXMrHpB48cPRtLkzpzGnNXQ17FsiWaZ5Y9TEpPAE0d6Cw8oeZXJN6nPviGoo2yWKthXTbrVdwVsjtjXQPh+F7lMo+WLEJkpcyukTKLkyYhMlKVyz1QFPIwXrzSo5lBSvg2pJ0cq0pIAdVEsKV6blcKKNvA1VSOOEsaFUSKPV9FGhOa0Qjtnrwex1rJgOXTHVs+YR0f0QvUIkH2oIsAbYq5Bo1Gvc0nsmWeCbrdRbjh0SRrpdTeSYHLJRY94XTrLmbrpTzK1pLCGOUZ6gMgz8pBDqdbv4q1RPwihyHCrlPOKt24QY9u4/nSAyTBUPLeRLTYEJbE4irsDuJuVa0rZuKyePDeyzCcfXkdojetS4HhE+DO8L72F3wdqgDNgHo5+7iz22P8f250nbn0OMSQ7dQh3HLsexyzHuvOy4cxy7/N8LrmOl/wSV/jOZvTwPUF/Q+OVHeLORiRm3nPd69QnLn4QzV89PWu+ECMT+4xWXKsI4/rWlpOKBU/r6GEeeVg8qN/lTYDaoQ5NcbCoi88smJVkUTn07qQajNcavD42+0C6jOqEr+EwOr0F3uxlXBr5dh/thPL6pCTRnWz5UU4C0jDO0xtmzE4+qZYDvUsJAmmcoagk2dEJB7xn9p2PeqXSS2ld2AOtUcZ8+U4kEBxuWSoXS7nQcHkTuCVlQX5ETwjokZPq6SOpEgqmVZhncDD/S1QdKXCrAnkyLBCN0JOMaZbLsVEjIPlIEKXkgM4jUMhDsX3PeyRuZpeFCFNBFb/O3K+++E7Sn8vYkKzgqQznztqU4UsOVPN/l1UE2dMjdpox/tmyatAJZEuXLjdAEzubk1cW8f96+uDy9bJ9f9Hvt2dncafec1/2zeb9P5qSv3Srf7qTcozQTkfcdTemL/QT0ur3zdvey3Xs9Pr2wL07t3quT7uXpX1BuCXbRFav6XXSVwrzpdiuVdlO2SunclO0xtKnbldwod63EM2IM71hl+/NAO0py9Qf6mrUGN0OwAC+kcbTuyelJt+Z+JWKM5sTRnp/eIv0ZwSrd5+wmgwXU06EcFCXeb/kH3BmGDo/4BXnbok1lqJbcaUW/q07ICdMBW29hnQSiCSSBCP1US4Ns/C7BArwBS4xc9gTW6xmR9IvgcYzL5qEcXgqXSTLjhadyf9NV9W3dPeER7kXHq3siGHLo8GSl4QRFGc63Jh22dS7IeWupEdOW4Rg4Dg3VTtppIRjfXI/GYMEseW3nBS7yCIIw4L82AL4rRG4dt/TaGjjxFxFmMxuMTPz5D4O+xIM= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Simple Testset + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-testset-from-file.api.mdx b/docs/docs/reference/api/create-testset-from-file.api.mdx deleted file mode 100644 index 8098546d83..0000000000 --- a/docs/docs/reference/api/create-testset-from-file.api.mdx +++ /dev/null @@ -1,937 +0,0 @@ ---- -id: create-testset-from-file -title: "Create Testset From File" -description: "Create Testset From File" -sidebar_label: "Create Testset From File" -hide_title: true -hide_table_of_contents: true -api: eJylVk1v2kAQ/SvWnB1Mo558KiGNkqZJUKG5IIQWe4BNbO9md5yWIv/3anZtMF9N1JxY7DfPM2/ejL0GEgsL8RhGaMkiWZiEoDQaQVIVNynEkBgUhFPygOncqHw6lxlCCAZfSrR0odIVxGtIVEFYEB/zMiOphaForkx+lgoSfNkmS8zdSRt+Ckm0/M/xxWuglUaIwZKRxQJC4GBBEMNMFsKsIASSxFC44ogqdJFTH3YYjkWZc3H94SOE8G34cM/ltSmCEYdUITTl2axcMJUoVg9ziMf7pFW4uVKUWQZVi7DWMBgyR4uzEDl+lPOeOVqcKdrESM1d+ij1ZYuq9YQcSTR9O6AXxojVu9jvGpqKuT1YzZ4wodpA0mDKTXIeaBGwq6YnzVcx3TacTInugtWqsN5U590u/+woBcMySdDaeZkFP2owhG3nCq0zmTj7R0/Wq3vKtokqfVBdlywIF2haNu07xFbVo2Ju5NjT7oi+b4noMzpsw6bWygn3+fz8UJpHkcnUFR58NUaZ/9clRRIy45MkzO0hIFPJzt132LfRtppsJfAu3Bb7XfkEWfDcLo6thAZ6h9aKhR+pE9ujgTox6kXxhvxcl390jWt1YiuvV/d0GZdevmMPayDXo9HggND3drepfTdAQTONV0blwZXf3jnSUvGG18oytxa0hBgibfBV4q+otqyNSp0pkUIIFs0rGusaVZoMYlgSaRtHUZKpMu2IBRYkOkJGQkvYT6Xn7gZ9hrpVYTEpjaSV4+sNbm5xdY0iRQPxeNIGDNln3jm7sO0+0vIWWUO/a6FX0lIZ+cfbIQTJCSx9FIski7ly4bWedW4XInnGgkvlOn3a3c6nTvdUMXVA0Bvc1OMiEjcuTR4OBuGeXBuh+CWVu1kBQpF/2d7gLLkxuShafP9o594boRaG8DdFOhPSDYXLYl13egx1p2Gznixn6rs9CWHJvojHsF7PhMWfJqsqvvxSouGeTUJ4FUaKGSs45rFcNt1bwzOu3Ppz++PMDQ/Ds5KTOvZ1wKPug3pJgppa8IPVw97YuHfwMBxBCLP6IyRXKccwseMNt0dOsqr+ArYKFDQ= -sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Create Testset From File - - - - - -
- -

Body

- required -
-
-
    - - - -
    - - testset_slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - testset_name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - testset_description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - testset_metadata - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • -
    string
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/create-testset-revision.api.mdx b/docs/docs/reference/api/create-testset-revision.api.mdx new file mode 100644 index 0000000000..1b24828bb4 --- /dev/null +++ b/docs/docs/reference/api/create-testset-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-testset-revision +title: "Create Testset Revision" +description: "Create Testset Revision" +sidebar_label: "Create Testset Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWl9v2zYQ/yrGPW2AHKdJ6m56Wtq0iNd2CRI3L4YRnCXKZkdLKkml9Qx/9+FISrYs21FcBcgG5yFxpLvf8Y73j0fPQeNYgT+APlNaMa1g6EGSMomaJ3EvBB8CyVCze20J7iV74IonMXgg2beMKf02CWfgzyFIYs1iTR8xTQUPDEbnq0pieqaCCZsifUolSdCcKfqvAryV4gElx1jf89DIiGdXEfiDOehZysAHpSWPx+BBlMgpavAhy3gIC6+giDMhYDH0QHMt6IHTunVnkVs9Iofm5ZTxc32a18Pio9Q8wqBJAecO0kmIhHGbVezylk1QGY8JUDG1cRGjJBEM451SL1G1+gXKwrOwEoOfxbQQC9oLS5aMvrJAQ8WiH4yiVbyFB1OmsbwKDENOLo/iumSMbRuwAstjzcZMliVNR+Unq+ptlgUBl0EmUP7yIRPiT5XE7V6cZvpXWNeUMLhm03pMKCXOdpq1zAoVy+7i/UyWJI6KU70ki/6VfOJKP2bTbTqucz/NQn3rhRDjlNXUv7oC4l14EDIVSJ5ql2r3gbpYgVh4oEQ23hfqlnhrBOKNqw7vTDXayEHliEsWUjmrFJVqsiwj3thaBgtCXiJpmTHzQKVJ7FLZyfEx/SnZEW6zIGBKRZlo3Thi8PYtiUGSWaY1X17q8M5Q0GZGmAkN/vFKXVmtpNsS9KGmvrSaipmeJLIxcItG8U7xUg+VSNuamzyxI/pNAFIBVArHe+ejz4790E78l9qJq0zv0U9UuJ7QUFje/3lHscusNVqKfWz0snsKe+oM71E3mrtssQ9b58ZYWRo+h5AvFtYJCZlgzyDkwsI6Ibm5RrMGC1RurLczV6JyezUqJbdWISU3WKNScnMVUh6YrPZI9d31zrE30v560Jyizoa4Xk2q7R+VwXserqU/l8QfX0L9VJ7X3FYvVHmvtqGSF5I3d6rP1dk1i31b4B4y2CGDPWsGazpnbOjCa3dLG1rlPPsNn9SV5B3yoXWr0bodzgzPcGaols6DUfc26gUZ87GDMfUCezUUtc7c+ZzPLqV69K6P8HPcxVhwYWaMZycn1SniHQoemhlh672Uidx/hBgyjVzQpy1tlUiC0tunOPNwfbOWSn9K7AJNelLjTY3khgGQJdlOaozR6tPbxya/pJcV7ehKI8PcvNa629W4sObbtb2X/f51BdDubXlTbRPSyrvOm+UF6pTpSUJ3rGmiCDpFPQEfOilNcNn3jmt9VSef6KoOUMMq6fBi9iqTAnyYaJ0qv9MJRJKFRzhmscYj5B1MuYkbxYJMcj0zLOfXvY9sdskwZBL8wXCV4Ja8yfpHmazYGkz5R0aWsmMDN2fk/9hN94CTxhPLRaYgP71Z3hO//4HTVLBt976bptJwGuFvr6PuWfv1m1dv2mevuyft0WkUtE+C37unUbeLEXahPGGuy7N6tqjLU5oE12Uqequ1SSbdL5TnkO7GwZX2ZSNUTGqW0VF2s+KxPY8W8UudYhwlxrz5cNh4SOv8ugcrB2E4Pnp1dFzBLRFTNsLAZKPcAcxr8NZcsXBC8IBNTSoCzXD6x/IFrYwcf4rxCt72aFkbMjmH1OyH7qQCuUk5ZhFzF0gDcIG03GllsoULJvCAssOEgs8fwHw+QsW+SLFY0ONvGZMUMUPnWiMy3YBS3ySPnTn8zWbmNsbk6LZJUEQuMhsra/macqnlOA8CluqdtMOV/HB9ddsHD0bumxbTJCQeiaQZ/fYB6Gsb2mjlz+2zOQiMx5kZ0YPFpJ9/AYPlmTg= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Testset Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-testset-variant.api.mdx b/docs/docs/reference/api/create-testset-variant.api.mdx new file mode 100644 index 0000000000..eb543c68de --- /dev/null +++ b/docs/docs/reference/api/create-testset-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-testset-variant +title: "Create Testset Variant" +description: "Create Testset Variant" +sidebar_label: "Create Testset Variant" +hide_title: true +hide_table_of_contents: true +api: eJztWG1v20YM/isGP22AHOfV7fRpbtMiWbslSNx8MYyAlij7utNL705ZPUP/veCdJFty7DpuOhRD88GxT+TD40MeSd0CDE41+CMYkjaajIaxB2lGCo1Ik8sQfAgUoaF74wTuH1AJTAx4oOhTTtq8SsM5+AsI0sRQYvgrZpkUgYXofdRpwms6mFGM/C1TbMAI0vyrjbtRQIQWOplfReCPFmDmGYEP2iiRTMGDKFUxGvAhz0UIhVdLJLmUUIw9MMJIXih97VyyGKAyIsLgOQ0MSsjSQiQtyavYTRdnqC2/AWrSj25ikqaSMNlq9QJ1Z1ijFJ6DVRh8K6aDKAqvEksnHyngFGgx+tY6uo5XeBCTweYuMAwFZwjK6wYZmwKwAisSQ1NSTUvxpLmy6t7jtiAQKsglql/e5lL+odOke5lkufkV2p4yhjAU76aESuF8K61NVVhjdpvun8wka6wl1Y/E6F/pe6HN1zjd5GNb+2kMDV0WQoIx7ej/+g5Yt/AgJB0okbGr+0Kdr0AUHmiZT/eFumXdHQ7inSumr23pflSBi7dQFHLtb5fg9VLZwLtxdR8Kxl3iGJWTXdBZmpR17PjwiP81SITbPAhI6yiXnZtSGLx920eQ5k6plchLF15bCY5khLk04B8yHetdZ1Nx/tl/fvaf/6z/XOVmjwa0pvWEDuR0/+ctaButO/SgfTj6sZuQG+rDezQ71pwQDXWNsPvZbMU1iLAzsGTlWfg9jHxwsKWRkCR9ByPnDrY0UtE1mT9jla7IejUv63TF17NaqdiqrVSEPauViq7ayrdPOR483/Z4TztPTY81kJ2V64mmsOPR6fHx+gB0h1KEdrzpvFEqVftPPyEZFJK/lc2hLSDToPH0KXV4XLT6ydLn96nbIEcp1tOV+asOzrJXaI1TWhbPzaKWjM6Qn35tZGW/nOlSbiXYS3odu5vdOHf0bYvuxXB4vQboYtsMqjvNnWq2u6uvSWIys5QvUrJU8+8MzQx86GWKHgT90yvnS90rZ1HdAw80qQdS2kYqVxJ8mBmTab/XC2Sahwc4pcTgAYoeZsKmuqYgV8LMrcrg+vIdzS8IQ1Lgj8arArecSy47mmJ1YDAT74h5cr0LBrmZpUr860LugWB/Z06LieAsvVleBr35jHEmacPlzuo4DScRvjyL+qfdsxdHL7qnZ/3j7uQkCrrHwW/9k6jfxwj70BqRd1Wqp97WdMvvKc3ZtHxzKUfE5VxTd+9lqjZjXi+7alcfJq5dSZRad6uR3AasM7i+BA84tA7h8ODo4HANtyHMpQEDy10VD/sYvFZm1DkBHlBs6wIYwvj35QPeGadhjMkK3sbUbc0dZXoY+mx6mURhj7/dw6LM6hGUWQ31K5Zmf8vMBg/4oM74IPgjWCwmqOmDkkXBy59yUpy+41JhwsSNuArNqkRewN80t+90tlx2ba1gcZm7xG2VTi5rTmMQBJSZrbLjlbN6fXU7BA8m5d1mnIaso5Ad408fgO9JWdvmmF1bgMRkmnO188Fh8t8XEuVTzA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Testset Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-testset.api.mdx b/docs/docs/reference/api/create-testset.api.mdx index c8c67e899d..65bf68dbb7 100644 --- a/docs/docs/reference/api/create-testset.api.mdx +++ b/docs/docs/reference/api/create-testset.api.mdx @@ -1,351 +1,71 @@ --- id: create-testset title: "Create Testset" -description: "Create a testset with given name, save the testset to Postgres." +description: "Create Testset" sidebar_label: "Create Testset" hide_title: true hide_table_of_contents: true -api: eJzdVsFu2zgQ/RViTi2g2mmwJ53qpgUadHdrxO5eHKOYiBOJrUSp5Mipa+jfF0PKkuxu0kWP9UUy+eZx5vFxqAMw5h7SDazJsyf2sE1Ak8+cadjUFlK4coRMChVHiHowXKjc7MgqixUlyuOOFBc0ILhWy9pz7sjPbu2tXbjcp7dW0OqZZ/c8DZGqvh/ClCee3dojw7M3JuONZ5coz277PB1ASiNjYL0hbp0VYs8uVeuClNHnnCoL6esZJFA35FCqutaQQpz41K8ICTj62pLn17XeQ3qArLZMluUVm6Y0WQidf/aiygF8VlCF8tY4IWZDXv5JYfLkfUOQgmdnbA4JsOFSBv6W+S6BzO+kEoEapirEotZGFsFyOeFk11Jy5KvvPlPGQtAPoHO4n/Bf9bxddx4TKzSOtGx4yHNMYzvJkB56N0AnLGOUZBIGfFNbH+u9vLiQx6lnVm2Wkff3baluerCs9WuKGv2UntdaxPjfqkc3fEJ+Ch0tr9WCfyqj0ZAMWo7kEzlFyxXxylRNSYMaXZD2j8vLH8X7B0ujgzTqrXO1+3XlNDGa8sRip4Cyzk4NaPcf7iHdnEvTJcOIsUw5Oei2j3vwzzomKIpXPn9K6r/Ie8xpNPTj0CCGWsvsz3ZF6opL97jJfozyRnUfL+NNlO+/FjtC3q3Xyx8I495WxEUtjaapvYQ0yAWkMOdjp03Ak9uR80Hw1pWQQsHc+HQ+z8q61TPMyTLO0MyxMXDemBdhVl0JFLqt0GWtM7wPfIvl9XvavyPU5CDdbKeAlfglOuAUNoiPjXlP+6O1U1i0XNTOfI/bmoCRBIoYJcWKE2/G/vn2G4rbx3447ubQ9zaHYCFj7+uwcK9oX9VrzL6QlcMlCsWCL2YvZxePydAHqMXyuj8wmPEkgQiD5EzoQWJIgKpwWoAJq1fjhNQne1ihnfD11+J6uD5OsppcH7/RBdqbg+kbz5sSTTjgQc9Db+8N8ORDohDnpxs4HO7Q00dXdp0Mf23JiUm3CezQGbyTjd+IGYqjXQ/whfaiXVTxRTj1Ai/baM+zJigNKkYssowafhK7nRzO5YfVGhK46y/9qtYS4/BBOgo+QArhw0Giw3kJYwco0eat9K0UIqf8/gUg1jPu +api: eJztWEtPI0cQ/itWnRKpwQTlNKd4YVeQ3QQE3lwshMozZbs3PY/tB1nHmv8eVfd4ntiAl5U2UTiA6a5H11fVX5drAxaXBqIZTMlYQ9bAnYC8II1W5tllAhHEmtDSvQ0CIKBAjSlZ0qy4gQxTggiq/XuZgACZQQSfHek1CND02UlNCUQLVIYEmHhFKUK0AczWVwtvxa4LtmKsltkSBCxynaKFCJyTCZSilsicUlDeCbDSKl6oTj66TKDkdXZHxr7JkzW7aLxb7UhAnGeWMuu9F4WSsY90/MnkGa81Zys042AlGf5vG/5gY6E8gu1YugIrNB68GA2ZR4Oe57kizPZGeYFmNK2tlCKY1Rh/rc1goizFViyff6KY89wD+J0PdGivFJCS7aUTk0QyrqiuO2DsSnjLrMwsLUl3PaXz7ko7vMd9QSx17BTqH945pX41eXZ0mRXO/gj9SNmGtJQ+Twm1xvVeWLuqMEB2n+5vjCRrDIrqe0L09/yDNPYpTHfF2Nd+GULTUIUV7Twr/uEJWLcUkJCJtSw41ENNnbdMlAKMcstDTd2y7jMu4pkn5EclG7Kb1Yw1pMpg4CbwJJQlW9JkijyrGOr05IT/dOCBWxfHZMzCqdFNJQwH02mcu6DUK9HmrGdegnO0QKcsRCccb8PCu+j2fz7+1/DxlbMHEPJA6wWMHHT/45S8D9ZncPIhGH3fpBw62OQe7T6DrZ4zQUtHVvrz7PYSaDQZTTxYrki+hZOPwWzlJCFF38DJeTBbOdnCNV9zM/9KXfoWrDdr36g3eL2qly1atZctYK/qZQtX7eXrX30Br3c8/0XoyefjsZfjaa365Q9dw8+np8NG4Q9UMvFtwOit1rk+vEtIyKJU/Kl6DvoCKo87uy9h3ruy94I0wX7IwwE5L6lZtvqUOh3N62AMLqmhy92iHozRlHef6t04ruC6kmult4E3oLs7jPMA3760Xkyn1wODIbfdpIb7O5rWU4CU7Crn+UCRmzAVsCuIYFxoepD017hq1cwYBBjSD9txgdMKIlhZW5hoPI5V7pJjXFJm8RjlGAvpa9lQ7LS0a68yub58T+sLwoQ0RLO7tsAtl04ohq5YnQcs5HtiWKpBxcTZVa7l3yHD1axiFbQ4bi7Km2aG8PYLpoWi3gyg7jJ73WSYMbR7QV5pWrKmj6hfy6ZQuojXy4Fd6lJmrsgWuT9QlcWJx280ub4EAYx0sHBy/NPxycBuR5gvJsY+pC08fhtEL1F1ikAApf5WgiVMf2k2+GRcDClmLXuDwum971WWLH2x40Kh9JfO+95UNTWDqqag/gJgQADfiRXXXjSDzWaOhj5qVZa8HCZPXDqJNDhXrdnTn7TuD6seUDk+gi+8B9SSNXydiW1dsKmgeRaY7Mhf40Z3wGrMOEFjEsdU2L2yd63rdH11OwUB82p8leYJ62jk6Pl3BMATOtb2BejXNqAwWzomogiCTf75B1Tz0GM= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + - + + + -Create a testset with given name, save the testset to Postgres. -Args: -name (str): name of the test set. -testset (Dict[str, str]): test set data. -Returns: -str: The id of the test set created. +Create Testset +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-trace.api.mdx b/docs/docs/reference/api/create-trace.api.mdx new file mode 100644 index 0000000000..9e7b4525ae --- /dev/null +++ b/docs/docs/reference/api/create-trace.api.mdx @@ -0,0 +1,71 @@ +--- +id: create-trace +title: "Create Trace" +description: "Create Trace" +sidebar_label: "Create Trace" +hide_title: true +hide_table_of_contents: true +api: eJztXG1z2jgQ/iuMPl1nTEjSvLR8Opq4Ey4tMED64RiGEbYAFVv2yXJSjvF/v1nJNrIhvDXtpR31Q17ErlbafXZXftR4iQSeRqg+QH2OHcqmaGihICQcCxqwpovqyOEECzISHDsEWYiTf2ISiQ+Bu0D1JXICJggT8CMOQ486UrH2NQoYjEXOjPgYfgo5TCsoieR4iJn8AbNFe4LqgyWigvjRuqQy746wKIqLRUhQHUWCw6otNAm4DzLIxYJUBfUJSqxcjMWeh5KhhQQVHgzcqGkrDYESC8Wh+yOMPKhpUyMu8cgPMHKrpk2NZO4aL0bU3dNOHFN3L2d9WFSaru6vF7WSeSu3kjnsRa1k7sqtSGCnBsrTZkqQHCSVB+juEO+FmKXSIeaEiR3r37bejpygsFYlus0dhMU+JDVlj4HKSGQhzFggsl9iNmfBE0PD0ib7MNP6erJ9728aT6EsWMiZYQoGnwI+n3jBE7gJR3P4FgQeKPhj4rpK+Z+Y8AWykOf5oBr4oUfSBTszLGT54ZjNN28A3L5j/XPKdiApW3+v02iN7put29FDq9exb5ofm/YtsrTxZqtvd1uNT4XBnt39YncLQzefmnarXxjqdNu3DzdluXar9/DZ7upbaveJB9u6h3U/vy2G/a1h2QYwCdYWllUGRQJzMZI15ztqFGWCTAnfbhYsVfpKExHm/hSrNnNzm5HAIo5GTuDuCelev9F/6I1u2rc2gMKWMdXG2velAbvbba+HU5q9AaubA6qW5ZMowtPjoypnqXxOZ0kshIXgdBwLUuq72HUp5Bj2OoXGu4fVjR73x8WRcRB4BDM5tNkWcih3Yg/zPz7GnvdXFLBqk4WxeANFQk0SjL8SR8g50nPCHkqYc7zY6qWiqqywa/ae022s/JlAXZoQTphT9t0zp5pHwiOqjkjHRPdLqg5w8eLp0SAB3cRCL9ddVZsyUPtxUFtTLFaXboZDzcLuxXVX6E0s5FE23w/Gh52FDj1pGRj9VBjBkx3lxIVWlwVWC1qpjX2ibH4Qxj5JVCUWmuFotmeZNIXpl0aUjpc7HM0OwsudggkcDr85JBRr7dIE7big2bk7wbePhIn9kjF7yHiudGfPEHAujwT2wxc5zOsPqPnEJpX/z+YggaDHudQabMDUQbluKxTuMpz3ohULUzL90cMCThwHWe9JMjI7oOyJp5185m4gfvcUK9BkPMEbtAlS2qclrwwPwkjuKEPKGlLWkLKGlDWkrCFlDSlrSNlXeYo1pKzhPl4H92FIWQMjQ8qawvQqEGVI2dcYNEPKGlT8rqRsSshuPbAY5tMwn4b5NMynYT4N82mYT8N8mqOiYT4NwfD6oWaYTwMjw3yawvQrIMown68xaIb5NKj4zZnPl6Aed9QzKdXnhBzm5r76H6+7Zk9fDtBVf/uPkiTRPSF4TORAFAYsUvg+Pz2Hby6JHE7Taol6seOQKJrEXqWbCkte5ahXCDhBrJRK6aLxhFICiLsJjj2B6qfmNHlcwWjH4oiKsaZ1QMlQur/ggXJHJkmpHPyJzKSL8w258gV71JWZULE5D/jxieISgaknz6+bge4FTuHTQ6A2LLtIc0jG9SYW8qPptsTQeKGM0n1OVDqjonjVHUGGfSnTqZxOWeTuVd59fhu3yn3bAnvX73fWJlSxLQZV3VxU+um7VHwiZgG8YyUMIpgvxGKG6qgWcvJIyVNNqLJbU3+XUIM+QzhwNTI4MfdQHc2ECKN6reZ4QeyeSJobn2BawyGV8IyIE3MqFlKl0Wnek8UdwS7hqD4Y6gI9gI8CRFEsjwUO6T0B16ijF2rEYhZw+m9G4lPY4kxpwd4BmN3V62LsbxgIdO3Gb1B8vQs0jYvq6XX1/H3/7LJ+eVY/f3dyen32NypeiW2T02+1tsmVLqbQ2wl+dzm5uqheXp9dVy8ur86r47cTp3ruvL96O7m6whN8hdZumvZVK10d7au26imrPMi70mpIu9TR8kW7mylevGg3J/m1iHYb8exVg0bta8vRGPpt/l4x6tukChz4RoK7TEevVlJoqCUKdKBRnNraJVe5+v2Q0BStQR6lB4vBclOINkVyfYqMihgsv3Mt+iOq9lQ1yJ6a9LKaPx1tC0zZhGx82V9LQa5TNglkqch6sSxElUaniSzN96cnZyenqFwWC8LQ5bAjVo946ceQfYWKl9c6eWsnWxwSBPt/rj6AlUFt9THT5itV4cJa8mInyDdRCz24LUxSy8u0QA9QWqDTwGohjpCFoM3MoKDXB2i5HOOIPHAvSWBYXSjWB0MLPWJO8Rh8NYAeOstq8hLNyUIeXmWzr8pOB+JerGpwqfFDU1YaDQeCvlV2qPWcTrsHCTVOX+Tlq5zjGHYFX+sIwavAQFs2BTm2RB5m01ilnpoT/v0Hj5fYXA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Create Trace + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/create-workflow-revision.api.mdx b/docs/docs/reference/api/create-workflow-revision.api.mdx index 9dad3b974b..9a50d1d154 100644 --- a/docs/docs/reference/api/create-workflow-revision.api.mdx +++ b/docs/docs/reference/api/create-workflow-revision.api.mdx @@ -5,3436 +5,67 @@ description: "Create Workflow Revision" sidebar_label: "Create Workflow Revision" hide_title: true hide_table_of_contents: true -api: eJztWd9v2zYQ/leMe9oAOXac2F31NKdp0azrGiRpBswwDFqibDaUqJJUUs/Q/z4cSf204zqpC+wheUgk6u6748cj9Z2yBk0WCvwJ/C3kXcTFg4KpByKlkmgmkosQfAgkJZrOHpzFTNJ7pphIwANJv2ZU6TMRrsBfm1smaQi+lhn1IBCJponGRyRNOQsMaO+LEgmOqWBJY4JXqcSQmlFlYVyAjSck00shzVWy+hSBP1mDXqUUfFBasmQBHkRCxkSDD1nGQsi90iLJOId86oFmmuPA2KLlHoRE0z1R0bSrWUx3Qp8jYO5BTJUii53Yu2A+Ovfcg4TEz4b5i5h0IaQqkCzVjtvnQJ3XIHLP1UY4I/qg9L2xsJ2xxiBZGv6MIJ8trAsSUk5/QpBzC+uCFHTNVzMWHqqMC7LOVp2LsM7XQaMUbJVRCsIOGqWgq4xyT6X6gXK9de65B4pni+fCXKNv7sHhJmpnF3Fz/G6BFPMvNNBQORQH9DvjsgltDhtNQqJJE5CEIcPtSvhl8yz9Pg8s0XRBZTNaPG+OzIXglCRmaHssCJgMMk7kL+8yzv9QIuleJGmmf8XpNaaLGEzTeD8nIiVZ7WS56YqMb8Z7/Ox1bNr3A3naMp1bzy2rRKRmEQn0AXfN2EG6PVNE2C/jwnl7tvdEMpIcMtlbi1jsb3v3NHIdxLaMN5Z40/uqkBfbjCsJM6l0yPRxkCurgCDPEU1SlYpE2Q026PfxT+OlC9dZEFCloox3rpwxPFsoBSKzTq39Wns3GAuTWaWp9ie6omovpuvk2dx2Muemb6k7HQw22bolnIWGi85bKYV8PlUh1YRxvHLnS9uAi6Dx9CnH4zRvnUnVrP8UNkEjBtWitljl1tki9qzJ46aGjM4NPv3eOuC8bGhn19iKBb2W3cencW7p27W93t/cXG4A2rVtLqrVK52iHjpXVT8RU70U2HOkQiF2SvQSfOilWL70oTcnivaKRkT1iqJWPfBAUYliwSxZJjn4sNQ6VX6vF3CRhUdkQRNNjgjrkZRBO6mxedp5g6bmuFI0yCTTK4M3vrz4QFfvKQmpBH8yrRtcY8XZGmqalctHUvaBIptWw7u+g/1rC8MDhgksrRfShbV8VXVWb7+ROOW03RkVvRCcROS3YTQ67Q5fHb/qng5Hg+78JAq6g+D16CQajUhERlD0ODDoD4bd/rB7PLw5PvH7x/7w9Kh/+vofqDUrVcG5jMv7JmnlcL0N2BWhruR32dXF+C67lp7el4qWQN6bwabi3detlLAVX1aLVvdPgSs1I1OzIFNaxEW7zdSM3hOeEY11UY4ts5gk9r4pEmvCBjcPC6gdDEQSsUVmPwHgUFu17JtqXYi8VNKPV9IhyqZVAi2Jt3dNV7LtZWH/Hwt7kPPgZZu/VEN5NBjtxpJIGC1TtItWKJ2R4I4mYeP11j86Puo/pqycQ2d8eeFUfLNirBly3dBupWoDD2hsJDxoSuLfqweYJepFM48Sb4fKbH0GdSpN02+6l3LCjFY3WaydAJ2AE6DgAUpQ8KAUoVD1VniN8nqJ4tWfwHqNxp8lz3Mc/ppRiXJy6o7POfI5wd5hWQjLNdzRlWnbTJPTNQofzXlmhWSr4cFmxHqMg4CmeqfttKavLz9d3+Bk3If7WIToIwnOEH/7APhvAG1mhcITx9bASbLIrES0mPjzH6ul3uU= +api: eJztWutP20gQ/1ei+XQnOYTy6p0/HQUquD5AQHsfoght7HWy7drr7gOai/y/n2Z37dgxSZMQJHQtHyDYM7/xvGfHmYImIwVhH/4R8mvCxYOCQQAip5JoJrKLGEKIJCWa3j14ijtJ75liIoMAJP1mqNJvRDyBcAqRyDTNNH4kec5ZZEF6X5TI8JqKxjQl+CmXKEIzqvC/NvJiknsiGcn0HYutlGxymUDYn4Ke5BRCUFqybAQBJEKmREMIxrAYiqCiyAznUAwC0ExzvFBq3vnsoDsXSA/bF9TErzR6Bk2cBCI1S0i0TRWOPaSXkHAbPXXsptuYuouM0iJ99AGGQnBKsqUSL1TnxCEUAcLRe8IN0UI+BfGsAnGgY5OS7CmA5xagKIKSSAy/0EhD2zdvrcnacEUAKdWk+RAkjhlmEOFXDbMucmUNlmWajqhsSkqHzSt17R6XBRGTkeFE/vbWcP63Eln3IsuN/h3mVUUMpmm6GhORkkyWWrXJCi3TLuP9gJZEjlZ4viSLfhTvmdI/sukiHee517PQrYtCyEhKV9S//QTIWwQQUxVJlmtfuDeBOq1BFAEobkabQt0g7yqZeO2bzYltb4+yYHtjksbYINtN6pHK28S8dt0RCsSeYWlpqL2gcpEpF397u7v4p2FKuDFRRJVKDO9ce2IINm2ykTCOaS6cZ0qcWAr0Z0IM1xDu1ttUvTcvKve/uvRL7NLE6PGCfrkJuEPDvMe0WQ0VSbua2XqxpArYPMRGqBQZbVyXPnj2XwPKzzmgXBq9wYTS4lpjRHG8//MZZZlZVxhSNrHRy55S3Lk4viN6q1XQzQ5x59gay+Txcwj55GC9kJhy+gxCTh2sF1KaazjZYqsrjfVm4ptdaa+tSimtVUkpDbZVKaW5Kin3VLYnrtXD9bNn38pAHcD2FPU2JPPdpNmat6e9kWxTlE+SOQS+OQJHhDElMZVrV/rnMsnLC4glo8k1TaikWdSoNuWDDtbqKOfeDWgCe1Ba1SMvqCe/yEFnDR/ceMPjREnynGWrDkDzJl5n2ioFWcdjE984+h13EUBOJEmp3iCrf/JYWcx8NTMpOorKexbRVayLO5W1YtBDF3afkrCRcS88nkPWSUPAOqupU2LPCK2j2BoQT2Sv9k6FXWId7O2111SfCWexVa5zJqWQm++oYqoJs53Wh+Q8ARdR4+46KVVrFC6KZ1q/FxEpp/pUjdq15tHlgiNZTGqN0bnFuz9aLqJeTrSnayykSvM66y5W49SZb5l/z29vr1qAzrdNp7rBulMtq65nL/1SqscCXwzmQiF2TvQYQujluCKkD71yZ6Z65c5Q9cBls62V/ambp2Csda7CXi/iwsQ7ZEQzTXYI65Gc2QRSNDKS6YllOb66eEcnrn9D2B/UCWxHcRHSJKucQ3L2jqKt3FHSb7HYv87tATDU2c1o1n4Yqdezl5tn30mac7rwZeWji0/YT8gfh8nRQffw9avX3YPDo73ucD+JunvRn0f7ydERScgRNHeYq/I09pKrMjVWjasyVSu02qrMVcDmsqu65ndVfsvtd0azRUd1nJ8lTDPyqstuRq1SGifOLBHWqeUu0oZM5/jqAmqnJdjdebWz28JtEGOBIpEtUGVE2NsQzMVmFZUQAE1tdQJNSfrX7AY+GaaCX9F5vCUJNLeK8CGq6XfdyzlhWe3E4XKrDz63ap5XtoT4/IIAsGSMMSHDPkynQ6LoJ8mLAi9/M1RiEg18rA3ReP1BdSqx+fWVTlyvwsLdtVULyblx6TNXxLHAOo7jKKK5Xko7qNWMq8ubWwhg6L8xkIoYeSRB1fB3CIDfP9BWq3Dqrk2Bk2xk7E4YHCb+/AfPFTi4 sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Create Workflow Revision - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - - revision - object - - required - - -
    - -
    - - author - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - revision - object - -
    -
    - anyOf - - - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-workflow-variant.api.mdx b/docs/docs/reference/api/create-workflow-variant.api.mdx index eab2a6a319..9f87384c7b 100644 --- a/docs/docs/reference/api/create-workflow-variant.api.mdx +++ b/docs/docs/reference/api/create-workflow-variant.api.mdx @@ -5,1660 +5,67 @@ description: "Create Workflow Variant" sidebar_label: "Create Workflow Variant" hide_title: true hide_table_of_contents: true -api: eJztWG1v2zYQ/ivGfdoAOXacOO30aU7TolnXNUjSDJhhGLR0stlSosqXpJ6h/z4cKcmSHXtOkH4Zlg+ORN7rw+NzZ6/AsLmGcAx/SvU1EfJBwyQAmaNihsvsMoYQIoXM4PShlJjeM8VZZiAAhd8sanMu4yWEK/fKFcYQGmUxgEhmBjNDWyzPBY+czd4XLTNa09ECU0ZPuSKPhqOmt8r+1kbGUnTGsuWnBMLxCswyRwhBG8WzORRBvZJZIaCYBGC4EbTwB+kWAcSoI8VzCuS5pi4aJoqghCeeMrPPYACJVCnJQMwMdg138ez28sab7YwMObF5/COcfPZmSycxCvwBTi682dJJBddsOeXxgX6s5fFBYJ0vO5dxE68X9VKhVXupAHtRLxVctRct7Py5tXpDukUALxeejykRjjceMSlnXzAicqgUKmZ551S2TRcBpGhYzAxrG2RxzOmSMXHVooEDcOCZwTmqtrd01l6ZSSmQZW7pcV8QcRVZwdRP76wQv2mZdS+z3JqfKb1WumSDG0wPU2JKseVelNuqhPi2v126Hys0iwCYMjxhkXnB+hyVJsvqrDw8rRgqI4/Vw1ay2+p3ZYt4THbdhcZ1K5nsNHHtWxgUBdlSqHOZaV9ng36f/rU6BtzYKEKtEys616UwPLvTRdJ6pY2ybRCbkyiCZlM8HOUapoNAbgLnI9sHW5m7x+10MNiG6o4JHjsgOm+Vkur5OMVoGBf0VN6xTQEho9buUyhiUmzcy3XSv0sfIB1AqueNk6rvzfrSac3muL6pu0UdGJ1b2v23Y6C8vOtSrnEia3g9urvTuPDw7btY729vr7YM+rNtH6rvtJ2qHDp39TCYollImhdzqek9Z2YBIfRyhfccH3ozprFXDZG6Vxa07kEAGtU9Ku0OzCoBISyMyXXY60VC2viIzTEz7IjxHss5bIY0crudNyTqmEpjZBU3S2dvdHX5AZfvkcWoIBxPmgI3VG++gtpi9eGxnH9AwtLPnjCyZiEV/9uXRQCcAlh4LQKLKvl6PRW//c7SXODGVFvaqgujnU693BwsYdAfDLv9Yfd4eHt8EvaPw+HpUf/09V/Qng33yTXHu31yGxManCTs9TA5O+0OXx2/6p4Ozwbd2UkSdQfRL2cnydkZS9gZbI1ch6ptzFCHqvmhaA3WU3Tr4YXraWS1kWn1jYXrKd4zYZmRqrG2sCnL/Ht7WtnssIdG0Gya/1fDf6YaHF/yLJGOQap5ydPTOYu+YhZDAER1/nD7R8dH/V18Vip0RleXZedsF4wXI6hbjFlzJQSAqWubYJClv643KEoiaZdGbW83s298Zy6p0eB308sF4649uiBWJemPoSR9CIBoHwKoiR/qWYYeqaEtqF+EY1itSPazEkVBy98sKqLwSakwIzTH1K0XFZmv4Csu3ZTkxoqu66kkLqwn740Rg9q/1xhFEeZmr+yk0dKuPt3cUi7lDx2pjElHMUqQPkMA+tWEtF0pubUVCJbNLU0FIXib9PcPcS3I6A== +api: eJztWG1v20YM/isGP22AHKd566ZPc5MU8douQZJmHwwjOEuUfe1Jp95LUs/Qfx94J8mW3+o4KdANzQfHPpEPjw95JHVTMGykIezD31J9ToR81DAIQOaomOEy68UQQqSQGbx/LCXuH5jiLDMQgMIvFrV5I+MJhFOIZGYwM/SV5bngkcPofNIyozUdjTFl9C1XZMFw1PRrCXi9BI8deDa5TCDsT8FMcoQQtFE8G0EAiVQpMxCCtTyGIqglMisEFIMADDeCFip/Wz2SA6YMT1hkXtBCt4QsLSTCMT2P3XSS6/vIaiPTlRsYSimQZRst9nTr1CMUAcHhAxOWGameg3heg3jQsU1Z9hzACwdQFEElJIefMKJ0WozNW0fZMlwRQIqGNTfB4phTujFx1aB1XSjnYHlmcISqaSkdNlfmvVttCyKuIiuY+uWtFeJPLbN2L8ut+RUWXSUMbjDdTokpxSYbWW2qwhK1m3Q/EJOksZSePxKjf8n3XJtvcbrOx0XtpzF067MQMpbilv4v74B0iwBi1JHiObm6K9TZHEQRgBZ2tCvUDelucxLvfGU+dZ1gpQa1Aq4wpl6yVNBX1N0G4rXvI1AQ8gzJKItuQecy0z75Dvb36V+DR7ixUYRaJ1a0rkthCHZtR5G0Xmkhl2c+nDoJCmbCrDAQ7hfByi62rtT/7Gc/+9l/sp9dWrNDQ1vSekJH87r/85a2idYtetouHP3YTc2/csT3zGxZvWJmsG242896K77bxK2uI8vm8fcw8tHDlkZiFPgdjJx52NJIRddw8oL1viLrzaSs+BVfL2qlYqu2UhH2olYqumorz5+aAni57dGetp/CVnWQ7bXrAalw09bRwcHyPHXHBI/dtNQ6V0qq3YepGA3jwo0Dvj0sCggZNZ4+pRIPioWOMnP6vfQbpDilejQ3ztXhmXULrdkIZ+Vzvagjo3VLT781A5Nf3nQpNxfuGb2e3fVunHn6NoX34vb2agnQx7YZVH+eW/WgeFdf46RoxpJuenKp6XfOzBhC6OQKHzg+dqpxVXfK2VZ3IACN6gGVdrGySkAIY2NyHXY6kZA23mMjzAzbY7zDcu7SXWNkFTcTp9K96r3DyQWyGBWE/cG8wA1lk8+PplgdGpbzd0hM+f4FXWvGUvF/fNAD4OTx2GsRFZSn17PbqvOvLM0Frrt9aszncJiw346Tk6P28etXr9tHxycH7eFhErUPot9PDpOTE5awE1gYubdVqqfouWmZXnsW5916rRxXy1ejcmyczTp1R58lbzML6mVfAevjRfUsS6SjuBr4XQBb3aseBECh9gj7e6/29pdwG8JULFjkqKzi4x5DsJApdY5AAJi6SgEGWfrH7AHtjPKynNJLvPXJvDCMlPli8Kvp5IJxVxHcJqZlnvehzHOYvcRp8rjMdQiADu+YzkbYh+l0yDR+VKIoaPmLRUUJPSgVhkRdnyrTuErtKXzGiXttdCW07eoHiQvrU3mhnFKp8xrdKMLcbJQdzB3fq8ubWwhgWF7HpjImHcXIM/oMAehul7Rdzrm1KQiWjSxVwBA8Jv39C+Qhkw8= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Create Workflow Variant - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - - variant - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-workflow.api.mdx b/docs/docs/reference/api/create-workflow.api.mdx index c9cc6b8823..63c8b5e2b2 100644 --- a/docs/docs/reference/api/create-workflow.api.mdx +++ b/docs/docs/reference/api/create-workflow.api.mdx @@ -5,877 +5,67 @@ description: "Create Workflow" sidebar_label: "Create Workflow" hide_title: true hide_table_of_contents: true -api: eJy1V21v2kgQ/itoPl0lEwgJ5OpPR5pWzfV6jZL0Kh1CaLHHsM3a6+5LUg75v59m19gYJ5RGKV+wd2ee2X3m1WswbKEhnMAXqe4SIR80TAOQOSpmuMwuYwghUsgMzh5KCQhA4TeL2pzLeAXh2r1yhTGERlkMIJKZwczQFstzwSOH1fuqZUZrOlpiyugpV2TJcNT0Vhlo7WQsRYeWrT4lEE7WYFY5QgjaKJ4toAiqlcwKAcU0AMONoIW/SbcIIEYdKZ7TSZ4LdbEFUQQlL/GMmX2AASRSpSQDMTPYNdyd52krbzxsZ2zIiM3jX2Hks4ctjcQo8BcYufCwpZENXfPVjMcH2rGWxweRdb7qXMbbfL2olQ1blZUNYS9qZUNXZUULu3hurN6QbhHAyx3PnykRrmA8AinnXzEyUCtsSso7p9KGLgJI0bCYGdYEZHHMKcmYuGqUgQN44JnBBaqmtXTeXJlLKZBlbulxWxBxFVnB1G/vrBB/apl1L7Pcmld0vcZ1CYMbTA9TYkqx1V6Wm6rEeNveU7ofN2wWLbW2V8bK8IQR4iPCdUWf1GV52ga59o0AioJQFOpcZto7a9Dv01+j7MKNjSLUOrGic10Kw7P7RSStV9rx/VZ1cBJF0GgthwduTVE7dn9Amj/bo4yV1/aUnQ4GbZb+YYLHjoPOW6Wkej5FMRrGBT2VMborIGTU2P2ZFJsWO3Fd3/Yv6Q9I3Kd6seWkqvDUQas1W2Ad6U+LOjI6t7T7I/7pXt50Kbflippez+7T17jw9O1Lp/e3t1ctQO/bplN9p+p8qaeoFM1S0oCVS02QOTNLCKGXK7zn+NCbM429TeTqHgSgUd2j0s4/VgkIYWlMrsNeLxLSxkdsgZlhR4z3WM5h9wRjt9t5Q6KubmiMrOJm5fDGV5cfcPUeWYwKwsl0W+CGwssHTFOs8hXL+Qck6vyoBmNrllLx/3wUBMDpAEuvRdxQ4F7XU+Tb7yzNBe5OgSVYFQjN+1TL24MYDPqDYbc/7B4Pb49Pwv5xODw96p+e/QvNWWqf3PY4tE9uZ6KBk4T9PkxGp93h2fFZ93Q4GnTnJ0nUHUSvRyfJaMQSNoLWiHKo2s7McaiaHyJqsn5Gt2r2XM8iq41MNyM+1zO8Z8IyI9XW2tKmLPPvze7uEoJniXQxU+ZOGZDnLLrDLIYAKLi9b/tHx0f9pyK4VOiMry7L0khFuo4XL0ZMN3Kkyg4IAFNXF8EgS/+oN+iUlI3uFhVeO3V3PibKJDD43fRywbire874uszqCZRZDQFQXkPdkzQEQOVpSVUgnMB6TQKflSgKWv5mUVGGTgO4Z4qzOVE3odq73OTqGu5w5dqdaxJdVyFJXFifmzsNg4q51xhHEeZmr+x0q1Bdfbq5pQuU332pjElHMfdNyB4gBKCPR9J2YePW1iBYtrBU40PwmPT7H+ae3Zg= +api: eJztWN9v2zYQ/leMe9oAJvaCPelpbpIiXrslSNz1wTACWjrbbClR5Y+knqH/fThSliwpdh0nBYpteYlN3n1Hfnf8eOYaLF8YiCbwUenPc6keDUwZqBw1t0JlowQiiDVyi/ePpQUw0PjFobFvVLKCaA2xyixmlj7yPJci9r79T0ZlNGbiJaacPuWakK1AQ98qwM7MXPpVrYFnq+s5RJO2gTD3sTNWpU0ju8oRIpgpJZFnULBqKHNSQjFlYIWVNDAyvfOAUDCCwwcuHbdKvwTxsgIJoEuX8uwlgFceoCjYxkjNPmFsoTba5O2tp6wLVzBI0fLmIniSCEoRlzcNWjvLNFaLbLENKzKLC9TNSOmsObK9u6djQSx07CTXP711Uv5uVHYyynJnf4b2VglDWEwPc+Ja89VeVpuu0KF2n+8fxCR5dMrzR2L0T/VeGPstTnftse39PIbGoQoh4ykeuP/uCsi3YJCgibXIaavHQl1sQRQMjHSLY6HuyPeQk3ju5fJJU9JNoTEhwa3Ub7oL4jaoLBQEVbta7dAPmFxlJpTZ2WBA/xqMwZ2LYzRm7mTvtjQGdqxYx8oFp1bV1os/9xaUtjl30kI0KFhD43eJ+f9q/x9U+2tnj5D7jtcz9D74/ssFfx+tByj+MRz92JIfmtfkntt9gAzmSqdkAwm3eGKFX8/uKEGhk97Qk+Xy5HsE+RBgyyAJSvwOQS4CbBlkQ9dsdS+SA+M4J5KDyHqz6o2Sbb5eNcqGrSrKhrBXjbKhq4ry8p6Cwestj9Z0wP3x1NVxgFvVRhS+J/n17KzbdfzFpUh8T9G71Frp41uOBC0X0jcA4UJoG0gVN2afo73TonWH1Lt9r8ICKTOpWWw1PVVC6vvBGL7AWjB3m3oyemOa/VZrSPsKoUu7rQTX9AZ2d2/jItC3L69X4/FNBzDktpnUcIJ7H+sngBTtUtHrQK4MQebcLiGCfq7xQeBjf9P4mT4wMKgfUBufGqclRLC0NjdRvx9L5ZJTvsDM8lMu+jwXvp4Nxk4Lu/Iuw5vRO1xdIU9QQzSZbhvcUfGEcmiaVZnguXiHREy4oGDo7FJp8XfIMQNBG1wGL9o5leVt/cBx+ZWnucT2g0XVtG41p9SZt9vLaqzsDsvuvezS6taiukDrymmmoBoOglPVNslHNld+w2Vah57O3vBmBAyI+IAwOP3ldNDBbRjTSeWxP6kbtvw0sFbeqowBA0z9MQWLPP2tnqCVUXGUTXGJ162k1p1fZs3iV9vPJRf+GPrg67LIJlAWGdS/LwwwoGOypGqMJrBez7jBD1oWBQ1/caiplqYMHrgWfEY8TUgDlpuqWsNnXPmfMV6sTvxJJXPpQhW1hItEJXgM4xhzu9d2unVgbq7vxsBgVj6epSohH839wxp/hAiAXuDI2xeYH1uD5NnCkdZEEDDp7x8ptcdc sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Create Workflow - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - - workflow - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - workflow - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/create-workspace.api.mdx b/docs/docs/reference/api/create-workspace.api.mdx index ab00ecd0c8..cea856d870 100644 --- a/docs/docs/reference/api/create-workspace.api.mdx +++ b/docs/docs/reference/api/create-workspace.api.mdx @@ -5,36 +5,36 @@ description: "Create Workspace" sidebar_label: "Create Workspace" hide_title: true hide_table_of_contents: true -api: eJzVVk1v20YQ/SvEnFqUlmjVRtA9RXECxEhTG7aSHATBGJEjcWOSu9ld2lEI/vdiuBRJSbZq+FZdRO7O55s3M6xAaTLopCouExAQG0JHd4/K3FuNMUEIGg3m5MhYEPMKCswJBCizvpMJhCALEKDRpRCCoR+lNJSAcKakEGycUo4gKnAbzVrWGVmsIQQnXcYHV2YdXCZQ1wuvTda9U8mGVfaNxapwVDi+Qq0zGTdRj79bVfBZ70sbzslJsvzm430+gn/4vg4hIRsbqdlm46LYXK2ahHcV67A7KcosAw58a+r9wEQdtmKvMzXj87ozAmr5nWK3A/HcpzZQumiK962rXV2zBUNWq8J6NCZRxH87ycJtGcdk7arMgptWGF6Nt2dQcofuGOo+1CSYck4JrbDMHAiYRJPzk+j85PQ8iN6IP8/FWTSK/jqbRJM/okhEEcNa6uQFDr54qZc6eHPaO5DJMcPM1vB/zaqQmxcL+Qu3YR3pzl6uDiGnfNnMgSfcozG4Oer9c6v9X7RuxkoDcCu3F/DAZMf1jree82eTySHNv2Imk8ZE8MEYZV7P8YQcyoyfpKPcHgpkKt65fUGxZOFoTQbqRQ+Px7RP928V97Ww62Ol+0zW4pqGjHlOtAEjeNHE4by861ZuUIseXo/u82m89/A95Wwr8nE2uz4w6Gu7W1Q/SIJvg4WVk0sVLzOtrGsWmEtBwHhIIjuu/Aarx92usxCCJfOw3XSlyUBA6py2YjyOM1UmI1xT4XCEcoxawn4w0+Y2uGDRhvqW4tJIt2nsTa8vP9HmI2FCBsR8MRS4ZaZ57uyK9f2l5SfabDtDwLR0qTLbnmj3cOq1GCbm8E2/UT/8xFxn1G/Enge7OfT02GMqyGKlmoDaGrXZvsP4ngruWUbOG4lGp6PoOXhahWB6fdm2IMZuEJgXg3CvAB30EALlTf+BI8zf9hecNxc9x2Jg7wmK7I3lNlVHP91YZyibBmu8Vy175jsjiJkiui+gAYEWIaRMOjGHqlqipS8mq2s+/lGSYRosQnhAI3HJEM4rSKTl5wTECjNLB6F1Ewp+u2kb8fegr85uyFuqFMyTB8xKfoMQ7mnTf7I1AybdsrBqLy+8n5OZH7hb5YOpyBPLa0zjmLQ7KrsYNOP11e0MQli2X3e5SljH4COPGHz0gSrt4eXPPz6rIMNiXfIgE+Bt8u9fEaWeaA== +api: eJzVGNtu2zb0V4zztGFqfGnXbXpa1hZo0LUx0nR9CAKBkY5tthSpkFRcz/C/D4ekJEq+NAv2srxEPDz3O70FVaFmlit5UUAKuUZmMVsr/dVULEdIoGKalWhRG0hvtiBZiZCC0ksm+d+OMuMFJMAlpFAxu4IENN7XXGMBqdU1JmDyFZYM0i3YTUXkxmoul5CA5VYQ4DLiN7ooYLe79WzQ2D9UsSHaIddcSYvS0hWrKsFzRz3+YpQkWCe00mSl5Wjo5C04rsoHut8lUKDJNa+IpxMhN5cL54I+4S5pIbIWAkjxhtXriMUuCWhPY3VN8F3LBNTdF8xtz9c33rSI6JUL5+c2mrsdcdBoKiWN98ZsMqF/PWPhY53naMyiFqOrgAxP9rfPqSJj9pTXvarF6JxsKnDBamEhhdlk9vOz6fTZZDaaztLZy/TFy7Pn01+nv/3y02SSTibk1roqHiHgk8d6pIDZ82kngBenGFO2Jv/rrEp65fzYMiW6Ess71xli8dxiafbzoDaoHWJRcKJnYh7d+5IeJncbPKKl1FXCMzsig+6zY6FAWZdUJWotUUMCDxzX7gMLbpX7eGCiZv677YEZK0ouXdJUQm1KlDYrmWRL1HGttVV2pQQ2umb/QbiJ32gQ8wp1yY3hSh7z/THjNbIiMxtjsQwuyKJiNsEbMYwq348FVlXZA9OcSV9DAveApSr4YtMAslzJBV/WumXeETXsI2Jdy8ygfuBu8AShBnONttG1Pfmi786BcR+bdEP5wLWSLmxdBCM7j2NEZh/FcXIsGmuwZdodA4cOENTsAI4+5J13NnmhA7QR6eEEvj1YYD2AkaqDaDqR8Yh3/GPAgTUgcI9BIdZU15kvzISKO5O49kCr9sX0Ok3LdgAdchlcazRos4oZs1a6aCy640KEXCdB3bG1dyHU2sT2NgByeXyOg6L0MAQe4nDua9QcW4TuGKeFGeRFe8+kVHZQdz2Qw+LyQQ2qsw8apFCm60NZ04CH2CZHyTRXh0jiuz0paGphDwpqb4Y0JVrN80M03c2Q5r7GGg+RhIuoU87brtjNRWBas83JBjuPmun3NqxuwBxq/ScU6Pfz7wty07IZeIdkvXejt13P/o3B78PU/p4Obq93xga8waJwcPq1Crld88Vstr9e/sUEL/yq/0ZrN22fuFsWaBkXJxYCofLe7SMGMJcWabbvbo/H8M9Qfm4HMstTK9N7NIYtMd7UjqE6Z4wetemTXV50wIti0bnXe/e4Ga+9+w4Ja1DeXl/P9xj62PaD6hf40ed4QKBdKXpWVspY95S0K0hhHCeRGW8Hb8nduB0aVPa0EDSPz1oLSGFlbWXS8TgXqi7O2BKlZWeMj1nFXZobzGvN7caRnM8v3uHmLbKCts+b2xjhI2WVz5M+WhsiVvF3uGmqIIXz2q6U7iaRe/SuPBW5hPL1qnu1vvnGykpg9+rsYt53XpcKg6wELhfKKRTice7MHZ3PL6hXojaeweRsejbZY9tDphJjuY2U8de0TPX82nqUmm7p6gsssvL37oJspaCWTEb8DqTAYP8N5ln8ZseVYNwVkJO+Ddlx02sxlADp/m8NUYLcJrCi7EpvYLu9YwY/abHbEZiGMeXAbQJuxbwj/91soeCGvgtIF0wY3NOxbUXww1WouB9HXWj6ujd5IilJaDbRCRL4ipsDv5K4lrJqcnEbsF55gc+ufYttuOz1QepRnuI8z7GyJ3Fvo/KbX368hgTuwu8opSqIRrM1NRW29hqryjbPCQfbgmByWVPrSsHzpL9/AHl8Y4c= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Create Workspace @@ -43,790 +43,29 @@ Create Workspace as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - type - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - members - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - - user - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - - - roles - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - role_description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - permissions - - object - - -
    -
    - - anyOf - - - -
  • -
    - Array [ -
    -
  • -
    - string -
    - **Possible values:** - [`read_system`, - `view_application`, - `edit_application`, - `create_application`, - `delete_application`, - `create_app_variant`, - `delete_app_variant`, - `modify_variant_configurations`, - `delete_application_variant`, - `run_service`, - `create_secret`, - `view_secret`, - `update_secret`, - `delete_secret`, - `view_app_environment_deployment`, - `edit_app_environment_deployment`, - `create_app_environment_deployment`, - `view_testset`, - `edit_testset`, - `create_testset`, - `delete_testset`, - `view_evaluation`, - `run_evaluations`, - `edit_evaluation`, - `create_evaluation`, - `delete_evaluation`, - `deploy_application`, - `view_workspace`, - `edit_workspace`, - `create_workspace`, - `delete_workspace`, - `modify_user_roles`, - `add_new_user_to_workspace`, - `edit_organization`, - `delete_organization`, - `add_new_user_to_organization`, - `reset_password`, - `view_billing`, - `edit_billing`, - `view_workflows`, - `edit_workflows`, - `view_evaluators`, - `edit_evaluators`, - `view_testsets`, - `edit_testsets`, - `view_annotations`, - `edit_annotations`, - `delete_annotations`] -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-annotation-by-trace-id.api.mdx b/docs/docs/reference/api/delete-annotation-by-trace-id.api.mdx new file mode 100644 index 0000000000..d7f9700da3 --- /dev/null +++ b/docs/docs/reference/api/delete-annotation-by-trace-id.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-annotation-by-trace-id +title: "Delete Annotation" +description: "Delete Annotation" +sidebar_label: "Delete Annotation" +hide_title: true +hide_table_of_contents: true +api: eJylVU1v2zAM/SsBTxsgNFmxk08L1gAt2mFFm+1SBAFjM7FaWVYluptn+L8Pkr+bthi6UxyJfCTfI6kKGA8OojtYap0zssy1g42A3JAN/y4SiCAhRUxb7G22u3LLFmPaygQEGLSYEZP1UBVozAgiGBlIDREY5BQEWHospKUEIrYFCXBxShlCVAGXxvs5tlIfQABLVv5g7YFmFwnUtejRnUE9An8syJYT9D0qN4FHXX7fhwSngTxoe6ILpaDeDKFvDeom8sZjO5NrR86jnS4W/ichF1tpPCnevIhjcm5fqNlNawwC4lwzaQ45GKNkHDic3zvvU40yNNbzzrKJEOdF49QmJzXTgeyImK/BQkBCeywUQ7SoBYxUUlI/TCufRug4/F9yxKD1O6HGEndG+e6eYh6Ve+XLOUZ5y2Voa+/ca1LX3unz6emxhD9RySR4zFbW5vb9+iXEKJX/kkyZOzZQeTy5/Qfiuh6oN0PRaC2WY5ryJkGvS+YOb03WN3IODwQ92OumgYzZ2t++RPgwd3ehriZ0azcSeqC3Yff1Ms4a+t5S93y9vj4CbLSdinoWFths6AafH3GaD9strDFOIYK5sfQk6dd8mCQ3r7oOr0GAI/vULbvCKoggZTYums9jlRfJCR5IM56gnKORoc8dxYWVXAaX5fXFJZXnhAlZiO42Y4Nb30xNe0zNemXQyEvyRLWLcFlwmlv5p6srrMO08fJMSL3Pg3s3EiG52fL6AgT4MhqKFiefThbwnLiJsZ8DjMMcdLHDNYhnLPT1gwDKwhAAE2ZfhgufmckdZ6hHeC/pNEmoZ4HpN8+NQhnaPISvWgHvoBUQxsvQgfAvTrumNgLS3LE3rqodOvphVV374+Yh8TIl0uFOjZ6SByonD88TqsLnEhR+Qiu9+cuuz4roNwp8uGkH5+MMxMvFdbrrchyzS6cvKayEtGuqqr1exjEZHjkebTCffD8LZ6ur1XoFdf0XlMbCfA== +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Annotation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-annotation.api.mdx b/docs/docs/reference/api/delete-annotation.api.mdx index 150231bc3a..d200d1dcfa 100644 --- a/docs/docs/reference/api/delete-annotation.api.mdx +++ b/docs/docs/reference/api/delete-annotation.api.mdx @@ -5,36 +5,36 @@ description: "Delete Annotation" sidebar_label: "Delete Annotation" hide_title: true hide_table_of_contents: true -api: eJy9VU1v2zAM/SsBTxsg1Fmxk0/L1gAt2mFFm+0SBAVrs7FaW1YlOltm+L8PlD/iNO1WDMNOcSzyiXyPfK6Bce0hXsJ8g7mHlYLSkkPWpTlLIYaUcmK6QWNKDm9BgUWHBTE5SazBYEEQAztM6EanoEAbiMEiZ6DA0WOlHaUQs6tIgU8yKhDiGnhrJc+z02YNClhzLi8WAjQ5S6Fp1IDuLZp/AX5t0bTYK0n3tjSevGQcT6fyk5JPnLah1RiuqyQh7++qfHLVBYOCpDRMhiUcrc11EpiJ7r3k1KMqrBM2Wbc3jEg8OOv7e03pasf1K2nsg8rbe0p4j7jliNoBdrWDmQ1FX2jz8EewUY8vggxMNo3AvT8+PiT+G+Y6DRmTuXOl+3vWU2LUuTxppsIfBuRlsneKZvvlLkz2PrUyjd0bbZjW5KBZ7ehA53A74v+ibAsUvQq//p1Un8l7XBMMYC+HBjImCzn9kxTSV3t1FzcSZEdvy+7LbZy09D13WR9yulhcHgC22u6LehLMZDIbm0lBnJU7pwn2whnEEFlHG03fo91I+ajuR7SJ6m5uG1DgyW16O6pcDjFkzNbHUZTkZZUe4ZoM4xHqCK2Gp2XNwunkk4SC+IKnpHKatwFvdnl2TttTwpQcxMvVOOBaZq6dov2wQUC0+pyEz87HZhVnpdM/+/aDm2VtlhCmzV0Z0vvNaWv7iMkDGdlR6bMte3r07mj6UjNdwmR2edatDiZhdfo6QhioJ3QNRIECKsLeABMWH3YHUqUtPRdoRnjPSbtX2MAI0w+ObI46bEa4vu40X0KnOaiRkXhQ4u/D1yXuDWulICs9S15d36Knry5vGnn9WJET9VYKNug03gqXyxpS7eU5hfgOc08HJQ4WA2+uuk16OwH1fOm9wkbk3WBeyT9Q8EDb8edQbOM/3tuTE6wp66e27k5nSUKWR3kHTirjPezkyfxivphD0/wCkinHgQ== +api: eJy9Vclu2zAQ/RVjTi1AWG7Qk041GgMJkqJB4vZiGMFEGltMKIohR25dQf9ekFodJ0GbAj1p4azvzTxWwLh1EK9grnXByLLQDtYCCkM2fJ2nEENKiphusbcBAQYt5sRkvXsFGnOCGNhiQrcyBQFSQwwGOQMBlh5LaSmFmG1JAlySUY4QV8B74/0cW6m3IIAlK/9j6QNNzlOoa9FHdwb13wRHvf+6CeUdpvEh2z+6VArq9ZD4xqBu8q59aGcK7cj5aCezmX+k5BIrTYAhhpsySci5Takm160xCEgKzaQ51GCMkklALbp33qcaVWisR5plkyEpysapLU5qpi3ZESyfg4WAlDZYKoZ4VgsYeLlVUj8cdn6YoUPwX8ERA9NvDDUmuDMq7u4p4VG7l76d4yivuQyD7J17TuraO308OTmm8DsqmQaPycLawr6dv5QYpfJvkil3xwaqSA5O/wC4bgbq9dA0Wov7MUxFU6DnJXfb1/bqCzmHW4I+2MumAYzJ0p8+B/iwdqvQV5O6tRsRPcDboPtyG6cNfK+xe7ZcXh0FbLg9JPU0SNZkPpasnDgrBj0LIsYZxBAZSztJP6Jhk1xUdRNeR1W7NjUIcGR3neiVVkEMGbNxcRQlqijTKW5JM05RRmhkmHhHSWkl74PL/Or8gvZnhClZiFfrscGNH6tmUA7Neo7QyAvykLWCOC85K6z81XUYZDFrvDwmUm+K4N4tRyhuMr86BwG+jQas2fTDdAZPITww9huBSdiILnc4BvEEhb5/EEB5WAdgwvzTcOArM4XjHPUo3nOMHRTUo8D0kyOjUIaBD+mrlsoVtFTCWBYdCH859FdT3MngWkBWOPZ+VXWHjr5ZVdf+92NJ1jO2FrBDK/HO47eqIJXOv6cQb1A5OiqxVw54d90uyPsJiOdL71jVntIdqtJ/gYAH2o/vUq8G/zFvB05QnKyb1Ko9nScJGR75HQmkH+l+1U4Xl4vlAur6N1du3PI= sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Delete Annotation @@ -43,316 +43,29 @@ Delete Annotation as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - - annotation - - - object - - - - required - - - -
    - - -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-api-key.api.mdx b/docs/docs/reference/api/delete-api-key.api.mdx index 92d621ddfe..bafd11e1d9 100644 --- a/docs/docs/reference/api/delete-api-key.api.mdx +++ b/docs/docs/reference/api/delete-api-key.api.mdx @@ -5,322 +5,77 @@ description: "Delete an API key with the given key prefix for the authenticated sidebar_label: "Delete Api Key" hide_title: true hide_table_of_contents: true -api: eJztVU1v4zYQ/SvEnHYBwk6DnnSq2xjYIFvUyLq9JEYwlsYSNxKpJUdpVEH/vRhKsuy4WaCnXnqyPJyPN2/mkR0w5gGSB1jVRt1RG2CnIaOQelOzcRYSuKGSmBRatdrcqmdq1Z+GC8UFqdy8kI2m2tPBvKqD8/EAGy7IskmRKVNNIL94tI925fOQPFqllAQ9jUEfAvuPidoWNKVxh5hlqsdO7UllEUe2GOI9fWsosPpwP3yMCYxNXWVsfjx3+6+Ucqx+T9x4OwHITMqJWsVf4yz6VqXOMhor4ahCk6YUgqooBMxJNbWzk/HQlAMc4+yQGk2gKfOn7Xazfk0pEpio2/NmTFDWsTq4xmbKeZU5Gix7Kp3NpVlxj5yBBleTR0l0m0ECAwdPWJunZ2pBQ40eK2LyMsQOLFYECczkggYjQ6yRC9AgrBhPGSTsG9IQ0oIqhKQDbmuJDOyNzUEDGy7FcEet2gyp+n4nGULtbKAgQddXV/Jzvi9fZo7uR2fQINySZXHHui5lM4yzy69BYrpLIMPcQANmmYkDKjdeyGAjtQf4E8ipjhp3dVxm6Pu+1/Dj9fUlyj+wNFnEoNbeO/9vINYnQCQvoynlyzBV4dKhdOnZKdr2t0Mc1znpvT5ajGXKyUO/6/VkQ++xPZnMZzcAhF5DFfLvDfHXYYfhmOx910iG2sppP9c+TmNeoIfY11B69NvNaWZ6B3bfb+NmoO+fik0uIqiLhMNsK+LCzcqIiuACElg+UxuW3ayEHjQE8i+TVBpfQgIFcx2S5TItXZMtMCfLuECzxNrA24twFU/VL+IKooVAaeMNtzHfanN7R+0nwow8JA+7U4cvsjrDMpy7HeeAtbmLgh4VvGq4cN78NUx4FHExREnfxh5cDB8pGrH9jOkz2Qw0SJ8D7KvFD4ur95oZA+R2GhWAaVTAhCO6gX5D15Eo0EBVXH9gwuqn+UBQ1i5whfYk3xuBvkHVzRr8/9n5T5+dcS2ZXnlZl2jiLRN3oBsV9iCvTAANyclrs9NQuMBy2nV7DPS7L/tezN8a8iKUnYYX9Ab3srYPHWQmyHcGyQHLQN9ZiEi53D0f1XsAJzFZ2awXLBv5B1qQnr+K8V4tJq12o8MqFfZOQi+eARH18cq5WX9eb9fQ938DcL4vpQ== +api: eJztVU1v4zYQ/SvEnHYBws4GPelUAzGwQXZRI+v2khgBLY0lbiSSS47SqIL+ezGkZNlxs0BPvfRkeTgfj2/eDHsgVQbIHmDltLjDLsBOQoEh99qRtgYyuMEaCYUyYrW5Fc/YiT81VYIqFKV+QRNNzuNBv4qD9fFAtVShIZ0rwkK0Af3i0TyalS9D9miEEBz0NAZ9COQ/ZmJb4ZTGHmKWqR5ZsUdRRBzFIsV7/NFiIPHhPn2MCbTJbaNNeTy3+++YU6x+j9R6MwEodE6ZWMVfbY3yncitIaUNhysR2jzHEESDIagSReusmYyHtk5wtDUptdIBp8yft9vN+jXHSGAmbs8vo4MwlsTBtqYQ1ovCYrLssbam5Muye+QMJFiHXnGi2wIySBw8KaefnrEDCU551SCh5yb2YFSDkMFMLkjQ3ESnqAIJzIr2WEBGvkUJIa+wUZD1QJ3jyEBemxIkkKaaDXfYiU1KNQw7zhCcNQEDB11fXfHPuV6+zRzdj84ggblFQ+yunKtZGdqa5ffAMf0lkNQ3kKCKQscG1RvPZJDm2gn+BHKqI0atjmKGYRgGCb9cX1+i/EPVuogYxNp76/8NRHcChPOS0jV/acImXDrUNj87Vab77RDbdU76II8WbQhL9DDsBjnZlPeqO+nMF5sAwiChCeXPmvg1aRiOyd53jWSILZ8Oc+1jN2YBPcR7pdKj325OM9Ob2H3/GjeJvn8qNrnwQF0kTL1tkCo7T0acCKogg+UzdmHZz5MwgISA/mUaldbXkEFF5EK2XOa1bYuFKtGQWii9VE4Dyz1g3npNXQxZbW7vsPuMqkAP2cPu1OEbqyP1+9ztSLVy+i7O7Dikq5Yq6/VfqYnjnFYpiq+mzcHG8JGFVQTHewQk8DWSkK8WnxZX8HZpnznHvZZHYU+14zHINywc7w8SsImqBkLV/DofMDJnAzXKnOR7M3dv0PTzaP3/mvynr8koRcJXWrpa6bg8ogb6cXAe+PEIICE7eUR2EiobiE/7fq8C/u7rYWDzjxY9D8dOwovyWu1Zqg89FDrwdwHZQdUBfyKISDmvlI/iPYDTABlW1ouqW/4HkpGeP3ZxXVbTfPajwypn9k5CL7Y7D/Jxk9ysv6y3axiGvwHPjSEW sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Delete an API key with the given key prefix for the authenticated user. Args: -key_prefix (str): The prefix of the API key to be deleted. -request (Request): The incoming request object. + key_prefix (str): The prefix of the API key to be deleted. + request (Request): The incoming request object. Returns: -dict: A dictionary containing a success message upon successful deletion. + dict: A dictionary containing a success message upon successful deletion. Raises: -HTTPException: If the API key is not found or does not belong to the user. + HTTPException: If the API key is not found or does not belong to the user. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-evaluation-preview-simple-evaluations-evaluation-id-delete.api.mdx b/docs/docs/reference/api/delete-evaluation-preview-simple-evaluations-evaluation-id-delete.api.mdx new file mode 100644 index 0000000000..aa5521f96c --- /dev/null +++ b/docs/docs/reference/api/delete-evaluation-preview-simple-evaluations-evaluation-id-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-evaluation-preview-simple-evaluations-evaluation-id-delete +title: "Delete Evaluation" +description: "Delete Evaluation" +sidebar_label: "Delete Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJydVctu2zAQ/BVjTy1AWG7Qk041GgMxkqJB4vZiGAYjrS2mlMiQK7euoH8vlnpYip0cerJkzr5mlqMKSO49xGtYHKQuJSlTeNgIMBZdeFumEEOKGgm32GO21uFB4e+tV7nVwxO/HcJUut02wSDASidzJHRcsIJC5ggxjNAgQBUQg5WUgQCHL6VymEJMrkQBPskwlxBXQEfLwZ6cKvYgYGdcLgliKMuQhRRpBpzGmixTqOsNJ/XWFB4957mazfgnRZ84ZRkHMTyWSYLe70o9eWjBICAxBWFBDJfWapWEtNGz55hq0Jt1zB6ppkJiyiaobVkVhHt0gx6/BoSAFHey1ATxrBavaOGaxfH7LhD3/uy16BFFqTXwyG+xITqkeXrGhAY9PQZdT/hl2jNR1xz4+erqnLifUqu0yb9wzrj/Zy1FkkrzkyLM/TlAm2R0+hY9Azo65uvNaXDpnDwO5r4zTYNQC8j9/tKqddBv6L3cI/TJ3oYGMiYrPr1E+mnN12GupnSLG8h3ordh9+0xrhv63lP4ZrW6P0vYaDsW9Trc38lpF7g/pMycnCFcbsoghqg1hqgxhmhgDFE12ukaBHh0h84OSqchhozI+jiKEm3KdCr3WJCcShVJq8Ime0xKp+gYQub3y1s83qBM0UG83gwBj7xYzaqMYb1K0qpbZNJaI5qXlBmn/nYzBiPKmihmRRU7E8JbAuehucn8fgkCeIyGrtn003QGr0kcgflOyCTcia52OAbxioV+fhCAebgQQCjzL6cD7swaT7ksBvkuaTZqqGeB8A9FVksVVj6Ur1ox19CKyUoFOWHoSx4ExGOb2gjIjCcOraon6fGH03XNf7+U6Fi0jYCDdEo+MYXrClLl+TmFeCe1x7Mue/uADw/tLfk4AXG5+07YglXlxvgNBPzC49mHJphA1q1O1WLmSYKWBtFnnsU71m//9eJusVpAXf8DUiCCCw== +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-evaluations-human-evaluations-delete.api.mdx b/docs/docs/reference/api/delete-evaluations-human-evaluations-delete.api.mdx index 7c14655059..5698522406 100644 --- a/docs/docs/reference/api/delete-evaluations-human-evaluations-delete.api.mdx +++ b/docs/docs/reference/api/delete-evaluations-human-evaluations-delete.api.mdx @@ -5,38 +5,41 @@ description: "Delete specific comparison tables based on their unique IDs." sidebar_label: "Delete Evaluations" hide_title: true hide_table_of_contents: true -api: eJzdVU1v2zgQ/SvEXLoLKHYa7Emnuo2BGM1ig9TbiyMUDDW22FIkQ47Seg3/92JIufJHkkWu9cUi+ebr8c1wAyRXEcoFXHWttGfTR2k6SdrZCFUBNUYVtOc1lHCJBglF9Kj0UiuhXOtl0NFZQfLeYBT3MmIteN2gDqKz+qFDMbuMozt7ZydhFcs7K4QQXq6Nk7X441pHWkQK1Z+lmDe4M9E1WtJLjSEKt2R3T0QjJ+qUUvJ+i9QFywEmwuhIO7sMqU/t36TEoADnMaSaZzWUkPFfcGDiS8PcHOxkEBQQ8KHDSO9dvYZyk5Y6YA0lhQ4LUM4SWuIj6b3RKtmPv0YmdANRNdhK/vKBsyCNkVf7oXSdtjRhmz5o7RFKiBS0XcG22G3IEOQaCiBNhtd7VylmdYTtAHX3X1FRn31Od3ESsxpc5YsfHMJ2y94CRu9szClfnJ/z36FiPnVKYYzLzojbHgyvIOWoshco6BPdBRG9VPc5SAI/2Mmgvpi/Li5O8/8sja4TWkxDcOE1yR/eaI0ktTm4yEOAcergVNr1P0soF6fV/trRlnCFAbbV8yq4dqq/sgLauDplb4D+jTHKFQ6Seh6ayBBzPv0/WXFdOXSP29PVQG9m9/kyLjN9TwXbQa7m85sTh/luW6TGDb0NBXhJDZQwTp19tid9KCBieMQQE/ddMFBCQ+RjOR4r47p6JFdoSY6kHkuv4XhITtKp+MBQ2FbsTnVB0zr5m9zMPuL6CmWNAcpFtQ/4xNLJYjiEDY3g9UdkWqxseT3pqHFB/5dvuADNCTTZiutmUd4OA2r6Q7be4JMDZrG7ZNaStkuXwvbU9jW9l+ob2hoKYH5yueejt6Pz50joDcTkZtZ3jlSpc3b5JxgURzT/IhgKwDa1DRDK9t1wwNV5F6mVds/fadcfZ7YZ+ve3fc56sRD+oLE3UqfeTwxvet0v4FT3VQGNi8SHmw0X/m8w2y1vP3QYWL1VAY8yaA6WpFvspMbC/oZrKOFDJvcsTQaGmy7r9mhQ8hDLFhOl0NOL2GqvgS+n19P5FAq47x/c1tVsFeR3njvyO5SQXvRcFL/IvLcBI+2q4+lWQvbKv58VKSK/ +api: eJzdVU1vGzcQ/SvEXNoAtOQYPe2pai3AQhzUcNRe5EVA7460TLgkTc46UQX992DIVVYr2SlyrS5akm++3rwhd0BqE6FYwU3XKnsxf1amU6SdjVBKqDFWQXteQwHXaJBQRI+VXutKVK71KujorCD1aDCKRxWxFrxuUAfRWf3UoVhcx8mDfbCzsInFgxVCCK+2xqla/HqrI60ihfJNIZYNHkx0jZb0WmOIwq3Z3QvRyIk6pZS83yN1wXKAmTA60sEuQ+pz+19SYiDBeQyp5kUNBWT8RxyY+NgwN6OdDAIJAZ86jPSHq7dQ7NJSB6yhoNChhMpZQkt8pLw3ukr200+RCd1BrBpsFX/5wFmQxsir41C6TluasE0ftPUIBUQK2m5gLw8bKgS1BQmkyfD6qJViUUfYD1D3+Akr6rPP6a7OYpaDq9z4wSHs9+wtYPTOxpzy1eUl/40V86GrKoxx3Rlx34PhJ0g5qewHFPSJHoKIXqrHHCSBj3YyqC/mt6ur8/z/UUbXCS3mIbjwM8mPO1ojKW1GjRwDjKtGp8pu/1pDsTqv9vuOtoQbDLAvX1fBrav6lklo4+acvQH6HmNUGxwk9To0kSGWfPpfsuK6cuged6Srgd7M7utlXGf6Xgp2gNwsl3dnDnNvW6TGDbMNEryiBgqYpsm+OJI+SIgYnjHExH0XDBTQEPlYTKeVcV09URu0pCZKT5XXsC/ZouqCpm0ymd0t3uH2BlWNAYpVeQz4wOrI/R7DBq17/Q65cqtaXs86alzQ/+YmStAsyyZbcWmsu/vhDpp/Va03+OIdsjr0keWi7dqlsD17s1SUmN0tQAKXnwfgcvJ2cgmnD8EIzAOhqjQQh5zTMcgT9r7zBhKwTdMAhKr9fTjgiryL1Cp75O98mE8z2g1j+b99pXqBEH6lqTdKp5FODO96Oa/gXM6lhMZF4sPdjgv/O5j9nrefOgys2FLCswqagyW5yoO8WMyfcQsF/JnJvUgDz3DTZa2e3H98N2WLWVWhpx9iy6O5vJ7fzpdzkPDYv6Otq9kqqC98nagvUEB6qHNR/NDy3g6MspuOL60Cslf+fQNegBQw sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Delete specific comparison tables based on their unique IDs. Args: -payload (List[str]): The unique identifiers of the comparison tables to delete. + payload (List[str]): The unique identifiers of the comparison tables to delete. Returns: A list of the deleted comparison tables' IDs. @@ -46,299 +49,29 @@ A list of the deleted comparison tables' IDs. as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/delete-evaluations.api.mdx b/docs/docs/reference/api/delete-evaluations.api.mdx deleted file mode 100644 index 3c6ad18953..0000000000 --- a/docs/docs/reference/api/delete-evaluations.api.mdx +++ /dev/null @@ -1,344 +0,0 @@ ---- -id: delete-evaluations -title: "Delete Evaluations" -description: "Delete specific comparison tables based on their unique IDs." -sidebar_label: "Delete Evaluations" -hide_title: true -hide_table_of_contents: true -api: eJzdVU1vEzEQ/SvWXABpSUrFaU+kNBIRRVRt4JJGyPVOsgav7dqzLSHKf0djb7r5aEFcySVr+3k+3rwZr4HkMkI5g/G9NK0k7WyEeQEVRhW05zWUcI4GCUX0qPRCK6Fc42XQ0VlB8tZgFLcyYiV4XaMOorX6rkUxOY+DG3tjR2EZyxtbJTPfsHclXl7oSLNIYf6qFNMatzd1hZb0QmOIwi3Y6hNOyYlsMjm5QmqDZT8jYXSk7b0MqY7vv0jxQQHOY0jxTCoo4ThKKCDgXYuRzly1gnKdljpgBSWFFgtQzhJa4iPpvdEqXRx+j0zfGqKqsZH85QM7I42RVzs+vukqbWnCJn3QyiOUEClou4RNsd2QIcgVFECaDK93CicmVYRND3W331FRF30Od3bkc96bymXuDcJmw9YCRu9szCGfnpzw374+rlulMMZFa8RVB4Z/IOUgsz9Q0AW6dSI6Ye6KN8f89vT0OMyv0ugqwcQ4BBf+Jcb9wlVIUpu9eu0DjFN7p9KuPi+gnB0n9bijLeESA2zmzxf7wqmuMgU0cXlMUg/9hDHKJfbKeR6ayBBTPv2bejiv7LrD7cinpzez+3wa55m+p5xtIR+m08sjg7m2DVLt+k6FArykGkoY7vdsxHCPISbW22CghJrIx3I4VMa11UAu0ZIcSD2UXsPhzBulU/GeobCZsznVBk2rZG90OfmIqw8oKwxQzua7gGsWTZbBPqxXutcfkQmxsuH1qKXaBf0r17YAzQHU+RZnzHK86ifQ+KdsvMEnJ8hsW15WkbYLl9x2pHY5nUn1A20FBTA/Od2TwZvByXMkdBfE6HLS9YxUqWe28ScYFAc0PxIMBWCTGgYIZfOuP+DsvIvUSLtj74m2Pohs3Xfu//46dZoh/ElDb6ROzZ+IXnfC3xvq3JG1i8Tb6zVn/iWYzYa371oMLN95AfcyaHaTtFtstcbK/oErKOF9Zvd1GgoMN20W7sGM5PmVb4yUQk9/xM53evd8fDGejqGA2+5JbVzFt4J84JEjH6CE9DTnpPjN5b01GGmXLQ+2ErJV/v0GKyEQqA== -sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Delete specific comparison tables based on their unique IDs. - -Args: -delete_evaluations (List[str]): The unique identifiers of the comparison tables to delete. - -Returns: -A list of the deleted comparison tables' IDs. - - - - - -
- -

- Body -

- required -
-
-
    - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/delete-evaluator-config-evaluators-configs-evaluator-config-id-delete.api.mdx b/docs/docs/reference/api/delete-evaluator-config-evaluators-configs-evaluator-config-id-delete.api.mdx index 3240633f9b..a4053fb136 100644 --- a/docs/docs/reference/api/delete-evaluator-config-evaluators-configs-evaluator-config-id-delete.api.mdx +++ b/docs/docs/reference/api/delete-evaluator-config-evaluators-configs-evaluator-config-id-delete.api.mdx @@ -5,304 +5,73 @@ description: "Endpoint to delete a specific evaluator configuration." sidebar_label: "Delete Evaluator Config" hide_title: true hide_table_of_contents: true -api: eJzdVcFu2zgQ/RViTi1A2NmgJ53qbbyo0S42SN29OIbBUCOLrUQq5CitK+jfFyNKlh3FAfbak2Vy5vHxzbxhA6T2AZINLJ9UUStyPsBWQopBe1ORcRYSWNq0csaSICdSLJBQKBEq1CYzWuCQKbSzmdnXXnHe7N7e24Xfh+TeCiHGsF0M25lUvAnk3yZinaOorXmsUZgULZnMoBcuE5Tjq/B3SLW3wwkPzhWJWHuGySJR46z4oYIItdYYQlYXUvylioDCUY7+hwk4Awmuwoi6SiGBeMXdhPBxIfQrYTcNMuluFwFAQqW8KpHQs8QNWFUiJPBCDkgwrHSlKAcJHh9r4zGFhHyNEoLOsVSQNECHiiECeWP3IIEMFbxwLJ/40GGKVQptu2WoUDkbMHD29dUV/5xX98tRG3HXB4ME7SyhJQ5XVVUY3ekz/xY4p5kyYvFR2RNKA5i4iS0zoTi2XL8SxDRolYoeANq2bSW8u76e3uFfVZi0YyiW3jv/fy5QeS4/mShRiqRMwV+GsAzTgMLps11lD/9kXXnPa9PK44qxhHv00G5bOawp79XhRK3PLhKEVkIZ9q/V+m8MQe0RjmCvtAWLIda8245nu4dvqOmszzbdveLRfdx2hBnljepevsZNlO+lw4aQj+v17QQw1rZEyt1owc5BlEMC89F789578+YFH7UgIaB/GhxX+wISyImqkMznunB1OlN7tKRmysxVZeD5rFt0u+IDhwIbKKCuvaFDh7e4XX3Cw0dUKXpINtvTgC/cUbFHzsOO5VGV+YSsVj8IFjXlzptfsfD9CMhjFsthbOa69F65ntufSn9HyzOD7xlpX83+mF1dukyfIBa3q94YSnfGGHh0YSCfyXUUCiRg2bkCCFX5ftxglpULVCp7gnfB8M/pNaNHf/8npm8Bwp80rwplOqN3ejd9k2/GhyHEMnGbg4TkpQdjKyF3gTitaR5UwK++aFtefqzRc7duJTwpb9QD986mgdQE/k4hyZjeK8V4c9fPhbfiEvOhoy23M9PjfyDhOx4uvHDd8MsH5zR95EJrrOgEYzKr2WLHuXCz/LxcL6Ft/wNmjQxc +api: eJzdVUFv2zwM/SsCTxsgJF2xk08L1gwLtmFFl32XNAhUm4612ZIq0d3yGf7vAy07Tuq2wK47xZHIJ/LxPakBUvsAyQaWD6qsFVkfYCshw5B67UhbAwksTeasNiTIigxLJBRKBIepznUqcMgUqTW53tdecd7s1tyahd+H5NYIIcawXQzb6Uy8CuRfJ2JdoKiNvq9R6AwN6VyjFzYXVOCL8DdItTfDCXfWlolYe4bJY6HaGvFLBRHqNMUQ8rqU4oMqAwpLBfpfOuAMJFiHEXWVQQKxxd2k4ONC6FfCbhqks90uAoAEp7yqkNAzxQ0YVSEk8EQOSNDMtFNUgASP97X2mEFCvkYJIS2wUpA0QAfHEIG8NnuQQJpKXjiOT7zvMMUqg7bdMlRw1gQMnH15ccE/59P9duRG3PTBICG1htAQhyvnSp12/Mx/BM5pphUx+ajMSUkDmLiKkpmUOEquXwliGrTKRA8Abdu2Et5eXk57+E+VOusqFEvvrf+bBpzn8ZOOFGVISpf8pQmrMA0obXq2q8zha96N93w2rTyuaEO4Rw/ttpXDmvJeHU7Y+mxjgdBKqML+pVl/wRDUHuEI9oIsmAyx5t12PNve/cCUznS26fqKR/dx2xFmpDey+3wbV5G+pw4bQj6u19cTwDjbCqmwowU7B1EBCcxH7817782bJ3zUgoSA/mFwXO1LSKAgciGZz9PS1tlM7dGQmik9V04DeyRgWntNhy5lcb36hIePqDL0kGy2pwHfWDRRBudhxwkopz8hE9J7fVFTYb3+P862d3kRs7hjbXLbpffkLLrixOJ6BRK4jajvi9mb2QU8vpfPglnvKu30PpzdbYN8xMKxf5CAVSd2IFTVu3GDK3M2UKXMCd4zPn5cVjNa799/OfqxE/6muSuV7vzb8d302t2M932IY2L1goTkqXdgK6GwgTitae5UwO++bFtevq/Rs0K3Eh6U1+qO9bJpINOBvzNIci7vhWG8uunt/lo8V/mgYsMS5vL4H0j4iYdnHq7uTisGtzR95CJN0dEJxuQKZlsd7X61/LxcL6Ft/wBSbf2+ sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Endpoint to delete a specific evaluator configuration. Args: -evaluator_config_id (str): The unique identifier of the evaluator configuration. + evaluator_config_id (str): The unique identifier of the evaluator configuration. Returns: -bool: True if deletion was successful, False otherwise. + bool: True if deletion was successful, False otherwise. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
    - boolean -
    -
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-invocation-by-trace-id.api.mdx b/docs/docs/reference/api/delete-invocation-by-trace-id.api.mdx new file mode 100644 index 0000000000..cfaff8e380 --- /dev/null +++ b/docs/docs/reference/api/delete-invocation-by-trace-id.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-invocation-by-trace-id +title: "Delete Invocation" +description: "Delete Invocation" +sidebar_label: "Delete Invocation" +hide_title: true +hide_table_of_contents: true +api: eJylVU1v2zAM/SsBTxtgxFmxk08L1gAN2mFFm+1SBIFiM7FaRVYlOptn+L8PlL+btBi6UxyJfCTfI6kSSOwdRA+w1McsFiQz7WAdQGbQ+n/LBCJIUCHhRnY2m22xISti3MgEAjDCigMSWoYqQYsDQgQDA6khAiMohQAsPufSYgIR2RwDcHGKBwFRCVQY9nNkpd5DACRJ8cGKgSbLBKoq6NCdEXoA/pyjLUboO6HcCF7o4vvOJzgOxKDNic6Vgmrdh743QteR14ztTKYdOka7mM34J0EXW2mYFDbP4xid2+VqctcYQwBxpgk1+RyMUbLmMHx07FMOMjSWeSdZR4izvHZqkpOacI92QMxXbxFAgjuRK4JoVjEdnUpK6qdx5eMILYf/S07Qa/1OqKHErVG2fcSYBuXecDmnKG+59G3Nzp0mVcVOny8uTiX8KZRMvMdkYW1m369fgiSk4i9JeHCnBiqLR7f/QFzbA9W6L1pYK4ohTU3FrMvB7d+arG/onNgjdGCvm3oyJiu+PUd4P3cPvq46dGM3ELqnt2b39TIua/reUvdqtbo9Aay1HYt66RfYpO8Gzg8pzfrt5tcYpRBBaCweJf4K+0lyYdl2eAUBOLTHdtnlVkEEKZFxURjGKsuTqdijJjEVMhRG+j53GOdWUuFd5rfLayyuUCRoIXpYDw3uuZnq9hibdcoII6+RiWoW4TynNLPyT1uXX4dp7VX5fbDLvHtD2twnN5nfLiEALqOmaDb9NJ3BS+JGxjwHIvZz0Mb21xC8YKGrHwLAgx8CIBSHL/0FZ2YyRwehB3jndBol1LFA+JtCo4T0be7Dl42AD9AICMNl6CDgF6dZU+sA0swRG5flVjj8YVVV8XH9kLBMiXRiqwZPyRMWo4fnKFTOuXiFj8JKNj/v+qKIbqPAh7tmcD5OIDhfXKu7LoYx23S6kvxKSNumKpvreRyjoYHjyQbj5LtZuFzcLFYLqKq/cgjCdA== +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Invocation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-invocation.api.mdx b/docs/docs/reference/api/delete-invocation.api.mdx new file mode 100644 index 0000000000..d68707ef30 --- /dev/null +++ b/docs/docs/reference/api/delete-invocation.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-invocation +title: "Delete Invocation" +description: "Delete Invocation" +sidebar_label: "Delete Invocation" +hide_title: true +hide_table_of_contents: true +api: eJy9Vclu2zAQ/RVjTi1ARG7Qk041GgMxkqJB4vZiGMFEGltMKIohR25dQf9ekFodJ0GbAj1p4azvzTxWwLh1EK9goXdFgiwL7WAtoDBkw9cihRhSUsR0K3sbEGDQYk5M1rtXoDEniIEtJnQrUxAgNcRgkDMQYOmxlJZSiNmWJMAlGeUIcQW8N97PsZV6CwJYsvI/lj7QZJFCXYs+ujOo/yY46v3XTSjvMI0P2f7RpVJQr4fENwZ1k3ftQztTaEfORzudTv0jJZdYaQIMMdyUSULObUo1uW6NQUBSaCbNoQZjlGxQi+6d96lGFRrrkWbZZEiKsnFqi5OaaUt2BMvnYCEgpQ2WiiGe1h6MjpdbJfXDYeeHGToE/xUcMTD9xlBjgjuj4u6eEh61e+nbOY7ymsswyN6556SuvdPH09NjCr+jkmnwmMytLezb+UuJUSr/Jplyd2ygiuTg9A+A62agXg9No7W4H8PUrWUtIHfb1/bqCzmHW4I+2MumAYzJ0p8+B/iwdqvQV5O6tRsRPcDboPtyG2cNfK+xe75cXh0FbLg9JPUsSNZkMZasnDgrBj0LIsYZxBAZSztJP6Jhk1xUdRNeR1W7NjUIcGR3neiVVkEMGbNxcRQlqijTE9ySZjxBGaGRYeIdJaWVvA8us6vFBe3PCVOyEK/WY4MbP1bNoBya9RyhkRfkIWsFcVZyVlj5q+swyGLWeNVBGTZFcG/hm4XiJrOrBQjwbTRgTU8+nEzhKYQHxn4jMAkb0eUOxyCeoND3DwIoD+sATJh/Gg58ZaZwnKMexXuOsYOCehSYfnJkFMow8CF91VK5gpZKGMuiA+Evh/5qijsZXAvICsfer6ru0NE3q+ra/34syXrG1gJ2aCXeefxWFaTS+fcU4g0qR0cl9soB767bBXk/AfF86R2r2lO6Q1X6LxDwQPvxXerV4D/m7cAJipN1k1q1p7MkIcMjvyOB9CPdr9rZ/HK+nENd/wYx6Nzq +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Invocation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-legacy-evaluations.api.mdx b/docs/docs/reference/api/delete-legacy-evaluations.api.mdx new file mode 100644 index 0000000000..d5bca5c084 --- /dev/null +++ b/docs/docs/reference/api/delete-legacy-evaluations.api.mdx @@ -0,0 +1,77 @@ +--- +id: delete-legacy-evaluations +title: "Delete Evaluations" +description: "Delete specific comparison tables based on their unique IDs." +sidebar_label: "Delete Evaluations" +hide_title: true +hide_table_of_contents: true +api: eJzdVU1v2zgQ/SvEXNoCqp0Ge9JpvRsDNZqiQertxTEKhhpL7FIkQ47Seg3/92JIubLiJEWu64s15JvvN8MdkKwjlCuY30vTSdLORlgXUGFUQXuWoYQLNEgookelN1oJ5Vovg47OCpK3BqO4lRErwXKDOojO6rsOxeIiTm7sjZ2FOpY3tkpmvuLgSry+1JFWkcL6TSmWDR40dYWW9EZjiMJt2OojTsmJbDI5uUbqgmU/M2F0pINehlSn+q9SfFCA8xhSPIsKSuijNFhLtT0OFgoIeNdhpL9ctYVyl0QdsIKSQocFKGcJLfGV9N5olRSn3yJXcQdRNdhK/vKBfZLGyNKRj6+6SkeasE0ftPUIJUQK2tawLw4HMgS5hQJIk2H5qH9iUUXYD1B3+w0V9dHncFcnPteDqdztwSDs92wtYPTOxhzy+dkZ/41p8rlTCmPcdEZc92B4QVEeZPZMCfpAD05Ez8/L1DJxTOUc+h/n56fRfpFGVwkm5iG48JJQx/2rkKQ2o7aNAcap0a20208bKFenuf060ZawxgD79dM9v3Sqb1ABbaxPazVAP2KMssaBQE9DUzHEkm9/RyLOK7vucUcsGsqbq/t0Ghe5fI85O0DeL5dXJwZzb1ukxg1zCwV4SQ2UMB2PbsRwjyGmqnfBQAkNkY/ldKqM66qJrNGSnEg9lV7Dfs0aqguatklldrX4gNv3KCsMUK7Wx4DPzIvc6TFs4LTXH5BztrJledZR44L+L7evAM2EbLIWJ8WMux52zfyHbL3BR3fF6tBBJoq2G5fc9nWbpaTE7GoBBXD6mfpnk3eTM3i45UdgHgWp0igcYk7XUDyo3q+6QQHYpjkAQtn+OVxwRt5FaqU9stcP7XzUpVFEu2Eg/+9PUM8Twh809UbqNNOp0Luez6OVzYPWuEh8vNtx5v8Es9/z8V2HgSm7LuBeBs1uEl+LA7+Yzf/iFkr4O1f3bZp1hpsuk/XB6uO1lDVmSqGnZ7Hro5G8mF/Ol3Mo4LZ/MFtXsVaQ33mTyO9QQnp/c1L8ovLZDoy0dcf7qoRslX8/ASc7B2I= +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete specific comparison tables based on their unique IDs. + +Args: +delete_evaluations (List[str]): The unique identifiers of the comparison tables to delete. + +Returns: +A list of the deleted comparison tables' IDs. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-metrics-preview-evaluations-metrics-delete.api.mdx b/docs/docs/reference/api/delete-metrics-preview-evaluations-metrics-delete.api.mdx new file mode 100644 index 0000000000..c5ed7e33da --- /dev/null +++ b/docs/docs/reference/api/delete-metrics-preview-evaluations-metrics-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-metrics-preview-evaluations-metrics-delete +title: "Delete Metrics" +description: "Delete Metrics" +sidebar_label: "Delete Metrics" +hide_title: true +hide_table_of_contents: true +api: eJy1lVFP2zAQx79Kdc8uKQXKlqd1oxIVTEPA9lJV6OpcWrMkDrbD1lX57tPZoUkpMAlpfUhj++7s+93flw04XFqIZzB5xKxCp3RhYS5Al2T8aJpADAll5OguJ2eUtHeloUdFv+6o9dmu3QVbEGDooSLrPutkDfEGpC4cFY5fsSwzJb1jdG91wXNWrihHfisNb+4UWR49xVWJHypHuX9x65IgBuuMKpYgINUmRwcxVJVKoBZPBmgMrkGAUy7j8dcQrzdNLNStmV7ck3TNqZWhhJl09563IVpUTbBpYq9DslBzzDaGMxX5CVvqwoaMhoMB/yVkpVElh4EYbiopydq0ynrXjTGI9zKTugpOTXKqcLQk06HwxVsISCjFKnMQD2rxX1F3tprNX+L+NtyGSO3xHg+H+wB/YKYS79ebGKPN++kl5FBlOwR2DTItd1axWH9LIZ49J1WLvQrU89dxXepwQCaa2+VL5Fuy1uKSWvavm3oYvVte/ZfcOa+wdWPX0XyLN9B9PY2zgO+tGp/f3l7tBQy13S3qme8lvUYJ4CW60m1HAgEluhXEEDU9Ker0pKgRdAQCLJlHMtZXqTIZxLByrrRxFMlMV8kBLqlweIAqwlJBPWcPWRnl1t5lfDW9oPU5YULGK7hjcMM6CsrYNdsWBUt1QcyowJzH48qttFF/QrkFKM51FbwYAiv0uu2ek9+YlxntdcMZHKX44SQdHfdPTg9P+8cno2F/cZTK/lB+HB2loxGmOAKWnCpS7Q/UVGDs0+2Nr6YggMEE3oODw4MBPK/CjjFfKpT+Uj1l45dBPOO6JQoCKPc3Chxh/qld4FxLbV2ORSfeXtF3TrOF6ui3i8oMlb8wfu9No4YZNGrgrTvftW2LAwEs7pW23I9gs1mgpe8mq2uefqjIcNnnAh7RKFwwshljXD0JYAM/ae37qG8xfX+/2DyrQsGftRtuBcFjLCWV7k3beUfnZ5PLye0EBCyaz2iuE/YyyMnxMwbgz3XIMN6EuQ1kWCwr7hExhKj8+wur57i9 +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Metrics + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-queue-preview-evaluations-queues-queue-id-delete.api.mdx b/docs/docs/reference/api/delete-queue-preview-evaluations-queues-queue-id-delete.api.mdx new file mode 100644 index 0000000000..7f3b188a7c --- /dev/null +++ b/docs/docs/reference/api/delete-queue-preview-evaluations-queues-queue-id-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-queue-preview-evaluations-queues-queue-id-delete +title: "Delete Queue" +description: "Delete Queue" +sidebar_label: "Delete Queue" +hide_title: true +hide_table_of_contents: true +api: eJydVU1v2zAM/SsBTxsgxFmxk08L1gAN2mFdl+0SBIFqM7E62XIlKltm+L8PlD/TpD3sFDt8JB8fP1wByb2DeA2Lg9RekjKFg40AU6INb8sUYkhRI+H22aPHbWnxoPD3FgePxuK2LUKl223jAgJKaWWOhJbTVFDIHCGGDggCVAExlJIyEGDx2SuLKcRkPQpwSYa5hLgCOpbs58iqYg8CdsbmkiAG70MUUqQZ8I0DT5Yp1PWG47nSFA4dh7iazfgnRZdYVTJxiOG7TxJ0buf15KEFg4DEFIQFMVyWpVZJqDN6cuxTjWiVlpUi1WRIjG+cWraqINyjHdH7HBACUtxJrwniWS0GMThdcfy6C0q9XXEtekThtQau9oIGogOZxydMaMRkaHiAL9O+/Lpmv49XV+dq/ZRapcFpsrDW2P+XKkWSSvOTIszdOUCb5MT6mjAjITq5681Qt7RWHkdl35mGINQCcre/NFod9As6J/cIfbDXoUGMyYqtlzQfxnod6mpSt7hR4wZ5G3VfL+O6ke+tBt+sVvdnAZvenjb1OqzqJIwBU0PKzLD1YYUpgxiidvOj0eZHzeZHVTfDNQhwaA/dvnurIYaMqHRxFCXa+HQq91iQnEoVyVKFyXWYeKvoGFzm98tbPN6gTNFCvN6MAd95nJoBOYX1vZGlukWWqr00c0+Zsepv0/X23GSNF2uhip0J7q1s80BuMr9fggAuoxFpNv0wncFL6U7AvAkyCZvQ5Q5mEC9U6OsHAZiHNQBCmX8aDMysNI5yWYzivejUCZdeAMI/FJVaqjDjIXPVtnANbQs58ejgtyeIH+L+GG0EZMYRe1XVo3T4w+q65r+fPVpu1UbAQVolH1m4dQWpcvycQryT2uEZwf5UwLuHdiPeT0BcJt61s+BeMld+AwG/8Dj+foRdz7pZqVrzPEmwpJHj2Wnioeon/Xpxt1gtoK7/AY0hav8= +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Queue + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-queues-preview-evaluations-queues-delete.api.mdx b/docs/docs/reference/api/delete-queues-preview-evaluations-queues-delete.api.mdx new file mode 100644 index 0000000000..809fc4a9d2 --- /dev/null +++ b/docs/docs/reference/api/delete-queues-preview-evaluations-queues-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-queues-preview-evaluations-queues-delete +title: "Delete Queues" +description: "Delete Queues" +sidebar_label: "Delete Queues" +hide_title: true +hide_table_of_contents: true +api: eJy1ldtO20AQhl8lmusNDgFC66umJRIRVKVAexNF0cQeJ0ttr9kDJY387tXsOjgJh0pI5SLs4Z/ZnW9mx2uwuDAQT2D0gLlDK1VpYCpAVaT9bJxCDCnlZGl278iRmVWaHiT9nlFrstmaBSUI0HTvyNjPKl1BvIZElZZKy0Osqlwm3i66M6rkNZMsqUAeVZqPtpIMz7zbmUz9RFoq/MCuKoIYjNWyXICATOkCLcTgnEyhFhsBao0rEGClzXn+nb11xqmBuhWp+R0ltrmx1JQyjfbcaWveIvKOxqm5DkFCzf5ae6sd+QVTqdKESPq9Hv9LySRaVuwEYrhxSULGZC7vXDdiEO9llSgXjJrAZGlpQXor/i9eISClDF1uIe7V4r8h3jpmMn2J91tYGxa1B3vc7z9H9xNzmXqrzkhrpd/PLSWLMt+JfleQq2RnF8vVtwziyT6lWjxjX09fR3WpwgWZZmEWL1HfSL+SMbiglvvrUg+jc8u7/ypyjisc3ei2ar3FG+i+HsZZwPdWhs9vb6+eOQy53U3qme8eHV8HXEEF2aVqGxAIqNAuIYao6UHRVg+KQg+KQIAh/UDa+Bw5nUMMS2srE0dRkiuXHuCCSosHKCOsJNRTtkiclnblTYZX4wtanROmpH31bgluuIpCXezKnlKClbwgJlRiwfOhs0ul5Z+QbAGSI10GK0bA9XnddsvRIxZVTnvdbwJHGX44yQbH3ZPTw9Pu8cmg350fZUm3n3wcHGWDAWY4AC43WWbKX6ehP/TBdoZXYxDAWALr3sHhQQ/2M7Aj5geFiX9Qm1j8Nog9qk88QQAV/jWBJSw+tRscaaWMLbDc8ref8J3LPBG19GijKkfp34o/et1UwgSaSuCTtz5hTV/jAZf1UhnuQ7Bez9HQD53XNS/fO9Kc8qmAB9QS5wxswhCXm+Sv4RetfO/0zaXrXxbLcxeSvddouAkEi2GSUGXf1E63SvxsdDm6HYGAefPJLFTKVho5Nv6NAfjDHAKM12FtDTmWC8fdIYbglf/+Arv/r/M= +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Queues + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-result-preview-evaluations-results-result-id-delete.api.mdx b/docs/docs/reference/api/delete-result-preview-evaluations-results-result-id-delete.api.mdx new file mode 100644 index 0000000000..9863e716ad --- /dev/null +++ b/docs/docs/reference/api/delete-result-preview-evaluations-results-result-id-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-result-preview-evaluations-results-result-id-delete +title: "Delete Result" +description: "Delete Result" +sidebar_label: "Delete Result" +hide_title: true +hide_table_of_contents: true +api: eJydVU1v2zAM/SsBTxsgxFmxk08L1gAN2mFFm+0SBIFqM7E62XIlKltm+L8PlD/TpD3sFDt8JB8fP1wByb2DeA2Lg9RekjKFg40AU6INb8sUYkhRI+HWovOatqXFg8LfWxxcWpPbdhiVbreNFwgopZU5ElrOVEEhc4QYeiQIUAXEUErKQIDFF68sphCT9SjAJRnmEuIK6FiyoyOrij0I2BmbS4IYvA9RSJFmwEOIPFmmUNcbDuhKUzh0HONqNuOfFF1iVcnkIYZHnyTo3M7ryUMLBgGJKQgLYrgsS62SUGv07NinGvEqLctFqsmQGN84tXRVQbhHO+L3NSAEpLiTXhPEs1qM5OB8xfH7Loj1fs216BGF1xq43EsqiA5lnp4xoRGXoe8Nfpn2CtQ1O36+ujoX7KfUKg1ek4W1xv6/WimSVJqfFGHuzgHaJCfWt6QZSdEpXm+GwqW18jiq+840BKEWkLv9pfHqoN/QOblH6IO9DQ1iTFZsvST6MNrrUFeTusWNWjfI26j7dhnXjXzvdfhmtbo/C9j09rSp12FfJ80cMDekzAzrHxaZMoghai9ANLoAUXsBoqof5BoEOLSHbu+91RBDRlS6OIoSbXw6lXssSE6limSpwvg6TLxVdAwu8/vlLR5vUKZoIV5vxoBHnqhmRk5hfXtkqW6R1WovztxTZqz62zS+vTpZ48VyqGJngnur3DyQm8zvlyCAy2h0mk0/TWfwWr0TMC+DTMIydLmDGcQrFfr6QQDmYROAUOZfBgMzK42jXBajeK+bdUKmV4DwD0WllirMeUhdtV1cQ9tFzjw6/t0l4qd4OEobAZlxxH5V9SQd/rC6rvnvF4+Wu7URcJBWySfWbl1Bqhw/pxDvpHZ4RrE/GPDhod2LjxMQl6l3HS24ncyW30DALzyefErCymfdvFStfZ4kWNLI8+xC8WD18369uFusFlDX/wBrx3Il +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Result + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-results-preview-evaluations-results-delete.api.mdx b/docs/docs/reference/api/delete-results-preview-evaluations-results-delete.api.mdx new file mode 100644 index 0000000000..a6ebe0d994 --- /dev/null +++ b/docs/docs/reference/api/delete-results-preview-evaluations-results-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-results-preview-evaluations-results-delete +title: "Delete Results" +description: "Delete Results" +sidebar_label: "Delete Results" +hide_title: true +hide_table_of_contents: true +api: eJy1ldtu2zAMhl8l4LVTZ2mbbr5atgZo0A4rum43QRAwNp2oky1Xh25Z4HcfKDm1kx4GFFgvUh1+UuJHit6CxZWBZAaTB5QOrVClgXkEqiLtZ9MMEshIkqWFJuOkNYtK04OgXwtqbR73FkELEWi6d2TsJ5VtINlCqkpLpeUhVpUUqTeM74wqec2kayqQR5Xmw60gw7PgdyEyPxOWCj+wm4ogAWO1KFcQQa50gRYScE5kUEc7AWqNG4jACit5fuPd9aaZgbpVqeUdpba5s9CUMZHOyfPWQcspuJpm5iYECjV7bD1Y7cgvmEqVJkQzHAz4X0Ym1aJiL5DAN5emZEzuZO+mEUP0Vl6pcsGoCU2UllakOwg+e0UEGeXopIVkEG75nzB3DprNn2P+KtkGR+3ZngyHT+n9QCkyb9abaK3029FlZFHIvfj3BVKle7tYbr7mkMwOOdXRE/z1/GVYVypckHkWZvUc9530CxmDK2rJvyz1MHq3vPuvSue4wtGNrlPvLd5A9+UwzgO+11J8cXt7/cRhyO1+Us99E+mFQuAaKsiuVduKIIIK7RoSiJtmFHeaUdw0oxgiMKQfSBufJaclJLC2tjJJHKdSuewIV1RaPEIRYyWgnrNF6rSwG28yvp5e0uaCMCPtC7gj+MZ1FCpjX/aYFKzEJTGjEguej51dKy3+hHRHIDjWdbBiCFyhN23bnPzGopJ02AZncJzj+9N8dNI/PXt31j85HQ37y+M87Q/TD6PjfDTCHEfAFSfKXPn7NAkY+2h74+spRMBcAu7B0bujARwmYU/MbwpT/6Z2wfhtiA6wPgKFCKjwDwosYfGx3eBQK2VsgWXH35Oc793mkaml3zauJAr/XvzZ26YYZtAUAx/d+Z7t2huPuLbXynA3gu12iYa+a1nXvHzvSHPW5xE8oBa4ZGQzxrje5X8LP2nje6jvMH3/vFguXcj3QbfhThAsxmlKlX1VO++U+fnkanI7gQiWzeezUBlbaeTg+DcB4M90iJArhNe2ILFcOW4RCQSv/PcXOr62nw== +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Results + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-run-preview-evaluations-runs-run-id-delete.api.mdx b/docs/docs/reference/api/delete-run-preview-evaluations-runs-run-id-delete.api.mdx new file mode 100644 index 0000000000..f9cc7a31e7 --- /dev/null +++ b/docs/docs/reference/api/delete-run-preview-evaluations-runs-run-id-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-run-preview-evaluations-runs-run-id-delete +title: "Delete Run" +description: "Delete Run" +sidebar_label: "Delete Run" +hide_title: true +hide_table_of_contents: true +api: eJydVU1v2zAM/SsBTxsgxFmxk08L1gAN2mFFmu0SBIFqM7E6WVL1kS0z/N8Hyp9p2h52smM9io/vkUwFnh8cpBtYHLkM3AutHGwZaIM2/lrmkEKOEj3ubFA7Y/Eo8PcOBzx9d7t4KvLdrgEDA8MtL9GjpQQVKF4ipNDAgIFQkILhvgAGFp+DsJhD6m1ABi4rsOSQVuBPhqKct0IdgMFe25J7SCGEeIsXXhJgFdRkmUNdb+k2Z7Ry6OiCq9mMHjm6zApDhCGFh5Bl6Nw+yMmqBQODTCuPyhOcGyNFFutLnhzFVCNSxpI+XjQZMh2aoJarUB4PaEfkvkYEgxz3PEgP6axmnRCUTJ2+76NG71dbsx6hgpRAtV7UzzqIfnzCzI9YDBavglrmfeF1TVGfr64udfrJpchjyGRhrbb/L1KOngtJb8Jj6S4BUmdnp2+JMhKhE7reDlVza/lpVPSdbghCzaB0h9daqoN+Q+f4AaG/7G1oFGOyptPXFB/aeRPralK3uJFpg7yNum+Xcd3I9569N+v1/cWFjbfnpl7HAZ2sgiJi6As9zHgcW19ACkk76clo0hOa9KRqOrcGBg7tsZvvYCWkUHhvXJokmdQhn/IDKs+nXCTciNivDrNghT/FkPn98hZPN8hztJButmPAAzVS0xrnsN4VbsQtkkjtZpkHX2gr/jZ+twumaKJIBaH2Ooa3gs0jucn8fgkMqIxGntn003QGL0U7A9MM8CzOQJc7HgN7oUJfPzDAMg4AeOTll+GAmBntfMnV6L4zj86Y9OV7/OMTI7mIvR3zVq15G2jNo7SjxR6XDj3SdvlsGRTaeYqoqkfu8IeVdU2fnwNaMmnL4Mit4I8k2aaCXDh6zyHdc+nwgly/HuDDqp2CjxNgr5PujFTkIvGkX8DgF56Gf4o43UXXI1V7OM8yNH4UdrGMqJn67r5e3C3WC6jrf4keXs8= +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Run + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-runs-preview-evaluations-runs-delete.api.mdx b/docs/docs/reference/api/delete-runs-preview-evaluations-runs-delete.api.mdx new file mode 100644 index 0000000000..7a536c92a5 --- /dev/null +++ b/docs/docs/reference/api/delete-runs-preview-evaluations-runs-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-runs-preview-evaluations-runs-delete +title: "Delete Runs" +description: "Delete Runs" +sidebar_label: "Delete Runs" +hide_title: true +hide_table_of_contents: true +api: eJy1lW1v2jAQx78KutehobSlW16NrUhF67SKdnuDEDqSC7hL7MwP3RjKd5/ODg3p06RK4wXxw53t/+/O5x1YXBtI5jC5x8KhFUoaWESgKtK+N80ggYwKsrTUTpplpele0K8ltQ5hYhmsIAJNPx0Z+1FlW0h2kCppSVpuYlUVIvVe8Z1RksdMuqESuVVp3tYKMtzTTi5F5pvCUukbdlsRJGCsFnINEeRKl2ghAedEBnW0N0CtcQsRWGEL7s+c7E0zA3VrolZ3lNrmtEJTxhT2ey5a1xbMzMlpZmZBHNS8VutrtSM/YColTVAwHAz4k5FJtah4CUjgxqUpGZO7ojdrjCF6K6NUueDUiBLS0pr0gfJP3iKCjHJ0hYVkwKf8D2gPtpgvnuP8MtCGQu2Rng6HT6F9x0Jk3qc30VrptxPLyKIoOsq7BoVKO7Mot19zSOaPCdXRE+r14mVMVyockEmWZv0c8b3pFzIG19Qyf9nUw+jd8uy/Upt1ha0bu4Mcb/EGui/LuAj4Xovv5e3t9ZMFQ2y7Qb3w9aI3c5KzpyS7UW2xgQgqtBtIIG4qTnxQcWKuODFEYEjfkzY+Pk4XkMDG2sokcZwWymVHuCZp8QhFjJWAesEeqdPCbr3L+Hr6mbaXhBlpn7cHBjecQSEnumYP4cBKfCamI7Hk/tjZjdLiTwh0BIJVboIXy+fcnLW1cfIby6qgTq2bw0mO787y0Wn/7Pz4vH96Nhr2Vyd52h+m70cn+WiEOY6AE03IXPnDNNzHXmpvfD2FCBhKoDw4Oj4awGP2HWO+Spj6q7RX4qchesT0gSZEQKW/R2AJyw/tBOuslLElyoP1uqHuHOWBpqXfNq4KFP6O+I13TQ7MockB3vfgofKVjD+czBtluPbAbrdCQ990Udc8/NOR5mAvIrhHLXDFsOYMcLMP+w5+0NbXSl9S+v4+sXnhQpgflRe++sFjnKZU2VdtFwepfTG5mtxOIIJV8zSWKmMvjayM/xMAfnyDPE4MHttBgXLtuCYkEFbl31+UG6ST +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Runs + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-scenario-preview-evaluations-scenarios-scenario-id-delete.api.mdx b/docs/docs/reference/api/delete-scenario-preview-evaluations-scenarios-scenario-id-delete.api.mdx new file mode 100644 index 0000000000..d3ae6c8920 --- /dev/null +++ b/docs/docs/reference/api/delete-scenario-preview-evaluations-scenarios-scenario-id-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-scenario-preview-evaluations-scenarios-scenario-id-delete +title: "Delete Scenario" +description: "Delete Scenario" +sidebar_label: "Delete Scenario" +hide_title: true +hide_table_of_contents: true +api: eJydVctu2zAQ/BVjTy1AWG7Qk041GgMxkqJB4vZiGAYjrS2mlMiQK7euoH8vlno6dnLoyZI5s4/Z4aoCknsP8RoWB6lLScoUHjYCjEUX3pYpxJCiRsKtT7CQTpmtdXhQ+HuLA6k/9NsBp9LttuGCACudzJHQcb4KCpkjxDDCggBVQAxWUgYCHL6UymEKMbkSBfgkw1xCXAEdbaCSU8UeBOyMyyVBDGUZopAizYDHNvZkmUJdbzikt6bw6DnK1WzGPyn6xCnLTTClTBL0flfqyUMLBgGJKQgLYri0Vqsk9Bw9e+ZUo8qsY+FINRkSUzaktmBVEO7RjSr8GhACUtzJUhPEs1qcSMIZi+P3XZDs/b5r0SOKUmvghi8rITqceXrGhEb1DC7oGMu016Gumfr56upctp9SqzTwJgvnjPt/zVIkqTQ/KcLcnwO0SU5O35JnJEene70ZWpfOyeOo8zvTFAi1gNzvL9msg35D7+UeoQ/2NjSIMVnx6SXZB4uvQ19N6hY3Gt8gb6Pu221cN/K9N+Ob1er+LGAz29OhXoebO+mcwNUhZWZYCOFSUwYxRO1GiEYbIeo3QlSNLF2DAI/u0O2B0mmIISOyPo6iRJsynco9FiSnUkXSqmBkj0npFB0DZX6/vMXjDcoUHcTrzRjwyL5qnHIK64ckrbpF1qzdQPOSMuPU32b87Q7KGhaLooqdCfRWv3kobjK/X4IAbqNRazb9NJ3Baw1PwHwlZBKuRJc7HIN4pULfPwjAPNwHIJT5l+GAK7PGUy6LUbzzkZ2U02tA+Iciq6UKfg/Jq3aWa2hnyblHH4VhL/FzPF5SGwGZ8cTcqnqSHn84Xdf890uJjme2EXCQTsknVnBdQao8P6cQ76T2eFZmvzzgw0N7Rz5OQFwuv5trwUPlivkNBPzC46sPTFgAWeebqkXMkwQtjbhn+4oN1nv/enG3WC2grv8BCcJ8wA== +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Scenario + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-scenarios-preview-evaluations-scenarios-delete.api.mdx b/docs/docs/reference/api/delete-scenarios-preview-evaluations-scenarios-delete.api.mdx new file mode 100644 index 0000000000..b323b1a055 --- /dev/null +++ b/docs/docs/reference/api/delete-scenarios-preview-evaluations-scenarios-delete.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-scenarios-preview-evaluations-scenarios-delete +title: "Delete Scenarios" +description: "Delete Scenarios" +sidebar_label: "Delete Scenarios" +hide_title: true +hide_table_of_contents: true +api: eJy1lW1v2jAQx78KuteGUNrSLa/GVqShbVrVdnuDEDqcC3hL4sx2ujKU7z6dHZpQ+iBNWl9QP9ydfb87/7MDh2sL8Rymd5hV6JQuLCwE6JKMn80SiCGhjBwtraQCjdJ2WRq6U/R7Sa1XZ3cZ7EGAoV8VWfdeJ1uIdyB14ahwPMSyzJT0rtEPqwtes3JDOfKoNHwBp8iG9RB5qRI/V45yP3DbkiAG64wq1iAg1SZHBzFUlUqgFnsDNAa3IMApl/H8pgnYmyUW6tZOr36QdM29laGEyRycvmiDtMT24WaJvQ4JQ81R2yjOVOQXbKkLG7IaDYf8LyErjSo5Dt+skpKsTausd90Yg/hXblJXwalJTxWO1mQ6ID54CwEJpVhlDuJhLf4z7s5h88VT7F/h20CpPeGz0eiY4XfMVOIde1NjtPl3gAk5VNkBg0ODTMuDXSy2X1OI549Z1eKoCPXieWCfdbggM83t+in2e9MvZC2uqaX/vKmH0bvl3dd6nvMKRzd2nb5v8Qa6z6dxGfC9VOSPt7dXRwFDbQ+LeuklpbdvBe6jnNxGt/IEAkp0G4ghauQp6shT9CBPEQiwZO7IWF+pymQQw8a50sZRJDNdJQNcU+FwgCrCUkG9YA9ZGeW23mVyNftE24+ECRnfxh2DG+6l0B2HZg+FwVJ9IuZUYM7zSeU22qg/oeQCFOe7CV4Mgrv0uhXS6T3mZUbHwjiH0xTfnKfjs/75xclF/+x8POqvTlPZH8m349N0PMYUx8B9p4pU+xs1ZZj4fHuTqxkIYDIB+nBwMhjC41IcGPPLQulf1j4dvw3iEdgHpCCAcv+swBHm79oNTrbU1uVYdOI9UfmD+zxwdXTvojJD5d+NP33XtMQcmpbgwztfulbseMxdvtGWlQl2uxVa+mayuublXxUZrv1CwB0ahSvGNmeUm30X7OAnbb2meq3p+4fG5lkVqv5Id1gTgsdESirdi7aLTrtfTj9Pb6cgYNV8VnOdsJdBTo9/YwD+hIcc411Y20GGxbpisYghROW/v8eGwIU= +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Scenarios + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-secret.api.mdx b/docs/docs/reference/api/delete-secret.api.mdx index 5daf9cd574..fb5b371864 100644 --- a/docs/docs/reference/api/delete-secret.api.mdx +++ b/docs/docs/reference/api/delete-secret.api.mdx @@ -5,36 +5,36 @@ description: "Delete Secret" sidebar_label: "Delete Secret" hide_title: true hide_table_of_contents: true -api: eJx9VE1v2zAM/SsGTxsgxGnRk0/L1gAN2mFFm/USGAUrM7Faf6gSHSwz/N8Hys53u1ySiI/U4+OjWmBceUgW8IRNwZAqqC05ZFNXswwSyKggpmdP2hGDAosOS2JyktRChSVBAn342WSgwFSQgEXOQYGj98Y4yiBh15ACr3MqEZIWeGNDIjtTrUABGy7k4DFUimYZdF0qBbytK09eci7HV/KVkdfOWKEoCY3W5P2yKaKHAQydgqvLy3PsExYmC71FU+dqBwp0XTFVLFi0tjA6hONXLwntAWHrRBg2PZWMGE0hvwxT6c8BRa2Polhtfi2DZMedd2p3YiqmFTno0k5tz9A53BzIc1f3BKXF0q/+p+RP8h5XQYwe8jk0iBHNJdrt765fXknz0RQXoa/+6gGX7svs5e3V/byN616+jy7bQm7m8/uzgvJRJ0O9Dg6NHrcOLYnzem/d4FnOIYF4LRaP1xdxb1cftzvfdqDAk1tvfd24AhLIma1P4lgXdZONcEUV4whNjNbAKY1JiEY/BApiXU+6cYY3od7kfnZLmxvCjBwki/QQ8Cge611zDNsNDK25JdFvWLdJw3ntzN/eCsPK5X2WCGSqZR3SBy0Hbt9Rv1ElOyp99rTHo4vR+LNmhoRocj8bVgV1WJUtjwADdSLXTihQQGXYE2DC8ts+ICxt7bnE6qDe6SiPSO3UYPrDsS3QhC0IV7fDjBcQZiwdXoSJhjmDgmT/QqUK8tqzgNv2BT39dkXXyfF7Q07GlSpYozP4IuItWsiMl98ZJEssPJ3x2r0h8OVhWJWvEaiP+W5HWsk811g08g8UvNHm6CENr0C+NUw7xCdak+WDzLNHS5y1W4Hr6d10PoWu+wfAZwA6 +api: eJx9VE1v2zAM/SsGTxsgxG3Rk08L0AAN2mFFm+0SGAVjM7E6f6gSHSwz/N8Hyh+Jk3a+2BYfJfK9RzXAuHMQreGFEkvsIFZQGbLIuiqXKUSQUk5Mr87HQYFBiwUxWUlroMSCIIIu/KpTUKBLiMAgZ6DA0nutLaUQsa1JgUsyKhCiBvhgfCJbXe5AAWvOZaErJFim0LaxbOBMVTpyknNzdSuvlFxitZESJaFOEnJuW+fBcw+GVsHtzc0l9hfmOvW9BQtrKwsKkqpkKlmwaEyuEx8O35wkNCcFGyvEsO5KSYlR5/KlmQp3CcirZBLF8vBj6ymbdt6qcUWXTDuy0MatGtbQWjyc0PNYdQVKi4Xb/Y/J7+Qc7jwZHeRzqCcjWEm0PZ5dbd4o4YmKa99Xd3SPi4/bHOnt2P28jbuOvo8OGyD3q9XTxYbyqDNR77xDg5fBoQVxVh2t6z3LGUQQ7rHOOdxfh51dXdiMvm1BgSO7H3xd2xwiyJiNi8Iwyas6neGOSsYZ6hCNBnGno6S2mg8+Zf60fKDDPWFKFqJ1fAp4ERt1xpjCRk3Q6AcSivqJmtecVVb/7dTupyrrsoQDXW4rn97TNffFBfOnJSiQNjpyrmbXsys4p2wClgnAxE/AcLYPgzpjYewfFFDh7Q9MWHw7BqQyUzkusDzZ71yhSTEjA0x/ODQ5am9uf3TTS7cGL510du2F6i4rBdHx4okVZJVjATfNBh39tHnbyvJ7TVYkihXs0WrcCGHrBlLt5DuFaIu5o4u6xqsBvjz3E/A1APVxvYOMpWi4x7yWP1Dwmw6T+9EPdzaYpOnj8yQhwyeZF3eRuGl09t3icbFaQNv+A4gm8mk= sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Delete Secret @@ -43,228 +43,29 @@ Delete Secret as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-testsets.api.mdx b/docs/docs/reference/api/delete-testsets.api.mdx index a65a244b0d..80b4632668 100644 --- a/docs/docs/reference/api/delete-testsets.api.mdx +++ b/docs/docs/reference/api/delete-testsets.api.mdx @@ -5,33 +5,36 @@ description: "Delete specific testsets based on their unique IDs." sidebar_label: "Delete Testsets" hide_title: true hide_table_of_contents: true -api: eJzVVd9v2jAQ/lese9kmZdBVe8rTaEEqaqdVLdsLRZVJDuI2sVP70pYh/vfp7IQEGNv6OF6I7e/O9333w2sguXQQT2GCjhySg1kEKbrEqpKU0RDDEHMkFK7ERC1UIqhGirl0mAqjBWWorKi0eqpQjIeud6fv9MAuXXyna/S9Sp14f6UcTR3Z2YdYTDJsTFSKmtRCoXXCLNhdewkZkfoAvNMbpMpq9jsQuXLUwAMk3Zq982FABKZEK5nIOIUYAuy+QUEEFp8qdHRm0hXEa0iMJtTEn7Isc5V42/6DYyXW4JIMC8lfpWXPpNDxqkOSl4qwCPurEiEGR1bpJWyiZkNaK1cQASnKeV2LL8apg00LM/MHTKiOUllMOVHdu2ati5ClbRY37KY1I1uh33Cl0S4EfXpywn+7yb6tkgSdW1S5uKnBEP27LG9m3lwi6irrEthE8Pn09DDGHzJXqY9AjKw19i0B7uYtRZIq3wl8F5CbZOdU6tW3BcTTQ4LbHaUJl2hhMzvO+sqEAFmYwi0PBWuhX9E5ucRWwuNQL4aY8Onfioh5hatrXKeSWnmDusdpDIN8v7usgVxMJtcHDkNuC6TMtF0JEZSSMoih3+lPh/YZrfOSVzaHGDKi0sX9fpKbKu3JJWqSPan6slSwP7oG/lScMxQ2M3aXVFbRyvsbXI8vcXWBMkUL8XTWBdxyxYQa2IVt5ZelukRWQ8uC14OKMmPVz5DYCBQHkAUrpsu1eNNOm9GrLMocD6bHtMkrl4/SC+MRtZo1nzOZPKJOIQLWJlA96X3qnRwToDYQg+tx3Swy8c3SxO5hEO1JvBUXIsDCdwoQyuJLe8DMSuOokLrjb7+Z98LqzNn/+3WpS4HwlfplLpVvaK/hui7m7bz2wzozjnhvvWZ2322+2fD2U4WWS3IWwbO0Ss452VMugKwpzjU84gpiOA/CffRdzvC8CsW4N/R4IAWLQZJgSX/EzjrNOBxdjSYjiGBeP4mFSdnKyheeIfIFYvDvKtv7/vB7a8ilXlY8qWIIXvn3C0rh6K4= +api: eJzVVd9v0zAQ/lesewGk0JaJpzxRaKVVG2LaCi9dNbnJtfFI7My+bJQq/zs6O2nSlgF7pC+N7e/O9333wzsguXEQL2COjhySg2UEKbrEqpKU0RDDBHMkFK7ERK1VIqhBipV0mAqjBWWorKi0eqhQzCZucKtv9dhuXHyrG/SdSp14fakcLRzZ5ZtYzDNsTVSKmtRaoXXCrNlddwkZkfoAvNNrpMpq9jsWuXLUwgMk3Zu98mFABKZEK5nILIUYAuyuRUEEFh8qdPTRpFuId5AYTaiJP2VZ5irxtsN7x0rswCUZFpK/SsueSaHjVY8kLxVhEfa3JUIMjqzSG6ijdkNaK7cQASnKed2IL2apg7qDmdU9JtREqSymnKj+XcvORcjSPos1u+nMyFboN1xptAtBn41G/HeY7JsqSdC5dZWL6wYM0b/L8mLm7SWiqbI+gTqC92dnpzF+k7lKfQRiaq2xLwnwMG8pklT5QeCHgNwkB6dSb7+sIV6cEtzvKE24QQv18nnWlyYEyMIUbnMqWAf9jM7JDXYSPg/1Yog5n/6tiJhXuLrB9Sqpkzeo+zyNSZDvd5e1kPP5/OrEYchtgZSZrishglJSBjEMe/3p0D6idV7yyuYQQ0ZUung4THJTpQO5QU1yINVQlgrqJVsklVW09Sbjq9kFbs9RpmghXiz7gBsuipDmQ9heYVmqC2TCWha8HleUGat+htxFoLgas2DFjLjcrruBMv0hizLHkwGxaFPHFaL02nhEI9jYExLjqxlEwNRDzY8G7wYjOB7NB2DuAZn4Hmjj9ccQHSm31wwiwMI3ABDK4kN3wGxK46iQuufvuEePwumNz//70WjST/iDhmUule9Tr+GuqdH9GPYzODOOeG+3Y3ZfbV7XvP1QoeUyXEbwKK2SK07wgpOetQW5g++4hRg+BeHe+uZleF6FAjyaZTxngsU4SbCkP2KXvR6bTC+n8ylEsGpeusKkbGXlE48G+QQx+OeS7X1P+L0d5FJvKh5AMQSv/PsF6wnaHw== sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Delete specific testsets based on their unique IDs. @@ -46,299 +49,29 @@ A list of the deleted testsets' IDs. as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/delete-trace.api.mdx b/docs/docs/reference/api/delete-trace.api.mdx new file mode 100644 index 0000000000..18553d5da6 --- /dev/null +++ b/docs/docs/reference/api/delete-trace.api.mdx @@ -0,0 +1,71 @@ +--- +id: delete-trace +title: "Delete Trace" +description: "Delete Trace" +sidebar_label: "Delete Trace" +hide_title: true +hide_table_of_contents: true +api: eJydVk1v4zYQ/SvGnHYBNk6DnnSq0aTYdFMk2Li9GMZiTI0tbiiSSw7TuoL+e0FKtiQ7yW57kkzOm4/3ZkZugHEXoFjB0qNUZgdrAdaRR1bW3JZQQEmamD6zR0kgwKHHmph8QjVgsCYoIN9+ViUIUAYKcMgVCPD0NSpPJRTsIwkIsqIaoWiA9y7hAvsUVAAr1ukgpUGz2xLadp3wwVkTKCTI1eVVepQUpFcu5QcFPEYpKYRt1LNPvTEIkNYwGU7m6JxWMpcz/xISphml4XwqllUXQdrYgfrslGHakR+l90u2EFDSFqNmKC5bAVqZp4xHs7/fZloUUx3OAwSHJrH0BgGPDk2uXwykfhdfApDZq01kOkkGy1Kl+lE/TLIZLKbeW3HGwOjIxHozPdlYqwlNPno5FkjlZdTo3/0atf4tWPPDfWQX+X0qpfNiN19IcnbSs/c9KPQe99P0tIbUOweGTrCZ2LOIr4EXA6XtGXDc36ujtiPdRo7ul6TvlHkahf926ne5sV4KfOo2HJu/bZP9T1cvzMqfqFWZJ2F24731/39QSmJUOr290ujaysntf2m19SlFI0Jsl2BisQ67twbjdwoBdzTw/bppJmO2TLffEjnV1YXu7UZqDfR27L5exnVH31vCflguH84cdtpORb3O63m27NdzTVzZYW3nhc0VFDB3np4V/TXnbtHnJ4V5c+jWFgQE8s+HzR69hgIqZheK+VxqG8sL3JFhvEA1R6dyqwaS0SveZ8ji4fYj7T8QluShWK3HBo+plbrmmJoddUGnPlKiqf+mLCJX1qt/OsX7D0vVoRIPymxthh9mNSc3WzzcgoBURkfQ5cWPF5dwStvEOE0ByjwFh9j5GsQJC8f6QQDVeQSACeufh4uUmbOBazQjfycqTXI5EsD0N8+dRpX7O0duevlW0MvXr5e+gbOEINLndVg5lQ2cEE2zwUB/eN226fhrJJ9kWgt4Rq9wk0hbNVCqkN5LKLaoA50ld1wR8O5TPwnvZ8MCniZ9kNIkHZ9Rx/QLBDzRfvwvIc94deiTpr9eSEmOR8CzlZQa6tjh1zd3N8sbaNt/ARyf/NI= +sidebar_class_name: "delete api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Delete Trace + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/delete-traces.api.mdx b/docs/docs/reference/api/delete-traces.api.mdx index f65bd36e22..962bdfb943 100644 --- a/docs/docs/reference/api/delete-traces.api.mdx +++ b/docs/docs/reference/api/delete-traces.api.mdx @@ -5,36 +5,36 @@ description: "Delete trace." sidebar_label: "Delete traces" hide_title: true hide_table_of_contents: true -api: eJydVU1v2kAQ/StozhYmUU8+lSZIQUmbqKG5RCha1gNssvY6u2NUavm/V7NrGxvyofaE8bz5ejPzXAGJjYPkEW5XDu1OrJRWtIdlBCk6aVVByuSQwCVqJByRFRLHEIEp0Aq2zVNIIPXWJ291EEEhrMiQ0HLoCnKRISSQmxSfVAoRKA75WqLdQwQWX0tlMYVkLbTDCJzcYiYgqYD2BTs6sirfQARrYzNBkEBZ+jikSDPgh0lxNE+hrqPjbO7f0wlrBSMVYeY+L6M+qcNBXS85kytM7tDHOJ9M+GfI6n0pJTq3LvXoZwOGCKTJCXNiuCgKraQnOn527FP16i0sj4FUyLBD61SAHBfc1vfQQOoIHAkq3+yuBd8HRM39BYhZPaOkAYePXdou5PIQ4sJojZJCpK7DuuaYX87PTwl5EFqlvt3RzFpj/5+NFEkozU/dGIcAbeTAKvL97dqv65AQXqnmjcoJN2ihXh44aZelbfnGhAKZ48xtPiL4OzonNghdsPehnozRgq2fzYP7CqkbXG8eB3oDu++3cRnoeytZC7laLO5OAobZZkhbcxAGrwi0hQRi05eZeHcWd5rB71vBKK2GBLZEhUviWGpTpmOxwZzEWKhYFAqO9WnqraMLhgIfn0NZWpYyjje9m1/j/gpFihaSx2UfcM8LFFZiCDvoQaGukclplGVa0tZY9SfMuZGXbfDi7lW+Nt69Iaqp7ZuQL5izbHWXCpPx2XjyXjONw2h6N2/uQEh/B20dHgbREV0dURABZv4IgFBkXw8GrrIwjjKR9+L1Nd4dF1UdDvHkY9DwRPib4kIL5ZffF1U1g3+EweCZgzN2DKmWEWyNI4ZV1Uo4/GV1XfPrINo8wlQ5sdI92X7B/eCbshO65Cr8wX6MdgP4kv9YxXi/G1E7S04b/KZSYkE9rxMl4ijd1l/ObmaLGdT1X9E4gSA= +api: eJydVE1v2kAQ/StozhYmUU8+FTVIQUmbqKG9IBQN9gCbrr3O7jgqtfzfq9m1wYZ8qD1hdt7MvHnzUQPj1kGyhLu1I/uCa6UV72EVQUYutapkZQpI4Io0MY3YYkpjiMCUZFFs8wwSyLz10VsdRFCixZyYrISuocCcIIHCZPSoMohAScjniuweIrD0XClLGSQb1I4icOmOcoSkBt6X4ujYqmILEWyMzZEhgarycVixFsA3k9FonkHTRKfZ3L+nQ2tRkIopdx/TaM54OGialWRypSkc+RiXk4n8DFV9qNKUnNtUevS9BUMEqSmYChY4lqVWqRc6fnLiU/f4llbawCpkcIxcvcq3o/cQEI0wDhCzfqKUB6osu0Cro+MXozWlHPwPTJtGIn26vDwv7CdqlXnao5m1xv5/VRkxKi1fh3YMAdqkAysW+7uNH7uhDDIa7YsqmLZkoVkdleia3pV8awJBaW/utu/J+pWcwy3BIdjbUC/GaCHWj7ogdYXULa7Xj6O8Qd23y7gK8r2WrINcLxb3ZwFDb3PinTkuuN9s3kECsemfi/jlIj7svrx3i19ZDQnsmEuXxHGqTZWNcUsF4xhVjKUC2RNHaWXl6ojL9H5+Q/trwowsJMtVH/AgMxK6PoQdV7dUNyT1t0dgWvHOWPUntLK9BLvgJQWqYmO8e6vF1JMbTe/nEIGUEcZ5Mr4YT+D0Jg7AMt6Y+vHucnszRCcqHOqHCCj3sw1MmH8+GoRZaRznWPTi9U+wOyVTH/fr7Fa32jD95rjUqPxMe1J1288lDPoptV+IY0i1imBnHAusrtfo6IfVTSPP4aZK2zLlcK17V/UX7Qcn/wV1JSz8Hr6PdgP4Sv5YJXg/D1HXP0kb/KZpSiX3vM4OjEQ5DPPV7Ha2mEHT/AUpU19i sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Delete trace. @@ -43,295 +43,29 @@ Delete trace. as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/deploy-to-environment.api.mdx b/docs/docs/reference/api/deploy-to-environment.api.mdx index eaa77049ca..21936144cd 100644 --- a/docs/docs/reference/api/deploy-to-environment.api.mdx +++ b/docs/docs/reference/api/deploy-to-environment.api.mdx @@ -5,326 +5,74 @@ description: "Deploys a given variant to an environment" sidebar_label: "Deploy To Environment" hide_title: true hide_table_of_contents: true -api: eJzdVsGS0zgQ/RVVn73JMLUnnwiQKlIskJoJXDKpVI/dsQWyZCR5GK/L/77VkhM7GZiFK7nEkbpfS69fP6cDj4WDdAtL/SCt0RVp72CXQE4us7L20mhI4Q3VyrROoCjkA2nxgFai9sIbgVrQmHun7/TCFi6900KI6c5eY0Wp+IAVCXMQvqTpLiPloYjwZhaThyJ7maengjIfI2dc7Aalo2O5t5vNevmYUTh2KlaxTIwOVQ4olZtBAqYmixy1yiGFGLH3Zj85EiRg6VtDzr8yeQtpB5nRnjfSDrCulcwCwvyLY446cFlJFfJTbRnfS3L865IEXvNtTZCC81bqAhLw0itemLQhUAV9AiMPz2V+Hhha5ZyTmaqSfl+Rc1iEiqjbjwdIt5cIfXJa0Y1S0O9GzNcBRbwfUPo+OYaa+y+UHSmSlnLW0JOLnp19ghvltDGT266xVQZz6LnICOptQ2HB1Ua7yOf11RV/nSv0tskycu7QKHEzBEPyyx3rQ9m/r6+fAn9GJfOQJpbWGvsbqBc6yMmjVPwkPVXuaYAy2dnuL7RMak8FWeh3Y2/QWmwnyvjHxAOyLipXPCeiU6ePYM8olckQG979P13wvWLpIW43le2R3sjuz6/xJtL3o2LHEJ7/J4CxtxX50vCs18ZxSo2+hBTmE826efQBSMCRfSDrAveNVZBC6X3t0vk8U6bJZ1iQ9jhDOcdawqVbLsKueM2hYZ4cZY2Vvg14i/XqHbVvCXOykG5304Bblk4Uw3nYqQ9Yy3fER4xOAovGl8bKf2OHE5B8gDJm8b1ZlDejjS0fsaoV/diWxiZPLWdcvTSVUY8g9cGEUw6dGCh4hdlX0jkjknWRnavZi9nVzzgbEsRivRoGDbMwaMfrhjBILrpy6gckQFWYMvCE1ctxg8ng3leoJ3jRicTGiOWZ858dbuL8f96bcNCVp0c/rxXKYBOB3W4YkjNjd4GcMCa7BEoepnQLXXePjj5Z1fe8/K0hy2LfDUq6Z01s2aLKo+w7+EpteMUEZv8KRsLhqokyv/BV9ryYscj4Ws/G7ibzvv54u4EE7od3eGVyzrH4nU0Kv0MK4e8AZ4e5C2sdKNRFE1UeMfnzH9QgMcg= +api: eJzdVcFu2zgQ/RVizqqdBnvSad3GQI3ubo3E24tjGBNpLLFLkSpJpVEF/XsxpGzJTpu21/XFNjnzhnzz5rEDj4WDdAtL/Sit0RVp72CXQE4us7L20mhI4YZqZVonUBTykbR4RCtRe+GNQC1ozL3X93phC5feayHEdGevsaJU/IMVCXMQvqTpLiPloYjwZhaThyJ7maengjIfI2dc7Balo2O5d5vNevmUUTh2KlaxTIwOVQ4olZtBAqYmixy1yiGFGLH3Zj85EiRg6XNDzr8xeQtpB5nRnjfSDrCulcwCwvyTY446cFlJFfKv2jK+l+T43yUJvObbmiAF563UBSTgpVe8MGlDoAr6BEYeXsr8ODC0yjknM1Ul/b4i57AIFVG3Hw6Qbi8R+uS0ohuloN+NmG8Divh7QOn75BhqHj5RdqRIWspZQ88uenb2CW6U08ZMbrvGVhnMoeciI6i3DYUFVxvtIp/XV1f8da7QuybLyLlDo8TtEAzJL3esD2X/uL5+DvwRlcxDmlhaa+xvoF7oICePUvEv6alyzwOUyc52f6FlUnsqyEK/G3uD1mI7UcZfJh6QdVG54iURnTp9BHtBqUyG2PDuz3TB94qlh7jdVLZHeiO7P77GTaTve8WOITz/zwBjbyvypeFZr43jlBp9CSnMJ5p18+gDkIAj+0jWBe4bqyCF0vvapfN5pkyTz7Ag7XGGco61DCPjKGus9G1IWaxX76l9R5iThXS7mwbcsTpiv8/DTlRjLd8TnyKaBSwaXxorv8YmJiBZlmXM4qux7m5Hp1o+YVUr+r7zjH2cusq4eukbo+RA6oMJpxzIXgQOxGK9YjSyLs7L1ez17AouH5CzYJ4fzML8HK8YtiG5IPtEMyRAVRge8ITVn+MGE8AtrVBP8KLBiI0RyzNDPzvUxND/fw/coCVPT35eK5Rh+gO73aD9M792gZyg/l0CJc9IuoWue0BH/1rV97z8uSHLAt8N6nlgHWzZecqj1Dv4j9rwcgRmXwV/4HDVRGlf2CVbWcxYZHytF2N3kzFef7jbQAIPw9NcmZxzLH5h78EvkEJ45Tk7zFpY60ChLpqo7IjJn2+llSM5 sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Deploys a given variant to an environment Args: -environment_name: Name of the environment to deploy to. -variant_id: variant id to deploy. + environment_name: Name of the environment to deploy to. + variant_id: variant id to deploy. Raises: -HTTPException: If the deployment fails. + HTTPException: If the deployment fails. +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - - - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/edit-annotation-by-trace-id.api.mdx b/docs/docs/reference/api/edit-annotation-by-trace-id.api.mdx new file mode 100644 index 0000000000..cdaf933438 --- /dev/null +++ b/docs/docs/reference/api/edit-annotation-by-trace-id.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-annotation-by-trace-id +title: "Edit Annotation" +description: "Edit Annotation" +sidebar_label: "Edit Annotation" +hide_title: true +hide_table_of_contents: true +api: eJztmktv2zgQgP+KMacWUONssSef1k27aLbtNkjSXgIjoMWxxYYiVZJKqzX03xdDSpbkh5I4KdAWyiFBpHmQH8nhiMMVOLa0MLmCqVLaMSe0sjCLQGdo/H+nHCaAXLhrtpa4nhfXzrAYrwWHCDJmWIoODRlagWIpwgRaAkLBBDLmEojA4NdcGOQwcSbHCGycYMpgsgJXZKRnnRFqCRE44SQ9uCRDo1MOZRmtrduMqZbxrzmaomN9waTtmGeq+LjwDew6IqPVE5VLCeWscX2RMRU8z4JttO6V5gXZ2+xIrJVD5byrLJMi9qjGX6xW9KxpSGYIrhNoQ7Nqqtvvwti0m844FyTL5NmGlTs7J5TDJZpuf9N598lca4lM+Ue7fUEsTJxLZp79q98L6/6xWr04VVnuntOYBTN6/gVj14t2UxvKh2hfEpkyghQd+3kJ/Z1LeRcf4TC9nxIzhhW9VLqqDyP6gUiWEXBWER047uXYSL4mWuUOgSY6XAWkLfNNqH3DhbtTvRUh9ho5D7EJypKsGbSZVjYM2MvjY/rD0cZGZCHQwEUex2jtIpej80oYDg5hsc6D0sb4N4098RIRcFywXDqYHJfRRuRr5tWGcYPMIb9mrm/2RbDQJiUZoo0vnEixd4hPgtnR1A9vnvEf4eRTMFs54SjxBzh5HcxWTmpc84J2x/v5yXPB7wXrVeE3w4bXk3qpaa291MCe1EuNa+2lziQemyJETcZzoKkm0YlAG7EUaldahCpPKSzEuXU6hQiSPGUKImC50+0IcSHSTKI3+jFYay3AWr2M4EYo3ueI8UTH9P8tk5TtSVbscfOOLLWdBFWalglTCmWfG+1kBhF8wzlEYPkN9SgTezydVPY6zjLhR+FXSZo+5u4xWVNQ/63Tpj5C+/f7La0HbPiHQP0lMqefB+Vm8kTpygINqjhg6m7/4cOuJz+4RWO3Uoj7x9zPlTptBDJfHrwLkG4ZwdPtU+F7dy+785rZDiNlFLBd3zIjmHIDvsPwGbwV23AGfnfzc2idxWHiHQpuWLmPBTis3UMJtr78B3iPgDes4aeAOKzjQynS53rOnDYDuoPRDWv48QiHFfyYXCZmFgdyDyPXo9c6QjxvTh3KCKRQN/c8NuwOwM94fNwD4L1QN7uPt6pToN+rf9V51awrYO9XsuucTNVTZGcJ7oGzsFFcF99C4e7Ply+3a3WfmRTcS4/eGKPN4YU6jo4Jfwi/Z7CljjtvH3JkOduk3mKu4xoTpHbZd9njA1rLltgM4X5RD2N0SW/vGk7pCxjkupJrh8A13kB3fzdeB3x9I/v28vJsy2AY2+6gUtF21JpA/kw+0TxclIkTf63GJTCBcUY7KH4bN/VSO17Vi6mkYgma2/ryTW4kTCBxLrOT8TiWOudHbInKsSMmxr5EMiONODfCFV5lenb6Dou3yDgamFzN2gIXNJPC3OiKrYeFZeIdEqXqYs40d4k24r+6W/56ThK0CAPN0fPmJs2b74wi8vZNmKqM0xQrmhN2j1OohfZy9ZrynRxNz04hanZFOD764+gYNul3hGkxsdgvproP/jVEGzTXHKlqlfqVBA5Z+lfzglqWaeuoItfY2x7sTnPWLB1+d+NMMuFXine+qqbBFVTTANqFcwpLk3VcnUWQaOtIeLWaM4ufjCxLelydol+tgAvL5rJ1QeoGi851KsrbqC1+nvj0d058d6ludGIdlODZebX2no+a0kG3c/XsUUXbZ92cdZd8VEnqqbmqXp8ETy/82m/Ut0IhhamgMY1jzFyv7Ky1BM+mlydvIYJ5ddcr1ZyUDCP89Nu3VWdhDOgyGD1bgWRqmVP4mkAwSj//A9Jcbqw= +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Annotation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-annotation.api.mdx b/docs/docs/reference/api/edit-annotation.api.mdx new file mode 100644 index 0000000000..78b1ad538d --- /dev/null +++ b/docs/docs/reference/api/edit-annotation.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-annotation +title: "Edit Annotation" +description: "Edit Annotation" +sidebar_label: "Edit Annotation" +hide_title: true +hide_table_of_contents: true +api: eJztmlFv2zYQgP+KcU8twMZZsSc9zU07NGu7Bknal8AIaPFssaFIlaTSeYb++3CkZEl27MROOrSF85DEEu+O/I48nnlcgOczB8kVjLQ2nntptIMxA1OgDZ9OBSSAQvprvmwBDApueY4eLQkvQPMcIQFveYrXUgADqSGBgvsMGFj8WkqLAhJvS2Tg0gxzDskC/LwgOeet1DNg4KVX9OCSFA1OBVQVW2p3Bde7KOd6/nEautc3QyrrJ7pUCqpxa/ii4DraHUfV6PwrI+akb9VSarRH7YOpolAyDXCGX5zR9KztSGEJp5foYreWHNfeRW90u86FkNSWq7MVLfcOTmqPM7T98eaT/pOJMQq5Do/utgWptGmpuH32t3kvnf/LGf3iVBelf04ei2rM5AumfivaVWmodpG+JDIVgxw9/3EJ/VkqdR8f6TF/mBC3ls+3UumL7kb0A5GsGAheEz1w3MixbfmaaFV3NGijw1VE2lHfBtc3Qvp7xTsRYqOS8xiboKpIm0VXGO2iw14eH9MfgS61soiBBi7KNEXnpqUanNeNYe8QlpoyCq34v+3sSWjBQOCUl8pDclyxlcjXzqsV5Ra5R3HN/bbZx2BqbE5tiDa+8DLHrS4+iWoHo+DeshDfw8inqLY2IlDhdzDyOqqtjTS4JnPaGx9mpyyleBCsV/OwGba8ntRKQ2tppQH2pFYaXEsrTR7x2BSBtfnOnqraNIeBsXIm9V1JEeoyp7CQls6bHBhkZc4pCeOlN90IcSHzQmFQ+jFq6yzARrxicCO12GaIi8yk9PmWK8r1FJ9vMPOONHWNRFGalhnXGtU2M8arAhh8wwkwcOKGRlTIDZZOan09Y4UMXvhZkqaPpX9M1hTFf+m0aRuhzfv9mtQOG/4+UH+KzOnHQbmaPFG6MkWLOo2Y+tv/1xLtfFt+cIvWraUQD4+5n2tx2ghUOdt7FyDZisHT7VPx2+5GducNszuUVCxiu77lVnLtD/j2w2fxVq7DOfC7n59H5x0eJt6+4A4r97EAD2t3X4Kdb/4HeI+Ad1jDTwHxsI73pUhf10vujT2g2xvdYQ0/HuFhBT8ml0m5wwO53chtkescIZ63pw4VAyX1zQOPDfsO+BGPj7cAeC/1zd3HW/Up0K81vvq8atxv4B5WsuudTDVT5M4S3I6zsBVcFt9i4e73ly/Xa3WfuZIitB68sdbY/Qt1Aj2X4RB+g7OVSXtvdzmyHK9S7zA3aYMJcjfbdtXjAzrHZ9i6cHPTAGNwSW/vc6cKBQwyXbfrhsAl3kh38zBeR3zbPPv28vJsTWH0bd+pVLQdjLp3aHL0mRHxJkuahUs1PoMEhgXtoPht2NZL3XDRLKZquKhXaEVlE7S3zSWc0ipIIPO+cMlwmCpTiiM+Q+35EZfDUCwZk0RaWunnQWR0dvoO52+RC7SQXI27DS5oTsVZ0m+2dBAv5DskXvUFnVHpM2Plv80AwzWdLEoREJqt5+2dmjf/cIrN63di6oJOW7Zoz9oDWKmnJrRrVlcY5GB0dgqs3R/h+Oi3o2NY9UOvMS0rnoZl1YwhvAa2QnPJkepXeVhT4JHnf7QvqGeFcZ5qc62+dbf3urNk6fEfPywUl2HNBOOLekJcQT0hoFtCpwCVdC5cJU3cHjPIjPMkt1hMuMNPVlUVPa6P1q/GDEKaOyF6VwsQ0tH/ApIpVw7XurgMPvDsvF5jzwdtiaDf9WZuaJoYlBPSJ2Bwg/PuDTEKKP+j3QZOCFpZM98X9duTaOhFCC2t9FqkpU5HiVGaYuG3th13VvjZ6PLkLTCY1FfJciNIyHLyKf0OXTVFdCzdNaNnC1Bcz0qKjglEpfTzH7UPiSI= +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Annotation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-evaluation-preview-simple-evaluations-evaluation-id-patch.api.mdx b/docs/docs/reference/api/edit-evaluation-preview-simple-evaluations-evaluation-id-patch.api.mdx new file mode 100644 index 0000000000..50bda0b140 --- /dev/null +++ b/docs/docs/reference/api/edit-evaluation-preview-simple-evaluations-evaluation-id-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-evaluation-preview-simple-evaluations-evaluation-id-patch +title: "Edit Evaluation" +description: "Edit Evaluation" +sidebar_label: "Edit Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJztWltz00YU/iue8wQzchwChFZPNUkYUmhJk8BLxuNZS8f20pVW7CXF9ei/d86urpbtOAFmmMY8AF6d66dz9XoJhs00hDdwdsuEZYbLVMMoAJmhcp/OYwgBY27GWFGMM4W3HP8Za55kAhtP9LhJxuPxOGMmmkMAGVMsQYOKtC0hZQmS4CYxBMBTCCFjhjgUfrFcYQyhURYD0NEcEwbhEswiI2ZtFE9nEMBUqoQZCMFaJ8VwI4ig9ql3HkOej7xQ1Oa1jBckaVVHJFODqaFHLMsEjxz34LOWKZ3VJmSKEDIcNX2q3eg+mwqH8BJYuvgwdc63CbgeR0JqMqJJVDg5kVIgSyEPqqPUCgHkTOnnue6deAl5QOIEv8VvEfae+L0oFplvFDb0EvI8KKnk5DNGZu17urTpG4dXV2geQIKGtU1hccyJj4mLFqYdY4tYaYjlqcEZqramZNI+afq4XhdEXEVWMPXkjRXidy3T/nmaWfMUVv0lGdxgshsTU4ottmLbZoUOvtt4/yAkiaMTmz8Ton/K91ybuzDd5OMq9/0QuvZRWBSqnfzvWkC8eQAx6kjxrKwPDxF12hBBmbm+WGyoiFsz1BWNW1T6G6z7VLCTr2w1R9vVThtm7NaICgBTm1BPyjCN/ckXixaptCubpv5I2yhCrclZxoVVSIxKSUVHEUsjFAJjGK0rM1feiLVF5otFtRhrg9mKlUXu3g12N4U3JdUmxyOrjUwggLlNWAoBMGskkHUFmAsKLd9eNijfIcT/Ik97V85TYkRtNJpH4fq197V2vtHtHwUAw9rfGoRijJHqUUBwVnpbA6AwQ2bWV6e13W1F5GXBv23YuXIzc12LTplrxZ1KdA8RZzE3a3XW4+1Nc0YdbRd16WdkyPPcYaIzmWoP99HhIf3Tamhw5Svx1IreZUEMDx6lI2k90wrstcknjoK66pRZYSA8rEO308P2s/jjnsU/WPOAYbzDdY9p3PP+z8fxbbDuMI8/BKOfeyCPFDKD8ZiZHQfzmBnsG+7s2azlxIvtDR1YNot/hJKPXmyhJEaBP0DJqRdbKCnhmizG32+VKcF6vej5rabE67tqKdGqtJSAfVctJVyVlv3Gt9/49hvffuPbb3z7jU+uG/Tvw16taX7Fe3F01N3qPjHBYx8uZ1RkH77SxWgYF269KiOqTSBk1Hp6n+F2tBp+tdfvZVSCBYmerYu/egDXms2wDqfNpA6M3jU9vWvlJr+86oKu2UAreD26m9049fBte79vr68vOgL9u22/VFrve40wcnvcXMb+1q24qDNzCGFQ3PEN/B3foHHHN1i2ru1yas2obsurPasEhDA3JtPhYBAJaeMDNsPUsAPGByzjLoE0RlZxs3Asw4vzd7h4iyxGBeHNqElwRVHl46RNVr0ilvF3SIgVl4pDa+ZS8X9LF92l4txzESQUr5f1PeDZV0Yedu/xqm8LGt8K+GvCaq+vPpa7OR3U23G90lWLSx1Q7TdTHdOgB8+n7JeX0+MX/Zevnr3qv3h5fNSfPJ9G/aPo1+Pn0+NjNmXH0BjiGlKLaaycutojVT3n3OymY9SZEnZnXNNhd2fudKbdWauafugygKdT6aKlbIQuFnvDi/MWgocHzw4OO6+lRUz1j0Wu/pWh5h5DsBL0VbhTi0tc8QODLPmtfkCWZVIbane1vG5+rqyqRcgb/GoGmWDcFTenfFlk7g0UmUtp6XIXml+P0awctq/dRwHMpTbEulxOmMaPSuQ5HbuIoYQM4JYpziYE4M0SYq7p/zGEUyY0dqysGgU8uSzq4dNe/WVB2/oyi1NKYTKMPkEAf+Oi8wsBV+7nZZ1YFjQnXl3fFeVaRqdHUf/wHMMowsxspR01auPF8PrkLQQwKX42kMiYmBQjkOlvZ7DMPMD0uwI6W4Jg6cxSXwnBC6U//wEZ3XVy +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-evaluator-revision.api.mdx b/docs/docs/reference/api/edit-evaluator-revision.api.mdx new file mode 100644 index 0000000000..ce7f77626a --- /dev/null +++ b/docs/docs/reference/api/edit-evaluator-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-evaluator-revision +title: "Edit Evaluator Revision" +description: "Edit Evaluator Revision" +sidebar_label: "Edit Evaluator Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWVFz0zgQ/iuZfTpmnKYUKHd5utKWoQccndJyD51MZ2PLiUC2jCQXchn/95uVZDuOk5CEZCZzdzwAsXe/1X67Wq1XUzA40tC/h8tHFDkaqTQMApAZU2i4TK8i6AOLuHlgpcCDYo9cc5lCABkqTJhhijCmkGLCSL4l+sAjCICn0IcMzRgCUOxrzhWLoG9UzgLQ4ZglCP0pmElGINoono4ggFiqBA30Ic8tiuFGkEC14s6Nt9K5iqAoBg6cafNKRhNCnLcVytSw1NArzDLBQ+tq77OWKT2rl5IpIsJwpunXAgZaMrGwfE4B08mH2JLSFOD6Icy1kUlTyDs9lFIwTKEIqkdpLgSQU6XfV7pz7hCKgOCqZf0MYkWmBx3nCaY/A/jGAhRFUArJ4WcWmkXxe205a+MVASTMYHMVGEWcooXiusFra50+f2ZgeWrYiKmmpWTYfDLr3mJbEHIV5gLVL69zIf7QMu1epVlunsC8r4TBDUvWU0KlcLKS1qYqtLhdpfuemCSNVn4eEqN/yndcmx9xuszHee3NGLp1WeiL2Fr+t1dAukUAEdOh4pnxNWIbqIsZCNqT0Sqg+Sq5cnNG623LsqpeRtws1KjL6v2i2jj4AeaNK9JQFASumM5kql3qnRwf0z8NFuFjHoZM6zgXnRsvDFvX8lDmTmkuk+s1n1sJCmWMuTDQPy6CJUfAslpfSz+i4piah91FsT79Pjlse/gF8E2qL7GQ3/Zg8i8PPWex9nIf3s15tQdvnIXd09VkCZXhMYa7NHDmIUsLuRkvaQK2AXdoVMvQrKyHM6gk2jXc1sAVlY0A7eGuNY62rrXvvXoR/N91/Se7rg+52aLtamlt0Hc53X9547WK1jU6r204OuzWK1QMDYse0Oy0DJ472M6ZJSvPon0YuXOw3kjEBNuDkQsH642UdA0nOzzrSrJeTfxpV/K1UyslW5WVkrCdWinpqqw8MtVuJddP109evQhAi3y0LcxH0t35l4btH3DV2bw773PFt0W5U9whiO0RBCGMGUZ2HLZZpd8XJYeXECt6kxsWM8XSsFFtyoUONjpR3vgwFOVkcd2IHNCZfJCNzgYx+OiJp44Ss4yn6zZA8xRv0m2Vhmzg6RDfOvuddtEcch9q/3aQubJc+bqmlALF1CMP2TrsugH+BjnooQs7KYr5KHf3Gvuwdd4wsNGM7QLtR0LrW2wTjJ/Vr4ZqbiD3/OSkPYP7hIJH1r/OpVJSbT+Ai5hBbg9bn5XzAkKGjbeb7KqZs8Ilcu32Oxli2dgnerTowmnBgMGJLBe1ZHRu6e2PJqXklzPt5Rojo5Jex+5yNy4cfasC/Ob29roF6GLbDCoNYzvt2zSwg4CxpBtA2uCBu7rrQy+j4Sf71qtmILpXjkN1b7rw9q8At83Lm0LbaMHYmEz3e71QyDw6whFLDR4h72HG7c7SLMwVNxOrcnZ99ZZN3MEO/fvBrIA9alzeNMWqkGHG3zJi0N9RuvkW/9slg7+bdM2bZZXy96a+Rrz8jkkm2PJrwGoENTNqcgWkOSyqnvlZD/2uRy71nKD6Gq6TrRm16jG1Z/Asxl9fxKfPuy9ePn3Zff7i9KQ7fBaH3ZPwt9Nn8ekpxnhq/eJpLC0t5ZzPkt45u76CmQ8ROD56enTcstkQpo2Pod34Jaf2NQRz0a3iCgGwxO56MAyT3+sXtLJMauPHXx5veWLOfeT7GBv23fQygTyd6eVd0t6DT1qYGVhruzV94kIA/cUX14MAxlIbAplOh6jZnRJFQY+/5kxRcg78/HhIlN5PIeKa/h9BP0ahWWu9Vc2EX258aXjSqQ/fph9lAqeUvbRA+gUBfGGTpXfttgKOy60y9bLnzmzX1qkaq1W2qaQ6jbMwZJlZKTuYKRPXd7cQwNBfuycyIhWFRDr9bZctLQt2q9hnUxCYjnI7CAYHSX/+AV4UOQ4= +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Evaluator Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-evaluator-variant.api.mdx b/docs/docs/reference/api/edit-evaluator-variant.api.mdx new file mode 100644 index 0000000000..5e16c872c4 --- /dev/null +++ b/docs/docs/reference/api/edit-evaluator-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-evaluator-variant +title: "Edit Evaluator Variant" +description: "Edit Evaluator Variant" +sidebar_label: "Edit Evaluator Variant" +hide_title: true +hide_table_of_contents: true +api: eJztWN9T20gM/lcyempnHEKhpXd+Ogp0yrW9MpT2HpgMo9jrZNu1190f0FzG//uNdtd2HCcpUDrXuTseILGlT6tPWkloAQanGuJLOLlGYdFIpWEcgSyZQsNlcZpCDCzl5orVAlfXqDgWBiIoUWHODFMEsYACc0biq5JXPIUIeAExlGhmEIFiXyxXLIXYKMsi0MmM5QjxAsy8JAxtFC+mEEEmVY4GYrDWoRhuBAk05x189EYGpylU1dhjM21eyHROgKumElkYVhh6hWUpeOL8HH3SsqBn7UlKRSwYzjR967vfE8mE43IBWMzfZY6RrgDXV4nVRuZdoeDyRErBsIAqah4VVgggn2qvT/XgyCNUEcE1p/oexIbKADqzORbfA/jKAVRVVAvJySeWmHXRe+k46+NVEeTMYPcUmKacgoXirMNr75whe5ZgeWHYlKmupXzSfbLs3npbkHCVWIHq0UsrxO9aFsPTorTmMaz6ShjcsPx2SqgUzrfS2lWFHrfbdN8Sk6TRy8+fidE/5Buuzbc43eTjqvbdGLrwWRgq2K3875+AdKsIUqYTxUty9b5Qx0sQdCfTbUCrNXLr5Uxvdy1DTT1JuVmr0BbVyzWVcbwd8dwXaKgqglZMl7LQPu/2dnfpT4dCeG+ThGmdWTE4D8Jw7zqeSOuVVtK4PfKRk6A4ZmiFgXi3itaX/011vhV+uMi1/Y5iGMGNVJ8zIW8e0MSfATJYQGV4hol5QAuHATJY+L9h/hcb5jtr7tExe1p3aJle91/eM7fReoumeR+Ofu6umSiGhqVXaG5ZvlI0bGi4O89mK0cednDoyLJl+iOMfPCwwUjKBPsBRo49bDBS0zWZP2DBr8l6MQ8lv+brQa3UbDVWasIe1EpNV2NFCzu9b66+J91/crRb10LuoN4MYn6Ie7q315/bPqLgqZvKBidKSXX/oS1lBrlwE4FvEKsCQiadt3epxeNqpae0Xr+R/oAUqVxP1+0n2n6hNU5ZW0A3izoyBhf09luzNfnlTQe5pYC39Hp2N7tx7OnbFt9XFxdnPUAf225QaYAf9JYv4KaPmaRtEbWRyC96YhiVil1zdjNqBi89ChO0Hi3WbYoqiEAzdV0vlawSEMPMmFLHo1EipE13cMoKgzvIR1hydws0S6ziZu5UDs9OX7P5K4YpUxBfjpcF3lOK+aTpijXxwpK/ZkRfWGcdWjOTiv/lMyHssWZei/ih5D1vd04nXzEvBdu4M2qG3qXh1m+muuNp8yxMl/S9HfLayaTpv22idSPWPKZaA/sZ/vIsO3g6fPb8yfPh02cHe8PJfpYM95JfD/azgwPM8MC5xYtMOlbq2d1xPjg8O4UIKDoefXfnyc5uz2ZHmC49Js75mlL3GqKV4DZhhQhY7m48GIb5b+0LOlkptQkDd8DbmJQrU0WIsGFfzagUyN3FdmdYhIS9hJCwsPQ/nyaPQ9JCBPHaBec4gpnUhiAWiwlq9kGJqqLHXyxTlJjjgDIhPi8XkHJNn1OIMxSa9U7bFEt4dB5qwuNBO991vaiTt5i7wwpL3yCCz2y+aSXrKt+sviWLIHrkrQ5dfWqheuWaSqnXOEwSVpqtsuOl+nD24QIimIT1bC5TUlFIjNNvd2rpSHDXxD1bgMBiaqnAxuAh6edv53jQ6Q== +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Evaluator Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-evaluator.api.mdx b/docs/docs/reference/api/edit-evaluator.api.mdx index 08a61b04ff..c4d977e4e4 100644 --- a/docs/docs/reference/api/edit-evaluator.api.mdx +++ b/docs/docs/reference/api/edit-evaluator.api.mdx @@ -5,978 +5,67 @@ description: "Edit Evaluator" sidebar_label: "Edit Evaluator" hide_title: true hide_table_of_contents: true -api: eJy1V1tv2kgU/ivoPLWSCYSEZNdPSxKqZrvdjXLZlTZC0WAfwzRjjzuXtCzyf1+dGYNtDAmN0jwQOHOu35zbLMGwmYbwHsZPTGiYBCBzVMxwmV3GEALG3DzgExOWGakggJwplqJBRVJLyFiKxLbieOAxBMAzCCFnZg4BKPxqucIYQqMsBqCjOaYMwiWwbPFX4rSYRU5atFE8m0EAiVQpMxCCtTyGItjkKCYBGG4EkcYr053LGAo6IYuozZmMF2Rm04FIZgYz4zzIc8EjF23vi5YZ0Sr/ckVYGI6aflUgtI48CLsDqgWQWSEa7v9JskUAMepI8Zxcea2qi5qKIoBIITMYPzCzJ9gxM9g13Pmz28q5V9sZGTJi8/hnGLnzaksjMQr8CUYuvNrSyAqu6YJy+HXpuROss4XLzgqvN7WyQmttZQXYm1pZwbW2ooWdvTZXb0i2CODt3PM+JcL1sy0q5fQLRgYqgX+kekyE/PbBibRVFwGkaFjMzEa3YnHMqciYuGq0gT1w4JnBGaqmtXTapEylFMgyR9puCyKuIiuYevfBCvG7lln3MsuteU/hNcIlHdxgup8QU4otnkW5KUqIt+3tkv28QpMytIXqS9d04SVbt9RyYctogG1c1Vy4rzX3bZPl2g8UKArSo1DnMtP+zgf9Pv1rdG+4sVGEWidWdK5LZnj13Imk9UIbKVRrMo6jCJoj6mVka/DsBWsdMO/VdrDKiD1ax4NBG6C/meCxC78zVsrtFa9EJ0bDuKBvZZZvMggZNU5/pEgnxUZlVOH+Ib2DBHuqZ7X7WbeuKu21ZjOsamU3qwOjc0unL10AxeVNl3y1u6jg9ejuDuPCw/dcEX28vb1qKfR327zUccxNZ1xbFVM0c0lLJHWKwO+DIfRyhU8cv/XW2ap7y/r+WEAAGtXTasW0SkAIc2NyHfZ6kZA2PmAzzAw7YLzHcg6bnozcaeecWF0H0hhZxc3C6RtdXX7CxUdkMSoI7yd1hhtKM584Tbb1nbGcf0KCsNx8R9bMpeL/+WwoV9+5lyKMKIGvq4V0/J2lucDWQllqW2dEM6A1ub7TwaA/GHb7w+7h8PbwKOwfhsPjg/7x6b/QXMue46tvVs/xbSxHcJSwX4bJyXF3eHp42j0engy606Mk6g6iX0+OkpMTlrATaG07+4ptrC/7ivl9pALrR2TXewPXD5HVRqar5wLXtfdPRZvblGX+d3NRqA03ymIeoSdGMkv4zPq3FZFcCfEskS67ymorU/eMRY+Y0VOKysAnQf/g8KC/K9dLgc7o6rJspiwytcTybHQljWpa1xEEgKnrpGCQpb9VB+RlLrVx4a71tYp94/1SVovB76aXC8Zdo3S2l2UjuIeyEUBtcGkIIGw8JicBzKU2xL9cTpnGOyWKgshfLSqq6EkAT0xxNiUA75cQc03fYwgTJjS2XFtPGnh3XTbU951qB2q6vKr6jEqe/KJfEMAjLjafvW5czFdtZVmynHtrXdfUKxWtGUfzx0uMoghz8yzvpNZcr+5uIYBp+dhNZUwiihGs9Om8lS54l9+OtgTBspmlqRSCV0l//wNBMmdw +api: eJztWG1v20YM/isGP7WAHKdJ6m76NDdJEa/dGuRlXwIjOEuUfd1Jp95LVs/Qfx94pxfLil3HS7FiaD4k0Yl8SD7k8ahbgmEzDeEdnD8wYZmRSsMkAJmjYobLbBxDCBhzc4+VAASQM8VSNKhIdQkZS5HEKol7HkMAPIMQcmbmEIDCz5YrjCE0ymIAOppjyiBcglnkpKuN4tkMAkikSpmBEKx1KIYbQQK1f71xDEUx8ZiozVsZLwho3UQkM4OZoVcszwWPXDyDT1pmtNZ4kCuK1nDU9NSE2XmVCMfVEli2+Ji4yNsCXN9HVhuZtoXKEKdSCmQZFEG9lFkhgGKpohzr3qlHKAKCa3mzL2JNXQk6tynL/g3ghQMoiqASktNPGJnHsvXOcdbFKwJI0bC2FyyOOSWJicsWrx0/y2pZgeWZwRmqtqV02l5ZDe9xWxBxFVnB1It3Vohftcz64yy35iWsx0oY3GC6mxJTii220tpWhQ6323R/IyZJo1Of3xOjv8sPXJuvcbopxnXtpzF046uw7FQ7xd/1gHSLAGLUkeI5hbov1NkKBO3JeBvQek/cujnj3bbleczNo5JNF71baYWTDRBXvgVDURCWQp3LTPsKOzo8pD8tsuDaRhFqnVjRuyqFYe9OHUnrldYKtvH11ElQxhJmhYHwsAhgQ0v90ep/tPqP1uzR6ztaT2j2Xvd/3u230bpDu9+Ho++730cKmcH4npkd+37MDPYNd/5stnLqYXsjR5bN429h5NbDlkZiFPgNjJx52NJIRdd0cf98J2VF1tuF+6Bo+HpWKxVbtZWKsGe1UtFVW9HCzvat1WvS/U+GksfOjl306lHCjyEnR0fdyeMPJnjs5oreuVLuI3bPsSNGw7hwM4A/EtYFhIxab5/SfSfF2inShPtBegcpN6mePfbt3JwQWrMZNi1zs6gjo3dDb782DlJc3nQpt5Lihl7P7uYwzjx92xJ7cXNz2QH0uW0nlUbQlZHHzRlzSTcWdGAE/vIhhEGu8IHjX4N6xNKD5eplRQEBaFQP1X2GVQJCmBuT63AwiIS08QGbYWbYAeMDlnNX3hojq7hZOJXR5fg9Li6QxaggvJusClxTJfnaaIvVaWE5f4/EUnmTMrJmLhX/2ye8vEqZey2igWr0qrn+OP/C0lxg5/qinmJXplV/OdKeN+u1clyk52Zqa0aN+kBt6qidkHqZmgccJ+yn18nwpP/6zas3/ZPXw6P+9DiJ+kfRz8PjZDhkCRu6cHiWSMdGWQAjx3VvdDmGACgrHv3w4NXBYcdmS5j2NIvcnq6odK8hWEtqnU4IAFO3ocEgS39pXpBnudSmnKBLvE7NrY0HZUYNfjGDXDDu9quzvSzr8Q7KeoSVjxENAYStC7RJAHOpDckvl1Om8VaJoqDlzxYVVd0kgAemOJsSaXdLiLmm/2MIEyY0dlyrGx68uCr39cteM5W1Xa4qM6OyJL/oCQL4ExfrV32ua82r0l+WIqfeWt/1lgai02qpDXqNURRhbrbKTlb2+OXtDQQwLa//UhmTimJEK/123koXvNsDbm0JgmUzS80xBA9JP/8Ab4Uy9Q== sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Edit Evaluator - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - - evaluator - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - evaluator - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/edit-invocation-by-trace-id.api.mdx b/docs/docs/reference/api/edit-invocation-by-trace-id.api.mdx new file mode 100644 index 0000000000..6089ca766f --- /dev/null +++ b/docs/docs/reference/api/edit-invocation-by-trace-id.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-invocation-by-trace-id +title: "Edit Invocation" +description: "Edit Invocation" +sidebar_label: "Edit Invocation" +hide_title: true +hide_table_of_contents: true +api: eJztmktv2zgQgP+KMacWUONssSed1k27aLbtNkjSXgIjoKWxxYYiVZJKqzX03xdD6mnHiuOkQFsohwSR5kF+Qw4pDtdg2cpAeAWn8lZFzHIlDcwDUBlq999pDCFgzO01bySuF8W11SzCax5DABnTLEWLmgytQbIUIYSOAJcQQsZsAgFo/JpzjTGEVucYgIkSTBmEa7BFRnrGai5XEIDlVtCDSzI0OY2hLIPGusmY7Bj/mqMuetaXTJieeSaLj0vXwL4jMlo9kbkQUM5b1xcZk97z3NtGY1+puCB7mx2JlLQorXOVZYJ7VNMvRkl61jYk0wTXcjT0X0t1+52PTbfpLI45yTJx1pPco3NcWlyh7vc3XfSfLJQSyKR7dLcviLiOcsH0s3/Ve27sP0bJF6cyy+1zipk3oxZfMLKDaDe1oXyI9iWRKQNI0bKfl9DfuRD38eEW0/2UmNasGKTSV30Y0Q9EsgwgZhXRkeNOjq3ka6JV3iHQZocrj7Rjvk21b2Ju71XvZIidRs59boKyJGsaTaak8QF7eXxMf2I0keaZTzRwkUcRGrPMxeS8EoaDU1ikcq+0Ef+2sSdOIoAYlywXFsLjMtjIfO242jCukVmMr5kdGn0BLJVOSYZo4wvLUxwM8Yk3O5m58OZZ/COcfPJmKycxCvwBTl57s5WTGteioNVxPz95zuO9YL0q3GLY8npSLzWtxksN7Em91LgaL/VO4rFbhKDd8Rxoqt3oBKA0X3HpJ241ZyDKjVVpm8ia3qPMU8oUjUCSp0xCACy3qps0LniaCXR+PnoHZQA3XMZ9RyxOVDTgp36Pt0zQ/k+wYoeXd2SbhmXCpESx4SbjA06UFRkE8A0XEICJb6g7Gd/h56SyT1H4VTZNH3P7mF2TV/+tt01DhHav91taD1jwD4H6S+ycfh6Um5sn2q4sUaOMPKb+8u8/7Ab2B7eozdYWYv+c+7lSp4VA5KuDVwHSpT3Nk61T/nt3J7vzmtkdRsrAY7u+ZZozaUd8h+HTeMu34Yz87udn0ViD48A7FNw4cx8LcJy7hxLsfPmP8B4Bb5zDTwFxnMeHUqSP85xZpUd0B6Mb5/DjEY4z+DF7mYgZHMk9jNyAXufI8Lw9dSgDEFze7Hls2A/Az3h8PADgPZc3dx9vVadAv1f/7j+veu8Cv1cJr3dSVQ+ZO0tyDxyVrWJTjPOFvD9fvtyu3X1mgsdOevJGa6UPL9zFaBl3h/I7gi9U1Hv7kCPM+WYUOsxbTJCa1dDljw9oDFthG9Ldog7G5JLe3hdO4coX5LqS66bEBq+nu7sbrz2+oci+vbw82zLoY9sPKhVxJ50B5M7oExX7izNR4q7Z2ARCmGa0ouK3aVs/NdN1PblKKpagvq0v4+RaQAiJtZkJp9NIqDw+YiuUlh0xPqWCCk0Gg1GuuS2cyuzs9B0Wb5HFqCG8mncFLmgk+bHRF2vCwjL+DolSdVFnlttEaf5f3S13XSfxWoSBxuh5e7PmzXdGGXr7ZkxV1mmLF+2Ju8PJ5VI5uYr8zHVyMjs7haBdJeH46I+jY9ik3xOmycQiN5nqPrjXEGzQbDhS1Sp1MwkssvSv9gW1LFPGUjmutbcd7F5zGpYWv9tpJpiv0znn62oYXEE1DKBbSKe0FDZ5dh5Aoowl4fV6wQx+0qIs6XF1qn61hpgbthCdC1M3WPSuV9E+jtrixonbDi+I712qG51okhI8O6/m3vNJW0rod64ePbLo+qyb03TJZZWkHprr6vWJ9/TCzf1WfSsVUpryGrMowswOys47U/BsdnnyFgJYVHe/UhWTkmaEn367tqrMx4Auh9GzNQgmVzmlrxC8Ufr5H3pBdAE= +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Invocation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-invocation.api.mdx b/docs/docs/reference/api/edit-invocation.api.mdx new file mode 100644 index 0000000000..2377bf8f2a --- /dev/null +++ b/docs/docs/reference/api/edit-invocation.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-invocation +title: "Edit Invocation" +description: "Edit Invocation" +sidebar_label: "Edit Invocation" +hide_title: true +hide_table_of_contents: true +api: eJztWktv2zgQ/ivGnFpAjbPFnnRaN+2i3rbbIEl7CYyAFsc2G4pUSSpdr6H/vhhSsiQ7VmwnXbSFckhich7kNw+OOVyBY3ML8TWM1Z1OmBNaWZhEoDM0/tOYQwzIhbsRawqIIGOGpejQEPMKFEsRYnCGJXgjOEQgFMSQMbeACAx+zYVBDrEzOUZgkwWmDOIVuGVGfNYZoeYQgRNO0sAVCRqMORRFtJZuM6YOEc7U8uPML6+thkSWIyqXEopJrfgyYyronQTRaN0rzZckb1NTopVD5byqLJMigDP8YrWisXohmSE4nUBLnxo4bs0FazSXzjgXRMvkeYtyj80J5XCOpr3fdNoemWotkSk/dL8uSIRJcsnMs7/1e2HdX1arF2OV5e45WSyI0dMvmLhOaDe5oTiE+4qQKSJI0bEfF6E/cykfwkc4TPdjYsawZScqbdbDEP1ASBYRcFYi2uO4E8ea8jWhVdxDUGeH6wBpQ3ydXN9w4R5kb2SInUIuQm6CoiBpBm2mlQ0Ge3l6Sn842sSILCQauMyTBK2d5XJwURLD0Sks0Xlg2rB/vdgzTxEBxxnLpYP4tIg2Ml/tVxvCDTKH/Ia5Lu+LYKZNSjSENr5wIsVOE58FsYORN2+e8e+h5FMQWyrhKPE7KHkdxJZKKrimSzob99OT54LvBdarpT8Ma7yeVEuF1lpLBdiTaqngWmup6ojHlghRXe8cKaoucyLQRsyFCoFbxgwkuXU6rRPZeveo8pQyxZpgkaeM6jKWO91MGpcizSR6PR+DgiKCW6F4WxHjC5106Knm8Y5Jqv4kW+7Q8o5kk1sumFIoN9RkokOJdjKDCL7hFCKw/Ja2k4kdes5K+WSFn6Vo+pi7x1RNgf2XLpu6ENp93m9xHXDgHwPqT1E5/ThQbhZPVK7M0KBKAkzt4/9rjmbZVR/cobFbJcT+OfdzyU4HgcznR58CxEs1zZOdU+Hb7k7sLirM7hFSRAG2mztmBFOuh+84+AzeiW1wevwexs+hdRZ7xzsWuD5yHwtgH7vHItj45t+D9wjw+hh+ChD7OD4WRfpynjOnTQ/d0dD1Mfx4CPsIfkwtkzCLPXKHIdfB17gyvKhvHYoIpFC3e14btg3wI14fdwDwXqjb+6+3ylugX2t/D99XvfeG36uF17qpqlzm3pbcgV5ZM66bcaGR9/vLl9u9u89MCu6pB2+M0eb4xh1Hx4S/lN9hfKmT1uwhV5iTTSs0MK9hgtTOu55+fEBr2Rxrk+4m9WAMrmj2IXNK374g1SVdMyWu4Q3o7t7G6wBfl2XfXl2dbwkMtm0blZq4g3HzTU2KbqF5eNmSLPwjG7eAGIYZnaj4bVj3T+1wVQVXMVyVEVtQ2wTNXfUoJzcSYlg4l9l4OEykzvkJm6Ny7ISJIbVWKCwsJrkRbulZRufjd7h8i4yjgfh60iS4JJ8KXtImWxuIZeIdEl7lg51R7hbaiH+rDfpnO4vARYCQt17Ub2ze/MMoV2+/kSkbPHUbo75798AKNdOerrTByG9yMDofQ1Sfl3B68tvJKWzaoUVMYcUSH1bVHvw0RBtornGk/lXqYwocsvSPeoJWlmnrqDFXy9s2e2s5aywd/uOGmWShY+eVr0qHuIbSIaDZUqcEFTceYMVVHp9EsNDWEd9qNWUWPxlZFDRcXrVfTyLwZe+U0LteAReW/ucQz5i0uLXEdfKBZxdljD0f1C2D9tIr31DkGFQj0ieI4BaXzRdjlFD+R70VOD5pLSp/X5WzZ0HRC59aau6tTEuLDhyjJMHMddJOGhF+Pro6ewsRTMunZanmxGQY2ZR++6XqLBiW3p7R2AokU/OcsmMMQSj9/Af9SI53 +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Invocation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-legacy-application.api.mdx b/docs/docs/reference/api/edit-legacy-application.api.mdx new file mode 100644 index 0000000000..10b71c9857 --- /dev/null +++ b/docs/docs/reference/api/edit-legacy-application.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-legacy-application +title: "Update Application" +description: "Update an application using workflow data stored in legacy format" +sidebar_label: "Update Application" +hide_title: true +hide_table_of_contents: true +api: eJztWt1T2zgQ/1c8+9TOOITSlt756dJCp1x7V4ZCX5gMs7HXiVrZciUZmsv4f7+R5O9ASkJ6k+nBA2B797fS7mo/JC1A41RBcAmjLOMsRM1EqmDsQ0QqlCwzzxDARRahJg9TDxs6L1csnXo3Qn6NubjxItToKS0kRR5LPU5TDOdeLGSCGnwQGUnLdxJBABQxfeVIrlqY4EOGEhPSJM24FpBiQhBAi+aKReADM+PKUM/AB0nfciYpgkDLnHxQ4YwShGABep4ZbqUlS6fgQzmaAPLcomimuSFoTd87iaAoxg6VlH4tormB6gsJRaop1eZTa3DDL8pobNEaQybN1DUj1aNd/hhza44FYDr/GNv5dwmYugpzpUXSJSqnORGCE6ZQ+PWrNOcczGyqmZ4o741DKHwDR9fIc9RCPgTxuAZxoLM8wfQhgO8sQFH4FZGYfKFQtyz2wfpOy25vre6WcQsfEtLYHQ1GETNMyE+71umPt/ScFixLNU1JdiUlk+6b9jRvlwUhk2HOUT55m3P+pxLp4CTNcv0U+nM2GExTcj8mlBLnK9XbZYUlHa/i/cto0nAs+ekuafRv8YEp/SOd3jXHPvd6Gjp3XljGrXvNf3kEhrfoBeHNoI5aEGZtRquA+vFx5SKN7Aixv7K68eqapHrA6D+X7IUPuWSbolxI5hD45gjcIMwII5uX1nP8n6USxfPppjCfDO/WHWJFvD6jmCSlIbVBqoGO11pi70ozFFWmv69FdihE7V7QX8MAn0qtm9SKWcbS+yaDvn7XyTyVIGt1E9I2dn3HXXRLzV3NZbvnKHfznjb6NFYiec1Cuo9qXUW9hgOW0IUtw2M2zSUuZ8ntyHrTEbBWSXqEtlpaqkjXwTiOmL5VatOPXHaaivEPwM5cWwNFYVAlqUykyvn3wf6++dPt/T7lYUhKxTn3zkpi2Lj7CUXumHrLpa1uQ2FqnxhzriHYL/x+03RXan1sn/7P7dPHXG8QIZe41giRjvcX76BWqfUeLdQmOtrtHiqUhJqiK1xZgbRKZ7N3NtAsodV5xsF6I6us3O64bV2I28irhETE6ScIOXKwpZBKXZP51faajUpZr+eea0QrfW1VSqWtWkqlsK1KqdRVS9m9vu6x0X9s9B8b/V+nPHns9Xey6tpJX3ls9//Ldv+h/HWL7tr7FwcHyx39Z+Qscmedx1IKuXk7H5FGZpNt6ZV9Ai7Cztd1VlUrVzhHbk1b1NqCRE1vO+lt+i2lcEqNZ99NapXhnZuvP9pwMfNyoku6duKu1eu0e/c0jpz6Vhn43fn56RKgs21CeibMWbpZuL47Cw9gmEm6ZnQzdIfrw5Y51XDRPUYvwC3b6qzdFk4w0zpTwXAYcpFHezilVOMesiFmzK4URWEumZ5bltHpyXuau0QNweW4TWBTh/ODLlltAszYezIaKU/5R7meCcn+qe4C2EN+V4xZLRl/PGuO5Y+/Y5JxuuVYvd4Jau34uEjQ3bOp35VbLua52fFo2vS6GW28prum6temzoLnMf72Mj58MXj56tmrwYuXhweDyfM4HByEvx8+jw8PMcZDaIrqulJsYGwV3H7k7cemPu2URt0c3UqeDWcnDXai9i3B1fkZS2NhbVbdlbAe4Y1OT8BvDX1/79ne/pJeOsQmymBoo0xlcPu5nmDlerXTgQ+U2BADmjD5o/lgRpYJpcudshKvvKgy6two6W0B1LFuK9daSk/W9F0PM44sbXUgbkleQrkkwQfHDZ0dTQU+BL37LWMfZkJpw7xYTFDRheRFYV5/y0mapTf24Rolw4mxyeUCIqbM/xEEMXJFK2b95KwMZE+9u8ZfLc/UDNWsFvMEPnyl+fJdHBuoZ1UEWJREb5y8gQ2nDchSdjGR33GMwpAyvZJ23Ip6pxfn4MOkvJ2TiMiwSDRaNr/teEXmFGyu75h3C+CYTnOTDwJwkObnX0/3wkQ= +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Update an application using workflow data stored in legacy format + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-metrics-preview-evaluations-metrics-patch.api.mdx b/docs/docs/reference/api/edit-metrics-preview-evaluations-metrics-patch.api.mdx new file mode 100644 index 0000000000..fcd38352af --- /dev/null +++ b/docs/docs/reference/api/edit-metrics-preview-evaluations-metrics-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-metrics-preview-evaluations-metrics-patch +title: "Edit Metrics" +description: "Edit Metrics" +sidebar_label: "Edit Metrics" +hide_title: true +hide_table_of_contents: true +api: eJztWFlv20YQ/ivCPLUAZTm+0vKpSuzAbpLGsJ28GIIxIkfSpssls4cTVeB/L2aXFKnDii0oBVLYDzK5nGu/OXdnYHFsIL6Fs3uUDq3IlYFBBHlB2r9dpBADpcLeZWS1SMxdoele0Nc7ajjm3+4KtMkEItD0xZGxr/J0CvEMklxZUpYfsSikSDxf77PJFa+ZZEIZ8lOhWbMVZPitEsuPwlJmVilG0ts/A1TTDyOIb2eAaSpYOsrLBdKGwk4LghiGeS4JFZTRfMlYLdQYykEZ1Uv58DMltk2knJRQDiKwwkpeeOONKCO2F7c0ptbcqBHK0pj0ouZsuLjS3sN6XZAInTiJ+pc3Tso/Ta66F6pw9ldYt8UK5kcwodY43QzLAis8CdL3jCRzbO/e/wDRv/J3wtjvYfrQHpe5n4bQTRVzIt20+whGuc7QQgzOiXSjxAv+DPekjQhp+QhIV4R8qtjLCIxF6zb6JgJSLuPyU5BKw8oXR45SLiFOqbBkXJKQMbwZFNJpYkatc81LCaqEpKQUWlY01ew6GLFqchlBis/pupt0PWUkyxWWdQ55H2r6WSraOoJ5C/nvK/86mdxbhKaU46buEGt931J1FfoRlCywEWC1I79gilyZ4OuD/X3+l5JJtCiszwW4DiE4crJzVRFz7G3X1pLcBaal0Gn28NpTRJDSCJ20EO+H7vLcDXefXh+c3SK/VriekGCB93/eEDfB+oiOuA1GdUtMNKGl9A7tI1tjipa6VmS0UfzrILbT92a5Iv0RSj4GsZWSlCT9ACWnQWylpIZrOL3b3TBRg/Vq2glzRY3XTrXUaM211IDtVEsN11zL88y13czVamhz7T/PHPZzNIowikUeB32Pci1sa0FaDs1aAKsXGRmLWbHTMnQzl8qRm5BCLfId5u11JbLKWu1UJXyzyEbAlVOe9ztDaCV40wz6iFG3lRy3gyfN0vOJtPTj7dHBweoA+wmlSD1T54zTePvpNSWLQm6YQmWeLHx9StIOHsbpXR4M9KOlGa/zYwOpMTimBvSHST0YnRv++j03876C6oquXYLn8AZ0H97GaYBvk4PPb24uVwQG3y46lU82nSZ+MrKTnO/r6lu4Au0EYuhVV3a91pVdrzpN9LjWk+YO5F3ktIQYJtYWJu71Epm7dA/HpCzuoehhIXyGGUqcFnbqWfqXF29pek6Ykvax2yK45iAKYbFINvcIFuItMUAKM37vOzvJtfgn+JrrGNsTuBgBDs+r5nbx7BtmhaSF28Lb5iTUHEOa2blq4HA4wt+ORydH3eOXL152j45PDrrDw1HSPUh+PzkcnZzgCE+g1Zyb4Km7bKuFVj2s9BEs1Cj3W6wc2vcAdvqXFwvy9vde7O3DslMXiDlHMfE5WuPjP0O05Km5j7hPZz5BwRJmfzQfGL0iNzZD1ZK3FEMLtsydZOmb7RUShc8+r3lWRdctVNHFiluXyM15NQLOlEluuLLBbDZEQx+1LEte/uJIcxgNIrhHLXDIgN0yiJM6oGbwN039odjXq65PViaXLgTQUu3iuhI4+klChd1IO2ilzWX/5vU5RDCsbq2zPGUmjbw3/o0B+Go8bDCehbUZSFRjx/UmhiCU//4FiAQCrw== +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Metrics + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-query-revision.api.mdx b/docs/docs/reference/api/edit-query-revision.api.mdx new file mode 100644 index 0000000000..8f84065480 --- /dev/null +++ b/docs/docs/reference/api/edit-query-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-query-revision +title: "Edit Query Revision" +description: "Edit Query Revision" +sidebar_label: "Edit Query Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWd1v2zYQ/1eMe1oBJU7TNt38tLRJ0axtkiVp9hAYBi2dbbYUpZBUEs/Q/z4cqU9Llh3PHYZhfXAV6e53HzzeHY8LMGyqYXAHvyeoOGoYehDFqJjhkTwLYAAYcDO6T1DNRwofuOaRBA9ipliIBhUxL0CyEGEAdbIRD8ADLmEAMTMz8EDhfcIVBjAwKkEPtD/DkMFgAWYeE4A2isspeDCJVMgMDCBJLIrhRhABqTnvXWUSemcBpOnQAaM276JgTmjLcvxIGpSGPrE4Fty35vW/6UjSu1KNWJHxhhwxWCyZ0/w+EdZ5C2ByfjGxjmBBwAmbicsaaUmRWTqOIoFMQuotG58OUy9/FY2/oW+qRDIRAsjk3CMfrBKpByEatqUyueRSDJcGp6jqksNx/U3VhnZZ4HPlJ4Kpnz4kQvymI7l3JuPEvIA2E7nBcDMmphSbd7ulxgrPcukX8iRxbL+8/4BHz6PPXJt1Pl1l4zL38zx0k8Wc2/cb2d/UgHhTDwLUvuKxybbYNlAnFYjUAx50AS0nly5gm1+WHbOUjfJkdBpw00pdZqO75ZQy7MC6cjkN0pRAFeo4ktqF2+HBAf1X8xxcJ76PWk8S0bvKiGHr1OdHiWNait5S3/eWgpZvwhJhYHCQei0Zs1yFttz6wBRn0ox2t2KuQNw6XFsfPNi9lDq+s2XXNjhspgyfMH+Xyh9nkLmExMwitTNwh0b7mpnO3FBBJdI9w20+6NjlBGgLndZsunXe+ZKxp97/BXybAn6RmC0qeIPrGSXc8f7Ha3iXWzco4tv46N9dxX2FzGAwYmanWeS9g+0dW2clcfAjhHx1sJmQAAX+ACEnDjYTkrtrvMtKlDvrXV6Ocn/tVErurUJK7rCdSsndVUh5QNXsUjYP19uMPfVAi2S6Lcw18e68abXll3U1YI9cBtEjYXcQSXykFnSXUXvuIFMPIhHsGvzCQVJOw6dNodc69JywUg8ED3k7aGthWEL5bLnJbhXgmn4LZRLScYFpH2Xg3lGGzf4YdvrAwlNESYPqgYmtNT7LAej8saqbaxbABs6Vbdw6zlF/FLHYhKE2jQuDak2ouqmVa2SLMwkwGZQVtele+zWiY42MSCHp3shIVY9mn6Mp95m4yCWk9ljlKruVnbU9q5WbcBRB25yr6HUsQerBd5xvm0k+4dyddkSyaTl/dkOTW5q29HHtzY6bwG3elNxa9VOvtqDrdwrXNGvUI1rHagGLwpgpriNZWb3VKHhPq29/pxQPwtgntI/0OzaPtVP7eRKi4v5G4NowZfQjt6NQlEH+SEd0xiUZEDLjz5CeBP+OVUHXFm0jOVy6eB7xmqrUKm7EP2OkwIw1nHnC/c0Q8IlrozMtsj8qOKf0BqWPbWDNfJYTVWYNtNw2RIotuGrn+UzjSKPU3PCH9m3RcpJrNkJMY++6gKmoMmFCY+oBPtEp3S7g1lJOCaP3xWI0RHTkzxt8MheZLwi/7gIm2kvAJhodC/EsTVyQlZqsXtSMZs28zCXO2obOEq/NwsUxM68QL2C4nJpaeHXVprthl0EFcltp2nQ0eMLsYXRr/r/DW8wC3Rzx9eFhc3R4ywQP7GCwd6qU3Wpbzg0DNIyLWk2sE4jIX1Ex1xepjqX9HDkF7RxFT7tKbWX+40hWk1pn9G7o67pAJbuc6IyuXtIy9zrvrjbjxLmva3E/3txcNgDd2tYXlWbIvfp9Gdgh0yyiez2aFnjuYm4A/ZhmtvjYv3fXgP18hKv7i8alXgoeaFQP+eVfogQMYGZMrAf9vi+iJNhnU5SG7TPeZzG3O1+jnyhu5pbl+PLsE84/IrOd8N2wSnBNoeWCpU5WrBOLOfU6+eAimznyP10EZFeOM8dFfqGgvSpvCE+fWBgLbL/hy0eC5TyuHCIVo5IyUuouL17TYQ5eTdjPbyZHr/fevH35du/1m6PDvfGrib936P9y9GpydMQm7Mjqx+UksublSdc6r3d8eQaVUyoc7L/cP2jIrBHbVsK3uzb3jf0M3tIqFetDVTu0WxYMsvDX8gNpFkfahExW8Nqjamn6k62TwSfTjwXjdltaBRZZxN1BFnHgxufcNj1F1IEHg+Zl8tCDWUQnxjtYLMZM41cl0pReW1oKpGzYPyY/3i0g4Jqeg6xyNRQtshz8dJVt5he98sBQNyCPPkmhl3XZAFnL3nL3bfPVLI/xRUb33oncs1mlxGkkWUqAjuPY9zE2nbTDysa+/HpDjWp2FR5GAbEoRp6mX6typXGy7xYgmJwmdqoODpL+/QXWn/qS +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Query Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-query.api.mdx b/docs/docs/reference/api/edit-query.api.mdx new file mode 100644 index 0000000000..3c59d2e332 --- /dev/null +++ b/docs/docs/reference/api/edit-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-query +title: "Edit Query" +description: "Edit Query" +sidebar_label: "Edit Query" +hide_title: true +hide_table_of_contents: true +api: eJztWFtv2zYU/ivGeWoBOU5zcVc9zU1SNGu7urnsxTACWjqy2VGiwktWT9B/Lw4pWZbtOImXFsOwPCQOea7fOfwO6QIMm2oIR/DFouKoYRyAzFExw2V2HkMIGHNzc2tRzSGAnCmWokFFOgVkLEUIwe3e8BgC4BmEkDMzgwAU3lquMIbQKIsB6GiGKYOwADPPSU8bxbMpBJBIlTIDIVjrrBhuBAlQUPPOeQxlOfb2UJu3Mp6TkVXzkcwMZoa2WJ4LHrkcel+1zGit8Z4rytBQtmHhg19fToQDpgCWzT8nLlsWx5xMMjFsiTYSVV4TKQWyDMpgNdVyXAb1kpx8xcgsC2VWCKBM6/zfuSDKAFI0bMdgas+NG54ZnKJqe04n7ZXlHDb7goiryAqmXryzQvymZdY9z3JrXsKmFLnB9HFKTCk23w5LSxWeBOknQpI0di/vT0D0d/mRa/MQpvfluKr9NISuqp7zh/tR+a9HQLplADHqSPGcUt3V1OmSiTIAHm8ztEol2ww7WlkFZoV7zmJuNko15DOqGGS8QfXCMxaUJdlQqHOZad9VB/v79KcFEFzaKEKtEys6F5Uw7ExskbReaaVJmzhPnARVKWFWGAj3y6Dhwwbj/5nxHzPjZ2t2oMY1rSdwo9f9j5PjNlgfwY67YPTvpsdIITMY3zDzSJqMmcGu4S6e+72ceLOdgQPL5vGPcHLtzVZOYhT4A5ycerOVkxquibu+PtNgqcF666+uDV7P6qVGa+GlBuxZvdRwLbxoYae79uol6f70Gb7BwIM6i+nrJ/fRwcH6sP6DCR67Udw5U0qq3Sd1jIZxQZ+qUbAqIGTU2n0K6y7NVT89mlQ/Sh+gm6N6uull1kwGrdkUG6q8X9SB0bmi3YduTpSXd13JLZW2gdeje38apx6+bUV9f3U1XDPoa9suKt3aOl+q126KZibpDUxDIvDP2hB6ucI7jn/1bv2TuVfU798SAtCo7urnsVUCQpgZk+uw14uEtPEem2Jm2B7jPZZz18saI6u4mTuVwfD8A87fI4tRQTgaLwtcUvv4hmiLLWrBcv4BKfLqYT6wZiYV/9tXuXqdz7wW5U6NedG8qs++sTQX2HoV17e95qrV3A8WU7Bpgjaai2U68XCYsF+Ok/5R9/j1q9fdo+P+QXdymETdg+hN/zDp91nC+i4sniXSZVVVb+Aw6wyG5xAAoeut7++92ttf89kSpgPJIncga0jcNgQrxVmUBQLA1J1GMMjSX5sNiiyX2qQsW7LXapiVeV5VxeA308sF4+6gOb9F1UwjqJoJ/MWbznsA4eILlXEAM6kNCRbFhGm8VqIsabkq0GgcwB1TnE0IqVEBMdf0OYYwYULjWkwLioIXF9VJfNlp7k/tWOu2yii5OyYs/QcB/Inz5a99HMfM6p4tqu0T76nrmKBRXyNGIi2vMYgizM1W2fHSqRxeX0EAk+rroFTGpKIYYUm/XaTSJe7OjFsrQLBsaonKQvAm6ec7hjp+tg== +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-queue-preview-evaluations-queues-queue-id-patch.api.mdx b/docs/docs/reference/api/edit-queue-preview-evaluations-queues-queue-id-patch.api.mdx new file mode 100644 index 0000000000..3de67b5f2f --- /dev/null +++ b/docs/docs/reference/api/edit-queue-preview-evaluations-queues-queue-id-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-queue-preview-evaluations-queues-queue-id-patch +title: "Edit Queue" +description: "Edit Queue" +sidebar_label: "Edit Queue" +hide_title: true +hide_table_of_contents: true +api: eJztWVlvE0kQ/itWPYE0jkOAsDtPa5IgvLBLNgcvlmW1p8t2Q89BH1m81vz3VXXP6Qs7EAmh5MGxu+v86uianiUYNtMQDuHijknLjEgTDaMA0gyV+zXgEAJyYcZfLFocZwrvBP47xpre7+hxQSH4eJwxE80hgIwpFqNBRTqWkLAYIYSSDgIQCYSQMUPECr9YoZBDaJTFAHQ0x5hBuASzyIhPGyWSGQQwTVXMDIRgrZNihJFE8A8J7gw45PnIy0NtXqd8QUJWxUdpYjAxtMWyTIrIedP7pNOE1mrtmSI0jEBNv5zx68tT6YBcAksWH6bO2zaB0GNNBiVGMNlwapKmElnS8GKgO9c1ZQAcp8xKA+GUSY15HpSs6eQTRqbBWQfRIfHG2ZQHla7ESgn5KA8gRsPa1jLOBXEyedmyu6ZoR6EhViQGZ6jamuJJe6X0k5Y264JIqMhKpp68sVL+qdOkO0gya57CqsckQxiM92NiSrHFBhhq3NqssIbwLt6/CEniWIv/z4To3+l7oc23MN3m4yr3YQjd+Cwsqn8v/9ctIN6cakFHSmTk6n1FnTdE5AEIvkvQaq/ZJZj6TgB3qPR3WPexYM8D0IYZuzNjAsDExtS+M0y4X3H9iZqisknil7SNItSanGFCWoXEqFSqaCliSYRSIofRpkZy7Y3Y2EQ4W20i7ZZnNaqx4CsuFIXb+PItyFcLef/CvtWoOgPu0k9HmDAl0h0WHWrIdsXXhbJKucFs/BkX+2k+SJPBrPOOJB9wMpwz17TWYrq/hAsuzEaN9TE7LM7KjXlVCbnypzTkOUlTqLM00T5/To6P6V+r5uHaJ/PUys5VQQz3Psyj1Hqmlb5bW3zmKBqH8HEe1DPAtsx/nAYeYhr4YM09xoE1rgPmAc/7iw8Eu2DdYyK4D0Y/90gQKWQG+ZiZPUcDzgx2jXD2bNdy5sV2+g4sm/GHUHLrxRZKOEp8ACXnXmyhpIRrshj/uGGqBOv1ouPnqhKvH6qlRKvSUgL2Q7WUcFVaHmfO+82cjdOv0v44h/6Cc6jLpKIC9738ubKJv/rZPZMWgrcPpd83F1czqZ9nX5ycrI+wH5kU3LF0Lqgk7j+/cjRMyFYStwlkGrV2Dxk1Rqvhr51+n3oDKUNiPdsUpnoc0prNsM6l7aQOjM4N7X4riuSXV13QNdtZBa9Hd7sb5x6+XeF9e3NzuSbQx7YdVHqW6fgEcgP1POX+arO4CDVzCKFXXJ/2GtenPX992luW16I5tU9Ud+WtqVUSQpgbk+mw14tkavkRm2Fi2BETPZYJV4caI6uEWTiW/uXgHS7eIuOoIByOmgTXlEs+O9pkVWBYJt4h4VTc1/atmadK/OdDXlzazj0XAUFZelVftl58ZXEmsXVZWj0QrTz4+IeY6gmkHpur4bBOkzbe1TJ1CXg+Zb+9nJ6+6L589exV98XL05Pu5Pk06p5Ev58+n56esik7hcZBWbOXJ17jOCvPk/rcGO6nYLTa3Q/gqxvzsDRu5NJMJNPUBafIyL4Lfad/OWg5dHz07Oh4DaUWMTUZFrkmU0bWbUOwkmNVdtGhHbsOAwZZ/Ee9QZZlqTYxSxryWkWwMpgXyWXwq+llkgnXPJzeZVEeQyjKg9Q23kcUAwZ9Cat3B6MA5qk2xLVcTpjGWyXznJa/WFRUBqMA7pgSbEKwDZfAhabvvMi6NQOrHgxPropW87RTPxW1DS9LJaE6IVvpFwTwGRfNNxyuic7LOlwW22deU9e1upp9rfNTV/Yc/SjCzOykHTXazmX/5uwtBDAp3n3EKScmxQha+nS2ppnHl16O0NoSJEtmlrp1CF4o/f0Pt2ntTg== +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Queue + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-queues-preview-evaluations-queues-patch.api.mdx b/docs/docs/reference/api/edit-queues-preview-evaluations-queues-patch.api.mdx new file mode 100644 index 0000000000..5a305910dd --- /dev/null +++ b/docs/docs/reference/api/edit-queues-preview-evaluations-queues-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-queues-preview-evaluations-queues-patch +title: "Edit Queues" +description: "Edit Queues" +sidebar_label: "Edit Queues" +hide_title: true +hide_table_of_contents: true +api: eJztWVlzE0cQ/iuqfkqqVpYxYBI9RWBTKCTB2IYXlUrV2m1JA7MHczgoqv3vqZ7ZU5clByoUhR9sebbPr3t6vlmtwOBcQ38El3coLRqRJhrGAaQZKfffMII+UCTM5JMlS3qSKboT9PeEaoXy0SRDEy4gAEWfLGnzPI2W0F9BmCaGEsMfMcukCJ1a74NOE17T4YJi5E+ZYr9GkOb/vFX+JAzFelNgJl3wK8Bk+WYG/dG6gNATzaEkRqDkBbPMCPowTVNJmEAARhjJK0PduaklA4hohlYa6M9QasrzoFRNpx8oNA3NGri3HO9LF1MeVL4SKyXk4zyAmAy2o8UoEqyJ8qoVdy1RGNFGiWTeNCsSQ3NSbU/xtL1S5slL231BKFRoJaqfXlopf9dp0h0mmTU/w3rGbKOowwFKqBQut8BQ49ZWhQ2E9+n+yUiyxkb9vyVE/0r/ENrch+muHNe1j0Po1nchJBjTgflvRsC6Oe8FHSqRcaoPNXXRMJEHIKJ9hgKYpSpGA32wVkR7DQ/5MdyR0v8huveFeh6ANmjs3o4JgBIb88jMKIn8iptUEQ8+myR+SdswJK05GRTSKmJFpVLFSyEmIUlJEYy3DZIbH8TWIRLh+hBpjzyrSU1EtJZCNUCrD/dBvr6RD9/Y7zSpzjBy7adDSlCJdE9Exway2/FN4axybiibfKTlYZ6P8mQo67xmy0ecDBfohtZGTQ+3cBkJsxFnLf3Wn5fbDPKBLBRF3LbFsbq187wJ9nPtj3DI2VytbpQlt6CzNNG+5c5OT/lPa0zAje//mZWd60KYG/9hTCBMrVdaG9V1Ci+cROPcPs2DHwTi/yEQb6x5AIPY0DqCQnjd75xD7IP1ABLxEIy+bRYRKkJD0QTNgWwiQkNdI1w8u7288GY7AweWzaKv4eSdN1s4iUjSV3By4c0WTkq4psvJl+NfJVjPlx1PxUq8vqiXEq3KSwnYF/VSwlV5+UFTH0ZTG6df5f0Hdf0OqavrpGIH7gejNn1tE7e97mGpheHdLPV+Itxow9ExNFtXhDV37PfJ2dkmv32PUkROp3PJ++Xh5DYig0LuYakyDVtPj+Eh490o/ZH6ABnIWM+31bDmSlrjvAH5blEHRueWn95XYs7Luy7kmrOugtejuzuNCw/fvvq+ur292jDoa9suKl98OlX3xGQWKb/+LF9rZmgW0Ide8Qq013gF2vN3jR6PVFI86F2BrJLQh4Uxme73eqFMbXSCc0oMnqDoYSbc3tQUWiXM0qkMroavafmKMCLlGrchcMMt5JuiLVbVAzPxmhgeT9lgYM0iVeIfX+kABKe58FqcPzfndf229vIzxpmk5tvXUeOatHYd8leb6l5Sk+mKMtb90Qa6WubZAY9n+MvT2fmT7tNnj551nzw9P+tOH8/C7ln46/nj2fk5zvAcGsdnrV6eg41Drjxl6tNkdJiD8frMP0KvHtejMrhx7jafSGapq0/RiwNX/c7gatjK6PTk0cnpBkwtYR4vGLrxUhbXPYZgrc2qBuOzPHazBQxh/Fv9gEufpdrEmDTstdt/jbAXDWbos+llEoWbG87xqtgYIyg2BvttfJ1QXcQDYLAWqeaJDKvVFDW9UzLPefmTJcU7YBzAHSqBU4ZrxBAuyr2wgo+0dJd9N2i7bsqwuLS+99eGLg9ErzEIQ8rMXtlxY8NfDW5fvIIApsUXGHEasZJCTo1/9wH4OxKfX3/l11YgMZlbHpR98Eb551/TL6tX +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Queues + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-result-preview-evaluations-results-result-id-patch.api.mdx b/docs/docs/reference/api/edit-result-preview-evaluations-results-result-id-patch.api.mdx new file mode 100644 index 0000000000..2debb87fa8 --- /dev/null +++ b/docs/docs/reference/api/edit-result-preview-evaluations-results-result-id-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-result-preview-evaluations-results-result-id-patch +title: "Edit Result" +description: "Edit Result" +sidebar_label: "Edit Result" +hide_title: true +hide_table_of_contents: true +api: eJztWVlzGkcQ/itUP9lVi5BlS072KViWS4rtWIWwX1QU1ew2MM7soTlkEWr/e2qOvQAjhOVUnFgPCGb7mm/6mt4lKJxJCK/h7Ba5RsWyVMIogCwnYX9dxBACxUyNBUnN1TgXdMvoy5hqBv9IjksaFo/HOapoDgHkKDAhRcKoWUKKCUEIFSEEwFIIIUdlqAXdaCYohlAJTQHIaE4JQrgEtcgNo1SCpTMIYJqJBBWEoLWVopjihmBgJXcuYiiKkRNIUr3K4oWRsio/ylJFqTKPMM85i+yOep9llpq1Wn0uDCSKkXRijJL19Sm3cC4B08WHqd0wxjEzMpFftkhrCr+zSZZxwhSKYHWzxagIyqVs8pki1SRKNedgtloi8MYaUQSQkMI9jSk112pYqmhGoq05mbRXmnvYrAsiJiLNUTx5ozn/XWZp9yLNtXoKm7bIFCW7MaEQuNgOS4sVHgTpe4Ok4dj/eP8BRP/I3jGp7sP0a3tc5X4YQkPvcyzetvvVsN0m0URwALckJHPBuAOka0I+efYigDnK+fjxzDtHOe84G5XAiO4RvRU7w1/KIqkilPeJe4ilQy/SayAhMvHvdeIfKS2cWSiLAKRCpbdCFgClOjGVNqc0dis3mjSZ2iV0mrolqaOIpDTni4xrQeAPzCxFmEbEOcXQtKGqw1fOiHWDi7VNbWJ3hfMsZgo2MdSV87osfxutqMUMXOmFojDyBMk8S6VzrKPDQ/MvJhkJlisb4HDl9j7VvDPwxLB3hY4y7ZhW/LQ2+dRSBBDTFG0xP3RW+sJeH+TPEv/NsfxBqz2CeY3rAdHseP/jVX4brDuU+X0wKut8JAgVxWNUO5apGBV1FUtoq/hTJ7bTt2bpPP4eSj46sV5JTJy+g5LXTqxXUsI1WTxiYS/BerXwpb3E61G1lGhVWkrAHlVLCVel5Wcj+bOR/D8Vnx+kl2z0S5V2E62pInGLfKPZG492NUhLAQY0lpBUmOSPmpCHlVTb5+WEZv50t7fFAyuicxHfrTaRUlE+/pMWm8ZWJfeVorzzlhb2xCNKUbDMh+quk64rz+bDUej0gQIGOnVzsu3dfrWdtqWVxi3XgG+8jFTXAHeFeHF0tH5r+IScxZan40Jo7ytDTAqZ9WCfFVYJeBa1nj4kqzX6e5dI6l2/y5yBtp+Xs21e856kxBnVmeXrpBaMztA8ve+Azb6cak/XrHsVvFWC+so2Xjv4tp3v+XB4uSbQnW37UM31seNdyF5y5lnshsR+pqzmEELPz6J7jVl0z8+ie8tqxFwYxyVxW46gteAQwlypXIa9XsQzHR/gjFKFB8h6mDMb5pIiLZhaWJb+5cVbWpwTxiQgvB41Ca6MOzkHaZNVZ4M5e2vDxw+/+1rNM8H+cqfuB+Bzx2WwMI46qOfWZ3eY5Jzac+fyGlrfAeuLi++e4PkUfzmenrzoHr989rL74vjkqDt5Po26R9GvJ8+nJyc4xRNodEa1E1Utzq4y6s6l4YnNDmRXQWVT0SiEdZ2xhWaaWWi9S/XtwXX6lxetnRwePDs4hFW3ahGbLIGRBbM8F/sYghUPqXzDmJfYFAGKMPmtfmAsyzOpEkwb8tpe3DKl8g1Fd6qXc2Q2/K3ipffva/D+bfQ2Xs+UUwrzLaxfpIwCmGdSGb7lcoKSPgpeFGb5RpMwfjwK4BYFw4lB7noJMZPmewzhFLmkNROrPApPBj5dPO3UDVHb9NLXU+PoxlrzCwKwdbDxvsdmwnkZSUv//NSp6tp8VfOvpW+TWh1HP4ooV1tpR43Ucdkfnp5DABP/IijJYsMk0KBrPq2xWe4gNqFm1pbAMZ1pk3JDcELN39+N80uJ +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Result + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-results-preview-evaluations-results-patch.api.mdx b/docs/docs/reference/api/edit-results-preview-evaluations-results-patch.api.mdx new file mode 100644 index 0000000000..b1e2d6a035 --- /dev/null +++ b/docs/docs/reference/api/edit-results-preview-evaluations-results-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-results-preview-evaluations-results-patch +title: "Edit Results" +description: "Edit Results" +sidebar_label: "Edit Results" +hide_title: true +hide_table_of_contents: true +api: eJztWVlzGkcQ/itUPyVVi5AlW054CpblkmI7ViHsFxVFNbsNjDN7eA5ZhOK/p3pmLw6tgJJTcWI9oGW2r/n6nGEBBqcaurdwcYfSohFpomEYQJqRct+uIugCRcKMFGkrjR5liu4EfR1RxVG+G2VowhkEoOiLJW1epdEcugsI08RQYvgRs0yK0PF1Pus04TUdzihGfsoUazaCNH/LxfKjMBTrTYqJdPYvAJP5hwl0bxeAUSRYOsrrFdKKwswzgi6M01QSJrAMyiVtlEimsBwug2IpHX+m0NSJEislLIcBGGEkL7xxRiwDiMnggcYUmis1IjE0JbWqOR6vrtT3sF0XhEKFVqL66Y2V8nedJu2rJLPmZ9i2xRzmHZhQKZw3w7LCCntB+p6RZI7D3fsPIPpH+k5o8ximD+1xnXs/hAZ5zImoafcBTFIVo4EuWCuiRolX/BruSGnh03IHSDeEfMrZlwHMUM9GT2feJepZy9toFIb0iOhG7Ji/kEXahKgfE7ePpYNcZK6BlErVvzeIv6eycOGgXAagDRrbCFkAlNiYW1tGSeRXvliyFHF7sknil7QNQ9Ka/YtCWkWQO4yXQkxCkpIiqNtQ9r0bb8SmwcuNTW1j77vudhGJOggev4q8n7fAbSK5yQpFEW+yaJVbDc2FsKq+b8ywZIGVAKMsuQWdpYn2wXhyfMz/ItKhEplxRQFuPF4TK1v9nJiBOqy/h6n1TGuxXe3h3FEEENEErTTQPfZW/hgLnj7/P1hzQAHY4NqjAnje//hk0ATrDqPBIRgVs0GoCA1FIzQ7trYIDbWNiKlR/LkX2+o5s2wWfQslH73YXElEkr6BktdebK6kgGs8f8JhoADr1TwfBwq8nlRLgVappQDsSbUUcJVafgyfP4bP/1Pz+U7mz9q8VGrnbE0MqTuUW83e6tr1JC0EMGgiJm0wzp60IA9KqW7OywjNSET3B1vcdyJaV9H9+hCpDWWjP2leGz9LowvuG0NZ6y3NncdDSlCJNE/V5gSticjZ8nRUNtlTQN8mjveR+b/czqqlpcaGc8EOp48adrd7nW50eUhYuhPH85OTzTPFJ5Qickwtn2AHHygiMihkw8FApuHK231q3vBhnN6l3kA37etpU0y9J61xShXoD5M6MFoDfvuY+3lfXnVOV++KJbxl+XpgG689fE0OvhwMrjcEet+uOpUPm60qfmIys5Tvkosb4gzNDLrQya+TO7Xr5E5+wOtwMJPiocC5yCoJXZgZk+lupxPK1EZHOKXE4BGKDmbCpb6m0Cph5o6ld331luaXhBEpF7s1ghsOIh8Wq2SlRzATb11KJRjz9541s1SJv7yvuaCyPZ6LEeDw7Fc33xf3GGeSVm6yb6vDaXUyrI4z+UwFpxP85cXk7Hn7xctnL9vPX5ydtMenk7B9Ev56djo5O8MJnkFtXqqCpxx8dpVRzTO1CKzPJbsKKkaNWnusus/Q9Z9J6tDNY6nnfNfqXV+tbOX46NnRMazH0woxlwcMXXkoXONeQ7AWJGV4sH2xqw1gCOPfqhfsuCzVJsakJm8tfFdsKePD0L3pZBKFS3yneZEH9i3kgc2Ka7+tVLcXAXCSzlLNRRUWizFq+qjkcsnLXywpjuBhAHeoBI4ZsFsGcVbE8gJc94JzXyrbrk4wubQ+dtfKJpc0z9ELQ8pMI+2wlrHXvcH5JQQwzn/MidOImRTy3vizC8C/GPkNcrDz2gIkJlPLpa4LXij//Q2oZAeq +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Results + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-run-preview-evaluations-runs-run-id-patch.api.mdx b/docs/docs/reference/api/edit-run-preview-evaluations-runs-run-id-patch.api.mdx new file mode 100644 index 0000000000..bf0898f887 --- /dev/null +++ b/docs/docs/reference/api/edit-run-preview-evaluations-runs-run-id-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-run-preview-evaluations-runs-run-id-patch +title: "Edit Run" +description: "Edit Run" +sidebar_label: "Edit Run" +hide_title: true +hide_table_of_contents: true +api: eJztWltTGzcU/iue89TMLJiQhLR+qgNkQhMaxpC8MB6PvCvbSmRpowuN69n/3jmS9mp7MYbMpK15AKzV+c5F57ryEgyZaujdwvkd4ZYYJoWGYQQypcp9ukigBzRhZqSsGKWK3jH614iWu3Fdj9xTloxGKTHxDCJIiSJzaqhC9CUIMqfQA78LImACepASg1sV/WaZogn0jLI0Ah3P6JxAbwlmkSKVNoqJKUQwkWpODPTAWodimOG4YWBF5yKBLBt6NKrNG5ksEKIJHkthqDD4iKQpZ7HTovtFS4FrJe9UoQ0Mo9rBWLG6OOHOeEsgYvFx4vSsb2B6FHOpkXt1U1BrLCWnREAWFUvCcg6oRa7Zhe6ceoQsQjjO7uhjwD4gvYcisXkkWN8jZFmU75LjLzQ2lZMp3WpgxVtnr1XQLII5NaQuCkkShnSEX9VsuiJs8I4KLBOGTqmqc5qP6ytVHdfzgpip2HKifnlrOf9DS3FwIVJrnkFTX8Rghs63IyJKkUWrbeuksGLfNtpLtCRSrPjmz2TRP+UHps19Nt2kY5P6YRa68V4YctJW+q9KgLRZBAnVsWIpqror1FkFAiNzfbLYkANbI9QljTuq9COk+xzIswi0Ica2ekwEVNg5lpOUisSvfLPUUkzWygrhl7SNY6o1KkMYt4oioVJS4VJMREw5pwkM16WRay/E2iSSkGYSqadjbWjakD9EbXPnV7pYV39ycd7TRelym43AnG9isbuTvs5ABEQIafyHqk8iRBaBVGzKRBtobLWRc4hgZufEAVojq1AfPUSGpXBCFRVxCPMN4V/X/AndhdvprjDXSPvkwdBSpwa5qVZTyZpNLn240306d1rDt+xdbh3E2oAYWHFGDLk2NG3mwvsLzYXXYRvmYUfhojX3uk+yBwl17cLU+W9KSdPEbRWpATQI9JimJ8RyA73n2GuQNGWiWR03HF0suZ2v6f2+MpG0nik+rxSZTft8IbnP/ggWsNpMfek1O/Uyu5RN012zm+vOW7Zd4fPtPMdBbSG4d5V7IMOJBOW2QH2Q813mzrF1V4uc1tWjbenPE2buVRrnj02qIsDATz2QZZkLHJ1Kof1pHx8d4Z9apwLXvgRPLO8MwmbYeTiKpfVEjdgs5T11OypxeJRF+Uy1qVrvp6v/23T10ZodxqsVqgfMV572Pz5gtZl1iwlrFxv93CNWrCgxNBkRs2V3mRBDDwxz8mzmcuphO31nLJsmP4LJJw8bmCSU0x/A5MzDBia5ucaL0dP147mx3iw6fk7N7fWkXHJrFVxygz0pl9xcBZf9DL/bDF9pEAru+7l+P9fv5/r9XL+f6/dz/b9qrn8MbTGT+3n+5fHx6gj/mXCWOILOORbe3ef3hBrCuBup1wcLl3Ht6UMGmmHzlEqVP+TVE4NXT9uc8pJqTaa0rToXhkRjdHzhvcflUC/POuyrVrzCvN66m9U48+ZrO9x3NzdXK4D+bOuHiu9yOug8bmifycRfk4crdQxc6IZL+G7lEr6Ll/Ddpb9ezzCGqLrL796t4tCDmTGp7nW7MZc2OSRTKgw5JKxLUuYCRdPYKmYWjqR/dfGeLt5RklAFvdthdcM1epH3i/q24khIyt67/BBu/fvWzKRif+etkrv8n3kqNAH656C8tj//TuYpp5Vr9+JVUOWVj7/OL17aFB/zFy+4UL76KOf1IneXnlM/gmIZmxR4MSG/vpqcvDx49fr564OXr06OD8YvJvHBcfzbyYvJyQmZkBOodOgled5qV/rovJENDettSNkVH86DxzeYeddYNoe11q/SrDShsqH/LkQotEfV6nhbrX6+3pUS1G1TKTUNSYMz5vswtzlxJtI5QvD7vnOzTv/qomajo8Pnh0crhq9txlRGYpfKci9yjyFq+HPhydhLz10eA0PJ/PfyAUqWSm2wry7xKqHWeMUQTsHQ76abcuKbbsd1GfS+hRCEyLTyzRk3IeGfXvimyzCCmdQGKZbLMdH0k+JZhsvfLFUYbMMI7ohiZIwGu11CwjT+n0BvQrimK8IVOR5+GYRU9qxTuk5d6DwgBUYjyomfIAqHGWR0KXqWx3p+0qeez8GN7w5z4pW6gjnfU/TjmKamde+wktau+jen7yCCcfimzlwmSKQIGhV/O0ll6i2LyQDXlsCJmFqsBT3woPjzD6fMjm4= +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Run + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-runs-preview-evaluations-runs-patch.api.mdx b/docs/docs/reference/api/edit-runs-preview-evaluations-runs-patch.api.mdx new file mode 100644 index 0000000000..bd38826999 --- /dev/null +++ b/docs/docs/reference/api/edit-runs-preview-evaluations-runs-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-runs-preview-evaluations-runs-patch +title: "Edit Runs" +description: "Edit Runs" +sidebar_label: "Edit Runs" +hide_title: true +hide_table_of_contents: true +api: eJztWt1v2zYQ/1eMe9oAJU7TNt38NDdJ0azNGiRpX4wgoKWzzY4iVX6k9Qz978ORki3Jtuy4KdANzkNiU7w73vF3n8oMLBsb6A3g/IEJxyxX0sBdBCpD7b9dJNADTLi9106a+0zjA8ev97jYHh7cZ8zGE4hA4xeHxr5WyRR6M4iVtCgtfWRZJnjsibqfjZK0ZuIJpow+ZZpkWo6GvhFP+sstpmb58Uj4Y8+AyemHEfQGzQ3c3MdCGUzqm+w0Q+jBUCmBTEIezZekEwLyuwgst4IWLkznNHDII2In+AN+D7P3RB9Ysdh+J7N+4JDnUblLDT9jbGGxa3Gh106+8fZaZppHkKJl9aOwJOFEx8RVzaZLhzVWczmusuXS4hh1XVI6rK9UdVwtC2KuYyeY/uWNE+JPo+TBhcyc/RWa+hKPAiNbEDGt2bTVtnVSWLJvG+0lWZIolrD5M1n0L/WeG7vJput0bFI/zkK3AYUgWboa/sv6L5+AaPMIEjSx5hmpuiurswoL8szVwaJgFMFI6ZRZ6IFzPGn3UB80HlCb7zjdp4I8j8BYZl0rYiJA6VIK5BnKJKx8cegwoZDspAxLxsUxGkPKMC6cRiLUWmlaipmMUQhM4G5VGLkJh1gZRBLWDCL1cGwsZo3zr4nsf6NPG03tyuO8w+kCcuuNwD02I+DyQYWMAxEwKZUNX6qYJBZ5BErzMZdtTGNnrEohgolLmWforKqy+hBY5JQER6hRxoWbr3H/uuZPCBfhxruyuSHaJ3eGljx1XZpqOZSs2OTDh7/dp4PTCrlUxHBN1cPAs1jpENdOnjHLbixmzVi4OdFcBB22EV7smEO0Bq9NJ3vUoW68m3r8ZsiaJm7LSA1G1wU9hekRc8JC7xnVGizLuGxmxzVXFyvhUrniSrlMWu+UnleSzLp9IZFssj8xK3i1mfoyaHYazuxDNma7RreM2Unbtit6vh1yPKstDh6gsoFlcSOFcltwfRT4LktwbF3VkqRV+Whb+vOELzttBcTUg2yyiW9U1pnCkITr0BBBnudVUqsd+gWTKWkCPI6PjuhPrbSBm5CzR050rovNlKx366ti5QJRw5kXCpz6HRXHPcqjfTu2b8fqndUHZ3fox5aoHtGQBdr/eUfWZtYtWrJdbPRz92SxRmYxuWd2y3I0YRYPLPfnWS/lNLDt9L2xXJb8CCEfA9tCSIICf4CQs8C2EFKaazi9f7oCvjTW62knNLalvZ5USmmtuZTSYE8qpTTXXMq+6d+t6a8UCHPp+0HAfhCwHwTsBwH7QcB+EPCfGgRsGgJU0DvYnquZt+u57/1fHB8vd/efmOCJp+icU07evbVP0DIuWrp0oeLa08f0OnfrLfS+TKzk12bchtdLNIaNsS1xzy1JxuiEnLwBjaRXEF3sqybDuXmDddercRbM13a7b29vr5YYhrutXyqNfToFclK0E0Uv0csX5MGpoVu8Su9WXqV3ac7SJb9CTVWAvxynBfRgYm1met1uLJRLDtkYpWWHjHdZxr3zGIyd5nbqSfpXF+9w+hZZgtpDtrLhhuATAFHfNr8LlvF3PmaEwAl9ZydK83/K8omKI5gEKtKdgHm9eOt//o2lmcDFW/xBZUBUGQTRAKwyypl/LccxxYCsGIgsuvh5RF+Apm79+TKVLvB8xH57OTp5cfDy1bNXBy9enhwfDJ+P4oPj+PeT56OTEzZiJ1Cp2xfkZQFeqa7L8rYoYwdFIK/At/SbUHaWteSiZKwVhJUSpskq95c2T79H1Zw5qObEkAUXJ6jbppKAGictYFjuo2h5588zUh4LBeb7Hmmd/tVFzUhHh88Oj5YsX9tMYYzFPoyVQPKPIWpAeg5mKrFTH8PAIkv/WDwgmGXKWCq3F/yqbtYYPRT3YPGb7WaChWLci50Vmg+gcECSWvnnl2LYGQGFkYkyFPNhNhsygx+1yHNa/uJQk6fdRfDANGdDMtWAzDcpfa6092kI5ge3oXIjQcHHGoGdgm6g6McxZrZ1710lrFz1b0/fQgTD4h9uUpUQkWakGP3uAQExC9qRU9LaDASTY0fBuAeBKf38CwllT7c= +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Runs + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-scenario-preview-evaluations-scenarios-scenario-id-patch.api.mdx b/docs/docs/reference/api/edit-scenario-preview-evaluations-scenarios-scenario-id-patch.api.mdx new file mode 100644 index 0000000000..12fed250af --- /dev/null +++ b/docs/docs/reference/api/edit-scenario-preview-evaluations-scenarios-scenario-id-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-scenario-preview-evaluations-scenarios-scenario-id-patch +title: "Edit Scenario" +description: "Edit Scenario" +sidebar_label: "Edit Scenario" +hide_title: true +hide_table_of_contents: true +api: eJztWEtvGzcQ/ivCnBJgZTlO7LR7quI4iJu0MWwnF0MQRrsjiSmXu+bDjSrsfy+G3JceUWzF6aGID7ZMzovfDD+OZgkWZwbiGzi7Q+nQilwZGEWQF6T9f+cpxECpsGOTkEIt8nGh6U7Q32NqVZpNM27lRDoeF2iTOURQoMaMLGl2tgSFGUEMHVGIQCiIoUDL8ppundCUQmy1owhMMqcMIV6CXRRe1WqhZhDBNNcZWojBOW/FCitZ4Kqy3TtPoSxHwSQZ+ypPF2xn3UOSK0vK8hYWhRSJP9ngs8kVr7UBFJrBsYJMWA9uNnem0kO7BFSLD1N/bExTwVZRXqyIthLV6SZ5LgkVlNH6gctRGdVL+eQzJbYrpJyUwIetUXjjgygjyMjinsHUnls3QlmakV71nE1WV7pn2O4LEqETJ1E/eeOk/N3kqn+uCmefwrYjCkvZ/ZRQa1zshmVFFR4E6R+MJGvsn97/ANE/8/fC2G9h+rUzrms/DKHrquZEuuv061d3l0W+wxHckTYiXMd7QLph5FOlXkZgLFq3MzcRkHIZM2NBKg0rt44cMcdop1RYMi5JyBg+DArpNLGi1rnmpQRVQlJSCp0oWqK9CkFshlxuoL1VvWKes1RY2KbSMtxNS1PbI+mYugw0CWXJNjWZIlcm1PHR4SH/SckkWhTWpwKuAgJTJ3uXlTDszaZJ7oLS2rVogz71EhGkNEUnLcSHnM4OCbcJ/UnH303HH5zdg483tB5AyEH3f87Iu2C9ByXvg1HNyYkmtJSO0d6Tm1O01Lcio53mT4PZ3tCH5Yr0Rzj5GMxWTlKS9AOcvA5mKyc1XJPF+PFesxqsV4teeNhqvB7VS41W46UG7FG91HA1Xn4++vs9+p0nrfHOcCpL+g7l1rC3ctQ6irUBpguRkbGYFY96Y64bq6VHqaqu+35Ru3QqfEfb3cFUhnf2L9/dSzUdTOh+XhwdbTY8n1CK1Gv1zjjp+3c7KVkUPrPVW7ouIPNkZfchz1anMQnPb3vu93kI0DciZrYtWe3TagzOqH1rvi7qwehd8+63csnnCq4rue6FbeAN6H79GK8DfLsy/Pb6+mLDYMjtalK58+01ZeT7s3mehnlENcCwc4hhUA0/Bp3hx6AZfgyWnYlGyUxB+q6eeTgtIYa5tYWJB4NE5i49wBkpiwcoBlgIf6kMJU4Lu/Aqw4vzd7R4S5iShvhm1BW44qIKZbIq1mQIC/GOGLBq2jJ0dp5r8U/IfTVvmQctRoTL9bIdkpx9wayQtD7kqPvotoltO6+K/uH5FH85np686B+/fPay/+L45Kg/eT5N+kfJryfPpycnOMUT6FB7W0w1R7cU6Dlw6l3XWR161HrDi/MVI4cHzw4OYT2zK8J8UTHxF7UGxW9DtJaeJjFM7Zm/pWAJs9/aDY6syI3NUHXsrRfSSjBNaix9sYNCovB30LteViV2A1WJsefOUK79lsOf4+7obBTBPDeWdZfLCRr6qGVZ8vKtI82lNIrgDrXACeN3s4RUGP6cQjxFaWgjzIbQ4MlldW+f9tp2dTX8utwU1xpHzP9BBH/RYm3G50lpXpfzspI4Dc76njpaCxtMyiwXNIZJQoXdKTvq3OGL4fXpW4hgUo3+sjxlJY2MMf/24eZFAJpng7y2BIlq5pj9YghG+edfTSVFvg== +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Scenario + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-scenarios-preview-evaluations-scenarios-patch.api.mdx b/docs/docs/reference/api/edit-scenarios-preview-evaluations-scenarios-patch.api.mdx new file mode 100644 index 0000000000..4b7c70d962 --- /dev/null +++ b/docs/docs/reference/api/edit-scenarios-preview-evaluations-scenarios-patch.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-scenarios-preview-evaluations-scenarios-patch +title: "Edit Scenarios" +description: "Edit Scenarios" +sidebar_label: "Edit Scenarios" +hide_title: true +hide_table_of_contents: true +api: eJztWFlvG0cM/isCn1pgZTm+0u5TFceB3aSNYSt5EQSB2qWkSWcPz+FGFfa/F5zZS4dlW7D7UMQPsnaGx/Aj+S01SzA40xAO4eIepUUjslTDKIAsJ+WermIIgWJhxjqiFJXI9DhXdC/o7zE1Oq3dcY4mmkMAiu4safMuixcQLiHKUkOp4a+Y51JETrP3TWcpr+loTgnyt1yxdyNI+/XSMD8IQ4nelJlKF8USMF18nkI4XALGsWD7KK9XRBsJs8gJQphkmSRMoQjqJW2USGdQjIqgWsom3ygybaHUSgnFKAAjjOSFD+4QRQAJGdzzMJXnxo1IDc1IrXpOJqsr7Ri2+4JIqMhKVD99sFL+rrO0e5Xm1vwM20IsYX6CEiqFi92wrKjCsyD9g5Fkjf3T+x8g+mf2SWjzGKYPxbiu/TyEBmXNiXhX9AFMM5WggRCsFfFOi1e8DfektPCN+QRIN4x8LdWLALRBY3fmJgBKbcIklFMa+5U7S5ZiJhGbpn5J2ygirTkYFNIqYkWlMsVLEaYRSUkxtE7RcNqtP8TmkYsNtLeqlxx0EYt2fnzxNwq3NVVtM8t0KBTFHGhDatuPW22zwxtPo1Cw0caIUZbcgs6zVPvqPzo85H8x6UiJ3LgEwq3HbWpl56YUZsD2Y+Mos15prZmaKM6dRAAxTdFKA+EhF8EPEn8dEv9szR4svqH1DBr3uv9zHt8F6xOIfB+MKiaPFKGheIzmiYweo6GuEQntNH/uzXb67lg2j1/DyRdvtnQSk6RXcPLemy2dVHBNFuOXewdWYL1bdPzrsMLrRb1UaNVeKsBe1EsFV+3lx6iw36jQeqXV3hnO1JC6R7n12Fs5ah3FygDThUhIG0zyF+2YQW21cCiV1bU78Y36jU1d6Twy05SGdw40TxqeWkAPnzmg6XrCKdy4dHJ0tDkQfUUpYqfWueCi2H8aismgkDtmGplFK7vPea2NHsbqU+YP6AYVPduWzObVqzXOqAH+YVEHRmfAu4/lmuPyrku5dkPX8Hp0Hw7jvYdvV4ovB4PrDYM+t6tJ5Um5066hhMw848uL6joiRzOHEHrl7UWvdXvRq+fTHrMHKeY0lyarJIQwNybXYa8XyczGBzij1OABih7mwjWapsgqYRZOpX999ZEWl4QxKVfBLYFbLiRfGqtidVYwFx+JQUox4ee+NfNMiX98vplu+Dxei1HgEr1pLlouvmOSS1q7OBk203Uz2jbzWPlSgOMp/nI6PTvpnr5987Z7cnp21J0cT6PuUfTr2fH07AyneAYtwm9KqGLuhhhHjhqnmQutTGbfAdfpX1+tWDk8eHNwCOsJXRHm/sTI9WeFi9uGYC1DdW6Y8RPXnGAIk9+aDUYtz7RJMG3Z26ifldPU6TH03fRyicL1nvO9LCtrCGVlsevWbVr7108A3CnzTDO3wXI5QU1flCwKXr6zpLiERgHcoxI4YdCGDOS8KqYl/EUL9yPL8VXXNSuLS+uLZ427mFe8Rj+KKDc7ZUetprnuD84vIYBJeXmXZDErKeTo+DME4FtCH2K49GtLkJjOLPNNCN4o//0LC2P+/A== +sidebar_class_name: "patch api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Scenarios + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-simple-evaluator.api.mdx b/docs/docs/reference/api/edit-simple-evaluator.api.mdx new file mode 100644 index 0000000000..b2404d8eda --- /dev/null +++ b/docs/docs/reference/api/edit-simple-evaluator.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-simple-evaluator +title: "Edit Simple Evaluator" +description: "Edit Simple Evaluator" +sidebar_label: "Edit Simple Evaluator" +hide_title: true +hide_table_of_contents: true +api: eJztWktv2zgQ/ivGnFpAjtMkTXd12jRJkWzbbZBHL4ER0NLIZpcSVZLK1mvovy+G1NNKXNtJFkbhHtpKmvmGM5wn6RkYNtbg38LpPRMZM1JpGHogU1TMcJmch+ADhtzcaR6nAu+wpAMPUqZYjAYVIcwgYTESdUlxx0PwgCfgQ8rMBDxQ+D3jCkPwjcrQAx1MMGbgz8BMU+LVRvFkDB5EUsXMgA9ZZlEMN4IIqmX2zkPI86HDRG3ey3BKQPMiApkYTAx9YmkqeGDVGnzTMqF39QpSRUobjpqeajU7nyJhTTYDlky/RFbzNgHXd0GmjYzbRIWKIykFsgRyr3qVZEIA6VJqea57xw4h9wiutZp1ESvTFaCTLGbJUwDPLECeeyWRHH3DwDR268r6TCX4g7VcFzX3IEbD2mthYchpq5i4aFm3s9rCZxqwPDE4RtWWFI/ab5pKPiwLAq6CTDD16kMmxJ9aJv3zJM3Ma5jXmDC4wXg5JqYUmy40bpsVOhZexPuZLEkcHS/dJIv+JT9xbX5m08d0nOdezULXzguLfLWU/t0VEG/uQYg6UDwlVdeFOmlAUGSGi4DmM+PCEA3tCtl8ZLWz1T0q/YTVfy3Ycw8yxddFuVHcIYj1EQQhTJCFth6t5vgvZRItsvG6MFfE++wOsSBbX2KECpMAmyDlQocrhdhZsQ15WeOX3ZENSlGbl/RX2ICrwupUWlma8mTZYjBv31UqTynI7jqltLVd33Hn7RZzU2vZ5jnK47wXtT1pl1Dd8wCXMa3rpldwwAI6ty14xMeZGyheQtZxS8AKDekJs71Spx9dHuE05OZBifUcctsYJoYLgS7dKAN5TogKdSoT7fx6b3eX/mm1G3CVBQFqHWWid1kQw9oTTyAzxzQXJk0zEwX1PBHLhAF/N/fgkdFkOzJtRyaXpL5kZo2s2OFaIS063l98alpk1iXGpnVstNlzU6CQGQzv2MKuo9Euh8xg3/AYF9cWB9s7ssbK0vAlhNw42EJIiAJfQMiJgy2ElOYaTe+eb8AojfV+2nPDZ2mvZ5VSWquSUhrsWaWU5qqkbN4stx3ut8P9drj/ddqT7Xy/kV3XRvrKdsT/v0b8p3FXg7kb6g/29rpz/FcmeGg1650qZa9W1xziQzSM2zJb+OM8gZBB6+sq8dSoEs6Fa6U/yYCVjXisxw/d6NaTltZsjLVPP05qjdG7pq8/O2IhvZzogq5ZsivzOus+rsaJM9+i7T27vr7oALq9bW8qHej0nDM0zhHs2D6RdKtOge25m3EfBqnCe47/DNw1+6A6vtCDWfNCPQcX0uWdu22qYGJMqv3BIBAyC3fYGBPDdhgfsJTbKNIYZIqbqWU5ujj/iFNXxMG/HTYJbFlxntImqzaJpfwjks2K2/6jzEyk4v+67S+u+12jZu1IHntZX9Gf/mCkX+eKvTohapwEuRzRPsup3hVHMfRcn4XUA3w1ptZe1d6e6jV1YLAfsd/eRocH/bfv3rzrH7w93OuP9qOgvxf8frgfHR6yiB1C3W5XPWQNY/vj5qNoPtada6tpalfvRlmtOVsFspXPH0i7zg95Ekm7Y4XLHll/6B1dnIPXWPruzpud3Y5dWsSUhVhgs1C53fZzpWDpeJXLgQcY2xQEBln8R/2BVpZKbYoTtALvsSiZOx8onM/gDzNIBeNJY6BwEXQLRQRRgFg8aBxOavDAb/0wZejBRGpDjLPZiGm8USLP6fX3DBVFytCDe6Y4G5ERb2cQck3/D8GPmNDYWWOVsuHVZZGZXvfqqt9eexlNCYUSrYuewIO/cTr/ExqbdydluM4KkmMnrW+zYw3RKRaUyB3HURBgahbSDhvp6eLmGjwYFT+riWVILIqRfelvu1pplbdxa9/NQLBknFF698FB0p//AIsChy4= +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Simple Evaluator + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-simple-query.api.mdx b/docs/docs/reference/api/edit-simple-query.api.mdx new file mode 100644 index 0000000000..bb32edb1d1 --- /dev/null +++ b/docs/docs/reference/api/edit-simple-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-simple-query +title: "Edit Simple Query" +description: "Edit Simple Query" +sidebar_label: "Edit Simple Query" +hide_title: true +hide_table_of_contents: true +api: eJztWutPIzcQ/1ei+dSTNiTkeFzzqfSgKr0HFLhWahQhsztJ3PN6F9sLpNH+79XY+8wmS0ipdK3CB5Q4nt+Mx/OWF2DYVMNwBL8mqDhqGHsQxaiY4ZE8D2AIGHBzq3kYC7y9T1DNwYOYKRaiQUWkC5AsRBiC/fWWB+ABlzCEmJkZeKDwPuEKAxgalaAH2p9hyGC4ADOPiU4bxeUUPJhEKmQGhpAkFsVwI2gDyTbvnAeQpmOHh9r8GAVzAlmG9yNpUBr6icWx4L49Su9PHUlaK7nHig5q6NDDhRO+ueyOtgAm5xcTe9i60KlXrMhECCABc7E/E23qQYDaVzwmMbaFOq1ApB7woA1oWZFtwKRUDybCWkEVkgUBJ3ZMXNYU0mB6F0UCmaxyyQ80Tr18Kbr7E33TKspPVggi2V6Ypiq5NDhFVecc3tVXqmdYzQt8rvxEMPXd5+gj1+YXHcnuuYwT8wZecshlaniRim4yDYVo2LeroZ8SIZ7TDzcYbkbElGLzdsOpkb5Mo59Ik+SjbFmj9TjwyGUQPZLmWjZJfERtNnTNgBnsGm5DRIu9OMjUg0gErw1+4SBTDyQ+bQr9bEj5TFipB4KHfDXoSotbQvloqencKkDVLhvKJKQcxrSPMnBrFHSzL+NWHVh4iqnSoHpgYmuJz3OA1APFzOq00fSsBs4V0aYNKy43/F7YYhOGgjkXBtUzpupyfGQVG+CEJYLulsmgdLymeu2vkQIPZEQCSbciIwXVm4um3GfiIueQ2pzsQoblnfn+euEmHEWwqkAoPN5uSD34ivNtU+oHpKgCD0wkm2b4F0fK/KTpimi2Ooq6Gmbz+PWbFT/1ahf6vKdwTUWavqV7rKC9j8KYKa4jWbm99Sh4T7dv/0/JHoSxn9B+pP935lFW8T8nISrubwSuDVNGP3JbQ6IM8o9U3zEu6QAhM/4M6ZPgX7HK6NqibcSHS2fPt7wmKqXpjehnjASYsYYyT7m/GQI+cW10JkX2pYJzRisofVwF1oxn+Sav4tdcOxMpXHCd5/lM461GqbnhD6vdYkW91xDiPdPYuS5gKqJMmNCYeoBPzDe39gK35nJGGJ1PFqPBoiV+3uCTuch0Qfh1FTCxOgVsItGJEC+SxBlZKcn6S832rMAq+59RFjhrDp0FXhuFi1orzxBvYLwcmlbQ6uqZRuO2AxXIq1JTC53t8K7wgWseyVNma7KX0F/b/tSinAVUNzyjKNftjdcCXLkeE9KUkBTqOJLa2ceg33dJs9LUwXXi+6j1JBGdq2wzbN2K+lHiiJbSTvVqaEflVvqpV3awa8vTb7KX9RUyg8Ete93a9r2D7ZzYIjKJg3+DyRcHmzEJUOC/wOTUwWZMcnXd2UnLK5XsubJ+dFOWUl+vyiXXVsElV9ircsnVVXDRIplua6vXRLsbuHwrA5eLxPyTiYsj/1+PXNo0tH7m0qB6wdBlG6Xupi67qctu6rKbuuymLribuuymLrupy27q8h+fumxPWcxL3KzlYDBojld+Y4IHdnjSOVPKutmWs5UADeOilg/rG0Tkr8mWzyeolmv9GDkBbSuhp21p9hNqzaZYVtTrt1pldG7o1+eMlM7lWGf76uksU6/T7vpjnDr1tV3tzzc3lw1Ad7f1S6U5W8cZQufX7GFJiGYW0asTaik894JkCL1Y4QPHx557htK7d29Veov8xUkKHmhUD/mDlEQJGMLMmFgPez1fREmwx6YoDdtjvMdibv1co58obuaW5OTy/APOf0Zm697RuLrhmozJmUd9W3EzLOZU2Xj5U5iTxMwixf9yd569h5k5KtIEmelV+Y7l7InRwWrvUDKk4s7ryiuWaTIBbyfs3eHk6KB7eLx/3D04PBp0795O/O7A//7o7eToiE3YEZRTh7LlLxvbSjdW67ry7goG/cFBt3/cHXx/s384PNwfDt7t9Y/3/4CySWrb43qdTSXNuph+0YjUuoyyaejnRX9/uQQvK7Osgq5Ww6Oi2i0VaYva8mtWoZYLFUBbx1Xy+nL+duVkLdnSUpp6FBrHzhm4nETWgvIsZu2zc3J5TtxRaXfR/b39vX7j+mubbW3mm4rRuJ/BW3KEwgWoDAptHASDLPyh/IEkiyNtQiYreKtcdWkSnDmCwSfTiwXjNtJZ9ovMjUeQuTE5q8UCN7TmtpgcFs/Hxh7MIrKnESwWd0zjFyXSlJYz5xiN6X4UZ3ekudECAq7pc5Al/4ZwRbKA766ymPimU/ZcdaFzl5bzihkUBlJIaaP9LI8Xi+zn945T18bkkryRoih9OIoT38fYtO4dVwLj5ZcbKvGzx29hFBCJYqRU+m8lrZimXVuAYHKaUFIZgoOkv78BoFmWYw== +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Simple Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-simple-testset-from-file.api.mdx b/docs/docs/reference/api/edit-simple-testset-from-file.api.mdx new file mode 100644 index 0000000000..c4caba067f --- /dev/null +++ b/docs/docs/reference/api/edit-simple-testset-from-file.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-simple-testset-from-file +title: "Edit Simple Testset From File" +description: "Edit Simple Testset From File" +sidebar_label: "Edit Simple Testset From File" +hide_title: true +hide_table_of_contents: true +api: eJztWd9v4zYM/lcCPt0BbtMVe/LTeu0V7e52LZrcXoIgUCwm0U22fJKcLQv8vw+UbMc/kjRtUmAPfWoakx/JjxTF0GuwbG4gHMEQjTVoDYwDUClqZoVK7jmEgFzYiRFxKnFivdRkplU8mQmJEEDKNIvRoiacNSQsRgihlBQcAhAJhJAyu4AANP7MhEYOodUZBmCiBcYMwjXYVUqaxmqRzCGAmdIxsxBCljkUK6wkgcLV3j2HPB97RDT2k+IrgmkbiFRiMbH0KM6kFSnTtk/YZ5xZZ3jjQqopdivQ0H8uwH2OTUXC9Krm2i1p5IHTnHi1rjomWUyUR2YJAfwwKiHS6xC9IakEwHHGMkmWSDYPKlY9yWtgyeph5mhvGsmD6pskkxLycZe+b4RRw+RoIi1Syvux0Dc1qJoFX2vHQQ8Jo4YZo8/hMZh/EEZOoF5QTX9gZBu1OvLFUFOmcpvsPxt5TqAaTaoS40vq8uKC/jS4hkEWRWjMLJO9p0IYGnXL0lSKyB3JvquXPUUbqcwrFcGIxOIcda1Ir51ErbouNnw2qWwdB9nJX1NgwYxjIWJFtJ2kTJWSyJK9WbljpjesUPLAw2oWHYvpIbbluVUQt9IXWRsvD6BbboxzQYlh8rFBxgEFWaamYSmeNr+ph7fdFkRCR5lk+sNtJuXvRiVnD5lNM/sR2qESiLAYH6jFtGarvcS2dKFD7j5lf+4C6PaF/xOp39RXYeyztO4KsqP+Mo7KfndMxy87/Qk6fKuzRxqZRT5hdh9g7cbkzOKZFc6f3VauPWzvypGVpfwtjHz3sIURjhLfwMiNhy2MlHRNVzQXHWbHDT+HkPVp5SaiDV8ntVKyVVkpCTuplZKuyoqR2fy1tTog3TyA07lXRM7ad0DzGiyvwIngraZVtN7nXTi8AZc3Ze+eV3PRlvu3stx1tZjST0RRfTgP4LTYgwr3ve+895037Tun7hlbZueDZ5wtA27Z/cYvmiXKufZ94Dpg4Hqf9N9g0u9ene+kvprUG7ZjbdGeDV41UBz0S/kJl8IIlXhXuj+Y9yAM3NakwDlGt1qZ+HXLr5eX3Q3Ln0wK7vYnvc9aK/369QpHy4SkTztGKqmixtOXFPK4nahNyF+Vd9C1JjPfNkRuDpsxbF7L+m5RR4bfNj63/6K4vOlCrlYzG3o9u7vDuPH07Uvu3XD42AH0uW0m9TMXtudLoVeOnbdaxb1bv5iO0S4UbbBTZaxbVNsFhNBPNS4F/t33e7t+MQOb/nozDef9LJWK0dbZoF6Wu+1MSwhhYW1qwn4/kirj52yOiWXnTPRZKtxJMhhlWtiVU7l6vP+CqztkHDWEo3FdYEA15qumKVYljKXiCxJ/xVb9KrMLpcW/vhSKxfrCaxFBIpkpp15weeWc61093kMAFIZn7uL8l/MLaPPZEKbjwSJ3PErb7jEELRaq+GmzHbuzARZZ/NvmAXlGOYhZUsN7Ln2tbUXBiMV/bD+VTLiT4FxZF5kdQZFZyprDhWqvaSCAsPFOokjwOIAFlUc4gvV6ygx+1zLP6eufGWrK4TiAJdOCTYnR0Rq4MPSZQzhj0mDH0aqxwIen4vx87G0uhWYAZZ4TSvKSyYz+gwD+wlXzJYrrDYuyjNaFwLW3dVa8LygBtr3noH7jla6iCFNbE+/0PyrS6vQ8PgyGEMC0eL0SK046BOxwg81HKu88/w81EAUg +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Simple Testset From File + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-simple-testset.api.mdx b/docs/docs/reference/api/edit-simple-testset.api.mdx new file mode 100644 index 0000000000..8c5f9fc4eb --- /dev/null +++ b/docs/docs/reference/api/edit-simple-testset.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-simple-testset +title: "Edit Simple Testset" +description: "Edit Simple Testset" +sidebar_label: "Edit Simple Testset" +hide_title: true +hide_table_of_contents: true +api: eJztWltvGjkU/ivoPLXSEAi5tfO0aZMq2bbbKCH7sAghMzbg7txqe7Jl0fz31bE9dyCEEm1TkYcm9ZyLz+fjc5MXoMhUgjuAPpNKMiVh6EAUM0EUj8JrCi4wytVI8iD22UgZKnAgJoIETDGB3AsIScDABft9xCk4wENwISZqBg4I9i3hglFwlUiYA9KbsYCAuwA1j5FTKsHDKTgwiURAFLiQJFqK4spHArvB1jWFNB0aiUyqdxGdo5i6Ai8KFQsVfiJx7HNPG9T5KqMQ1wr9sUBzFWdS78Ya2Pgw8TVQCyDh/MtE21wlmBGp4fGIZDVCa+I4inxGQkidfClMfB/QmszKKyJb/VxK6hixgng/KtOISFMnI4vGX5mnmgB/0IY25aUOBEyR6i4IpRxxJf5NBYzGPu3xlsTyULEpE1VNwbi6UjZvuS7wuPASn4hXHxLf/11GYfs6jBP1GuqWogyuWLAZExGCzNfCWmWFBrLreD8jksjRcKqfCdE/ok9cqscwXWVjnftpCPWNF9rAspH9zR0gb+oAZdITPEZTtxV1URKROsDpOkH1ILZOMIYzByip36xmWMKQMOK05g3Wox/fwuaOncWf1jXVR7AiquWal0bQ0e4gKkd+B3Yr+y6X6wlGFKMjojaUTYlibcW1i61W8N6IbZ1r/09i+hxK7o1Yq4Qynz2Dkgsj1irJ4BrPd3gaGVjv5vZQMrx2qiVDK9eSAbZTLRlcuZZdx4wlFcnGyWNJ2ZAFweGTwnRWLewz2aOZbF897bp6ambNPaLbIXqBSD7WHGANsFUhsVHfccseuORRaLbSbD/WSLjTzamVc0m5Wqqv6BAHeZs3XCPk1jSYkKYoTTAZR6EtgnrdLv6q1JVwl3gek3KS+K1bSwxb96FelBimmneWcqWmwOQ1IYmvwO3aUs22r6tKyX0j+2JC8ZdEbRE5GlxPCB2G9xfvZdfBukEJsA1GP3c3u2999q3Ps7Y+0k+m2/rqHfLuRy77kcs+7uzjzn7k8hJHLv9jwbWv9J+h0n8hc5eXAeovNHr5Ed58ZGLGLce9XnPC8ifxOdXzk9alEJHYfrxCmSLcx79WlFR+5FW+PsWRh/WDKkz+FJkN6tAkp8uKyOKySUmmpVNfTarBaPXx62ODL7TLqLZ0JZ8p4DXorjbjwsC37nCv+v2bhkBzttVDxVFby7hCq58/LwmYmkX4+gTvk2NekbjQiQV74OyfjnmO0rGFr+wsihI4BSxYxUP2MiURPrgwUyqWbqfj+VFCD8iUhYocEN4hMdf3RjIvEVzNNcv5zfVHNr9ihDIB7mBYJrhDjzI+UiXLj4fE/CNDtOybmPNEzSLB/zUHb5/FzAwXwoG+els8Zrn8TtC22mOUvPKoTefMY5fybA1XisRXlAn59KHwn+pB5MtYNcHRhLw5mZwet0/ODs/axyenvfb4aOK1e97b06PJ6SmZkFMoUkG1Wxpsxj6sNDqDaiOz6Q6eSl9uOqDX7R23u2ft3tv+4Yl7cuj23hx0zw7/gmrfsI6uXPqvo6tV75tut1aOb3wu1fp6U7an0GYuWXGxwu2sZ6SYA7AUDyeRdhQbH871FWyd31yDA3hZjRN2Dw4Pug3XrBBjyCeevhXZDdOfEazKXc9vOTjAAh3vQTES/FZ8wJ3FkVQBCUvyloek2tzN3nbFvqtO7BOuY7rewMKGqwHYcIVeqqVBPqGX4IBbcvehA7NIKmRaLMZEsnvhpykuf0uYwLA0dOCBCE7GCN9gAZRL/JuCOyG+ZI395ZkRXt3aBPC6VVQ11X1noSvEuPVA/AT/Bw78zebVV306uc2yyLiwBO+NrrZOQYWARkbGbGk4zj2PxWot7bCUBW7u++DA2L71CyKKLIIgsviv3mukTddBUq8twCfhNMEc6oIRiT//AcYO4Io= +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Simple Testset + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-testset-revision.api.mdx b/docs/docs/reference/api/edit-testset-revision.api.mdx new file mode 100644 index 0000000000..92da00c7cc --- /dev/null +++ b/docs/docs/reference/api/edit-testset-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-testset-revision +title: "Edit Testset Revision" +description: "Edit Testset Revision" +sidebar_label: "Edit Testset Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWd9v2zgM/lcCPm2A03Rd19356bp1Q3vbbkWb7qUICsaWE+0Uy5PkbrnA//uBkuzEdn41S4HdoX1YO5v8SH6iKJqagcGRhvAW+kwbzYyGQQAyYwoNl+lFDCGwmJs7417fKXbPNZcpBJChwgkzTJH+DFKcMAihKXjHYwiApxBChmYMASj2LeeKxRAalbMAdDRmE4RwBmaaEYQ2iqcjCCCRaoIGQshzi2K4ESTgfe1ceRudixiKYuCgmTZvZDwlvKalSKaGpYZeYZYJHtkge1+1TOnZ3JFMEQWGM23dasbekkiEZXEGmE4/J5aOusAYtaUwQs0agj7ooZSCYQpFUD1KcyGAwirjPkfd6VcoReBgFUY/i+kgiiIoxeTwK4tMm/L3NtA2XhHAhBmse4FxzIlgFJc1Mlp++gVfgOWpYSOm6pYmw/qTxfCW24KIqygXqJ69z4X4U8u0e5FmuXkOzUgJgxs22U4JlcLpWlrrqtBidp3uJ2KSNFpJ9Ssx+pf8yLXZxOmqGJvaD2Oo77LQ15yt4m97QLpFADHTkeKZ8Rt7F6izBYgiAB6vA2qWtXXAtq5t3JRlGXwXc7NUfl4Hb9vFbLAW78pVVCgKAlZMZzL1Jezo8JB+1fiD6zyKmNZJLjpXXhh2LryRzJ1SI4fnHr+1ErSICebCQHhI4S+p16sKcyl7j4pjau72t3blIfXFIdszKoD926njl/HsPw6Hj8rwBKN9Gjj1kKWF3Iyl2hu4Q6N9jmZtrVhAJdGu4bY+rNn1BGgPPq1xtHMd+uTVi+CpjfjvtBGfc7NDH9HSekAj4XT/553EOlq3aCV24ejX7iUixdCw+A7NXmvXWwfbObVk5Vn8GEZuHKw3EjPBHsHImYP1Rkq6htM9HlAlWW+m/ogq+dqrlZKtykpJ2F6tlHRVVu6ZavdI26frF69eBKBFPtoV5pp0994620MfN7V/dAze8bhR/nwR3+zC9qW8PHM7F7Eue7UlJ3lleXmn+lid3X6xryvcpwr2VMEetYLtu2Ys6cK37paWtMpl9Rs8qCspO+Sn1m2L1u3pm+ERvhnaR+cTqTuTekZkbvowpl5gp4Ziq2/ucqrnXGl/em+P8HPa1VjQjRSPj47aU8QvKHhsZ4Sdd0pJtfsIMWYGuaC/VrRVQka1tw9J5kFzseZBf5TOQVue9GhZI7lkAOREVotaMjp9ertpzktxOdNerjYyLOl17K4O48zRt255z/v9yxagW9v6otI4udO8ugNbvceSLhppVwXuljCEXkbjW/a95/te3SvHubo3W3LJWAC1sOq+vI7MlYAQxsZkOuz1IiHz+ABHLDV4gLyHGbc7SbMoV9xMrcrp5cUHNj1nGDMF4e1gUeCa8stlTF2sWizM+AdG3PmLUDd55P+4NPBXoGOnReRQ5l7N7yvf/cBJJtiq+8aqKWmMAN3F5uIAj57Mz8R5B1GNOOZpVV+f6jE1VPAywd9eJSfH3VevX7zuHr86OeoOXyZR9yj6/eRlcnKCCZ7YOHiaSOt1OXG1JHdOLy9g4esSDg9eHBy2bNaEaYtjZLd4yaF9DUFjNat1hADYxO5vMAwnf8xfkGeZ1GaC6QLeqhRszG38ihr2w/QygdzuYuvCzKfnLfj0hGrkru0G9CkKAYTLbsIHAYylNgQwmw1RsxslioIef8uZojQc+DuCIZF5O4OYa/o7hjBBoVnL16ouwrMrv/2fd+bnWj2GMlVTytN7FDn9DwL4m01XXN3bGjcut8TMS751Rru2Es2RWoWZiqbTOI0ilpm1soOFUnB504cAhv4efyJjUlFIdNO/1mlpObCbwj6bgcB0lNtRPDhI+vkX7rJIFA== +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Testset Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-testset-variant.api.mdx b/docs/docs/reference/api/edit-testset-variant.api.mdx new file mode 100644 index 0000000000..a4343fd996 --- /dev/null +++ b/docs/docs/reference/api/edit-testset-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: edit-testset-variant +title: "Edit Testset Variant" +description: "Edit Testset Variant" +sidebar_label: "Edit Testset Variant" +hide_title: true +hide_table_of_contents: true +api: eJztWG1v20YM/isGP7WAHKdJmm76tDRtkaztGiROvwRGQEuUfd3ppXenrJ6h/z7w7mRZUuy8LMW6YfmQOBL5kHzII+lbgsGZhvAKxqSNJqNhEkBekEIj8uw0hhAoFubauNfXN6gEZgYCKFBhSoYUqy8hw5QghI7ctYghAJFBCAWaOQSg6GspFMUQGlVSADqaU4oQLsEsCkbQRolsBgEkuUrRQAhlaVGMMJIFvKeDz87E4DSGqpo4ZNLmdR4vGK5rKMozQ5nhV1gUUkQ2wtEXnWf8rPGjUBy/EaStV53AewKJtAwuAbPFp8Ry0RaYo7b0RaipI+hDnua5JMygClaPslJK4KjqqE9QD8YrlCpwsAqjv4vpIKoqqMXy6ReKTJ/wdzbQPl4VQEoG215gHAvmF+VZi4yenz7da7AiMzQj1baUTttP1sO73RZEQkWlRPXsXSnlrzrPhqdZUZrn0I2UMYSh9H5KqBQuttLaVoUes9t0PzKTrNErqh+J0d/yD0KbuzjdFGNX+2EMjV0V+oZzr/j7HrBuFUBMOlKi4FAfC/VmDaIKQMTbgLpNbRuwbWt3HkrfBN/Gwtwq3nTBq14rm2xDO3fdFKqKYRXpIs98/9rb3eU/LfLgoowi0jop5eDcC8Ojm26Ul06pU8CNw8dWgjOYYCkNhLscfL9Xb2rKtejT5aseS5y3AFAZkWD0lAaOPKS38P/c+dfMnU+lecTg6Wk9YPI43f/46NlG6z1mz2M4+rGHT6QIDcXXaO7Zc2I0NDTC+rPZyrGDHRxZssoi/h5GLh2sNxKTpO9g5I2D9UZquqaLJ+zSNVmvF75P13w9qZWarZWVmrAntVLTtbKiZTl7bK1esO4/tyHdNkDurbzaaNw2dLC311+APqMUsV1vBm+VytXjt5+YDArJn/xw6ArIPGq9fUgfnlSdedLE/CF3DnKWUj277Tt5Myu0xhk1zXOzqCVjMOa3dy2oHJcz7eXWkt3Q69jdHMYbR9+27J6Mx2c9QJfbdlJ5Ex50LhzA7h3znO9GeIAE7mojhFGh6EbQHyO/XOqRX0T1aNm/F6kgAE3qpr5AKZWEEObGFDocjSKZl/EOzigzuINihIWwta8pKpUwC6tydHb6nhYnhDEpCK8m6wIXXFyuXNpiq0xhId4TE+evbo5KM8+V+NPVgL+1mTstZobL9ry5Y3n7DdNC0oY7ktV22tlC3V3M+g7JT5pVrtk/VlO2Kal2blaPuaPAfoI/vUwOD4YvX714NTx4ebg3nO4n0XAv+vlwPzk8xAQPbRgiS3LrdL1WW44HR2enEABnw6Hv7rzY2e3ZbAnz8cbIhltTaF9D0EnmKo0QAKX2bIMhTH9pXrBnRa5Nitka3oby62wOPp+GvplRIVHYA2w9WPrSvAJfmrD6kqQ5Wl+eEEB4y8XdJIB5rg2rL5dT1HSpZFXx468lKS7BiceYMpNXS4iF5s8xhAlKTT1PVw0Rnp37c/980Oxv7QjqMs0W1lVZ8n8QwO+0uP2i0fa2eX0all7w2Nkc2g7UAPUaMjdLp3EURVSYrbKTtR5wdjmGAKb+2jHNY1ZRyFzzb+tzbimwB8I+W4LEbFZyCw3BQfLPXwLwZ4c= +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Edit Testset Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/edit-testset.api.mdx b/docs/docs/reference/api/edit-testset.api.mdx index 173da76fb5..55451e23a7 100644 --- a/docs/docs/reference/api/edit-testset.api.mdx +++ b/docs/docs/reference/api/edit-testset.api.mdx @@ -5,1356 +5,67 @@ description: "Edit Testset" sidebar_label: "Edit Testset" hide_title: true hide_table_of_contents: true -api: eJy1V1lvGzcQ/ivCPCXAyjpsKe0+VT6KuOlh2HIfKggGtTuSmHCXG5LrRhX2vxdDUtrLshXD8YMskXN+/GY43IJhKw3hDKaojUajYR6AzFAxw2V6HUMIGHPzYNw2BJAxxRI0qEhtCylLEELw+w88hgB4CiFkzKwhAIVfc64whtCoHAPQ0RoTBuEWWLr5a2ltmE1GNrRRPF1BAEupEmYghDznMRRBU6KYB2C4EbTk4+5cx1DQOvlDbc5lvCEnTfeRTA2mxvrPMsEjm2fvs5YprZXRZYpQMBw1/dql39pw6R9OphJ8mgtRC/1P0i0CiFFHimcUyGtNXVZMFAFECpnB+IGZI4GOmcGu4Taew14unNnOxJCTPIt/hJN7Z9Y7iVHgD3By6cx6Jzu4Fhvi7+uoeRCs843lZonXm3rZobX3sgPsTb3s4Np70SJfvZard6RbBPB24bmYqEYjpl1dtswypdjmWSvTvX4RQIKGxcw0GhWLY041xsRNrQscAQNPDa5Q1SNIFvWVhZQCWWqXnvYFEVdRLph692suxG9apt3rNMvNewh2RuTiM0bG2uAGk+OUXoanrmoBb/k7pPvHDs2ipdbq5E/KlG18tu/F7Uvg1vV+KAqyoVBnMvV8GPb79K/WauEujyLUepmLzq0XhldfEZHMnVLjwCsdwUp4pvrbpMWcw7C08H0JKBfRUzD5XB1OZ8NhG5q/meCxTbxzpZRUr8clRsO4oG+ejU0BIaPa7vcU07xoMLhM9nfpArTVrFeVk9l3mJKeWrMVlpw+LGrB6Exp9yX4KS/n2stVTqKE16F7OI1LB99zhfNxOr1pGXRnWz/Uq5ibznQ/ySVo1pImPKrnwA1sIfQyhY8c/+15lurethzuCghAo3rcTX+5EhDC2phMh71eJGQen7AVpoadMN5jGYdmDBO727kgUdsjNEa54mZj7U1urj/h5iOyGBWEs3lV4I4I5ihTFyt7fMY/IYHnh9JJbtZS8f8cD/xcunZahA5R97acF6++sSQT2Jj3vK09E+rp7JerIxcM+8NRtz/qDkbTwWnYH4Sjs5P+aPAP1Kem5+Sqg89zco3ZBU6X7KfRcnzWHX0YfOiejcbD7uJ0GXWH0c/j0+V4zJZsDK1h5Fi1xnRxrJobF0qwvke3cq3PtsSHytVsOc7TpbRn5svBM+ycRV8wpecIsdWdVv9kcNI/REmv0JncXPtux6IqA5wYYVcj/Z7uEAAmttWBQZb8Um5QlJnUJmFpxV6jGhuvAE9pg99MLxOM2z5mPW99pc7AVyrsbxQNAYSVp9g8gLXUhmS32wXTeK9EUdDy1xwVldw8gEemOFsQdLMtxFzT9xjCJRMaW2HtLwF4d+t73ftOOUbUw92VZUo1+chETr8ggC+4qT8ZbR9f76p+6wUunK+u7balgdblQxeD05hEEWbmWdl5pe/d3E8hgIV/KiYyJhXFCFD6tLFKm7rtOnZtC4Klq5yuixCcSfr7H+CZIWE= +api: eJztWG1v2zYQ/ivGfWoBOU7z1k2f5iYpkrVbg8TZl8AIztLZZkeJKkll9Qz99+FIWbKkxEm8FOuG+UPskPf63OnhiUuwODMQ3sCIjDVkDYwDUBlptEKl5zGEQLGwt9ZvQwAZakzIkma1JaSYEIRQ7t+KGAIQKYSQoZ1DAJq+5EJTDKHVOQVgojklCOES7CJjTWO1SGcQwFTpBC2EkOfOihVWskAZWe88hqIYe4tk7DsVL9hM20GkUkup5S3MMikil8ngs1Epr9X+M815WkHGRVMm2NmYSofQEjBdfJq6nJsCczQOnggNtQTLFCdKScIUiqBaSnMpgbNZZXmGpjeqrBSBN6sx+rs2vYmiCFZiavKZItsF+L1LtGuvCCAhi80oMI4F44ryogFGJ86yvGtmRWppRrrpKZk0V9bTu98XREJHuUT96n0u5c9Gpf3zNMvta2hnyjaEpeRpSqg1LjbC2lSFDrKbdH9hJFmj01TfE6K/qo/C2McwfSjHtvbzEBr5LiyJ5Un5dyNg3SKAmEykRcapbmvqZM1EEYCINxlqk9gmw47OHn0oT2Nh75Wrae+m4q7xveqXni+hKNiOJpOptGSqvd1d/mrABFd5FJEx01z2Lkth2JpWI5V7pVar1pEeOwmu1RRzaSHc5WxrNn6Idv/n5X8NL3/K7RbE3NF6BjN73f84NW+C9QncvA1G3zc5R5rQUnyL9okkHaOlvhUunoe9HHuzvaEDK8/ib+Hk2pstncQk6Rs4OfFmSycruCaL25c71lZgvVu4gb3G60W9rNCqvKwAe1EvK7gqL0bms2179Yp1/4EJ4r6T43Gt6uT3U8PB3l53UPgNpYjdGNA71Vrp7aeEmCwKyb/K46AtIFXU2H0O846L1glSJ/tR+QC5LomZ3fdWWp8OxuCMarp8WNSB0Rvx7mOTG+flXZdya+Wt4fXoPpzGiYdvU1nPRqOLjkFf22ZReWLsjaq3/YTsXPEtAB8VgX+pD2GQaboT9MegnNPMYFlfABQQgCF9t7ohyLWEEObWZiYcDCKp8ngHZ5Ra3EExwEy4pjYU5VrYhVMZXpx/oMUZYUwawpvxusAV95DviqZYVRDMxAdifMq7iWFu50qLP32py+uJuddiALg7L+tLhdOvmGSSWpcC1bjZGiv9pcP6UMgr9WxWDxTVsVl3TBP6apkpAvan+MPh9Oigf/j2zdv+weHRXn+yP436e9GPR/vToyOc4pELX6RT5YItSz102PaGF+cQAFfBW9/debOz2/HZEOanFyOX7go6tw1Bq4hV+SAAStyjC5Yw+ane4MgyZWyC6Zq9Vne1RoCyfpa+2kEmUbjn0nlelp13A2XnQfWOYCCAcO36aRzAXBnLssvlBA1da1kUvPwlJ839NQ7gDrXACcN1s4RYGP4dQzhFaagTVkVq8OqyfHZf9+qpqxnuqgdTbsA7lDn/BwH8TovmNZnjpfmqxZelwLH31XfsURvokCkTndcYRhFldqPseO05vrgeQQCT8vIsUTGraGRA+a+LVbnUXbe7tSVITGc5018I3iR//gKH5uxq sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Edit Testset - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - - testset - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Input - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/edit-trace.api.mdx b/docs/docs/reference/api/edit-trace.api.mdx index 465aa50082..31793a031e 100644 --- a/docs/docs/reference/api/edit-trace.api.mdx +++ b/docs/docs/reference/api/edit-trace.api.mdx @@ -5,898 +5,67 @@ description: "Edit Trace" sidebar_label: "Edit Trace" hide_title: true hide_table_of_contents: true -api: eJztWllzGjkQ/itUP+1WDcYXzi5PS/CkwtoBCoY8LEVRYkYYxXNF0njDUvz3rZbm0Iy57Di7eSAPDtXT6m59fak1swZJHgS0JuBw4rLwAaYWRDHlRLIo7HrQAuoxOZOcuBQs4PRrQoV8H3kraK3BjUJJQ4k/SRz7zFXLGl9EFCJNuEsaEPwVcxQqGRWKHpNQ/SDhqr+A1mQNchVTaAHhnKxgY+WEMPF92EwtkEz6SBiptRsLlEkVKcTzGFpA/EFJ4UH1uxYWHN8tAlzG3cQn/Je+Q33cxq9grYFJGghobX1aQWW6ySnR/At15XFAuZwSSb0ZkVshF5Kj3y1YRDxAHvCIpHXJArpXfkeLrbXRDEhi70coGWuxqRKP+vQHKLnVYlMlGVzz1Yx5R+pJEuYdBdb7Va3rmXi9qZYMrVxLBtibasngyrWoTEwVVMVmi7C80JQfk+cAOwZvyh0TTkN5wP599g6UAFP3IwsPoEHDJMCcHQ3avdldt3c7G/dGA7vT/dC1b8Ey6N2eYw977fsScWQPP9vDEqlz37V7Tok0GPZvx50qX783Gn+yh2DsICsJd2j3861m2wpJQF8LkgK8R1SmgJCEy5nKm+/IMxZK+kD5frWoqebolUBD7z/RaoderlNIIhMxcyPvgNo8JJy2Mx7NOv1bG4PCVj41aP27CsEeDvvP3anUdlDrdodqswIqBHl4vVeVlNqnVMrGAiIlZ/NEHts5j9C6FfFgXqbMo8inJFSk7bqKDvgh8f0/RRTWu2GcSKMPGl3vWdvcuejwkaK8FF7UZdsFnhjATzSUFdxSS6sniCxZd1XALBcxvoUkQfwmSWFY7uSCT2HxQ8Pi2UJ9jGacelhPVCCYfq5UChtjytB+2HBbR+HGAp+Fj8eF48t68ks7/im8/rfwyhxrOK0SYPcsfHxRfN2rqDqkOFdXHPi2HGlMWE9D1mnIOg1ZpyHrNGSdhqzTkHU67pyGrFNYnIas05D184fXzz9kvcWUs8WWqibhcEpfBrOj3+Mdkp6+nxzqF5CwQf4CCckTqggijkKh4/vy/BL/86hwOYsxKnErietSIRaJXxumzGC99j3mE+WCaZZdCfo5ZcGZJ0q0ikpyGQOM4theUt44cDLTM7O2hKvIAdootK8vt+D5mfjMU2jVbM4j/nowPSoJ8/HXjurpR27p6Uvq17SaAQZekTYQcQ/Ewz5nGkc8zbKbVYFRc/DpIVfgvrTqlM/wRQGvRnf3Nm41fPvS6KPjDJ4J1L4tO9X2mKw56Sv/gMplhB8CYAHFSVEuoQWNmNMnRv9uSJ2XDf06voGFiHKMLuWZhPvQgqWUsWg1Gq4fJd4ZeaChJGeENUjMoKq7rZ7WOsiq4lpQN+FMrpS89qB7R1cfKfEoh9ZkajKMMLB0qJTZiuSJ2R1F0PS5ENqJXEac/aP9bwFDA5Z6FaKCITssvniwv5Eg9qlxNTVZly5+sOQ06+fN+kXTubhqnV+0mtdn59fNv6B8d7OPz7x+2cdXuUGBqwX5rbm4ua433128q183by7r86uFW790f7+5WtzckAW5gWdXIscuq9xxHLusOMIUGZIfggqScftQ4dOXCDtvCIyJ3FhoDNb7ECwG4X1cpdF161xanSILS0onMmNymWSTiVk38glknzVliRj9aauYrLcBuw3/qgjVO7JvaTDqWbiIVNJk5yCdke+J+0hDPGnkbQ/Ozy7OznelcLqg1h50065AXFlMZSkbxmSpSOTlAV0UqJYAkpLgj+IBWhlHQgYkNOSVqlbJorwASPpNNmKfMFXtld51WtEmkFa0FDYDQAEWYFFeRkIi43o9J4KOub/ZIPlrQjlWp6kFT4QzMkfUJthxllmdWsMjXakGr1pjXfUFZPcTXZcqbRJbmF7Rdl0ay728U6NGD8YYkfP086xABy0nuCn82wLAz7twsaqTirYGn4QPiY5dLRL//QtjpNE+ +api: eJztXFtT47gS/iupftqpcggwA7Obp5MFT00OM5BKwjycFEUptkK02LJXlpnJpvzft1ryRXZCbsPsYbbEAxBZrZa6v+6WP4GWIMlDAt0JjAXxGH+AOweimAoiWcT7PnSB+kzeS0E8Cg7ERJCQSipQZgmchBS6oJ7eMx8cYBy6EBM5BwcE/TNlgvrQlSKlDiTenIYEukuQixjlEilQpQOSyQAbcBK01fchy+60PE3k75G/QKHmcF7EJeUSH5E4Dpin5tz5I4k4tlXaYoErkowmqj0mXP1C+OJmppbBJA2T1Z6eoERS/57Ievfm7GeRCLEP+ETStmQhhcwpu/E0CACXUyzyQg/b6knIHEhj/0coudXD5kp8GtAfoORSD5srKcw1XSAUdtOTpszfyVi/LxQsKnu9qJbCWqWWwmAvqqUwV6mljJudQsJR0N3SfRQTnveOiaBcbpn/pvkO1AC1uequm8xBeRpiPmH8KdIRCQ4QziNZfEj5I4++crhrLHKMI63Op1j37qrJA6YFB7w5YajwayQeZ0H0Fc1Ekkf8EUUBCoRT6vta+M+UigU4EAQhikZhHNB8wt6cSJXOBOGP6xeAZt8y/0fGtyCpmP9o0Lu+v+pfX97fXo8G7kX/Q9+9BMdo71+P3eF171OtceQOv7jDWtPFp757Pa41DYY3l7cXzX4316Pbz+7QXNLNmAa4rCuc9/PL0iXgMIApsF4TlWUgkUTIe5VzviNHMS7pAxWb1aKm1lhLAuX+P6LV5X6pM5FEpsm9F/k7Qno07o1vR/cXN5cugsJVPjXabq4aDe5weLPqTqX2ArWud6ieVkiThDwc7lU1SutzPkrmAJFSsGkqaaPuEt9nGGMkGNQK7w5a11o8nNZbplEUUMJV03pd4DHhpQERv3xIg+C/ScTbfR6n8g0mCT1INP2DelKNke8TdhAiQpDFRivVRVWGXdH3nGyvsmeGeWlGBeVe03bP7GqeqEiY3iId4t0vuTjCJUgfDgYJymYOvFx11WXKQu3HQW1FsJ5dhgUODQ3bJzes0Js5EDD+uBuM99sL7bvTsjD6R2FUvdpNSscaTmuUsU+MP+6FsU8KVZkDc5LMd0yTNjH91Igy8fKRJPO98PJRwwQ3h988GsuVcmmddpjT3NKcaNsnyuVuwVi8ZDyXuot3CNyXJ5KE8Yts5s0X1HJgG8r/z+KggGD6uVEaXMTUXrHuahRuU2xQnEWBaqj+EBCJO469tI8UGVlsUHbE01Y+czsQv3uICjQFT/AG1kHKeNqwyt1eGCkNZUlZS8paUtaSspaUtaSsJWUtKfsqd7GWlLXcx+vgPiwpa2FkSVmbmF4Foiwp+xqdZklZi4p/KymbE7IbNyyW+bTMp2U+LfNpmU/LfFrm0zKfdqtomU9LMLx+qFnm08LIMp82Mf0MiLLM52t0mmU+LSr+5cznS1CPW/KZ6jUWlO5n5rH+i9dto+f3Egz1XQCQZZl6x0jiiCcaz6fHp/jDp4knWJ4dYZR6Hk2SWRq0hnlnOPjKAC9KtVAjPAxeUPVAom5G0kBC99juHg9LEDepPCBDrEjtkSK07E+4gdwSOapXCX4dOO9O18TKFxIwX0VCyxUiEocHik8lYYHar64HehB5taf7QO2uaSLDIAW3mzkQJg+bAsPggQoK97muyhgtzaNucTKuS6vO+5kURWlebd3nl3GpzbfJsR/H48HKgNq3dae6PpOtcX5tS0jlPMLLXBDojr6fpQudWNAnRr92pM6xHf1PCJ1lAdQMywsVT8V1L6kIoAtzKeOk2+l4QZT6R4rdJkeEdUjMFEoT6qWCyYUS6Q36V3TxkRKfCuhO7swOI0SRxkW9W+kSErMrihbKL5rppXIeCfZXwd2r22bmWgpNgPgcVrfGuN8I8ubGQd+kfqsL1o537eP37dPfxidn3bOT7umvR8fvT/4H9ZOwTf3Mw6xN/RrnUfB2Rn49m52/a5+9P3nffnd2ftqevp157VPvt/O3s/NzMiPnsHLAtKtY48RoV7GqtFThUBanqsk4yzHCxjiSqZ+3GAcm5WmIcQjx7AmDwegb0zGI+U32roj0Tb1q1PdaXrvJQlczqdXVBvM5MZhNY+6Koqw+7+OaujaMo3x/MVmuc9E6T64OUTAQk+V3zsV8MzVepqo7oozsWr4UbXJMU4Wqf8U/SWGsMz6LVKooSrJKRK3eoA+OYfvjo5OjY2hmx1pnLHbEk9WbXf4Yo6+W8cpcpw7rVKUDSUn4n+oBziyOEhkSboxXS8a1mZSpTtJvshMHeESY5XqXeaKeQJ6oc7caDk7Aweuwqn3FPEokSiyXU5LQWxFkGTbr48Tu5M6BJyIYmaLJJkvwWYK/+9CdkSChK5Mr9wHwyzAvd29a1S6rPukiwjlm7CcSpPgJHHikC/OSMFXI50VFWOaPL7Smtiq3lfjK7gN3Blqi5yHkNva9M0rf4BajeZpfJhbqgBcEjYrf1UwjtXBVkVTbEgLCH1Id93pI/PobRxQo7Q== sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Edit Trace - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - spans - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - parent_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - span_kind - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`SPAN_KIND_UNSPECIFIED`, `SPAN_KIND_INTERNAL`, `SPAN_KIND_SERVER`, - `SPAN_KIND_CLIENT`, `SPAN_KIND_PRODUCER`, `SPAN_KIND_CONSUMER`] -
    -
    -
    -
    -
    -
    -
    - -
    - - span_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - start_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - end_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - status_code - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`STATUS_CODE_UNSET`, `STATUS_CODE_OK`, `STATUS_CODE_ERROR`] -
    -
    -
    -
    -
    -
    -
    - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
    - - timestamp - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - traces - object - -
    -
    - anyOf -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/edit-workflow-revision.api.mdx b/docs/docs/reference/api/edit-workflow-revision.api.mdx index 52975ed3be..25e207207e 100644 --- a/docs/docs/reference/api/edit-workflow-revision.api.mdx +++ b/docs/docs/reference/api/edit-workflow-revision.api.mdx @@ -5,3454 +5,67 @@ description: "Edit Workflow Revision" sidebar_label: "Edit Workflow Revision" hide_title: true hide_table_of_contents: true -api: eJztWdtu2zgQ/RVjnlpAjh0nTnf1tG7TotnuJUjTLrCBEYylkc2WErUkldZr6N8XvOhmO66TusA+pA+pRM2cGR4OqTPyCjTOFYQ38JeQnxMuviiYBiBykqiZyC5iCIFipm+/+Oe3ku6YYiKDAHKUmJImaRBWkGFKEEJlcMtiCIBlEEKOegEBSPqnYJJiCLUsKAAVLShFCFegl7lxVVqybA4BJEKmqCGEorAommluDK48du8ihrKcOkhS+qWIlwZnPUIkMk2ZNo8wzzmL7KwGn5TIzFiTQC7NnDUj5WD8HDeeYKEXQtqrbPlnYue9O/kyqC2ygnMwWVfTmTi0MoAYNe2Jakz7mqW0E/rcAJYBpKQUzndi74L53buXgV/ex8H8gTZdiElFkuXac/sYqPMWRBlAJAk1xbeoD0rfKwfbm2gTpMjjHxHkg4P1QWLi9AOCnDtYH6Sia7Y02/NAZVyR9XJp92XD10GjVGzVUSrCDhqloquOckdSfUe5fvTuZQCKF/PHwrw3vmUAh5uom13C7fm/BVLMPlGkW2dv9YZ4Y102oe1hozFGjV1AjGNmtivyy+5Z+m0eWKZpTrIbLZ11R2ZCcMLMDm2PBRGTUcFRPntTcP6rEln/IssL/dxMrzNdg8E0pfs5oZS43Mly19Uwvhnv/rPXs+neD/iwZTp3nltWCaVmCUb6gLtm4iH9nqki7Jdx5bw92zuUDLNDJvvRIVb72909jFwPsS3jjSXe9K5UDGwzbiTMTaNDpveDXDkFBGVp0CSpXGTKbbDRcGj+67x04X0RRaRUUvDelTeGRwulSBTOaW2/tt4N1sJm1miq/YluqNqL6TZ5LredzPnpO+pOR6NNtj4iZ7HlovdaSiEfT1VMGhk3V/58WTfgIuo8fcjxOC3XzqRm1r8Jl6AVg2q+TW1vEXvO5H5TS0bv2jz91jqYebnQ3q6zFSt6Hbv3T+Pc0bdre729vr7cAHRr213U1zHTvaoaeldNQ5OSXgjT8pizOnBtSwiD3NQufRnMUNGgaoTUoKpoNVi1ep4SAlAk76quqJAcQlhonatwMIi4KOIjnFOm8QjZAHMG6+lN7NPeK2NqDy5FUSGZXlq8yeXFO1q+JYxJQngzbRu8N7XnqqlrVi8k5uwdGV59s+Y6EPavKxHfri2clyHOVPVV02O9/oppzmm9R6q6IjhJ8KdxcnbaH784ftE/HZ+N+rOTJOqPop/PTpKzM0zwDKpuB0bD0bg/HPePx9fHJ+HwOByfHg3Hw7+h1bY0peczru+7pNXD7YZgV4S2pt9l15blu+zWlPW+VKxJ5b0Z7Grffd1qMdvw5VRpc/8QuFo9MnUbFUqLtGq8mbqlO+QFalMX9diiSDFz91252JI4ZvOwiNxgJLKEzQv3NcIMreuXfVNtS5KnSvr+SjpE2ayVwJrY27umGwH3tLD/j4U9yHnwtM2fqqE+GqyKY1kirJapGkcnlF5i9JmyuPN6Gx4dHw3vU1beoTe5vPB6vlsxzsxw3dFutWqDACi1Yh40YfpL88BkmQul7TxqvHv15trnUK/RNH3Vg5wjs5rd5rDyWvQGvBaFAIwahQBqPQpNj2Wuw/Z3+GkAC6G0AVitjOMHycvSDP9TkDTCcuoP0plh9mYFMVPmOoYwQa5oI9e6C4JnV17sP+81X0a6c6jEZ7a05zUvzB0E8JmWaz8Y2E5mUYnblbd45YL1bb/RIGy0X6Y1ch6TKKJc77SdtvT+5Ydrw6j/FSEVsf0hAw3N5q9NVti5u98HzNgKOGbzwqlUB2n+/Qe0fzsc +api: eJztWd9v2zgM/lcCPm2A03Td1t356bq2w3r7VXTt7qEICsaWE22y5Ulyu1zg//1ASXbiOMmSLAWCu9vDttjkR/EjRdHUBAwONYS38JdU3xIhHzT0A5A5U2i4zC5iCIHF3Nw9+Pd3it1zzWUGAeSoMGWGKUKYQIYpgxBaknc8hgB4BiHkaEYQgGLfC65YDKFRBQtARyOWIoQTMOOcMLRRPBtCAIlUKRoIoSgsiuFGkEC13M6VN9K5iKEs+w6bafNaxmMCnDcVycywzNArzHPBI+tn76uWGT2briRXxILhTNOvtvstkURYKieA2fhTYhlpCnB9FxXayLQp5F0eSCkYZlAG9aOsEALIp8rrC905dQhlQHDsHkWBRqpfQTyvQRzoqEgx+xXAtxagLINKSA6+ssgsiN4bS1kbrgwgZQabi8A45hQrFJcNWlvL9MkzA8szw4ZMNS2lg+aTWe8W24KIq6gQqJ68KYT4U8use5HlhXkK864SBjcsXU8JlcLxSlabqtCidpXuB2KSNFrpuU+MfpTvuTY/43SZj/PamzF07bLQF7C1/G+vgHTLAGKmI8Vz40vENlBnMxC0JeNVQPMlcuXejNfalVVJPY+5Wagwram3CwpjfzXilavPUJYErZjOZaZd3h0dHtI/DQrhcxFFTOukEJ0rLwxbl/FIFk5pLo2nSz61EhTHBAthIDwsg8XVf1mZr4XvUXHMzN3uAlifel8ctD30Ati9oSZ+7dEjeOIsoDI8wWiXLpx4yMpCYUZLzsltwB0a7Xc0K2vGDCqJdg23dWLF7idAewBqjcOt69EHr14G/zcm/8XG5FNhtuhMWlobtCZO91/em6yidY3mZBuO9rs7iRRDw+I7NDutgqcOtnNiySry+DGM3DhYbyRmgj2CkTMH641UdA3GOzzqKrJej/1hV/G1UysVW7WVirCdWqnoqq3cM9XuuNZP1y9evQxAi2K4Lcxn0t15M27bB1x1NO/O+0LxbVFuFHcIYnsEQQgjhrGdFm1W6R+Lkv1LiBWtyRVLmGJZ1Kg21UL7G50ob30Yymrytm5E9uhM3stGZ4MYfPbEU0eJec6zdRugeYo36bYqQzbwdIhvnf1Ou2zOgPe1f9vLXFmufDmllALF1D2P2Drsugn3BjnooUs7T0n4sHBT/8ewddowsMkY6gztN0LrU2wDiF9Ur+dObmb14uioPab6goLH1rnOuVJSbT+jiplBbk9an5LzAkJGjbebbKmZg8Jl8dTr9zLCqqtP9XDRbcyC4YITWS5qyehc09ufjRLJL2fayzUGUhW9jt3lbpw5+lbF9+319WUL0MW2GVSaV3ZaV01ghwAjSXdjtLkDd60VQi+n+SB76FUDM92rBoa6N1l0L1aC2+DVFZptsWBkTK7DXi8SsogPcMgygwfIe5hzu6c0iwrFzdiqnFxevGNjd6RDeNufFbCHjEuaplgdL8z5O0b0+cs7N9jif7tM8Ld2rm2zlFLyXk1v2M5/YJoLtvSGrB49zYyYXOVoDonqZ37GQ7+ns5bpgKD+DJ4mWjNi9WPqy+B5gr+9TI5fdF++evaq++Ll8VF38DyJukfR78fPk+NjTPDYusWzRFpWqvme5bxzcnkBM18gcHjw7OCwZbMhTJseI7vpK0rtawjmgluHFQJgqd3xYBimf0xf0MpyqY0fe3m8pUk593HvI2zYD9PLBfJspod3CXsLPmFhOuPVdlP6pIUAwoXXuf0ARlIbgphMBqjZjRJlSY+/F0xRYvb9WHpAfN5OIOaa/h9DmKDQrLXauljCkytfE552pkdu04sqeTPKXMoi+gUBfGPjZRfQtvKNql0y8aKnzmrX1qcpVKtcUyl1GidRxHKzUrY/Ux8ub64hgIG/jE5lTCoKiXH6265aWhLsNrHPJiAwGxZ2+AsOkv78A7rD5xY= sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Edit Workflow Revision - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - - revision - object - - required - - -
    - -
    - - author - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - revision - object - -
    -
    - anyOf - - - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/edit-workflow-variant.api.mdx b/docs/docs/reference/api/edit-workflow-variant.api.mdx index 5dc81c3d24..98c473da0f 100644 --- a/docs/docs/reference/api/edit-workflow-variant.api.mdx +++ b/docs/docs/reference/api/edit-workflow-variant.api.mdx @@ -5,1678 +5,67 @@ description: "Edit Workflow Variant" sidebar_label: "Edit Workflow Variant" hide_title: true hide_table_of_contents: true -api: eJztWNtu20YQ/RVhnhKAsmTZclI+Vc4FcdOL4TgpUEMwRuRQ2mTJZXaXTlSB/17MLkmRkqXKhvNS1A8yuTvXw9mZQ67A4txAeAN/Kv0lkeqbgWkAKieNVqjsIoYQKBb29lu1f3uHWmBmIYAcNaZkSbOBFWSYEoRQ7d+KGAIQGYSQo11AAJq+FkJTDKHVBQVgogWlCOEK7DJnTWO1yOYQQKJ0ihZCKApnxQorWeCTN927iKEsp94iGXuu4iWb2XQQqcxSZnkL81yKyKU0+GxUxmtr/7nmhK0gw3d1glsbPsEVYLb8I3EpdwMvg2YlK6QEDrEO/XfWLQOIyURa5BzIY029bpkoA4g0oaX4Fu0+gy1QY7TUt8LFs9vLK2+2N7HspMjjH+HkozdbOYlJ0g9w8tqbrZzUcM2WXKGH+XFleAhY50tXm2u8ntRLjVbjpQbsSb3UcDVejCzmj63VD6xbBvB04fmYEuna1j0m1ewzRbbVNOrG9tapbJsuA0jJYowWuwYxjgUfMpSXnTZwAA4iszQn3fWWzrorM6UkYeaW7vcFkdBRIVE/e1tI+YtRWf8iywv7nNPrpMs2hKX0MCXUGpd7Ue6qMuLb/nbp/lajWQaA2ooEI/uE9TmpTFbVWXt4WDHURu6rh61kt9WrQQT3ya6n0E0zSqY7TVz5EQZlybY0mVxlxtfZaDjkf52JAR+KKCJjkkL2riphePSki1ThlTbKttXYnEQZtIfi4Sg3MB0Echs4H9k+2KrcPW6no9E2VJ9QitgB0XujtdKPxykmi0LyVXXGNgWkijq7D2kR03LjXK6T/lX5APkBpGZ+H1VaHzpjcE7rk7pb1IHRu+bdf3sMnJd3XclN22SshtejuzuN1x6+fQfr3fX15ZZB/2y7D/VNLGyvLobep4aLpmQXiskqt6vAU84QBrmmO0HfBjM0NKgprBlU1WwGqzVbLSEAQ/quprOFlhDCwtrchINBJFURH+GcMotHKAaYC9iMbeJ2e69Y1LUsQ1GhhV06e5PLi/e0fEcYk4bwZtoW+MCF50upK9Y8RczFe2JQK5Y9KexCafG3r4+KaC+8FqPGJX21psdvvmOaS9qgt5WtpkK66TTLbYYJo+Fo3B+O+8fj6+OTcHgcjk+Phqcv/4IuSdwn1+Z5++Q2qBqcJPhynJyd9scvjl/0T8dno/7sJIn6o+ins5Pk7AwTPIMt7nWo2gaZOlTNs6M1WA/RbViMMLdRYaxK61cXYW7pDmWBVunW2qJIMfP3XdqyOWoPjaA9Pf+vhv9MNbjGKbJEuQ5SEyffns4x+kIZv1Zzq/MPd3h0fDTc1c8qhd7k8qIaod2C8WIMdadjNr0SAqDUzU+whOnP6w2OMlfGujQae7ta/Marc9UYLX23g1yicFPShbCq2v8NVO0fAuABAAE0IwAaSsOXYeujxTSAhTKW1VcrVvuoZVny8teCNPfyaaU7Y1hvVhALw9cxhAlKQ1uRNqwDnl1Vw/V5b83GuxnU/T5buhBlwXcQwBdadj+uOOKwqMfJqhJ45X313XhfG9hiO8xEvMYkiii3e2Wnrfl6+fGa4aw+uaQqZhWNjDH/uliVS93VsltbgcRsXjA/CcGb5L9/AI59IyU= +api: eJztWN9T20gM/lcyempnHEIppXd+OkrpwLW9MkB7D0yGUex1su3a6+4PaC7j//1Gu2s7jpOUUjrXuTseILGlT6tPWkloAQanGuIr+FOqT5mQtxrGEciSKTRcFqcpxMBSbq5vw/vrG1QcCwMRlKgwZ4YpAlhAgTmDGFYFr3kKEfACYijRzCACxT5brlgKsVGWRaCTGcsR4gWYeUkQ2iheTCGCTKocDcRgrUMx3AgSqA87+OBtDE5TqKqxh2bavJDpnPBWLSWyMKww9ArLUvDEOTn6qGVBz9qDlIooMJxp+tbzvSeRCUfjArCYv8scHV0Brq8Tq43Mu0LB4YmUgmEBVdQ8KqwQQC7VPp/qwZFHqCKCYzcoLBqpvgfxuAHxoDObY/E9gCcOoKqiWkhOPrLErIndK0dZH66KIGcGu4fANOUUKhRnHVp7xwypswTLC8OmTHUt5ZPuk2Xv1tuChKvEClSPXlkhfteyGJ4WpTWPYdVVwuCG5XdTQqVwvpXVrir0qN2m+5aYJI1eev5MjP4h33BtvsbpJh9Xtb+NoUufhaF63cn//glIt4ogZTpRvCRX7wv1cgmCrmS6DWi1QG69m+mdbmUoqMcpN2vl24p61S+L46145742Q1URsGK6lIX2Sbe3u0t/OvzBhU0SpnVmxeA8CMO9S3girVdayeH2xEdOgoKYoRUG4t0qWlv5N5X4Rvbhgtb0OYpeBKgMzzAxD2jhMEAGC//3sf9gH3tnzT0aWU/rGzqZ1/2Xt7JttN6hl92Ho5+7mSWKoWHpNZo7Vq8UDRsa7s6z2cqRhx0cOrJsmf4II+89bDCSMsF+gJGXHjYYqemazB+w3tdkvZiHil/z9aBWarYaKzVhD2qlpquxooWd3jdXL0j3H5y41nWQu2s3A5Ifrvb39vrz1AcUPHXT0uBYKanuP0ylzCAXbhzw7WFVQMik8/ZbKvG4WukordNvpD8gxSnX03Ubg7ZbaI1T1pbPzaKOjMElvf3axEt+edNBbincLb2e3c1uvPT0bQvvyeXlWQ/Qx7YbVBqsB6vrEHCjx0zS8oZ6SOQ3LzGMSsVuOLsd1bOqHoXBVo8WaxY3FUSgmbqpVzxWCYhhZkyp49EoEdKmOzhlhcEd5CMsubsAmiVWcTN3Kodnp6/Z/IRhyhTEV+NlgQvKL58xXbEmWFjy14y4C8ulQ2tmUvG/fBqEtdLMaxE5lLnn7Q7o+AvmpWCbdjjNtLs01fpFUXcubZ6FsZK+t+NdO5M0nbdNsm60msdUZeBphr88yw72h8+eP3k+3H92sDecPM2S4V7y68HT7OAAMzxwXvEik46Uemh3lA8Oz04hAgqOR9/debKz27PZEaYLj4lzvmbUvYZoJbZNVCEClrvbDoZh/lv7gk5WSm3CpB3wNiXkyjgR4mvYFzMqBXJ3p90RFiFZryAkK7T/hmnyNyQsRBCv2zWOI5hJbQhgsZigZu+VqCp6/NkyRUk5DiATIvNqASnX9DmFOEOhWe+sTZWER+ehGDwetGNd14c6cYu5O6uw9A0i+MTmG5ajruLN6guyCJJH3ujQ1aUWqVemqYR6jcMkYaXZKjteKgxn7y8hgknYlOYyJRWFRDf9doeWjgN3RdyzBQgsppYKawwekn7+Bv7Op6k= sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Edit Workflow Variant - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - - variant - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/edit-workflow.api.mdx b/docs/docs/reference/api/edit-workflow.api.mdx index cbc4d9d9ee..b56a3b520c 100644 --- a/docs/docs/reference/api/edit-workflow.api.mdx +++ b/docs/docs/reference/api/edit-workflow.api.mdx @@ -5,895 +5,67 @@ description: "Edit Workflow" sidebar_label: "Edit Workflow" hide_title: true hide_table_of_contents: true -api: eJy1V21v2zgM/isBP22A06Rp097506Uvw3q7l6IvN+CKoGBsOtEqW54kt8sF/u8HSnYcJ22WFV0+JLFEPiQfkRS9AItTA+EdfFb6IZHqycA4AJWTRitUdhFDCBQLe/9U7UMAOWpMyZJmxQVkmBKEUAvcixgCEBmEkKOdQQCavhZCUwyh1QUFYKIZpQjhAuw8Z1VjtcimEECidIoWQigKh2KFlSxQO9e5iKEsxx6SjD1R8Zxx1i1EKrOUWd7CPJcicsH0vhiV8VrjQK45VCvI8NMyxo0dH+MCMJv/nbio266XwXIlK6QE9rF2/i/WLQOIyURa5OzJa6HOViDKACJNaCm+R7sNcIXWGC11rXD+vGzl1MN2RpaNFHn8M4zcetjKSEySfoKRMw9bGanpmsw5R3ez4xJxF7JO5i45G77e1ErN1tJKTdibWqnpWloxspi+NlevWbcM4O3c8z4l0nWsZyDV5AtF9pm28cGpbEKXAaRkMUaLbUCMY8FFhvKy1QZ24EFklqak29bSSXtlopQkzNzS87YgEjoqJOp3Hwopfzcq615keWHfc3itcBlDWEp3U0Ktcb6V5bYqM75p7yXdP2s2yw21zVMZaSsSZMRnhJuOfte05fEmyJW/CKAsGUWTyVVm/GEN+n3+abVduC6iiIxJCtm5qoTh1fdFpAqvtHb2K93BSZRB62rZPXEbijZz9zuked+eZawK21N2OBhssvQPShE7DjrnWiv9eopisigk/6tydF1Aqqi1+yMlNi7X8rqJ9g/lHWTuUzN9bthoktYYnFKT6S+LOjI6N7z7Pf45Lm+6kls5ioZez+7LYZx5+raV08ebm8sNQH+27UM9j4XtfG7GuJTsTPF8x2Ue+GEthF6u6VHQU2+Chnp12preYmW+KyEAQ/qxngALLSGEmbW5CXu9SKoi3sMpZRb3UPQwF7Duy8jtdk5Z1HUQQ1GhhZ07vNHlxSeafySMSUN4N14VuOZE86nTFlueGubiEzGJ1WA6KuxMafGfz4dqNJ15LWaJU/iqmSfPv2GaS1qfByuwZUq041kur45kMOgPht3+sLs/vNk/CPv74fBwr394/C+0p6ptcquD0Ta5tdkGDhL8ZZgcHXaHx/vH3cPh0aA7OUii7iD69eggOTrCBI9gY1jZVW1t+thVzY8TDVk/oru89oW5jwpjVVoP+8Lc0yPKAq3SK2uzIsXMP7fveVcaIkuUy5mqiqqEPMHogTJ+9eDk9mfb39vf67+UwZVCZ3R5UTVJbtdNvngxZrpVI8vqgAAodR0SLGH6W7PBXubKWBfFEm+9iNdeKqoSsPTN9nKJwvU/Z3pRFfgdVAUOAXCJQ3M3GQggXH2NGwcwU8ay0mLBwrdaliUvfy1Ic62OA3hELXDCJN4tIBaG/8cQJigNbfi3vEXg3VXVLN93mumk7XddzxkXM58wP0EADzRfe990N8Gs7heLSuLUG+u6ft0gbFxffLV4jVEUUW63yo5XGufl7Q2zWL2EpipmFY1MLX87Z5WL3WWuW1uAxGxa8IUTgofkz//0fDpz +api: eJztWG1z2zYM/is+fGrv5DhNUnfTp7lJevHarrm8rB9yvhwtQTZbSlRJKqnn03/fgdSLJTmu46a33rZ8SGISeEA8AEEYSzBspsG/gY9SfY6EvNcw8UCmqJjhMhmH4AOG3NzeF/vgQcoUi9GgIsUlJCxG8KEUuOUheMAT8CFlZg4eKPyScYUh+EZl6IEO5hgz8JdgFimpaqN4MgMPIqliZsCHLLMohhtBAuXheuMQ8nziIFGb1zJcEE7bQiATg4mhLZamggfWmcEnLRNaqw+QKnLVcNT0qfKxsxMJS9MSWLL4EFm3mwJc3waZNjJuChUOTqUUyBLIvWopyYQAcqX0cax7xw4h9wgO75jImJHqexBPKxAHOs9ilnwP4JkFyHOvFJLTTxiYNbF6YynrwuUexGhY8xAsDDmFiInzBq2dYxapsgLLE4MzVE1L8bS5surdelsQcBVkgqlnbzIhftcy6Y+TNDPPoe0qYXCD8XZKTCm22MhqUxU61G7SfU9MkkYnPX8mRv+Q77g23+L0IR/b2o9j6MplYVGltvK/ewLSzT0IUQeKp+TqrlAnKxB0JcNNQO2CuPFuhlvdytOQm7WCdQm9qevgZD3Ahau+kOeEpFCnMtEuvQ729+lPgym4zIIAtY4y0bsohGHnIh3IzCm1srU+6rGVoHBFLBMG/P3ca9T2h4r4/1X+P1jlP2RmhzLf0XpEnXe6//JCv4nWLSr9Lhz93KU+UMgMhrfMbFnyQ2awb7g9z8NWjh1sb2TJytLwRxi5drCFkRAF/gAjJw62MFLSNV3cPt0jWZL1emG/SdR8PamVkq3KSknYk1op6aqsaJHNds3VS9L9J/qRdU/HFmpVG+FakKODg27X8ScTPLQ9Re9UKal2bzlCNIwL2wC4B6EtIGTQ2H1M7Z3krTek9vaddAekyMR6tu4bc/0+aM1mWBfMh0UtGb0r2v1WI0h+OdOF3EqAa3oduw+7ceLo2xTXs6ur8w6gi20zqNR+9j7Ws4gYzVzSkIJeC89NHHwYpArvON4Pyq5PD5Yr84kcPNCo7soJRqYE+DA3JtX+YBAImYV7bIaJYXuMD1jKbWZrDDLFzcKqjM7Hb3FxhixEBf7NZFXgktLIJUZTrIoJS/lbJIqK2ckoM3Op+F8u2sX0ZO60iANK0It65HH6lcWpwPbIompfV9pUNw9pNprVWtEn0ue6X6ubjOoprXOoGYxqmcoGHEbsl5fR8Kj/8tWLV/2jl8OD/vQwCvoHwa/Dw2g4ZBEbWm94EklLRhH8kaW6NzofgwcUFIe+v/dib79jsyFM95kF9j6XTNpt8FoxraIJHmBsLzMYZPFv9QadLJXaFK1zgdfOt1ZfUMTT4FczSAXj9qpa08siF2+gyEWov4No8MBfnZdNPJhLbUh6uZwyjddK5Dktf8lQUcZNPLhjirMpMXazhJBr+j8EP2JCY+dgVaWDZxfFhX7eq5ux5oHLrEwoJSlP6BN48BkXrcGerVbzMuuXhcSxM9a3NaVG6JRYKn9OYxQEmJqNspOVy31+fQUeTItpXyxDUlGMOKXf9rDS+m7z364tQbBkllFR9MFB0s/f9M8rvQ== sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Edit Workflow - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - - workflow - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - workflow - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/environment-revisions.api.mdx b/docs/docs/reference/api/environment-revisions.api.mdx index b276bc585c..ffc94468d1 100644 --- a/docs/docs/reference/api/environment-revisions.api.mdx +++ b/docs/docs/reference/api/environment-revisions.api.mdx @@ -5,36 +5,36 @@ description: "List App Environment Revisions" sidebar_label: "List App Environment Revisions" hide_title: true hide_table_of_contents: true -api: eJy9V99v20YM/lcEPq2AEGfBnvQ0Nw3WoO0SpFn3YBjGRaKta6S76x3l1RP0vw88nWTJvxIkXZ9sS7yP5EfyO7oGEisHyQymxjiYx6ANWkFSq+sMEkC1llarEhUtLK6lk1o5iMEIK0oktHy2BiVKhASEMQuZQQxSQQJGUA4xWPxWSYsZJGQrjMGlOZYCkhpoY/iUIyvVCmIgSQU/mBoTXWfQNHGPPIzDP3q2j4B5tQWI/mSAppnzOWe0cujY9OL8nD8ydKmVhimABD5XaYrOLasiugvGEEOqFaEiNhfGFDL1jE2+Oj5TD9wby3ySbD20yRxPvA0s7nh8BkUxe/iKKT1hf9tahTMZmkJvMFuwo7WwUqgOQKjNzdLXdAzFtQhPVFUUwOx14O8CXMRRfWnhdj11XjoKXuWn89HxdTCfrl1/dGJ3ATdk2Lk56EMqwhXak046vCGY7xZJWLr9Jjpd6P2gdkI57LjUmVxKzBYPm1Pon4JZ9HbzJO//C+lbr2U3fy924REaHuaylLQo0TmxenFzXnqU6FNAYVyLgpgcOkXpZWsVTelnzUsTdyf0A4vCSD9n4AW8L+K4NUZJDTwN1HVYqeBGWCs2BxrPsY22K6Hkv15AXzGqNwOYMJn/aPvojEjxFbB/dxjhQjrJXLiY+ltwIM3HNfdYzZ+haqMybaXjcF1uKjIVXX0nVBlmC2gaTue3i4v9O++LKGTWMnllrbYvv/AyJCGLE2JW6HT09hk16jV1frzDPuo2QC9tbnVS0rYD25ocN/VkRPf89qlW4Lxa18FuUJQtvS27x9N419J3yFln8v7+/nYPsK3tuKgfpSMvqcNN6G6w0pVIueadb4XkNzzKIYGJMMZN6ranm0nfZZN6dyVrIAaHdt3thJUtIIGcyLhkMkkLXWVnYoWKxJmQE2Ek7IY49W+jSzb1U+gwraykjceb3l5/wM17FBlaSGbzocFn7r+2o8ZmfTGFkR+QuQ0L5bSiXNsgGN02mbenmDyplnq4P4bY3or0ERWPHufZhn1+9uvZ+bFkwoFoensdxkiktN0FgxnEO3T1REEMWPoZAkJR/r59wVEa7agUaoD3ZJlHUfb0EH6niSmE9CPjY6lDC8x44vlk0gvb8J9Asreaz2PItSM+WdcPwuFftmgafvytQsvFnMfg9eyBqZ3VkEnH3zNIlqJwuBdkrz7wy10YsjcRxIeD7wquuNprUVT8C2J4xM32LwrryU/0useRF6+86+U6mE3TFA0NAPa0lpu+H9Q/ru6haf4D6TXAew== +api: eJy9V99v2zYQ/leEe1oBIk6DPelpXhusQdslSLPuwTAMRjrbbCWSJU9ePUH/e3EUJUu24wTJ1ifb0vH77r77wXMNJFce0hlMrfUwF2AsOknK6KscUkC9Uc7oEjUtHG6UV0Z7EGClkyUSOj5bg5YlQgrS2oXKQYDSkIKVtAYBDr9VymEOKbkKBfhsjaWEtAbaWj7lySm9AgGkqOAHU2uTqxyaRvTIQz/CoydzRMzLHUDyJwM0zZzPeWu0R8+mF+fn/JGjz5yyLAGk8KnKMvR+WRXJbTQGAZnRhJrYXFpbqCwoNvni+Uw9oLeO9STVMrTBPBx465jodHyCRIIZvmBGj9jftFbxTI62MFvMF0y0kU5J3QFIvb1ehpyOoTgX8YmuigJYvQ78bYRL2KvPLdw+U8fSSfAino6j0+toPF25/teB3UbcGGFHc5RDacIVupMkHd4QLFSLIiz9YRGdTvShU3uuHCcuTa6WCvPF/fYU+sdolvy+fVT3/0X0HWvZ9d+zKQJCw81clooWJXovV88uzjcBJfkYURjXoSQWh05J+qa1Sqb0s/qlEd0Jc89DYTQ/ZxAGeJ/EcWmMghowDabrMFORRjont0cKz7ONcSup1b9hgL6gVa8HMLEz/zHuq7cywxfA/t1hxAvppHLxYupvwcFoHrb2cd2uK7IVXX4n1DnmC2gapvv14uLwTvosC5W3kV46Z9zzL6QcSarixLApTDZ6+wQN+5k3f7gCPpjWwTB6/OrkyNk1VGvysGkQI7njt4+liuNqqaPdICk7eVt1Hw7jbSvfMbLO5N3d3c0BYJvbcVI/KE9h5A03ldvBylUirQ3vZCuksIHRGlKYSGv9pG5rrpn0VTap91emBgR4dJtuZ6tcASmsiaxPJ5OsMFV+JleoSZ5JNZFWhUbwmFVO0TYcmd5cvcftO5Q5Okhn86HBJy6xtmjGZn2+pFXvkeWLO920orVxsWe7hW7dnmJ9lF6a4Qo3Dc4l05srEMBhtMKdn70+O4d9OUfG3B0yo90KFl+D2FOhjx8EYBlaAwhl+dvuBXtmjadS6gHeo9kbeddLQvidJraQKnRC8KWOmZ1xI/PJtJ8nwwU8PdiI5wLWxhOfrOt76fEvVzQNP/5WoeMEzgWEa+We5ZzVkCvP33NIl7LweOBkP1Tgl9vYO68SEMed75KsOcMbWVT8CwR8xe3unwGPiZ/IeqBRmEnrrn7raDbNMrQ0ADgYoVzoff/9cXkHTfMDOiGNWQ== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + List App Environment Revisions @@ -43,731 +43,29 @@ List App Environment Revisions as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - -
    - - deployed_app_variant_id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deployed_variant_name - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deployed_app_variant_revision_id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - revision - object - - required - - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - - - revisions - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • - - - - -
    - - deployed_app_variant_revision - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deployment - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - commit_message - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - deployed_variant_name - object - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - organization_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/environments.tag.mdx b/docs/docs/reference/api/environments.tag.mdx index 52a71c5ae9..d816445626 100644 --- a/docs/docs/reference/api/environments.tag.mdx +++ b/docs/docs/reference/api/environments.tag.mdx @@ -5,9 +5,16 @@ description: "Environments" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/evaluations.tag.mdx b/docs/docs/reference/api/evaluations.tag.mdx index 3eef824932..444539c5cd 100644 --- a/docs/docs/reference/api/evaluations.tag.mdx +++ b/docs/docs/reference/api/evaluations.tag.mdx @@ -5,9 +5,16 @@ description: "Evaluations" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/evaluator-data-map-evaluators-map-post.api.mdx b/docs/docs/reference/api/evaluator-data-map-evaluators-map-post.api.mdx index b0b4945d9c..257dcd8fba 100644 --- a/docs/docs/reference/api/evaluator-data-map-evaluators-map-post.api.mdx +++ b/docs/docs/reference/api/evaluator-data-map-evaluators-map-post.api.mdx @@ -5,393 +5,74 @@ description: "Endpoint to map the experiment data tree to evaluator interface." sidebar_label: "Evaluator Data Map" hide_title: true hide_table_of_contents: true -api: eJztVk1v2zgQ/SvEnLqA1s4Ge9Jp3TZAjW4RI/HuxTGCiTSx2EokS1JpvIL/ezEk9WFnkxY51xdL5JvHmTcfVAcedw7yDVw8YN2i19bBNoOSXGGl8VIryOFClUZL5YXXokEjfEWCHg1Z2ZDyokSPwlsi3qeeR0jlyd5jQbMbdaMWdufyGyWEEJa+tuS8eHMVH37LxbqiYVnffabCzyLW4L7WWIo3g3+f0BipdktlWr/sj0gUPbrQyqNUUu2Crz0zOxqcuSLfWtX7c0p92fopdx7jHeJqIkroAEvuQgbakEVWbFlCDgP+lk+9bdDcDksuvBrt2Cw591aXe8g7YNdJeX5EY2pZBMr5Z8eZ6MAVFTXIT8bygV6S4zfJcoQnLEvJJlivJghvW8rA7w1BDoPLXvqaF5bR+pBBCu61RElBOByeYjhQaankakvujudtR46XMw0H5h652J+w4IxWLopxfnbGf8dFfN0WBTl339biKoEhe63cMfev1vsymf9Ipv6YF9Q5KVaW55DBn+fnTxX4F2tZhvjEhbXavj78kjzKOtSdp8Y9BdS6ONpFtb+8h3zT9eE6b0OdZMMKj4sdWThsR1HQWtxPdPtbRwdDpbpQpcd8k0ok53BHMJA9Dw1iiDXv/ighHFc8OuEmmRnljeo+H8b7KN//HdZDPqzXqyeEMbcN+UrziEkDxKCvIIf5OF7mDRrIwJF9IOuC7K2tIYfKe+Py+byodVvOcEfK4wzlHI2E06G/CLviHUPhsGW6orXS7wPfYrX8SPsPhCVZyDfbKeCaqybWwTFsSAEa+ZFYEYUNvy9aX2kr/4vJzUCyA1W04pC5Hq/GOXnxiI2p6WjuHc0utpHqXocjk6IpnrdYfCFVQgasTQz1bPbH7Ow5AZKBWKyWqWGwCA3T+x5gkJ1IPIgLGVATugU8YfPXuMFecg4bVBO+ocHFe75XP4VUHnk2uSR+Xc0/dTWnsvP06OemRhkGSMhXl9pnM17Y6Vri1q64w/INdN0dOvrH1ocDL39tyXIbbDN4QCvxjgtsw3Or6huigy+0hxzexUz9HqYLw+s2NsDJsOVBGC0WRUHGv4jdTobA6vJ6DRncpc+HRpdsY/EbTy78BjmETxO2Dh0Z1jqoUe1ano85RE7+fQeh7IhH +api: eJztVk1v4zYQ/SvEnLaAaqdBTzrV7QZYY7uIkbi9OEYwkSYWtxLJJUfZuIL+ezGkJH+kmy1yri+WyDfDmTdvhuqAcRcg38DVE9YtsvUBthmUFAqvHWtrIIcrUzqrDSu2qkGnuCJFz468bsiwKpFRsSeSfRr9KG2Y/CMWNLszd2bhdyG/M0op5elLS4HVu5v08EOu1hVNy/bhMxU8S1iH+9piqd5N8X1C57TZLY1reTkeMbgY0YU1jNpos4uxjp4l0BjMDXHrzRjPuevrlo995ynfKa8moZSNsCFcyMA68iiMLUvIYcLfy6n3Dbr7aSnEV2eDmA3B/WrLPeQdSOhkWB7RuVoX0eX8c5BKdBCKihqUJ+flQNYU5E0LHfEJy1KLCdarIwT7ljLgvSPIYQqZNdeysEzWfQZDcm91NDAIff8SI4lqT6WobQj3cN724OP1SkMvvg++JJ64EJw1IZFxeXEhf6civm2LgkJ4bGt1M4AheyvdqfZv5vt6MP8eTeMxr7BzJlahp8/g58vLlwz8ibUuY37qynvr355+SYy6jrpjasJLQG2Lk100++tHyDfdmG5gH3WSTSsyLnbkod8eSEHvcX/E2+82BRiVGqJKT/0dKZFCwB3B5Ozb0EiGWsvu9woieaWjB9xRZQ70Jna/ncb7RN+/HTZCPqzXqxcOU20b4srKiBkGiEOuIIf5YbzMG3SQQSD/RD5E2ltfQw4Vswv5fF7Uti1nuCPDOEM9R6eh34pF0XrN+2iyWC0/0v4DYUke8s32GHArwkilPoVNLKPTH0mSNtjI+6Llynr9d6pfBloUWSUryUokd3MYhVfP2LiaTkbbyXgSG20ebTxyIG0RE1KL1RIykNST7i9mP80u4PxSOwHHC6OIfTDGG7chO2Nu4gwyoCY2ATBh88thQyKT0jRojvxNfavey3X5KVboJKKj2f//jfufbtxBakzPPHc16jgXYr26oSs2h3t4uG2kYytpnHwDXfeAgf7wdd/L8peWvEh/m8ETeo0PIqqNjKNqbIIO/qI95PBbqtSPcWgIvG6T6M9mqMy3ZLEoCnL8KnZ71Nur69s1ZPAwfBU0thQbj19lIOFXyCF+cYh17MK41kGNZtfK2Msh+ZTfP9pQebg= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Endpoint to map the experiment data tree to evaluator interface. Args: -request (Request): The request object. -payload (EvaluatorMappingInputInterface): The payload containing the request data. + request (Request): The request object. + payload (EvaluatorMappingInputInterface): The payload containing the request data. Returns: -EvaluatorMappingOutputInterface: the evaluator mapping output object + EvaluatorMappingOutputInterface: the evaluator mapping output object +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - -
    - - - inputs - object - - required - - -
    - -
    -
    -
    - -
    - - - mapping - object - - required - - -
    - -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - - outputs - - - object - - - - required - - - -
    - -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/evaluator-run-evaluators-evaluator-key-run-post.api.mdx b/docs/docs/reference/api/evaluator-run-evaluators-evaluator-key-run-post.api.mdx index 73d8671fe2..62d259236d 100644 --- a/docs/docs/reference/api/evaluator-run-evaluators-evaluator-key-run-post.api.mdx +++ b/docs/docs/reference/api/evaluator-run-evaluators-evaluator-key-run-post.api.mdx @@ -5,328 +5,75 @@ description: "Endpoint to evaluate LLM app run" sidebar_label: "Evaluator Run" hide_title: true hide_table_of_contents: true -api: eJztVlFv4zYM/isCn3qAl3TFnvy0XFfggvbQou32kgYBazOxrrbkk+jeZYb/+0DJsZP02m0F9ra8xLLIT+RH8rNaYNx4SBdw8Yxlg2ydh2UCOfnM6Zq1NZDChclrqw0rtoqiHamrq88K61q5xjyYBzNzG58+GKWUcvS1Ic/q5DY+fEjVfUHDa/v4hTKeRFvaHbt6oq068ex6a1nateKCRpvep8ZtaTFXJ0PMc1M3PDdMbo0Z9Qg7s8waRm202QS0XRg5Mk4k8lvixpkxeN+UnKoB+7rhffA+/GNUG6z8BBKwNTkU5uY5pDAm6BqzGlZ+tTpIfRW2a+sZEqjRYUVMTirTgsGKDpCeaAsJaClNjVxAApKUdpRDyq6hBHxWUIWQtsDbWpw9O202kABrLuXFkJ+6pC103TKCkOePNt+K5zGmZEyGZQvrutRZSHL6xUuPtHtH1k4oYE1eVlpqE54wz7W4YHmzZxHB+zAjuXthzqN3l4AnZm02Eclsr9eBm3+O2SUDGaYpS5CMd6fc7bC7BDJHORnWWP4nR53vwXfd64m/0tvQdeLlyNfW+Mjw2emp/B3O7F2TZeT9uinVbW8M765h393vLeJ17/6jfMcuWwzHLH9Aw9EY9jz8cnb2MvU/sNR5SExdOGfd+/POiVGXoYuZKv/SoLTZwe7YLYdzt9cR2jBtyEG3HNlA53C7R9iVjQFKP1Z+89YcfybvcUMwgL0x8kKGupfdv6uE5BWP7u32SjLSG9l9PY3fIn1vtfmn+/ubF4CxthVxYUVCB1XkAlKYjho6bQ80sZu6xoAohXveaWfjSkihYK59Op1mpW3yCW7IME5QT7HWcPyxm4VddS6mYXI9ZY3TvA14s5v5JW0/EebkIF0s9w3upItiXxyaDSXBWl8G7e4lfdZwYZ3+Mxa7l/QiegkF0p+3oypffMeqLulAVQ+V8YV+CYo2axuC6DnvM/yI2ROZHBIQtmLyp5OfJ6evUdI7qNnNvB8pzMJI7bIJZpAckT7QDQlQFeYJmLD6ddyQKKXKFZo9vPETdRvqehBUO870//eTf3U/6XuR6TtP6xJ1UJlQsrafscV41/CQQHp885AxWyZQyFymC2jbR/T0uyu7Tl5/bcjJsCwTeEan8VGabtFCrr0855CusfT0Rj1DYUSKPqjX4t0NlJF4JDxZQQIS4PFVKShtsRvZtrc5j8f9FPRwxHjxeRDpjh6zLKOa37Rd7snWzfXdPSTw2F+nKpuLj8NvwiB+i/HakH7QjPCuhRLNphFFTyFiyu8v12AUSQ== +api: eJztVk1v4zYQ/SvEnLKAaqdBTzrV3QZYI1nESNJeHCNgpLHFXYnkkqPsuoL++2JIWR/2Jm0D9FZfLIozjzNvZp7YAMmdh3QNl8+yrCUZ52GTQI4+c8qSMhpSuNS5NUqTICMw2qG4vv4opLXC1fpBP+iF2/n0QQshhMMvNXoSZ7fx4V0q7gvsX5unT5jRLNri4djHz7gXZ55cZ81LsxVU4GDT+Vi5L43MxVkf81Lbmpaa0G1lhh3CwSwzmqTSSu8C2iGMXJKcceS3SLXTQ/C+LikVPfZNTWPwLvxjVBOs/AwSMBadZOaWOaQwJOhq/div/OPjJPXHsG2NJ0jASicrJHRcmQa0rHCC9Bn3kIDi0lhJBSTASSmHOaTkakzAZwVWEtIGaG/Z2ZNTegcJkKKSX/T5iSvcQ9tuIgh6+s3ke/Y8xuSMURNvSWtLlYUk558890gzOtI6poAUel4prk14knmu2EWWq5FFBO/CjOSOwlxG7zYBj0RK7yKS3t9sAzf/HLNNejJ0XZbAGR9OuTtgtwlkDnPUpGT5nxz1fgTfti8n/kJvQ9uyl0NvjfaR4Yvzc/6bzuxdnWXo/bYuxW1nDG+uYdfdby3iTef+o3yHLlv3x2x+QMPRGHY8/HJxcZr6n7JUeUhMXDpn3NvzzpGkKkMXE1b+1KA02WR36Jbp3I06QmnCHTpoNwMb0jm5HxF2bWKA3I+V3702xx/Re7lD6MFeGXkmQ9zz7t9VgvOKR3d2o5IM9EZ2X07j90jfa23+4f5+dQIYa1shFYYltFdFKiCF+aCh82aiie3c1RpYKdzzQTtrV0IKBZH16XyelabOZ3KHmuRMqrm0Kgynx6x2ivbBZbFaXuH+A8ocHaTrzdjgjhslln5q1rMurboK8typ9qKmwjj1V6xnp9pF9OIsuQVvB+G9/CYrW+JEOKfidyJRjKL01oQgOloXIUWxWC0hASYjTsb57OfZORx/3ifG4buWhUk5ZBC2ITnismcREsAqjAkQyurXYYMj4+JVUo/whi/PbSjXJJhmGNX/rx3/6trR9R/hN5rbUqogHqFkTTc66+EK4SGB9PhCwdOzSaDgcUvX0DRP0uMfrmxbfv2lRscDskngWToln7jR1g3kyvNzDulWlh5fqWcoDCvMO/FSvIch0hwPh8crSIADPL4BBQEtDmPadDbv43E/BZkbME5UnxU5eiyyDC29arsZqdHq5u4eEnjqbkmVydnHya/MoPwa4zUh/aAT4V0DpdS7moU6hYjJv+8VAgW6 sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Endpoint to evaluate LLM app run Args: -request (Request): The request object. -evaluator_key (str): The key of the evaluator. -payload (EvaluatorInputInterface): The payload containing the request data. + request (Request): The request object. + evaluator_key (str): The key of the evaluator. + payload (EvaluatorInputInterface): The payload containing the request data. Returns: -result: EvaluatorOutputInterface object containing the outputs. + result: EvaluatorOutputInterface object containing the outputs. + + + + + + + + + + + + + + + - -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - - inputs - object - - -
    - -
    -
    -
    - -
    - - settings - object - -
    -
    - anyOf -
    -
    -
    - -
    - - credentials - object - -
    -
    - anyOf -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - - outputs - object - - required - - -
    - -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/evaluators.tag.mdx b/docs/docs/reference/api/evaluators.tag.mdx index 96d3587403..b2e3821907 100644 --- a/docs/docs/reference/api/evaluators.tag.mdx +++ b/docs/docs/reference/api/evaluators.tag.mdx @@ -5,9 +5,16 @@ description: "Evaluators" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-analytics.api.mdx b/docs/docs/reference/api/fetch-analytics.api.mdx new file mode 100644 index 0000000000..4399d86e81 --- /dev/null +++ b/docs/docs/reference/api/fetch-analytics.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-analytics +title: "Fetch Legacy Analytics" +description: "Fetch Legacy Analytics" +sidebar_label: "Fetch Legacy Analytics" +hide_title: true +hide_table_of_contents: true +api: eJztV01vGzcQ/SvCnLeWa/S0p6pJgxhxayNWexGEYsQdSYy5HyFnnarC/vdiSO0uV7IURUmRS0+GzDfzHudrh1tgXDlIZzC1qHSxgnkCZUUWWZfFbQYpLInV+i8s0GxYKwcJVGgxJyYrhlsoMCfBlaqWU11ACh9rshtIwNLHWlvKIF2icZSAU2vKEdItYLG5X3oHvKnEgWMrAhKgos5FEltUBAm4CgvRxZqNAN94pibpLIvaGGgOEQLp1Nkc+ZvKwxUVjODjVTAZyontZijUk55WGiCR1NJk5L6F1IhXF0wrsiel3AfeWEpBn76LlN8DbyzF6Fx/lZJzeO88SUwrVvYZzX/NfNvyxOQWmb6GuKjzxWd43wvFoFG0YbJfwNpVcjBsxLslV5WFIyeAm+tr+ZORU1ZXMlcghcdaKXJuWZvR+x0YElBlwVSwv0xVGa38GBp/cGKzjUgrK0OKdWBQZR2M9gLeX/OVRySQ0RJrw5BeNwksavVE7D1optwdOmadk2PMq8h5Nwd2IyWFDJl+EGhEOO0sm6QvolMS+wpIgEsO6CP3vKjEXoxBVodRf2n9vG7t9/yq0oXIXuL0lTfe88jlExUXu5wG64FPcRrg5eIDKY6SMek+d00CZG1pX6iO/9PxHdLxAqofTrOoY5N4doeG6lIZKfnFDwHo3aK1uIF9wEDrbH5K7L3JOr3dbGsaMfnp5uZwFP6JRmc+a6NfRd7lczAjRm1OzDNTqsHpl3yu58dDdFcGgRLF3K1eGpYt9DdyDlfUx/s41AdjNJXTz2Vd7hWod7gowX14Q3SPX+N1CN+p3L6dTh8OHIbcDpP6Rrbm0R2tUG1Gk2h5zonXpezVVek3qwp5DSmMK0vPmj6NOezhY1l63Theux3Z53bnrq2BFNbMlUvHY2XKOrsK++gV6jFW2nebI1VbzRtvMnm4fUebt4QZWV/CEeBRCiqUyBDWZQcr/Y4kWLs1YVLzurT6n3ba+G1hHawa/8lblvF2MPHiRpOHW0hArhHCdH3149U17AdvAJZeQOV7oeVuF+9hFLr7S5/nvhGACfOf+wNRJnHPsYj8Hc3VQFUXCqa/eVwZ1L7evYbtLo0z2KVRSmb3oArvF3HXJ3OewFrSn85gu12goz+saRr5d1i4JF+Zdrgw0cr1RJvomfWMphY1vlePYnePnnPA3bPjHHD3MDgH3K7u52CjmX0OfLchnxWMdrHtwXP5YbWgfUckbQVL/IPVRCmqYvEH81i8dE39cP84hab5F+vbLmw= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Legacy Analytics + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-annotation-by-trace-id.api.mdx b/docs/docs/reference/api/fetch-annotation-by-trace-id.api.mdx new file mode 100644 index 0000000000..b1dfd0f386 --- /dev/null +++ b/docs/docs/reference/api/fetch-annotation-by-trace-id.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-annotation-by-trace-id +title: "Fetch Annotation" +description: "Fetch Annotation" +sidebar_label: "Fetch Annotation" +hide_title: true +hide_table_of_contents: true +api: eJztmktvGzkMgP+KwVMLqHE22JNPm03bbTbtNkjdXgLDkGdojxqNNNUjXdeY/76g5u1XHCcFisWcDM+IpPRRpGTSK3B8YWF0C+dKaced0MrChIHO0IRvlzGMYI4uSqa8HjKdLafO8AinIgYGGTc8RYeGNK1A8RRhBK0BQsEIMu4SYGDwmxcGYxg545GBjRJMOYxW4JYZyVlnhFoAAyecpAdjUjS4jCHPWa3dZly1lH/zaJYd7XMubUc9V8uP8zDBriFSWj5RXkrIJ43pTxlXheUJ6baZVhYtaTs7PaWPGG1kREZQaLiPIrR27uXgphwMDCKtHCoX5pBlUkSB4fCrJZlVa4aZIexOFBYi7QuhcnJCOVygaYG5CCMYxDjnXjoYneYMGi91F72m3CB3GE+524eGwVyblMZAzB2+ciLFvbwuCrWDcwc5A5/FP8PI50JtaSRGiT/ByOtCbWmkwjVb0p47zI73Ij4I1p/LsMUaXs9qpaJVW6mAPauVCldtpYrPpwYea/LIkaqa9MFAG7EQaluyQeVTyoORt06nwCDxKVfAgHunoT0zkWYSg9KPhbZWAFbiOYM7oeJ9hnic6Ii+33NJOVTy5Q4zV6SpbaQQpW2ZcKVQ7jOjncyAwXecAQMb39GKMrHD0kWpr2MsE8EL4Zxoe4DHsaA0w+V1J7Uc4KMqlXXcls66T2ZaS+QqPNpuCyJhIi+5efGPfi+s+9tq9eqjd5l3LylNFnr07CtGbu8W2RAPKz5YfExscgYpOv7rMnrrpXyQkHCYHijFjeHLvVzWZB8H9QPBpHTFS6g9yn0oW6mYF+AMztGgigpM3eO/uC7tuR/co7EbV4jDc+6XUpwOAukXR58CJJszeL5zqrhF7mR3UzHboiRnBbbpPTeCK9fjOw6fwXuxCafn9zA/h9ZZ7DfeseD6yH0qwD52jyXY+uXfw3sCvD6GnwNiH8fHUqSf6547bXp0R6PrY/jpCPsIfspdJuIWe3KPI7dHrlVCvGmqDjkDKdTdgWXDrgN+xfLxHgDvhbrbXt4qq0D/r/WV9apJd4DdqqLpyN0WtbxOZaraIi1VTSfykbuwEaybb3lOAr+fnW326r5wKeIwevDGGG2Ob9TF6LgIRfgdzpY66rx9TMlysk69xVxHFSZI7WJfC/UDWssX2Lhw99AAYzCmtw+5U4YGBpkux7VTYI23oLt7Ga8LfPs8+248vt5QWPi269S31KgetHZQKMonmprYC3ShV+0SGMEwowMUvw+bdqkdrqpYyqlXgua+6mh7I2EEiXOZHQ2HkdQ+PuELVI6fcDEMHZIJSUTeCLcMIufXl1e4fIc8RgOj20l7wCfaSMXW6A6rvcIzcYUEqex2n3uXaCN+VIsKPe+kkCIKQs11EK9CIUxucH59Caw5zOD05LeTU1iH1hlMMcCjEAOV7fAa2BqFev3UbEpDAIBDnv7RvKCZZdo6aqQ1+rb4qDOfGoLDf90wk1yEHR6sr0r/3ULpP2g3vCmdjOp8OGGQaOto8Go14xY/G5nn9Lisft+uIBaWz2Tr7wJ3uOz8uYDuWzSX4OBwbZ0R4G2ia4uokwm8uClj5uWgKfl3F1e5XS3bNqvp1EsK2SCp9tSqfH0eRZi5luBG8qLJ13Hw15sx5Pl/EX6Ljg== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Annotation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-annotation.api.mdx b/docs/docs/reference/api/fetch-annotation.api.mdx index bf269eb19e..102ca6242f 100644 --- a/docs/docs/reference/api/fetch-annotation.api.mdx +++ b/docs/docs/reference/api/fetch-annotation.api.mdx @@ -5,1134 +5,67 @@ description: "Fetch Annotation" sidebar_label: "Fetch Annotation" hide_title: true hide_table_of_contents: true -api: eJy9VU1v00AQ/SvRnEBa1aXi5BMBCq0KomoDlyhC0/Uk3tZeb3fHgWD5v6NZf9QhbQ8IcYrtnZmd997MSwOMmwDpEk63WARYKagceWRT2fMMUlgT6/w7Wltx/AgKHHosiclLXgMWS4IU2KOm7yYDBcZCCg45BwWe7mvjKYOUfU0Kgs6pREgb4J2TvMDe2A0oYMOFfFhIodl5Bm2rxurBof0Xxa8d2q72StKDq2ygIBknx8fyk1HQ3rgINYXrWmsKYV0Xs6s+GBToyjJZlnB0rjA6MpPcBslpJl04L2Sy6W6YkBjfdl/WkcC+1+rmljTvoVpOcE/4zZAxxq3Jk9UUQEFh7F2Ub0A6f7hNeOwvsXVRQLtqW3Vw7WHiCLltJeH1yckhQ9+wMFmMnp16X/m/pycjRlPIk2Eqw2FAUem90wMGe7UncI1l2pAXxCNg9B53E7yfKj3QBGXYPDc9nykE3BCMxZ4OjWTMFnL6GNlTjQVXd3UfN1Hxgd6O3adhvO/oe07Zs8Xi8qBgp+2+qB9k6Wfz6dKXxHklhrAhjh7AOaSQOE9bQz+Sh9kOSTOMaps0/fy2oCCQ3w6eUfsCUsiZXUiTRBdVnR3hhizjEZoEnYE/W5rH09k7CQVZ3kC69oZ3sd788vyCdmeEGXlIl6tpwLXMWzdB+2GjeOjMBQmXvdnMa84rb34N2KPl5F2WkGXsuorpw8Z0vb1FfUdWFlRwdm0fH706On4KTJ8wm1+e92uDOq7N0EcMA/UHXSNRoIDKuDPAhOWbhwPp0lWBS7STeo/IutfXSAjTT05cgSYuRby96SVfQi85qImhiQOlE4dKB99aKcirwJLXNDcY6Ksv2lY+39fkRbyVgi16gzdC5bKBzAR5ziBdYxHooMXRXeDFVb9EL2egHm99ENiKulssankDBXe0m/5liWP8x3sHcqIr5cPQNv3pXGtyPMk7MFGZ7nEfP54uoG1/A6kopgw= +api: eJztmlFv2zYQgP+KcU8twMZZsSc9zUvbNWu7Bonbl8AIaOlssaFIlTyl8wz99+EoyZLixHWcdCgGPSWWeHfkd7wjfec1kFx6iC5hYowlScoaDzMBNkcXPp0mEMECKU6v5GYICMilkxkSOpZeg5EZQgTkZIxXKgEBykAEuaQUBDj8WiiHCUTkChTg4xQzCdEaaJWznCenzBIEkCLND6asaHSaQFmKjXafS/MQ5dKsPi7C9PpmWGX9xBRaQzlrDV/k0lR2Z6za59Z49Kzt5fEx/0nQx07lAUMEF0Uco/eLQo/O68EgILaG0FCYQ55rFQdq4y+eZdadGeaOQZOqLMS2qITqySlDuETXwXISRghIcCELTRAdlwI6fukt+pZyh5IwuZK0C42AhXUZj4FEEr4gleFOXieV2tGEoBRQ5MmPMPKpUlsbSVDjDzDyqlJbG2lwzVe84/azUxQq2QvW76uwxVpeT2qlobWx0gB7UisNro2VJjofG3iizSIHqmqThwDr1FKZu1INmiLjzBcXnmwGAtIik5zaZEEWujNTWa4xKP1YaesEYCNeCrhWJtllSCapjfnzjdScQbVc3WPmHWvqGqlEeVum0hjUu8xY0jkI+IZzEOCTa15Rru6xdFLr6xnLVfBCOBm6HpBJojjNSH3WSy17+KhJZT23ZfP+k7m1GqUJj+62BbFycaGle/aXfa88/emtefGxoLyg55wmKz12/gVj2rlFtsTDivcWnzKbUkCGJH9eRm8Krb9LSBFme0pJ5+RqJ5dbsg+D+oFhcrqSNdQB5S6UnVQsK3AOF+jQxBWm/vH/tUC32nU/uEHnt64Q++fcz7U4HwS6WB58CrBsKeDpzqnqDnkvu/OG2R1KSlFhu7qRTklDA77D8Dm8UdtwBn7f50foyeOw8Q4FN0TuYwEOsXsowc43/wHeI+ANMfwUEIc4PpQif10vJFk3oDsY3RDDj0c4RPBj7jKx9DiQexi5HXKdEuJ5W3UoBWhlrvcsG/Yd8DOWj3cAeK/M9d3lrboK9P9aX12vmvUH+DtVtA25y6qW16tMNVuko6rtPT5wF7aCm+ZbWbLAry9fbvfqPkutkjB69No56w5v1CVIUoUi/D3O1jbuvX1IyXJ2m3qHuY0bTJD55a4G6gf0Xi6xdeH9QwOM0ZTffs+dOjQw2HQ9rpsCN3gruvcv41WFb5dn306nZ1sKK9/2nfqGW9OjSbc1nSGlltvWS6TQqaYUIhjnfIDit3HbLvXjdRNL5XhdB2jJXRN0N01nu3AaIkiJch+Nx7G2RXIkl2hIHkk1Dr2SGUvEhVO0CiKTs9N3uHqLMkEH0eWsO+CCt1S1SfrDNv6RuXqHjKvuek8KSq1T/zTLC73vtJJiHsosbBBvgiJMbjQ5OwXRHmtwfPTL0THcxtcbzNEg4xANje3wGsQtCpv1c9spC6EAhDL7rX3BM8utJ26ptfru8FZvPhsIhH/TONdShb0erK9rT15C7Unotr45sUSdnx9ETb6dCUitJ5Zbr+fS4yeny5If1yXxy5mAcD2dM77LNSTK8/8JRAupPW5NcZM04Nl5HRvPR21pvz/1xqmGPcp3Of4EAq5x1f29BCeC/9BuAyckm7TZqOv67SSOMaeO3FZu5B29CbM/Xk+hLP8F+xqmBA== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fetch Annotation - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - annotation - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - - - -
    - - - data - object - - required - - -
    - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - - references - object - - required - - -
    - -
    - - - evaluator - object - - required - - -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - testcase - object - -
    -
    - anyOf - - - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - links - object - - required - - -
    - -
    - - - property name* - AnnotationLink - - -
    - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-evaluation-ids-evaluations-by-resource-get.api.mdx b/docs/docs/reference/api/fetch-evaluation-ids-evaluations-by-resource-get.api.mdx index a1a39d9667..371cea6b02 100644 --- a/docs/docs/reference/api/fetch-evaluation-ids-evaluations-by-resource-get.api.mdx +++ b/docs/docs/reference/api/fetch-evaluation-ids-evaluations-by-resource-get.api.mdx @@ -5,354 +5,78 @@ description: "Fetches evaluation ids for a given resource type and id." sidebar_label: "Fetch Evaluation Ids" hide_title: true hide_table_of_contents: true -api: eJztVU2P2zYQ/SvEnBJAsLeLnnSqk2wTIymycJxcvIbBlcYSE4lUOKNtHEP/PRjqw/JXgUVPBXqySb2ZefM4j9wD64wgXsHdky5qzcZZgnUEKVLiTSVriOFP5CRHUjiAlElJbZ1XWmXmCa3ySK72CSreVai0TZVJJw/2wc58VpdomeIHq5RSuqo2JlUviP3LWC1zVPM3ym0V5yjfQtK/c5Pkip3aSuFRWZq0Sfpqm1BtlCus3fZA53nppKsPhnj18fErJjxP1z1Fel7WB7vQhrBv+t1yeX/3I8EgaKzmbbvHXRhSxj7pwqRKdE0SJJLNFK3BVssFcu1tnzQQJfbrWM1UYYiF4vERTSACV6EPG/MUYghkNweUtDxa0uZxtxl4ZcgQQaW9LpHRy6DsweoSIYYj8hCBkUH5XqPfQQQev9fGYwox+xojoCTHUkO8h4COgdgbm0EEbLiQjUUv7VIATROdFzIpXa+z1QVdKqS914I0jCWdE2guMJinBE2zluxUOUsY4m5vbuTn2Bif6nBM27pQiw4MESTOMloWuK6qwiRB2ulXkpj9v+QYiqjgSHUwrZAeLUm92qmhobfI0DRNE8Hvt7fnTXyRmWuz3Hnv/HM6qLyMF5tWoxRZm0L+Da0cAwqXHH3VdvdxG6bqtOVhx1jGDD00a9HhWLBelg+uJShSlZT905z9hUQ6QxiSXYcGMYZ57GEu3AxHs7cKfbWlO9z6kOYgb6vu9TbetPJdKtZD5CI5S9iebYmcO7F471rOIYbpyNvTkbchAkL/1Ju69gXEkDNXFE+nSeHqdKIztKwn2kx1ZeD0TZiFr+q1QEHcQpjU3vAu5Jvdz9/j7h3qFD3Eq/UY8Emmp52HY9jBEJV5j6JMdwXMas6dNz/bQ+7ugLyNktaN3boQ3qnUcXulk29oU4hA+mxp30x+m9xca6YLULP7eWcCnQQT9DwCDKITuQahIAIsgwOAUZd/HD4Iy8oRl9qO8l1y8Sm3/cGM/7/D/+V3uJttxh88rQptwm0VBmnfmXUFI/IQwdiu6whyRyyg/f5RE372RdPIdvsWiulSQ/qxGL2GVwfpxaK7vF6qa8y+4e7CKy/8BBtu6LN6JzHtg30IWcvCG4kJd0LUe1jIt7GzRA5nFHX2/EiW4ap7e7eEpvkFCsK8tQ== +api: eJztVU2P2zYQ/SvEnBJAsLeLnnSqi2wTIymycNxevIbBlcYSU4lUOKNtXEP/vRjK+vJHgUVPBXqySb2ZeTN8jzwC64wg3sDDiy5qzcZZgm0EKVLiTSVriOEX5CRHUtiDlElJ7Z1XWmXmBa3ySK72CSo+VKi0TZVJZ0/2yS58VpdomeInq5RSuqp2JlVviP3bWK1zVMt3yu0V5yjfQtI/c5Pkip3aS+FRWZq1Sbpqu1BtlCus3X6g87p00tUnQ7z5/PwVE16m244ivS7rk11pQ9g1/WG9fnz4nmAYaKyWbbvTLgwpY190YVIlc00SJJLNFK3BdpYr5NrbLmkgSuy3sVqowhALxekRzSACV6EPG8sUYghkdwNKWh4tafd82PW8MmSIoNJel8joRShHsLpEiGFCHiIwIpRvNfoDRODxW208phCzrzECSnIsNcRHCOgYiL2xGUTAhgvZWHWjXQugaaLLQial23X2uqBrhbT3WpCGsaRLAs0VBsuUoGm2kp0qZwlD3P3dnfxMjfGlDse0rwu1OoEhgsRZRssC11VVmCSMdv6VJOb4LzmGIio4Ug2mFdKjJamfD6pv6D0yNE3TRPDj/f1lE7+L5tosD947/5oOKi/yYtPOKEXWppB/fStTQOGSyVdtD5/3QVXnLfc7xjJm6KHZyhymA+vG8sm1BGVUJWX/pLNfkUhnCH2y29AwjF6PHcyFm2GivU3oqy19wm2HNMN42+nebuNdO75rxTqIXCQXCduzLZFzJxbvXMs5xDAfeXs+8jZEQOhfOlPXvoAYcuaK4vk8KVydznSGlvVMm7muDIghCJPaGz6EkMXj8iMePqBO0UO82Y4BX0Qg7ZFPYYPmK/MRpfmTyxc1586bv9pzPNk8b6OkO2P3LoSfBrEI5NTicQkRSButlu9mP8zu4Pz9moBF2zoJ2u5qh88QnU2h7x8iwDIIGxh1+dPwQZhVjrjUdpTvmjnPOR0Hj/3/vP6Xn9eTnhm/87wqtAmXUBDS8eTBDYzIQwRjF24jyB2xgI7HZ034my+aRrbbJ06MlhrSz8XokbsppDer0530Vt1i9gcerjzewk+w4eK9qHcW077DQ8hWFt5ITLgHos63Qr6NXSRyOKOoi1dFsvQ32PuHNTTN3zPfriY= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Fetches evaluation ids for a given resource type and id. Arguments: -app_id (str): The ID of the app for which to fetch evaluations. -resource_type (str): The type of resource for which to fetch evaluations. -resource_ids List[ObjectId]: The IDs of resource for which to fetch evaluations. + app_id (str): The ID of the app for which to fetch evaluations. + resource_type (str): The type of resource for which to fetch evaluations. + resource_ids List[ObjectId]: The IDs of resource for which to fetch evaluations. Raises: -HTTPException: If the resource_type is invalid or access is denied. + HTTPException: If the resource_type is invalid or access is denied. Returns: -List[str]: A list of evaluation ids. + List[str]: A list of evaluation ids. +> + -
- -

- Query Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-evaluation-preview-simple-evaluations-evaluation-id-get.api.mdx b/docs/docs/reference/api/fetch-evaluation-preview-simple-evaluations-evaluation-id-get.api.mdx new file mode 100644 index 0000000000..462dc6d36c --- /dev/null +++ b/docs/docs/reference/api/fetch-evaluation-preview-simple-evaluations-evaluation-id-get.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-evaluation-preview-simple-evaluations-evaluation-id-get +title: "Fetch Evaluation" +description: "Fetch Evaluation" +sidebar_label: "Fetch Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJzlWN9v20YM/lcMPrWAGmfBnvQ0Lz/WrNmaJW5fAsM4n2j7upNOueNlcw397wNPkiVZtps0KTAgT4kl8iP5keLxuAYSCwfxHZw/CO0FKZM5mERgcrTh12UCMcyR5HKKG5FpbvFB4T9Tp9JcY+uNm7bFVDKdLpAgglxYkSKhZWNryESKEENHFCJQGcSQC1pCBBbvvbKYQEzWYwROLjEVEK+BVjkrO7IqW0AEc2NTQRCD9wGFFGkWaEIaXCZQFBMGdbnJHDrGOTk+5j8JOmlVznIQw62XEp2bez24qYQhAmkywoxYXOS5VjLADr841lm3fMstM0eqtCCNL5Uql1VGuEDb8vE0SESQ4Fx4TRAfF1GLlmAwW32cB9a64HMdUrdfQLmp1MYxhW2hypeZMRpFBkW0eZR5rYFpqr27dIPTEqGIGE6rB3wO2BXrl1BC0jPBRiVCUUS1lJl9QUk7K+DGZxeBrz5oEUGKJLquiCRRrCf0dYfTnrNVFbZg6yR3LKWz7pN2jLttgVRWei3smwuv9e/OZO8+eso9vYXtgBlEEaaP1BLWitVBdrd0oUfxIeU/mEzW6JXn/4nUP82VcvRNWvcF2VN/GkfjshSrPvgoBvousG4RdfvX90GdtSCKCKRFQZhMBR0CbDXeRBC+IxX82W/ltIQdjAJZPk9+hJFPJWxlJEGNP8DIWQlbGanpmq34FHucnXBUPYasX1fh8Gr4elErNVsbKzVhL2qlpmtj5eWgS7wHtO4Z5f+5Uuf4xfZJ0D1THQnyB5tWBJj5lEeqHLOkfHLv0SOPJtZnWfnIlXMGByuU9panDLTWWH4kRSZRa0xgsuswuy2d2HmU3Xu0q6kjzLe8rA6Ib5PdPyb29e19gUvvyKQQwdKnIoMIhCcD7F1F5op7VznE7DH+iB76F0c6uA2RsiI6ckivIvRxGWsTfGsofRUEjJp4GxKqsdnYV0HBeR1tQ4DFHAXt7k47B6gtyJtK/9BIfRtufE0vOhNh2ut1oidAPFN9c00rClb7+eSkf6v7LLRKynI55yb7/Ve6BEkoHa5XdUV1BbSRnbdPGW4n2+XXRH1lZE0WpG6xq/6aAdw5scCmnPaLBjIGY367i/LmDn4X4ipNV3LtA3RDb8nu/jDOSvoO5ff9eHzdAyxz203qBW8lBq06Che5peGNRb11oCXEMKzWFcNyXTFsrSuG684OouCTGe1DvafwVkMMS6LcxcOh1MYnR2KBGYkjoYYiV+H7cSi9VbQKKqPryw+4eo8iQQvx3aQtcMtFVZZJV2yTIZGrD8iEVRuSkaelseprHWDYkCxLLWZEZXMT1OvGGJwbjK4voTUWwfHRT0fHsE1gR5i/ByHD91DbDq8h2mJhEz+3vDR8DEAo0l+aF+xZbhxx+2vwduRr6+5SkUD4Lw1zLVSo9mB9XeXyDqpccqJCNqG9L+HhKe5ulSYRLI0jVl2vZ8LhJ6uLgh+HUYlTFMGDsErMmMG7NSTK8f8JxHOhHfa83HQOeHNTfSBvB83tset9ndeMk8qO8S+I4G9c9RZg4ftf1pWzrmRGUmJOLe1eu+IS21T+b+djKIr/AG8I0bY= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-evaluation-results.api.mdx b/docs/docs/reference/api/fetch-evaluation-results.api.mdx deleted file mode 100644 index e2b95d96b1..0000000000 --- a/docs/docs/reference/api/fetch-evaluation-results.api.mdx +++ /dev/null @@ -1,303 +0,0 @@ ---- -id: fetch-evaluation-results -title: "Fetch Evaluation Results" -description: "Fetches the results of the evaluation" -sidebar_label: "Fetch Evaluation Results" -hide_title: true -hide_table_of_contents: true -api: eJzVVU1v2zAM/SsCTysgxFmxk0/Ltm4NumFF2u2SBoFqM7ZaW3Ylulhm+L8PlO3YTtYCO+5kfZDU4+MjXQOpxEG4hotnlVWKdGEcbCTE6CKrS95DCJ+RohSdoBSFRVdl5ESx81s8+N2ZO7OwiQvvjBBidLHVsXjjyJ6FRx5Cx62txacKHYk3q3bRWfbHxf0DRsTxV0iVNf0TW9qXuA3FdoR2CxKKEq1/YBlDCDsGvx3B6TIACaWyKkdCyxTUYFSOEMIEOUjQTEGpKAUJDElbjCEkW6EEF6WYKwhrYCwQgiOrTQISSFPGBwOxYhlD02w4iCsL49Cx3/l8zp8p4TdVFKFzuyoTq84YJESFITTE5qosMx35sMGDY596wNI0TSPh3fn5aeCfKtNxi+bC2sL+Q1QoLRNLusUdIymd8UoT5u7UICuiya0y++87z/OUqkYeTrQhTNBCs2lkf6asVfsRn1+LFiA0EnKXvEb9N3ROJQiHYK9UickQt3zbDG+3wpuUfe3zap/u7DZDmIHelt2X0/jU0ve3x3qTy9vb65OAbW1zpLRgcSdIXseUQgjBoFwX1BMZN8Ggeof2uZd8ZTMIISUqXRgEUVZU8UwlaEjNlA5UqeF4Fiz8rfjIpsBqdhhVVtPex1tcL69wf4kqRgvhejM2uGEltdqYmh3Kokp9hcxS14mLitLC6t9twbtOTFsvpkGbXeHdO8Y6bB9U9IiGW5fzbGHPZ29n85eS6RzE4nrZNYSKfEP0OLwZyCO6DkSBBMx9NwChyt8PF4yyLBzlyozi+XkqRpNhdSjOBF89NOf/NoO7ihL+oqDMlPb96umrO7muR4OWMw+P526v2I2EtHDEHnV9rxz+sFnT8PFThZZ1t5HwrKxW96yCdQ2xdryOIdypzOErrPpsubPPxEuge20aFiZD5B1IeMT9yc/CD660V3/d2SyiCEsaeZ/MWW6TQ09/ubiFpvkDiRqhEg== -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Fetches the results of the evaluation - -Args: -evaluation_id (str): the evaluation id -request (Request): the request object - -Returns: -_type_: _description_ - - - -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/fetch-evaluation-scenarios-evaluations-evaluation-scenarios-comparison-results-get.api.mdx b/docs/docs/reference/api/fetch-evaluation-scenarios-evaluations-evaluation-scenarios-comparison-results-get.api.mdx deleted file mode 100644 index 865d61070a..0000000000 --- a/docs/docs/reference/api/fetch-evaluation-scenarios-evaluations-evaluation-scenarios-comparison-results-get.api.mdx +++ /dev/null @@ -1,305 +0,0 @@ ---- -id: fetch-evaluation-scenarios-evaluations-evaluation-scenarios-comparison-results-get -title: "Fetch Evaluation Scenarios" -description: "Fetches evaluation scenarios for a given evaluation ID." -sidebar_label: "Fetch Evaluation Scenarios" -hide_title: true -hide_table_of_contents: true -api: eJztVcFu20YQ/ZXFnBKAlVyjJ56qxm4iJEUNW+1FFoz1ckRuQu4yO0M3qsB/L2ZJipQlG0jOPVkevnn7dmbe7B5Y5wTpGq6fdNlott4RbBLIkEywtfwPKfyObAokhQeQIoNOB+tJbX1QWuX2Cd0UsLya3bt7twh5U6FjSu+dUmqCeLCZekMc3qZqVaBaXim/VVzglES4/ymsKRR7tRUV48GR/lZbwoH7w2p1c/3NYJSdquUJnSXlPKutb1ymRLYxSCThDJ3FrKNEboIbOD9Z4vVYnLv+9E2qFqq0xCL6XFlmkICvMcTwMoMUovyHyf0P2EmQzgOMr2odLHn3EJCakukhR4YEah10hYxBmrgHpyuEFKZ8NiNIwEobvzYYdpBAwK+NDZhByqHBBMgUWGlI98C7WvKJg3U5JMCWSwlMpkMtM4K23QgN1d4RkmReXlzIn+O5uWtigbdNqW57MCRgvGN0LHBd16U1kXj+mSRnP1XTnz7kqjiHahSj7g5TOFV4FvDuUELRIiVU75Ghbds2gV8uL0/V/61Lm3U01yH48D3S6yDNZ9sVJ0PWtpRflrGiU0DpzdFX7XZ/bmNHjzvSJoeIdYw5Bmg3bTLEdAh6N2nbJ98JhDaBivLXOvwHEukc4UD2yjBIMdRKvrbj2f7xMxo+mq51vFd3dI/bjDRjebvqvnyNq6585w4bIGL9E8KutxVy4cWAg2O4gBTmE4/Mz3luPnrup95zkABheBrM1oQSUiiYa0rnc1P6JpvpHB3rmbZzXVt4vkcX8at6J1AQCxGaJljeRb7FzfIj7j6gzjBAut5MAXcyWd2sHMMObdK1/YhStX4HLBoufLD/dgPQb4Ciy5KyWLf1U5P12n7T5gu6DBKQe3ayL2Y/zy5eukyfoBY3y94g2kSDDDoiDJJn5ToUChLAKroDGHX16/hBVNaeuNJuwvfyDniucD/a9f8X7MdesH62GL/xvC61jZskNnLfG2k9fWykl2esFOfixEybBApPLBT7/aMm/CuUbSvh7p0SS2SW9GMpu2SrS8JXGvzmtl87b9VLur/g7uzbKAFBR0c+6WDlyGjAZDCMaOnSF0a6M8k6eQeE5bBz3l+voG3/A+IHTYY= -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Fetches evaluation scenarios for a given evaluation ID. - -Arguments: -evaluation_id (str): The ID of the evaluation for which to fetch scenarios. - -Raises: -HTTPException: If the evaluation is not found or access is denied. - -Returns: -List[EvaluationScenario]: A list of evaluation scenarios. - - - -
- -

- Query Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/fetch-evaluation-scenarios.api.mdx b/docs/docs/reference/api/fetch-evaluation-scenarios.api.mdx deleted file mode 100644 index 5c7f02757f..0000000000 --- a/docs/docs/reference/api/fetch-evaluation-scenarios.api.mdx +++ /dev/null @@ -1,771 +0,0 @@ ---- -id: fetch-evaluation-scenarios -title: "Fetch Evaluation Scenarios" -description: "Fetches evaluation scenarios for a given evaluation ID." -sidebar_label: "Fetch Evaluation Scenarios" -hide_title: true -hide_table_of_contents: true -api: eJztV0tz2zgM/iscnNoZTpzN7Emn9SbZrafZJpNke3E8GUaCLbYSqZJQWq9H/30HFC3J8SNuzj3FIYEPwIcHoRWQWnhIpnD5rIpakbbGw0xChj51uuL/IYG/kNIcvcBOSPgUjXLaejG3Tiix0M9ohgKTi5MH82DGblGXaMgnD0YIMZB41Jl458m9T8R9jmJyIexcUI5DEMb+nus0F2TFnL3oDQf4W6U9rrE/3N/fXP5IMbidiMkWnPbCWBJzW5tMsNtpit7zcYZGY9ZCItXOrDGvtKdpT85dtD5LxFgU2hM7vYuWE5BgK3TheJJBAsH9x0H8nSxIqJRTJRI6TsYKjCoREtggCyRoTkalKAcJDr/V2mEGCbkaJfg0x1JBsgJaVqzsyWmzAAmkqeCDy0FyMmiaGYP4yhqPnvXOTk/5z2bq7+rA0bwuxG0UBgmpNYSGWFxVVaHTADv64llnte2Lck4tOQDCMtiqHJNDurWss4BkltfzEP5mBI3sTkxdFMCOr2PiQOQLno6ngBmtamp92O1am4n9iJ/4vpHxfr/cPZ83EtiBVjBefA4HTQcB9ukLprSR4WnrRhRZg8x2xbUu0AkH1jvWZaAjrg28kWBreoUDh74uaPv8p2PuMnwopZEQCeicdTsLYydFJXqvFpu0BIRtY6+xHe4GOLctAQ0XvqedLpm6fMJdtnqUc9ZtJBSK0KTLt8JcRfXXgohZO1gl1yH3B8rkOhZHCN05TOlRGf89zKkd7rfqh0kIKGIcUbgH/WOljcHdQ+DJ2gKVOTwFvLhpERoJxhK+dZx8Yt1GRu4O9UQcOdY9ptbM9eKIqWOdOG9lOwu/euo1tS2e5VGF3XfsnsK+jRk+0v7gCQ790I/NvlgOOhRc6W2Hh1SEvUoMHqW7biVoGvbs97Oz7Sf5syp01sq3yfiJ93iz2DIkpYsDVV7YdOP2iJ7ShnDBI2y2n/wr2zrIpJT+YO/8EyvwiCc2kCHaBnklqxxXa1puFWZP77rU94Vx0dK3y9hahFfSLcA2tyVSbnkxXCCFDZBySGDUF5wfrTaqrxntWR49uuf15li7AhLIiSqfjEZpYevsRC3QkDpReqQqDS+X+3G4FecsGoaGx7R2mpYBb3wz+YjLD6gydJBMZ0OBOy6rtlA2xfr3oNIfkSmLC+24ptw6/V+b/bjQ5q1WE9axuR0uR9G3P1X6FQ23H8fZun168tvJ6b5gooIY30xid6iU+nUuioF8QVdHFEjAMrQGEKryj/6Cvaysp1KZAd6BRn7h4arv1V+fVW/7rIq1RfiDRlWhdBgjIZGr2EXDsc0ZSF5O8Z2NNJOQh/VuCqvVk/L4ryuaho+/1ei4HWb87jqtnrg4pyvItOffGSRzVXg8kOp3t3H6vBf7Ili3jFl2G34CIOErLrc+BcNwzddNuYoy45STNNDeegu4e7u58/flPTTN/1ICiI8= -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Fetches evaluation scenarios for a given evaluation ID. - -Arguments: -evaluation_id (str): The ID of the evaluation for which to fetch scenarios. - -Raises: -HTTPException: If the evaluation is not found or access is denied. - -Returns: -List[EvaluationScenario]: A list of evaluation scenarios. - - - -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - - inputs - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - - -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - - outputs - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - result - object - - required - - -
    - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - cost - object - -
    -
    - anyOf - - -
    - number -
    -
    -
    -
    -
    -
    - -
    - - latency - object - -
    -
    - anyOf - - -
    - number -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - correct_answers - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - is_pinned - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - note - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - results - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - - result - object - - required - - -
    - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/fetch-evaluation-status.api.mdx b/docs/docs/reference/api/fetch-evaluation-status.api.mdx index 62df16b309..479ba9c3af 100644 --- a/docs/docs/reference/api/fetch-evaluation-status.api.mdx +++ b/docs/docs/reference/api/fetch-evaluation-status.api.mdx @@ -5,299 +5,74 @@ description: "Fetches the status of the evaluation." sidebar_label: "Fetch Evaluation Status" hide_title: true hide_table_of_contents: true -api: eJzVVU1v2zAM/SsGTy0gJFmxk0/Ltm4NumFFm+2SBoVqM7ZaW3Ylulhm6L8PlL+TtsCOO0WWHqmnx0emBpKJhXAD588yqySpQlvYCojRRkaV/A0hfEGKUrQBpRhYklTZoNj5L+zDZrf6Vi9NYsNbHQTB6OROxcGJJXMaHoQEKm6wBp8qtBScXDeLFtltF/cPGBHnv0aqjO6ueDlpQxAEFCUav7WKIYQdv+FuxKrHldLIHAkNC1GDljlCCBP+IECxEKWkFAQwMWUwhpBMhQJslGIuIayB9iUHWzJKJyCAFGW8McgbrGJwbstJbFloi5bjzhYL/pnKflNFEVq7q7LgugWDgKjQhJoYLssyU5FPO3+wHFMPXJxzTsD7s7PjxL9kpuKGzbkxhfmHrFAa1pVUwztGkirjlSLM7TEgK6LJqdT7Hzuv81QqJ/odpQkTNOC2TnR70hi5H+n5rWgIghOQ2+Qt6b+jtTJB6JO9USUWI1jzqRvubuw3KfvGv6u5usVthzSDvI26rz/jcyPfS5d1kIv1+uooYVPbHCkt2NsJkvcxpRDCfHCundcTG7t5b3qL5rlzfGUyCCElKm04n0dZUcUzmaAmOZNqLksFhwNh6U+DTwwFNrPFqDKK9j7f8mp1ifsLlDEaCDfbMeCGjdRYYwrrqyJLdYksUtuIy4rSwqg/Tb3bRkybKFZB6V3hw1vBWm4fZfSImjuX39nQXszezRavPaYNCJZXq7YfZOT7oePhYSAO5OqFAgGY+2YAQpl/GA6YZVlYyqUe5fNDNRgNhpuuNhN69dCa/+kcbutK+JvmZSaVb1ovYt16djOathwRHg7fNtdWQFpY4oC6vpcWf5rMOd5+qtCw+bYCnqVR8p6tsKkhVpbXMYQ7mVl8Q1v/Zu7u0+A1zp1BNbuTGfIXCHjE/dEfhh9eadcCdYtZRhGWNIo+mrXcK31ffz1fg3N/AT8ooyQ= +api: eJzVVU1v2zAM/SsGTysgxFmxk08LsG4NumFFm+2SBoVqM7Y6W3Ylulhm6L8PlL+TtsCOO0WmSOrx8ZFpgGRqIdrCxbPMa0mq1BZ2AhK0sVEVf0MEn5HiDG1AGQaWJNU2KPf+C4ewxZ2+0yuT2uhOB0EwublXSfDOkjmLjkIClbS+Bp9qtBS8u2kPnWdvLh8eMSbOf4NUG90/8XLSFiAIKCs03rROIII913A/QTX4VdLIAgkNE9GAlgVCBDP8IEAxEZWkDAQwMGUwgYhMjQJsnGEhIWqADhUHWzJKpyCAFOVsGOkN1gk4t+Mktiq1Rctx58sl/8xpv63jGK3d13lw0zmDgLjUhJrYXVZVrmKfNny0HNOMWJxzTsCH8/PTxD9lrpIWzYUxpfmHrFAZ5pVUiztBkirnkyIs7KlDXsazW6kP3/ee5zlVTgwWpQlTNOB2TvQ2aYw8TPj8WrYAwQkobPoW9d/QWpkiDMne6BKTEWz41o1vt/KbtX3r62qf7vx2Y5qR3pbd18v41NL30mO9y+Vmc32SsO1tgZSVrO0UyeuYMoggHJVrw2YmYxcOordonnvF1yaHCDKiykZhGOdlnSxkiprkQqpQVgpYrxbj2ig6+JDV9foKD5coEzQQbXdTh1vWStv9udtAvKzUFTIP3aytaspKo/60Le1mLWujuFCl96UP7zhZeXDB6noNAriMVtbLxfvFEo6X18yZZS5jL/P+bX8N4oiFoX4QgIXXOBDK4uN4wciq0lIh9SSf35XBZN5ve8pnsJpx4v7T9dr1kvA3hVUulZ9FT2LTSXE7WaIcER3v1C7XTkBWWuKApnmQFn+Y3Dk2P9VoWHA7Ac/SKPnA7d82kCjL5wSivcwtvsGtr5mH9ix4DXMvSs2KZIT8BQJ+4eHkf8DvpKyXfdP5rOIYK5pEn6xQno9hXL9cbMC5v6G8lJU= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Fetches the status of the evaluation. Args: -evaluation_id (str): the evaluation id -request (Request): the request object + evaluation_id (str): the evaluation id + request (Request): the request object Returns: -(str): the evaluation status + (str): the evaluation status +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-evaluation.api.mdx b/docs/docs/reference/api/fetch-evaluation.api.mdx deleted file mode 100644 index 26f247a023..0000000000 --- a/docs/docs/reference/api/fetch-evaluation.api.mdx +++ /dev/null @@ -1,957 +0,0 @@ ---- -id: fetch-evaluation -title: "Fetch Evaluation" -description: "Fetches a single evaluation based on its ID." -sidebar_label: "Fetch Evaluation" -hide_title: true -hide_table_of_contents: true -api: eJztV0tv4zYQ/ivEnHYB1U6DnnSqm6RdY/sIst5cHMNgpLHEXZnUkqOgrqH/XgwpyZJfyW6whwI92SJnPs7jm+FwCyQzB/Ecbp5kUUlSRjtYRJCiS6wq+Rti+BUpydEJKZzSWYECO2nxKB2mwmihyInp9ehBP+iJzVz8oIUQPcmlSsUbR/ZtLGY5ium1MCtB+QCMjFjxWR7lDqmyugXaGRj0vRymPe0RRGBKtP5jmkIMXma5k4AISmnlGgkte70FLdcIMQyshAgUe11KyiECi18qZTGFmGyFEbgkx7WEeAu0KVnZkVU6gwhIUcELO1PFNIW6XjCIK4126Fjv8uKCf4Yx/lAlCTq3qgpx1whDBInRhJpYXJZloRIPO/7kWGfbs6W07DqpcIJKz9nHRkWMtzwvNylLEWRLaz5hQs/I3wapRudJWiU16wSTCNfuULuO2gVprdz00O6Dvpimrg/HGXsd4J8eoQdp8Um5kPvXId81QK3NLfC3od512iyDjhy2GZB689fKE3gfrFvRVVEAU6+FmwWEJjstXiiA1yFyQBnTkaTKHbIx6J/mzYzXfT6KamjMudPvvXQdAVpr7FEfzCPzcVDDc1ijczJD6EHdeITDw+pdco5C+b1FP2OuKsgXV5ZZzCRhurR+cUiBYXya7mPsMjF6pbKX++KblU/hoEajHuRnZE4lFr0xkhGqMm0/Fgddy9irYASHQ6ap4oYji9uexaEPDu2qjyGJDgpCFP7nxnNqB1zoQtfDmnTs2jHuRBPZiYq7hohMzye0MsNlYhy9PDon6X4QmwjIkCy+I37rQSEJdbL5Pof0quYIRVfGrnkHuJp+IOWrsIW9Cqpi4pPTq7ivBfoYVD3QM9zxld9c63v9oH8Z79+lJy7C/vXV9fajne1r2gsPO3XNnvx0eXk4Bd3LQqVhdAqF980jUIokVXGm6xYmGey+4AZUmjBD2zD8eMH9bpLGywjWLjvX2/5ouk0Hdmak5GCI0AyfYQH7FY6ODsi+C2/b1k65cR3Cd+ywVuTdbHZ7ABhyu0bKDU/gGZIfuimHGMa7MduNt4OZu2aKoX1q5/LKFhBDTlS6eDxOClOlI5mhJjmSaixLBftvlInfFVcs6u8Ch0llFW083uR2+h4371CmaCGeL/oCH5hBgRNDsS4dslTv/TXaPBcmFeXGqn/aR4V/LuRBi91XemW8eteEvW2/yOQzal+OaF0w+2L04+jilDONgpjcTptCkIkvhNYOL8YlNwhXFygeBNa+CoBQrn/ebbCVpXG0lrqH5995vZfWvl3bXTH+h96ETRIJ/6ZxWUjlS9NHbNswc957AHI7i4fvwUUEub/I5rDdsm8fbVHXvPylQssEWzQ99JHTPd9Cqhz/TyFeycLhmTC+uWtK9604ZWpLQr2Bbg4CiIAnu/2nq+9MeUvzbSMzSRIsqad90Ei5Hrqi/e1mBnX9LyZMh+U= -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Fetches a single evaluation based on its ID. - -Args: -evaluation_id (str): The ID of the evaluation to fetch. - -Returns: -Evaluation: The fetched evaluation. - - - -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - - - - -
    - - testset_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testset_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - status - object - - required - - -
    - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - aggregated_results - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - evaluator_config - object - - required - - -
    -
    - anyOf - - - - - - - -
    - - settings_values - object - -
    -
    - anyOf -
    -
    -
    - - -
    -
    -
    -
    -
    - -
    - - - result - object - - required - - -
    - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - average_cost - object - -
    -
    - anyOf - - - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - total_cost - object - -
    -
    - anyOf - - - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - average_latency - object - -
    -
    - anyOf - - - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/fetch-evaluator-revision.api.mdx b/docs/docs/reference/api/fetch-evaluator-revision.api.mdx new file mode 100644 index 0000000000..94819468c9 --- /dev/null +++ b/docs/docs/reference/api/fetch-evaluator-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-evaluator-revision +title: "Fetch Evaluator Revision" +description: "Fetch Evaluator Revision" +sidebar_label: "Fetch Evaluator Revision" +hide_title: true +hide_table_of_contents: true +api: eJzNWdtu20YQ/RVhnhKAsVyjT3yq60vtJk0M3/pgCMaIHEqbLLnMXuyqAv+92AspUZRUSZYAP1kWZ87snJndHR5NQeNIQfwEFy/IDWohFQwiECVJ1EwU1ynEkJFOxs9UWzxLemGKiQIiKFFiTpqkBZlCgTlBDF3TZ5ZCBKyAGErUY4hA0k/DJKUQa2koApWMKUeIp6AnpQVRWrJiBBFkQuaoIQZjHIpmmluDZsm92xCld51CVQ0suCpFoUhZvJPjY/snJZVIVtqsIIY7kySkVGZ47zYYQwSJKDQV2ppjWXKWOBL635X1mc6tsZSWIs18hEQY7xSWzgpNI5Jzaz1zFhGklKHhGuLjKlpCkwtcTL5ljs12kJn1C0qGhbactuzXE1dFjUVhOAfLU5fKR4/tmIzgVcgfGRevBwj5d4BeiDjL8hDZLWR1gGx8hP3T1WYJpWYZJvsMcBog6whGj4XcG7hHqyJIUdOGqNb0k2Y5rYU+t4BVBDkphaO12Otg/gruVQQZd2fi6p3I1HNilBb50mBDIThhsTbateqdeYQqsnBN178FsWnzADo2ORZvAbxyAFUV1UZi+J0SvewIvnScdfFcYTS2V4Fpyuy5ivymxesGdatP1lakfNj+Zj695bEgYTIxHOWHS8P5n0oUn74ZXRr9ERaTtSBMU76hF0qJk7XELvhCh971barReXRa9D2R+lV8YUr/L62rkuy4b8fRvW/FMIzsdhx8RXfstIeG3aDO5yCqCBJJqCl9Rr3XY/DMw/ZOHVmmTA8R5MHDhiApcTpAkHMPG4LUdA0ne7zrarJ+n4TbruZrr1FqtpooNWF7jVLT1UR5IdkdJTdv18fgXkWguBntCnNnfe09tLdEA4e4eJu07+b9ZW8k2xXlQTKPwHdH4BZhTJi6d6vtTvpDUfL+GmLNbHJLGUkqktZpUy90sNWNchXKUNWvqZtW5B3dye9y0NmiBneBeDtRYlmyYtMBaJHibaatOpArvL3Ed+5+7121FZP3Or+9y15Z7Xwzo9QWiuQLS2gTdr3ytEUPBujKKUUZGxmvkh0i1lkrwEYvYbUMdo7uJaHzLrYNxlv9G1GtqqzfrycnXQ3uETlLXX69CymF3F2AS0kjc5dt6MpFAy6S1tNtdtXcXeEbeZb2F5FgPdjnarRMvVwiMHiT1aaOjN69fbqM85ly+uTy8qGDXUsyqun17K5O49zTt67AV/f3Nx1AX9t2US+tWNzrarPglICxsILyiLTTjvUYYuiXVv2k134jgqh+rYeq/nSpllyB3+e17uwmLRhrXaq430+4MOkRjqjQeISsjyVzW0tRYiTTE+dyenP9mSb+Zof4aTBv4O4a3zhts6ZmWLLPZCkMircXuNi/vhuC0u2nN0crKzLh3GtBzC2ud3pzDXMTOxwf/XJ0DIuUtoztDsHE7ZA6tnsM0QILTf4QAeVue4AmzH+bPbArK4XSQScKeGsquPA6HMjQ9I/ulxxZMTf1+uo+QaguzEm7yjVxqDBEEC//vWAQwVgobUGm0yEqepC8quzXPw1JW8VBUFqHltOnKaRM2c8pxBlyRZ31NqcLfLgNm+hjb3ZNtfOoK13YMtsF2v8ggh80WfkThzsrxnVPTYPtaZJQqedQOkebbb5md/xxcQ9V9R942M1s +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Evaluator Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-evaluator-variant.api.mdx b/docs/docs/reference/api/fetch-evaluator-variant.api.mdx new file mode 100644 index 0000000000..68c33fa925 --- /dev/null +++ b/docs/docs/reference/api/fetch-evaluator-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-evaluator-variant +title: "Fetch Evaluator Variant" +description: "Fetch Evaluator Variant" +sidebar_label: "Fetch Evaluator Variant" +hide_title: true +hide_table_of_contents: true +api: eJzNV01z2zYQ/SuaPSUziOV6euKpqj9qN2njiZ304NF4VuRKRAISDLBwqmr43zsAQUoUJdd2lJme/MHd93bfYoHdFTAuLCR3cP6AyiFrY2EqQFdkkKUurzJIYE6c5vfUWtw/oJFYMgio0GBBTMZjrKDEgiCBgeW9zECALCGBCjkHAYa+Omkog4SNIwE2zalASFbAy8pjWDayXICAuTYFMiTgXEBhycobdAGPPjUko6sM6nrqsW2lS0vWw50cH/sfGdnUyMqnBAncuDQla+dOjT5EYxCQ6pKpZG+OVaVkGhQYf7beZ7URYmW8PiwbhlS7xilGLkumBZmNUE+DhYCM5ugUQ3Jci6FIgbdcvp8HKfsca2OZ9e0el6sWnUXplAIvz1BAL5yAb9p8mSv97YAUf0XIyICG5RxTPiDDJEJGhrkKx3m/kNLep86yLnYGMNNaEZaPMl7Z0WmDUAsP15XmexC7WkTQ3BVYfg/gZQCoa9Ea6dlnSnlX/1wEzYZ4tYCCGPtRYJZJ3xWornu67qvlBmzbFz2mYtb/z2Z6u7kglSZ1Cs2rC6fU71aXb947rhy/hu1kPYhkKp7ohcbg8lFht3xhIO9jzn94Mb3H4Ij+n0T9U7+Tlv9T1n1JDtyfp9FtcxTjQ/IkBYYheN9a9K/8l0GdbUDUAlJDyJTdIz/x+sqQ6Q3LEM9+ltMGdjQJYrkq+xEkHxvYSJKRoh9ActbARpJWrtnygBd+K9avy3jlt3odlKVVq2NpBTsoSytXx2KVW7z0rN54X/96HCy8ME894QGJ89euJ+QZ7t0gVtfe7eeTk+Hc9gmVzMJUNjo3RpuXD20ZMUoVJoLmgdg2UDrtfX3OXTytt96UddbvdBOgr1RhF7sG3vV7YS0uaH2B7jcNYoxu/dddkq+H7buQV0Md7TYKvpa3UXd/GmeNfI/V9/L29noA2NS2X9QLv12MBuM8hPEj134BWVCzbHAOCYwrQw+Svo27ycuO4whtx6tdu0cNAiyZh3ZNcUZBAjlzZZPxOFXaZUe4oJLxCOUYKxnawFLqjORlcJlcX72l5SVhRgaSu+mmwY0/Y82p6Zt1BcNKviWvX1yQJo5zbeQ/zVGIm1HeeHmBZDnXwb2dckNwo8n1FQjwaTTKHR/9dHQM23r2jH17YBrao+UOn0FsqdDlDwKoCL0BTFj8sv7gI6u05TiaRrz95dt6gKMWTH/zuFIoQw+EIFaxtHcQSwsb65H1KcfygoBk53I5FZBryx5itZqhpY9G1bX/91dHxpdwGlFmXtC7FWTS+t8zSOaoLA2i7e4VePUhts/r0XoU6mfRlrlchmCV83+BgC+03LcOh0sib8/TKppO0pQq3gAZ3Gn+4HV98dv5LdT1v/I/Z7g= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Evaluator Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-evaluator.api.mdx b/docs/docs/reference/api/fetch-evaluator.api.mdx index 6b5a20de3a..cc07cf7275 100644 --- a/docs/docs/reference/api/fetch-evaluator.api.mdx +++ b/docs/docs/reference/api/fetch-evaluator.api.mdx @@ -5,641 +5,67 @@ description: "Fetch Evaluator" sidebar_label: "Fetch Evaluator" hide_title: true hide_table_of_contents: true -api: eJydVU1v2zAM/SsGTxsgJFmxk0/LumwNumFFm+0SBIUqM7Fa21IlOltm+L8PlD/ifGHATnGsR+rxPZKugOTGQ7yE2VZmHlYCjEUnSZtinkAMaySVPuJWZqUk40CAlU7mSOg4rIJC5ggx9IhHnYAAXUAMVlIKAhy+ltphAjG5EgV4lWIuIa5AFrvv65CFdpazeHK62ICAtXG5JIihLHUCtThG1CsBpCnjV7Pu6mieQM0nDr01hUfPl1xNJvyToFdOWy4MYngolULv12UW3bdgEKBMQVhQoGZtplXQYfzsOaYaELeOVSLd3KBM2QS1HHVBuEHWqqN4HRC12Mt0tnzz9IyK4ExpQwmKMsugXtW1OInbS71sWZ3Tqa+4rjnJ+6urU4F+ykwnofxo5lww/j/VSZCkzvhJE+b+FJAZdXB6qSsGEnQK16u9CNI5uRto99U0BFn23G8G/vRd1kG/ofdyg9AnuwwNYkQLPv2XAVxXc3WLG3ixl7dR93IZnxr5zl3WQW4Wi7uThI23h6Z+5mGOZoNhzpFSw3O+QQqzTSnEMLYOtxp/jft29eNqOOE1CPDott0SKF0GMaRE1sfjscpMmYzkBguSI6nH0mo4pjINp9E1Q8M0e1Sl07QL+aZ381vc3aBM0EG8XA0BD9xnTeccwnrTpNW3yBq2u2laUmqc/tO0Q7uc0iaKRdLF2oTwVs+W20epXrDgbcZ1NrQno3ejyaVi2oBoejdvx0WqMC4djwADcSRXLxQIwDzMChDK/MP+gFla4ymXxSDfqZ0HtHo9CH/T2GZSh1kIl1et1UtorYbBbvIgID5Y6CsBqfHE+Kp6kh5/uKyu+fVriY49WwnYSqflEyu4rCDRnp8TiNcy83hCrV8m8Oa+nZm3EYjzlDtfCzaVefE/EPCCu+NPT9gIadc4VQuZKoWWBsEnC4w7rB+GL7MF1PVfgqRuyw== +api: eJzNV01z20YM/SsanJKZjaV6euKpqj9qN2njiZVeNBrPioTETZdcZhfrVtHwv3ew/BApSq7sOjM9SSKBB+ABu3jaAsm1g2gOV49Se0nGOlgIMAVaScrktwlEsEKK0wdsLEBAIa3MkNCy7xZymSFE0Fo8qAQEqBwiKCSlIMDiV68sJhCR9SjAxSlmEqIt0KZgX0dW5WsQsDI2kwQReB9QSJFmgzbB0W0CZblgTFeY3KFjmPPJhD8SdLFVBacOEdz7OEbnVl6PPtXGICA2OWFObC6LQqs4VDr+4thn20mtsMwDqSpCbHzlVGescsI12k6KF8FCQIIr6TVBNCnFjpQQL998XAXK+tgrHdpw3EC5h9g7MlnfqE5laYxGmUMp2ke51xqYpSa5Wze6qBBKwXBH8noeYtuUGjT1mcz/C+BNAChL0RiZ5ReM6dAcXAfOhnilgAxJ9rOQSaK4y1Lf9Xgd5FnPYQe26XMvUrbsP+mWdzgWxMrGXkv75tpr/asz+buPngpPb2G/WAZRhNmJXtJauXmS2D1fGND7lPNvTCZ7DEb0/0Tq7+aDcvSvtB4rcuD+PI5m1SjWF+FJDAxTYN9S9K+wl0FddiBKAbFFSZg8SHoKsHP1JpLwHamQz/EoFxXsaBrI8kXyPYJ8rmDrIAlq/A5BLivYOkhD13LDe+y0OGFZnULWz5uwv3Z8vWqUhq02SkPYq0Zp6GqjOO3XL53Ve/bl7fFq6QV9cMICObQ7TvFrpURZsv2P5+dD5fGH1CoJumJ0ZW3QTC+UHQmSVDpogGol7BtoE/fePuf2XZR7W2RX7gdTJci9ydz6kFTbbQjn5Bp3V+Zx00DGaMZvD3G9k4nzUFcVurbrtHhHb8Xu8TIuK/qeauzNbHY3AKx622/qNevgjuYJQiM1LJHXSEEWUwoRjAuLjwr/Grcay423XXFcggCH9rHRz95qiCAlKlw0Hsfa+ORMrjEneSbVWBYqzLfD2FtFm+Ayvbt9j5sblAlaiOaLrsE9j1I1HH2zti+yUO+RaaqV+9RTaqz6VnW8lu5p5cU8qHxlgntN2TQkN5re3YIALqMiaHL2w9kE9mnrGfMpkHE4BU3s8BrEHgtt/SAAs3AEgFBmP+1ecGaFcVRrzhpv2KW9jVpzQPg3jQstVRjxEHxbd3AOdQeho98dCIh6f3EWAlLjiO2326V0+NnqsuTHXz1a7tNCwKO0Si6ZtfkWEuX4ewLRSmqHg9TaOwLefKqPwtvRTsj0U256mXMjOS/+BQL+xM3+n7Fw0NNmWLa1yTSOsaCO8+Be4qlqZ/yXqxmU5T/tE9lb sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fetch Evaluator - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - evaluator - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-human-evaluation-human-evaluations-evaluation-id-get.api.mdx b/docs/docs/reference/api/fetch-human-evaluation-human-evaluations-evaluation-id-get.api.mdx index be473f2825..41250d4702 100644 --- a/docs/docs/reference/api/fetch-human-evaluation-human-evaluations-evaluation-id-get.api.mdx +++ b/docs/docs/reference/api/fetch-human-evaluation-human-evaluations-evaluation-id-get.api.mdx @@ -5,430 +5,73 @@ description: "Fetches a single evaluation based on its ID." sidebar_label: "Fetch Human Evaluation" hide_title: true hide_table_of_contents: true -api: eJzVVk2P2zYQ/SvEnBJAsTeLnnSKm90mRtpm4XVy8RoCVxpbTCSKIUeLuoL+ezGkZEt27A2SU0+2pDePM2++2ADJrYN4Be/rUupXt0+yqCWpSjtYR5ChS60y/Awx/IGU5uiEFE7pbYEC92jxKB1motJCkRPzm8mDftAzu3XxgxZCDJCJysQLR/ZlLJY5ivmNqDaC8hEZVWLDZ3mWBVJtdU/k3Tx4GUg8GLMBxQQiqAxa/zDPIAaPSXI2TwbeHL9wSTLyNUm2SBCBkVaWSGhZrAa0LBFiGEEhAsUyGUk5RGDxW60sZhCTrTECl+ZYSogboJ1hY0dW6S1EQIoKfnEIS8wzaNs1kzhTaYeO7a6vrvhnnJT7Ok3RuU1diEUHhgjSShNqYrg0plCpp51+cWzTDHwxlmUiFU5Q2SX/2KmI+ZLLuJkxImCNrb5gSs/g7wKqsxloGgx+SLAlQ9oInqRVUvOJISDC0p1StFH/QlordwPKz8FezDM3pON8/xrh357hQOkSi0/KhdL5JWonFh1T73XP/HO0i701Y9CRw+cyuAyoLoO9TWiS561YGrZzJKn+jqsHi/uAaCNILUrCLJF0Cf82oMSM2KY22Q/YfAoob3MQqXrkEh219Qp8z3f9MCr20yoeV+ZxYZ2rimEqR7k4Enmv3UiYUcTrQ4RHMxTalgP97fr6dLp8loXKQofdWlvZnx8tGZJUxaggx4CiSkdfpd593Phhe1y4+zdKE27RQrs+X81/VmkXZQSl217K/F/onNzioTUuTB4Woxs6zxQJxxWO7nDrYQf38gZ1z4dxE+T73mH7tC6XdyeEIbclUl7xFuyXGeUQw9Qvv1eD5TdtRhut5cJC+9RvvdoWEENOZFw8naZFVWcTuUVNciLVVBoFx1eGmf8q3jIUeKE5TGuraOf5ZnfzD7h7jzJDC/FqPQTccx2FyhjD9kmRRn1A1qhbxrOa8sqqf0O6u2WcBysWQelN5c37NRV8+12mX1FzS3Gcwe2ryevJ1blgOgMxu5t37SBT3w69Hx7G3TeSay8UT4fS9wIQyvLN4QN7aSpHpdQDPn/tChcfMejaI++aQ2P+3y5qXT4J/6GpKaTyverFa7pSXcFJqUIE8fj6tY4grxwxumk4zE+2aFt+/a1GyxW37ubsI+d/1UCmHP/PIN7IwuEFRV8suo5+Kc453Fel3vlxXtT8BBF8xd3JTdEPrLyv+6bDzNIUDQ2sT+YrN8i+l9/dLqFt/wPfwg8T +api: eJzVVk1v2zgQ/SvEnFpAtbPBnnRaY5Ntje5H4Li9OIbASGOLXYliyVGwXkH/vRhSsiS7cYr21JMt6c3jfLyZYQMk9w7iDbyrS6nf3D7JopakKu1gG0GGLrXK8DPE8AdSmqMTUjil9wUKPKLFo3SYiUoLRU4sb2YP+kEv7N7FD1oIMUImKhOvHNnXsVjnKJY3otoJyidkVIkdn+VZVki11T2Rd3PwMpB4MGYjihlEUBm0/mGZQQwek+Rsnoy8OX3hkmTia5LskSACI60skdByshrQskSIYQKFCBSnyUjKIQKLn2tlMYOYbI0RuDTHUkLcAB0MGzuySu8hAlJU8IshLLHMoG23TOJMpR06tru+uuKfaVHu6zRF53Z1IVYdGCJIK02oieHSmEKlnnb+ybFNM/LFWE4TqXCCyi75x05FzJdcxi2MEQFrbPUJU3oBfxdQnc0op8HgmxK2ZkgbwZO0Smo+MQREWLpzijbqX0hr5WFE+THYi2XmxnRc7x8j/NszDJQusfikXJDOD1E7seqYeq975u+jXR2tGYOOHL5UwXVAdRXsbUKTvGzFqWE7R5Lqr7g6WNwHRBtBalESZomkS/jfA0osiG1qk32DzYeA8jZDkqpHluikrTfge77rh4nYz1U8VeapsJ5TxbiUk1qcJPmYu0liJhFvhwhPZii0LQf66/X1+XT5KAuVhQ67tbay3z9aMiSpiokgp4CiSidfpT78s/PD9lS4xzdKE+7RQrt9Xs1/VmkXZQSl21+q/F/onNzj0BoXJg8noxs6L4iE4wpHd7jtuIP79IbsPh/GTUjf1w47lnW9vjsjDLUtkfKKt2C/zCiHGOZ++b0ZLb95M9loLQsL7VO/9WpbQAw5kXHxfJ4WVZ3N5B41yZlUc2kU8M5ymNZW0cGbLO6W7/HwDmWGFuLNdgy4Z6mE4k9hx7xLo94jp6Hbt4ua8sqq/0NFu32bByuOU+ld5c37TeSdE4u7JbcYWhdUfTX7ZXYFp9ebCZhVLlOv8v5s/5mbapKFY/zc9KWXOBDK8rfhA3tmKkel1CM+f5sK9xkxasYTr5qh3362+1dXQ8L/aG4KqXwL+uQ1nQI3cKZAiCCe3qq2EeSVI0Y3DYf5wRZty68/12hZZdtufD5yzTcNZMrx/wzinSwcXsjoq1XXqK/Fcw73StQHP6WLmp8ggn/xcHYB9HMo77XedJhFmqKhkfXZ2OSmOLbo29s1tO0X4FkAhA== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Fetches a single evaluation based on its ID. Args: -evaluation_id (str): The ID of the evaluation to fetch. + evaluation_id (str): The ID of the evaluation to fetch. Returns: -HumanEvaluation: The fetched evaluation. + HumanEvaluation: The fetched evaluation. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - - - - - - - - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-human-evaluation-scenarios.api.mdx b/docs/docs/reference/api/fetch-human-evaluation-scenarios.api.mdx index da17e7a15f..c8e103e27d 100644 --- a/docs/docs/reference/api/fetch-human-evaluation-scenarios.api.mdx +++ b/docs/docs/reference/api/fetch-human-evaluation-scenarios.api.mdx @@ -5,668 +5,76 @@ description: "Fetches evaluation scenarios for a given evaluation ID." sidebar_label: "Fetch Human Evaluation Scenarios" hide_title: true hide_table_of_contents: true -api: eJztVsFy2zYQ/RXMnpIZRnI9PfFUNVZqTdJYY6u+yBoNTK5EJCTAAEsnKof/3lmQlEjJkhzn2pNl8O3D4u2+BUoguXYQzuG6yKR+N36SaSFJGe1gEUCMLrIq5/8hhA9IUYJO4BYkXIRaWmWcWBkrpFirJ9RdwORq8KAf9Miuiww1ufBBCyE6iKWKxRtH9m0oZgmKyZUwK0EJdkmY+3uiokSQESvOYrexp7+VymHLfT2bTcc/IvRph2JyQKec0IbEyhQ6Fpx2FKFzvByjVhjXlEiF1S3nJ+VovhPnrtl9EYqRSJUjTvo5WQYQgMnR+uVJDCH49JcJq73sqLCNgAByaWWGhJYLU4KWGUIIPckgAMUlySUlEIDFb4WyGENItsAAXJRgJiEsgTY5BzuySq8hAFKU8sK4U6IYqmrBJC432qHjuMuLC/7Tb4C7wiu1KlJx24AhgMhoQk0Ml3meqsjTDr84jikPc5HWyg0fgDDze+WWJSJV76xiz6Q3Nyt//P4JqmC7oos0BU68PRMfJNjT6eUSsKJ5QXUOR1JjwLKux3HeCaPEZ0a1pEve6gVB9x5WVUGLM49fMKJehefdNPr8HS28nQ8b1m8DO/62Fr00HANMQWfUeJJWSU1nVL6vUY3EbUzN/pK4mxp5TpNOMge7nJel3eSoLjeNGnwEQ/jaDr3n2Ir9aexLSZQmXKM9yXvn+Sr2orUY0VJq9x3ta9N8X7OIUc3CXeyWudIan/fmozEpSn3anE5Ma4YqAP0LGn72Gp5ph8Nh6cu3a+vzPeG7oYG00074K1D4CNGZH3fb6V1VnNrvl5eH0/Nepiqu8WNrjf2Z0dl3XowkVXrCmqmJel9/ps0Wx13wydQJsjSZW5+y79/onFzjzlIn5jCLIWb89VxZ+Vz11g2u662tvLW6x49xVcv33GbbnpjNpgeEdW0zpMTwTb5G8pc1JRDC0N/o73Z954Zlrwmr4ZHb3qF9aq/6wqYQQkKUu3A4jFJTxAO5Rk1yINVQ5gr232Qj/1W8Z6i3icOosIo2nm80nXzEzTXKmIfBfNEF3HFz1e3Sh+0u6lx9RBaueYGMCkqMVf/WPdC8QJI6qvJX3cr48EbEJrc/ZfQVtZ/LaF2d9sXgt8HFscM0AWI0nTQekZH3SJuHh0GwJ9dWKAgAM28QIJTZH7sPnGVuHGVSd/jOmnovz3Ln2//fxK97EzcdRviDhnkqlR8pvpxl46g5HDgKAgj3B/uzploEkBhHTFKWj9LhPzatKl7+VqBlayyaR8IjN+q8hFg5/h1DuJKpwxMFf3PbzKO34tg5WvvojX+L+JcfQABfcXPwjvfjNmkNWjaYUcSl6kQf3A7s5O0k+ms8g6r6Dzy/y74= +api: eJztVsFy20YM/ZUdnJIZRnI9PfFUTa3WmqSxxlJ8kTWaNQmJm5K7zC7oROXw3ztYkhIpWZLjXnuyvAQegAc87JZAcuMgXMBtkUn9Yfws00KSMtrBMoAYXWRVzv9DCH8gRQk6gTsj4SLU0irjxNpYIcVGPaPuGkxuBo/6UY/spshQkwsftRCiY7FSsXjnyL4PxTxBMbkRZi0owS4IY39PVJQIMmLNWewDe/h7qRy22Lfz+XT8I0KfdigmR3DKCW1IrE2hY8FpRxE6x8cxaoVxDYlUWN1iflKOFntyZk30ZShGIlWOOOmXaBlAACZH648nMYTg018lzPaqw8LOAwLIpZUZElpuTAlaZggh9CiDABS3JJeUQAAWvxXKYgwh2QIDcFGCmYSwBNrm7OzIKr2BAEhRygfjTotiqKolg7jcaIeO/a6vrvhPfwBmhWdqXaTivjGGACKjCTWxuczzVEUedvjVsU95nIu0Vm65AMLMx8otU0Sqjqxij6S3d2tffr+CKtid6CJNgRNva+JCggOeXk8BM5oXVOdwIjU2WNX9OI07YSvxma1a0BWHeoXTgzerqqC1M09fMaJehxfdNPr4HS68nI8H1oeBPX7bi14ajg1MQRfYeJZWSU0XWH6orRqKW58a/TV+d7XlJU46yRxFuUxLG+QkL3cNG1yCIXzrhD6wb8X6NPa1IEoTbtCexZ15vIq1aC1GtJLafUf71jR/r1HEqEbhKXarXGmNL2vzyZgUpT4vTiemNUIVgP4PHH72HF4Yh+Nl6du3H+vLM+GnoTFpt53wV6DwHqKzP2a77V1VnNqv19fH2/NBpiqu7cfWGvszq7OvvBhJqvSMNFMT9b7+zJgtT6vgk6kTZGoytzkn37/QObnBvaTO7GEmQ8z566W2cl116Mauq60dvTW7p8u4qel7KdhuJubz6RFg3dsMKTF8k2+Q/GVNCYQw9Df6h/3cuWHZG8JqeOK2d2if26u+sCmEkBDlLhwOo9QU8UBuUJMcSDWUufJKcBgVVtHWu4ymk4+4vUUZs94Xy67BjOennoi+2f4uztVHZG6aR8aooMRY9U/d5uaRkdRelb/N1sa7NzyNfHJiNJ3w2kXr6lG/GvwyuILD92PPmEdfRn7029j+MwQHLOzqhwAw83MPhDL7bf+BM8uNo0zqDt5FrR7kV+7l+P9T921P3WaqCH/QME+l8pvCt7NshLKAI6FAAOHhvn5RK8sAEuOIQcrySTr8YtOq4uNvBVqWw7K5+594OBclxMrx7xjCtUwdnmn4u/tmzbwXp+poJaO3/onhH3QAAfyN26Pnud+iSSvKsrEZRdyqjvfR0mf17hbMn+M5VNW/asW9Lw== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Fetches evaluation scenarios for a given evaluation ID. Arguments: -evaluation_id (str): The ID of the evaluation for which to fetch scenarios. + evaluation_id (str): The ID of the evaluation for which to fetch scenarios. Raises: -HTTPException: If the evaluation is not found or access is denied. + HTTPException: If the evaluation is not found or access is denied. Returns: -List[EvaluationScenario]: A list of evaluation scenarios. + List[EvaluationScenario]: A list of evaluation scenarios. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - - - inputs - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • - - -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - - - outputs - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • - - -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - vote - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - score - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - correct_answer - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - is_pinned - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - note - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-invocation-by-trace-id.api.mdx b/docs/docs/reference/api/fetch-invocation-by-trace-id.api.mdx new file mode 100644 index 0000000000..3c93f919bb --- /dev/null +++ b/docs/docs/reference/api/fetch-invocation-by-trace-id.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-invocation-by-trace-id +title: "Fetch Invocation" +description: "Fetch Invocation" +sidebar_label: "Fetch Invocation" +hide_title: true +hide_table_of_contents: true +api: eJztmktv2zgQgP+KMacWUONssCefNpu222zSTZC6vQSGQUtjiw1Fqny46xr674uh3n4ojpMCxUInw9I8yG84Q5rjNVi2MDC6h0u5VCGzXEkDkwBUitp/u4xgBHO0YTzllch0tppazUKc8ggCSJlmCVrUZGkNkiUII2gIcAkjSJmNIQCN3xzXGMHIaocBmDDGhMFoDXaVkp6xmssFBGC5FfRgTIYGlxFkWVBZNymTDePfHOpVy/qcCdMyz+TqZu4H2HZERosn0gkB2aR2/SllMvc8IdsmVdKgIWtnp6f0EaEJNU8JCom7MERj5k4M7gphCCBU0qK0fgxpKnjOcPjVkM66McJUE3bLcw+hcrlSMTguLS5QN8BceIkAIpwzJyyMTjPCUUapPekN4xqZxWjKbBeaAOZKJyQDEbP4xvIEO3ld5GYH5xayAFwa/Qwnn3OzhZMIBf4EJ29zs4WTEtdsRWvuMD/O8eggWH+u/BKreb2ol5JW5aUE9qJeSlyVlzI/n5t4QV1HjjRVl48AlOYLLvPELXIGQmesSiitNmaP0iVUGiuB2CVMQgDMWQXNwfIkFej93OQOsgAeuIzajlgUq7DDT/kel0xQVRVstcfLFdmmZRkzKVFsuEl5hxNlRQoBfMcZBGCiB5pOyvf4uSjsUxT8PtGMAIsiTmWGidtWaTkgRmUpa4UtmbWfzJQSyKR/tNsXhFyHTjD96h91zY392yj55sbZ1NnXNQI1+4qh7VwiW+p+xgerj4lNFkCClv26jN47IR4lxC0mB2oxrdmqk8uG7tOgfiSYVK5YAbVH2YWyUYpZDk7jHDXKMMfU3v7z41LH+WCJ2mwdIQ6vuV8KddoIhFscvQuQLp1pXmyfyk+Re9ndlcx2GMmCHNt0yTRn0vb4jsOnccm34fT8Hudn0ViD/cI7Flyfuc8F2OfusQQbv/x7eM+A1+fwS0Ds8/hYivTj3DGrdI/uaHR9Dj8fYZ/BzznLhMxgT+5p5Dr0GleGd/WtQxaA4PLhwGvDdgB+xevjDgDXXD7svt4qboH+X/N7/L7q2gd+l8m6Q3ef3+21bqrKJdNcs3VD62mrslasmnFZRgq/n51t9+6+MMEjLz14p7XSxzfuIrSM+0v5PcEXKmy9fcoV5mQzCg3mNSZIzKKrpfoRjWELrEO6X9TDGIzp7WPhFL59Qa4LuWZJrPDmdPdP422OryuyH8bj2y2DeWzbQX1PjetBYwX5S/pYUVN7gdb3rm0MIximtKHi92HdPjXDdZlbGfVKUC/LDrfTAkYQW5ua0XAYCuWiE7ZAadkJ40Pqp1AuGAyd5nblVc5vL69w9QFZhBpG95OmwCdaSPnSaItVUWEpv0KCVHS/z52NleY/ykn5Hnica2W+CTxXXr0Adu4HNzi/vYSg3tzg9OS3k1PYhNYSphxgoc+B0rd/DcEGhWr+1GxKfAKARZb8Ub+gkaXKWOqi1fZ2xKg1ngqCxX/tMBUs76957+sifvdQxA+aDXAqJ6OqPk4CiJWxJLxez5jBz1pkGT0ubsPv1xBxw2ai8feBB1y1/mxA5y8aiw+wP8bOCPAu1Y1JVMUEXt0VOfN6ULcA2pMrwy5XTZ/lcKop+WoQl2tqXbw+D0NMbUNxq3jR4Ks8+OvdGLLsPzp5kOg= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Invocation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-invocation.api.mdx b/docs/docs/reference/api/fetch-invocation.api.mdx new file mode 100644 index 0000000000..76f28e4ff6 --- /dev/null +++ b/docs/docs/reference/api/fetch-invocation.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-invocation +title: "Fetch Invocation" +description: "Fetch Invocation" +sidebar_label: "Fetch Invocation" +hide_title: true +hide_table_of_contents: true +api: eJztmt1v2zYQwP8V455aQI2zYE96Wpa2q5d0DRK3L4YR0NLZYkORKj/ceYb+9+Gobzt2HCcdikFPiSXeHfk73pG+8xosWxgIJzCSSxUxy5U0MA1AZaj9p1EMIczRRskdr4dAABnTLEWLmqTXIFmKEILVLMI7HkMAXEIIGbMJBKDxm+MaYwitdhiAiRJMGYRrsKuM5IzVXC4gAMutoAdjUjQYxZDnQa3dZEw+RTmTq09zP72uGVJZPpFOCMinjeHbjMnC7pRUm0xJg4a0nZ2e0p8YTaR55jGEcOuiCI2ZOzG4KQdDAJGSFqX1c8gywQtqw6+GZNatGWaaQFteWIiUK4TKyXFpcYG6heXCjwggxjlzwkJ4mhOM2i+dRW8o18gsxnfM7kMTwFzplMZAzCy+sTzFvbwuCrWDcwt5AC6Lf4SRz4Xa0kiMAn+AkbeF2tJIhWu2oh13mB3neHwQrN9Xfos1vF7USkWrtlIBe1ErFa7aShWdzw28oMkiR6pqkkcASvMFl0XgljEDkTNWpRRWG6tH6VJKhvWAxKWMsh1zVkF7sjzNBHo7nwoDeQD3XMZdQyxOVLTHTvUel0xQThVstcPKJemmbZkwKVFsmMn4HiPKigwC+I4zCMDE97ScjO+wc1HqJy/4k6HtARbHnNIME9ed1HKAj6pU1nFbOus+mSklkEn/6GFbEHEdOcH0q7/UFTf2T6Pkm0/OZs6+bhCo2VeM7N4tsiXuV3yw+JjY5AGkaNnPy+i9E+JRQtxieqAU05qt9nLZkH0a1I8Ek9IVK6H2KPehbKViVoDTOEeNMiowdY//bw71at/9YInabF0hDs+5X0pxOgiEWxx9CpAs3Wle7Jwq7pA72d1UzB5QkgcFtrsl05xJ2+M7Dp/GJd+G0/N7nJ9FYw32G+9YcH3kPhdgH7vHEmx98+/hPQNeH8MvAbGP42Mp0pdzx6zSPbqj0fUx/HyEfQQ/5y4TMYM9uaeR2yPXKhneNFWHPADB5f2BZcOuA37G8vEeAFdc3j9c3iqrQP+v9T1er7ryjn9IZdOgmxS1vU6lqtoy7T3bNLSetisbwboZl+ck8OvZ2Xbv7gsTPPajB++0Vvr4xl2MlnFflN/hfKGiztunlDCnm15oMW8wQWoW+xqqH9EYtsDGpbuHehiDMb19zJ3Cty/IdDmunRJrvAXd3ct4W+Db59kP4/H1lsLCt12nvqdW9WDUblWnaBNFbewFWt+5tgmEMMzoQMXvw6Z9aobrKrby4boM2Jy6JqiXVafbaQEhJNZmJhwOI6FcfMIWKC07YXxInRWKCoOR09yuvMj59egSVx+QxaghnEzbA25pSxWbpDus9g/L+CUSrrILfu5sojT/p1qe74UnhVTu28Fz5cVLdOd+coPz6xEEzTEHpye/nJzCJr7OYIoGFvloqGz71xBsUKjXT22n1IcCWGTpb80LmlmmjKV+WqPvAW915lNDsPi3HWaCFZ02b31denICpSeh3QqnxBK2fo4QVvl3GkCijCW59XrGDH7WIs/pcVkin0wD8NfVGeGbrCHmhv6PIZwzYXBrinXSgFc3ZWy8HjSl/u7UK6dK8ijd7egTBHCPq/bvJygR/Id2Kzg+2STVRl2Xb8+jCDPbktvKjbSj6zD7490Y8vxfxkmrXg== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Invocation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-legacy-application.api.mdx b/docs/docs/reference/api/fetch-legacy-application.api.mdx new file mode 100644 index 0000000000..f1e3c0612f --- /dev/null +++ b/docs/docs/reference/api/fetch-legacy-application.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-legacy-application +title: "Fetch Application" +description: "Get an application using workflow data stored in legacy format" +sidebar_label: "Fetch Application" +hide_title: true +hide_table_of_contents: true +api: eJzNWN9v2zgM/lcMPm2A1/SKe/LT5fpj7W13K9Z2L0VQMDaTaJMtT6LaywL/7wdJdmInTS5JWyBPiW3yI/WREinOgHFsILmHfllKkSILVRgYxJCRSbUo3TMk8JE4wiLChVBkjSjG0ZPSP0ZSPUUZMkaGlaYsEkUkaYzpNBopnSNDDKok7fWuMkhgRJxOHoLMQwsUYihRY05M2nk1gwJzggRaMg8igxiE86pEnkAMmn5aoSmDhLWlGEw6oRwhmQFPS6dtWItiDDHU7iRgrUdhwdIJtBYfXWVQVQOHakpVGDIO6OT42P10SbmxaUrGjKyMvtbCEEOqCqaCnXjL695343RmLedK7UhhESykygal2mdRMI1Jt5w89RIuMiO0kiE5ruK2CW+xmH4ZeeK66CPpw7xeQJiH1BpWeVeodmaolCQsoIrnrworJTieGveuTHQaEKrYwdEjSous9EsQz+cgAXRicyxeAnjpAaoqboTU8Dul3KL5s8/KVkZceO5WcasYcmLseoNZJpwSyusOvyv+1jnZgm0i3rGUD7tv2st83hakQqdWon53YaX8y6jiwxfLpeX3sLxoByKY8i21UGucbiR4SRdWaN6k/Lcj02mspOohkfqP+iwM/y+t6xa5or4bR7chFetjcSsGVl1wutXSCb8f1FkLoooh1YRM2QPyJsDWMZwh0wcW3p/1Vk4DbNT3ZNkyewsjdwG2NpKRpDcwchZgayMNXcOpq2nb2fGFaxuy/pz6Srbg61WtNGzNrTSEvaqVhq65FSPteN9cvXG6roq8mnv1ynG5BnQr6yNp84It9q1Wd5HUYl+UOy0CgtwfQTqECWHme7Pdzue3ouTwEmJDZ/GVRqSpSDtnROPoYKc6cFmHoWq63W0jckCV9CDbkx1icFMT7/pALEtRbNu2LFO8S4/UGPKBd6V37+wP2lX3xnWoXddB5sp65esFpS5QpB9FStuwGy6wO+RgDV35e+dIjK1+5i74OrZOOwZ2ukKdoW/tV25Qu2C8VH9+Ra8qp/f7ycnqjf4bSpGFMcC51krvf53PiFH4Yltn5bKAVGnn6y67qlUrQiK3lq3mbEFuxs8NQRb3LWNwTIvMXi/qyYhu3dfnOF8MYO79uoLpWq5duOf0BnbXL+Ms0LcpwJe3t9crgCG2OfFEuTnTmNiPlHgCCfRKTY+Cnnph7tRrhdP0Zt0JUwVh2zZjKN84wYS5NEmvl0plsyMcU8F4hKKHpfA7xVBqteCpV+lfX32iaSjUkNwP2gK+dIQ86IrNQ4Cl+ESOkXoA1rc8UVr8asZkfv4VmjHPkihGyqs3Ey3vXNS/voJ40W/B8dFvR8ewPN3rCLuEx9QnfGPbf4Z4iYX5+iEGyn22AxPmfyw+OM9KZbge2tR4F276F/U7Y7+ly+h817188lgTyvQv90qJomg1wiEz7qHODIghaENnsGYghmRpAjmIYaIMO+XZbIiG7rSsKvf6pyXtMmAQwyNqgUMXj/sZZMK4/xkkI5SGNiz53dd6P72P1vnfZEnhXHUzMvcEMfyg6eq01J8XkyYRZ7VQP02p5Jb6yvHmMna+lT6e30JV/QeWQaHB +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Get an application using workflow data stored in legacy format + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-legacy-evaluation-results.api.mdx b/docs/docs/reference/api/fetch-legacy-evaluation-results.api.mdx new file mode 100644 index 0000000000..5d704549b3 --- /dev/null +++ b/docs/docs/reference/api/fetch-legacy-evaluation-results.api.mdx @@ -0,0 +1,78 @@ +--- +id: fetch-legacy-evaluation-results +title: "Fetch Evaluation Results" +description: "Fetches the results of the evaluation" +sidebar_label: "Fetch Evaluation Results" +hide_title: true +hide_table_of_contents: true +api: eJzVVU1v2zAM/SsGTy0gxFmxk08LsG4NumFFmu2SBoFqM7Y6W3Ylulhm6L8PlO3YTtYCO+4UWeLH4+Mj0wDJ1EK0gesXmdeSVKktbAUkaGOjKv6GCD4hxRnagDIMDNo6JxuUe/+JR78H/aAXJrXRgw6CYPSwU0lwYclcRicegUpaW4PPNVoKLlbtobPsr8vHJ4yJ46+QaqP7FDs6VLiLgt0I7Q4ElBUan2CZQAR7Br/LMZXxYTdC1RUCAippZIGEhploQMsCIYJJASBAMROVpAwEMDJlMIGITI0CbJxhISFqgCFBBJaM0ikIIEU5Xwz8BssEnNtyEFuV2qJlv6v5nH+mvN/XcYzW7us8WHXGICAuNaEmNpdVlavYhw2fLPs0AxbnnBPw/urqPPAPmaukRXNtTGn+ISpUhvkl1eJOkKTK+aQIC3tukJfx5FXqw7e953lKlRPHG6UJUzTgtk70d9IYeRjx+aVsAYITUNj0Leq/orUyRTgGe6NLTEaw5lc35G71N2n7xtfVpu7stkOYgd6W3dfL+NjS97dkvcnNen13FrDtbYGUlazxFMnrmDKIIByUa8NmImMXDqq3aF56ydcmhwgyospGYRjnZZ3MZIqa5EyqUFYKWLAW49ooOniXxd3yFg83KBM0EG22Y4N7Fkvb/qnZkXlZqVtkIrphW9SUlUb9bnvaDVvWenGlSu9L796RsvDggsXdEgRwGa2u57N3szmcrq+JMetcxl7nfW7/DOKEhWP9IAALL3IglMWH4YGRVaWlQupRPL8tg9HAr46cT3A1w8z9bxu26yLhLwqrXCo/hp6+plPhZrQ/ufLodJ32QtwKyEpL7NE0j9Lid5M7x9fPNRrW2lbAizRKPnLnNw0kyvI5gWgvc4tvsOqr5YG9DF4D3etRsxgZIn+BgJ94OPsP8Pso6xXfdDaLOMaKRt5n65NH4ziqn6/X4NwfLH2VVw== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetches the results of the evaluation + +Args: + evaluation_id (str): the evaluation id + request (Request): the request object + +Returns: + _type_: _description_ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-legacy-evaluation-scenarios-comparison-results.api.mdx b/docs/docs/reference/api/fetch-legacy-evaluation-scenarios-comparison-results.api.mdx new file mode 100644 index 0000000000..a8ea7d7d9d --- /dev/null +++ b/docs/docs/reference/api/fetch-legacy-evaluation-scenarios-comparison-results.api.mdx @@ -0,0 +1,80 @@ +--- +id: fetch-legacy-evaluation-scenarios-comparison-results +title: "Fetch Evaluation Scenarios Comparison Results" +description: "Fetches evaluation scenarios for a given evaluation ID." +sidebar_label: "Fetch Evaluation Scenarios Comparison Results" +hide_title: true +hide_table_of_contents: true +api: eJztVcFu4zYQ/RViTruAaqdBTzrVaNKusSkaJG4vjmEw1FjiViK1nFG6rqF/XwwlS3LsDdqee7JMzrx5nDePPADrnCBdw+2LLhvN1juCTQIZkgm2lv+Qws/IpkBSOAQpMuh0sJ7UzgelVW5f0E0DljezJ/fkFiFvKnRM6ZNTSk0itjZT74jD+1StClTLG+V3igucggj2X4U1hWKvdsJiLBzhH7QlPGJ/WK3ub78YjLRTtTyDs6ScZ7XzjcuU0DYGiWQ5Q2cx6yCRm+COmHeWeD0257GvvknVQpWWWEhfassMEvA1hri8zCCFSH9bYq7Nfjtpw5CyNb6qdbDk3TYgNSUTJFDroCtkDCLTAZyuEFIY82lrM4mzItTnBsMeEgj4ubEBM0g5NJgAmQIrDekBeF9LPnGwLocE2HIpCxP91TIjaNuNwFDtHSFJ5vXVlfycTsZjE1u4a0r10AdDAsY7RscSruu6tCYCzz+R5BymbPrqx1wVJ03dxSapkZN6HMbtp6FJUjE2qW3bNoEfrq/P+f2hS5t1ELch+PBvyNVBBGTbHT9D1raUL8tY0XlA6c3Jrnb733ZRs9Oet8mwYh1jjgHaTZsc13QIej8R5s53BKFNoKL8LQ1/RSKdIwxgb8gtzVAr2W3H2v75Exo+mZ91PFdXuo/bjDBje7vufvsYN137LhU7hoh9zwA7bSvkwouJcuToCS4ghfnEBfNLjpqPjvpudBRheDnaqQklpFAw15TO56b0TTbTOTrWM23nurYgPiA0TbC8jymL++VH3H9AnWGAdL2ZBjzK8HTjcBo2KKFr+xGlMb2RFw0XPti/O417Gxddlpzcup2fOmURyanF/RISkGN0c341+352Ba/v7ZNgmXtt4twfa8dtSF51YTg/JIBVHHpg1NWP44Ywqz1xpd0ErzPvP3XtK7KH0Zj/vzf/7b3pR4zxC8/rUtt4Z0RtD71l1tOHQ+S9YJo4Kme22SRQeGKBOByeNeHvoWxbWe7eHHFGZkk/l3Jr7HRJ+IbA7x76C+a9+hbvP3F/8Z2TBYmOxnzRwUrJ6MPk6Bvh0qUvjKgzyTq78QVluF1+uV1B234FVswuPQ== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetches evaluation scenarios for a given evaluation ID. + +Arguments: + evaluation_id (str): The ID of the evaluation for which to fetch scenarios. + +Raises: + HTTPException: If the evaluation is not found or access is denied. + +Returns: + List[EvaluationScenario]: A list of evaluation scenarios. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-legacy-evaluation-scenarios.api.mdx b/docs/docs/reference/api/fetch-legacy-evaluation-scenarios.api.mdx new file mode 100644 index 0000000000..2801de0de8 --- /dev/null +++ b/docs/docs/reference/api/fetch-legacy-evaluation-scenarios.api.mdx @@ -0,0 +1,80 @@ +--- +id: fetch-legacy-evaluation-scenarios +title: "Fetch Evaluation Scenarios" +description: "Fetches evaluation scenarios for a given evaluation ID." +sidebar_label: "Fetch Evaluation Scenarios" +hide_title: true +hide_table_of_contents: true +api: eJztV0tv2zgQ/ivEnFpAsLPBnnRao8lujWSbIMn24hgGI40tthKpkqO0XkP/fTGkbEl+N6c99BSHnMc3M9+MhisguXAQT+D6VeaVJGW0g2kEKbrEqpL/hxj+REoydAI3QsIlqKVVxom5sUKKhXpF3RUYXw2e9bMe2UVVoCYXP2shREdiplLxzpF9H4unDMX4Spi5oAy7Rtj290wlmSAj5oyidezNP0jlcG3749PT/fWPBD3sWIx3zCkntCExN5VOBcNOEnSOj1PUCtNgEqmyem3zVjmatMl5bLxPYzESuXLEoPelZQARmBKtPx6nEIOHP8txIZPlrJOGjQpEUEorCyS0XJMVaFkgxNDLGUSguCalpAwisPitUhZTiMlWGIFLMiwkxCugZcnKjqzSC4iAFOV8cN2pUQp1PWUjrjTaoWO9y4sL/tNnwGPlUzWvcvHQCEMEidGEmlhclmWuEm92+MWxzmoXi7RWLjkAwsL7Ki3niFTwrFJvSS/v5j78fgR1tDnRVZ4DA1/HxIFEW3k6PwWc0bKigGE/tFCJwxY/8X0dNfeH5Z74vI6AAQTB5uKzP6g3JsC8fMGEehWeBBiNyNrIdF9ca56OObAW2KYCm8SFwOsITEUncmDRVTntnv90zJsKHytpk5AI0Fpj+8To+y/QObk4CuHvRqSOwJFMvpKVCb6VbI+thVP1WkPr1siHs2v/lCl/17HzEKpRcxc62huLrooX3OertfKBdesIckmok+Vbzdw26qeCaCh0lLJ3nohHOHvXMNWHbi0mNJPaffdDswv/AI2/4vIYVW5w2W/QA3LnNSw729OoHwLukYe9E+rxgnlNMWoi5uHlZqXSGvdPzxdjcpT6+Ph04j5YqCPQht7cGp9Yt46aOh8bJs2sNnaWGD1XizPGtbHiQ5DdePg1jP5fw+iE2k7Ro7MmQjvqDkyEh4ZuZ/rvLFJ+kLQfv5a53eHmV7ZdWB5Qi8AvRcKvyiKoiM6e8bjZ8uqaYf5+ebm7ZX2WuUqDfKjMT6xYfRqmSFLlR/ovN0nv9gzuKU244HE1PVyJWxMAcm4Kd7SrO21wqml9MkRo3RMl5riC62iHpW1617w/FMZVSN8+Z2sRfmzsGAy1LZAywyv/Askv9ZRBDMOWfW646lGxHh54Dzi0r+vHQGVziCEjKl08HCa5qdKBXKAmOZBqKEvl54LDpLKKll5ldD++weVHlClaiCfTrsAjMydwoS/WbuuluvGfr+YZMqooM1b9GwrcPEOyoFX7JXpuuivtyIMTo/sxfwLRukDyi8FvgwvYfmL2hJn0MqF28W6uIdrKwiZ+iAALz3gglMUf7QUjK42jQuqOvdCme/tzC9mqbcFf7+C3vYMbPhH+oGGZS+Wngy/kqmmO7mjmCsTbk3pvf0wjyPzuO4HV6kU6/Mfmdc3H3yq03AJT/tBbJV+YkJMVpMrx7xTiucwdHin1u4dmqLwXhyJYt4luV7wYIAoL5ta3xs/MbN2IzRIKo4SL1NHeGfHcsZtx8tf1E9T1f4vvHQI= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetches evaluation scenarios for a given evaluation ID. + +Arguments: + evaluation_id (str): The ID of the evaluation for which to fetch scenarios. + +Raises: + HTTPException: If the evaluation is not found or access is denied. + +Returns: + List[EvaluationScenario]: A list of evaluation scenarios. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-legacy-evaluation.api.mdx b/docs/docs/reference/api/fetch-legacy-evaluation.api.mdx new file mode 100644 index 0000000000..f715468b83 --- /dev/null +++ b/docs/docs/reference/api/fetch-legacy-evaluation.api.mdx @@ -0,0 +1,77 @@ +--- +id: fetch-legacy-evaluation +title: "Fetch Evaluation" +description: "Fetches a single evaluation based on its ID." +sidebar_label: "Fetch Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJztWEtv4zYQ/ivEnHYB1U6DnnSqsUm7RvoIHG8ujmEw0ljirixpyVFQ19B/Xwyppx3LeRzaADklpmY+zuObITk7IBkZ8Bdw+SCTQpLKUgNLD0I0gVY5/wYffkMKYjRCCqPSKEGBjbS4lwZDkaVCkRHTi9FdepdOdGT8u1QI0ZFcqVB8MKQ/+mIeo5heiGwtKO6BUSbWvJdFmSEVOq2BWgOdvpXDsKM9Ag+yHLX9MQ3BByuzSjCSwXbVCoIHudRyg4Sand9BKjcIPvSMBQ8UO59LisEDjd8LpTEEn3SBHpggxo0Efwe0zVnZkFZpBB6QooQXWovFNISyXDKIybPUoGG987Mz/tMP9U0RBGjMukjErBIGD4IsJUyJxWWeJyqwsOOvhnV2HVtyzREg5XZQ4ZB9bJTHeKthuUmeCyeb6+wrBnRC/tpJVToPUiuZso4ziXBjDrVLr16QWsttB+3W6YtpaLpwnLHXAf5lETqQGh+Ucbl/HfKsAqptroFfhjprtFkGDRmsMyDT7d9rS+B9sGYlLZIEmHo13NwhVNmp8VwBvA6RA8qYhiQV5pCNTv84b+a8bvORFH1jhna/tdKlB6h1pvs+9PffoDEyGjThz0rEeRF8Iy2DF8flpkUo2/Rm91wcvYayaEzraF9adw7xT0HZb8sufUyRkK30KNIYScJwpe1in4/9YFWtMNOrIEvXKhoK7FPaTE2wY1I1eV7SYlpbv+H2CR050+IKtzbJSKTSyKws50zfSRmGitusTK477rru38/AIAuqLcSt26L0INBosyBpyNhPTkpMbPKKPHyCzhcnZXVO8MQecDYrvaDvR7Nnbc+M5SNx/eS4wvF4RvQeQxINFDiyvveT/1c/OaF20D+aPHawJk1HarvUkVOwFRWzqnlxS3tALSNcBZmhoVS9U+U/PXoOgDygjGTynrc3l7e64hJJmAbb9+S9peQNXzzWmd7wF+Aj/idS9mrwktvIINBzryjV+3TvktJ9Ve4/Co+86LrvsOaR8uit+Dl3Hn61lyV78sv5+eFz/lYmKnQzAJfgF7/lQySpkoEbe5IFva9PoLBKCSPUVUd+/OD9IwsqLz3YmOiJ1XSq9m0whOsAJ1jAfrmtvQOyt+Gty+eYGxcufI9tVot8ns+vDwBdbjdIccYTpQjJTo8oBh/G7bzIjHe94VHJFEP9UA+YCp2ADzFRbvzxOEiyIhzJCFOSI6nGMle2kxgMCq1oa1Um19Mr3H5GGaIGf7HsCtwwSVza+2JNxGWuruz1vRptTQqKM63+rQdgdrQVOy32UKXrzKo39y02Tkyup1xPqI3j89no59EZ7M8He8LMbxlYftd7289cSb0oNP7zo2NjyQ2EcvNr+4EtyzNDG5l28Ow4sjMQ3Ldn19bYGxpdVokj/IfGeSKVrTgbsV1FuEVnQMldyu/PK5cexPY+tYDdjn37opOy5OXvBWom1bJqjfec4sUOQmX4/xD8tUwMDoTxw6yqyI/imKk18dItNGc6gAf2Tb43WrUNJ66pvatkJkGAOXW0D/oj10BTi79fzqEsfwCp687l +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetches a single evaluation based on its ID. + +Args: + evaluation_id (str): The ID of the evaluation to fetch. + +Returns: + Evaluation: The fetched evaluation. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-legacy-evaluations.api.mdx b/docs/docs/reference/api/fetch-legacy-evaluations.api.mdx new file mode 100644 index 0000000000..8280b19ff4 --- /dev/null +++ b/docs/docs/reference/api/fetch-legacy-evaluations.api.mdx @@ -0,0 +1,77 @@ +--- +id: fetch-legacy-evaluations +title: "Fetch List Evaluations" +description: "Fetches a list of evaluations, optionally filtered by an app ID." +sidebar_label: "Fetch List Evaluations" +hide_title: true +hide_table_of_contents: true +api: eJztWEtv4zYQ/isET7uAaqdBTzrV2E27QdJu4GRzcQyDkcYyd2lKS46Cuob+ezGkXoxtOY9Du0VOhqmZj/P4ZkjOlqPILI9n/OxBqFKgzLXl84inYBMjC/rPY/4bYLICywRT0iLLlww68YjlTk4otWFLqRAMpOx+w4RmoijY+cfRnb7TE5PZ+E4zxmh1IVP27nOtN7No5u9jNtEtVK3JMK8hGa6gv6vDnAKWRjewl9LirPNjHrPJPntHPOJ5Acb9O095zJfk3kJBJpLNoifJI14II9aAYChIW67FGnjMvQM84pKi870Es+ERN/C9lAZSHqMpIeI2WcFa8HjLcVOQmkUjdcYjjhIVLUzIyZRX1Zy0bZFrC5YUTk9O6CfMwnWZJGDtslRsWgvziCe5RtBI4qIolEyc7eOvlnS2u0YIYwRZKxHWbq/CUDRQ+p1lOmQwGRs17j/BsYjQv0KCR+SvvFSt8yCMFJp0vEmNpaF2FT12qUG79frsPLV9OEre6wD/dAg9SAMP0spcv9rUaQ3U2NwAvwx12mqTDFi00GRA6M3npePyY7B2RZdKcaJkA3fjEersNHi+Fl6HSAElTIsCyz1s9PqHeXND6y4fqgyNGdr91klXEQdjchP6EO6/BmtFNmjCH7WI9yL5hkYkL47LdYdQdenN76k4gg4za03raZ85d3bxj0G5b/M+fWyp0FV6lhnIBEK6MG4x5GMYrLpz5maR5Hops6HAPqXNNAQ7JNWQ5yUtprP1G2yG1M4aQXYBG5dkQJQ6swvHORs6KdJU+gPsqueuPw7CDAyyoN6C3fotqognBlwWBA4Z+8FLsYlLXlmkT9D54qWczhGeuCPPZSUI+uNoBtYGZsz3xPWD5wrF4xnR24fEWijuyfrWT/5b/eSI2k7/aPPYw5q0HanrUgdOwU6UTevmRS3tAYzIYJHkFodS9UaVf/Xo2QGKOOYo1Fvefri8NRWnBIJONm/J+5GSN3zxWOZmTV84HfE/oXRXg5fcRgaBnntFaZ/nwSWl/6p8/Cg88KLrv8PaR8reW/Fz7jz0mq+C6Lu3PHNTFnbpxhCsP4+pKnL7l9PT3ZnArVAydWLMs+EZA4GQ+imgkGrgeq/yJPj6BL5LjZCBqdv3/lP6Mk/akKxt9sTSO9YoXDCYbxdHKEN++a2jncrowtvU2iE3Pvrw7dusEfl0c3O1A+hzuwZc5TSKygDd1AlXPObjcBZlwTw0g6jSKB7zFWJh4/E4UXmZjkQGGsVIyLEopGszFpLSSNw4lcnV+QVsPoFIwfB4Nu8LXBMpfJpDsW5sVMgLd7evR2CTEle5kX/73NWTsJXXIo+kXuZOvb2MkXFscnVOxQbGev6ejH4enfDH88ZAmPgsEsfnZm/3mcosiELrP71I1o7MHEGsf+0+kGVFbnEtdA+vLjwaFZ4FEQ+s2naV9f8biNZZRvgLx4US0pWjC++2ZmN7P29GxCt3EZvx7fZeWPhiVFXRsp+GEuFSacW9oiJbCmVhIJzvpnU9vmeHbHHP9K6z1xcA7mjuevc90WxGjWbVUHxba02SBArsae30RUJpa/D3sxteVf8A/Prtzg== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetches a list of evaluations, optionally filtered by an app ID. + +Args: + app_id (Optional[str]): An optional app ID to filter the evaluations. + +Returns: + List[Evaluation]: A list of evaluations. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-list-evaluations-evaluations-get.api.mdx b/docs/docs/reference/api/fetch-list-evaluations-evaluations-get.api.mdx deleted file mode 100644 index 2ee9a8e056..0000000000 --- a/docs/docs/reference/api/fetch-list-evaluations-evaluations-get.api.mdx +++ /dev/null @@ -1,980 +0,0 @@ ---- -id: fetch-list-evaluations-evaluations-get -title: "Fetch List Evaluations" -description: "Fetches a list of evaluations, optionally filtered by an app ID." -sidebar_label: "Fetch List Evaluations" -hide_title: true -hide_table_of_contents: true -api: eJztV0tv2zgQ/ivEnFpAa2eDPem02jRtg3a3gZvm4hgGI41lthSlkqNgvYb++2JISZZiO48GvSz2ZIuc+TiPb4bDLZDMHcRzOL+TupakSuNgEUGGLrWq4m+I4S1SukYnpNDKkShXAnfikSi9nNR6I1ZKE1rMxO1GSCNkVYmLN5Mbc2MSm7v4xggheHWpMvHqU6s3d2QXr2ORmB6q1RRUtpCC1jg81WPOkGprOtiPytF858ciFskheycQQVmh9V8XGcSwYveWLLocyI3+50gQQSWtLJDQcsi2YGSBEENwByJQHKvvNdoNRGDxe60sZhCTrTECl66xkBBvgTYVqzmyyuQQASnSvJCwyxk0zYK1XVUah44VTk9O+Geck891mqJzq1qLWSsMEaSlITTE4rKqtEq9/dOvjnW2+0ZIayVbqwgLf1ZlOTakwskqe8hgNjbq3H+CYxGjf8WUHpG/DFKtzp20ShrWCSZ1lo61m+i+Sx3addAXF5kbwnHyXgb4l0cYQFq8U06V5sWmzlqgzuYO+MdQZ702y6Ajh10GpNl8Wnku3wfrV0ytNTAlO7irgNBmp8MLtfAyRA4oYzqSVB9gY9A/zpsrXvf50PXYmIdOv/bSTQRobWkP+lDeMh9HRT2HAp2TOcIA6twj7B/W7JJzEMrvLYYZc7UmX1x5bjGXhNnS+sUxBcbxaRtWaZdpaVYqf7ovvn35FI5qNBpAfkPmVGrRGyMZoa6y7mMYhE7lLBjB4ZBZpkJjvxxYHBrj2K7mEJLooSBE4X9uPKa2x4U+dAOspGfXjnFHmshOVMxaIjI979DKHJdp6ejp0TlK973YREAlSf0T8TsPtCQ06ebnHDKomgMUXZW24B3gavqFlK/CDvYsqIrEJ2dQcc8F+hJUPdAj3PGV3081o34wvIzv36VHLsLh9dX39oOd7TnthYegZhR9PwIJP6r6UVAMRtrR/3fIIeAg/HZ6uj9YXUutMi8qQs0+Y6oa96QMSSr9QMPWZTrafcLlqQxhjrYtjsO1+rFM+wAVLn+oLf7ZNqoe7LioD4YIffQRArFf4ehor0524e064jE33oTwHTqsE3l/dXW5BxhyWyCtS57uu9Gd1hDDdDDUMxvR3nXTfG01xLAmqlw8naa6rLOJzNGQnEg1lZWC+8+ixO+KMxb114bDtLaKNh4vubz4gJv3KDO0EM8XQ4HPzJjAgbHYbjCv1Ad/47aPjKSmdWnVPyGx7VtjHbTYXWVWpVfv+7W37Q+ZfkPjKxetC2afTH6dnBxzplUQyeVFS3yZeuJ3dngxrs5RuPpA8cxQeNYDoSx+322wlVXpqJBmgHe4Xu9bt92V4H/vMdpmnPBvmlZaKl+3Przblrb9dd49z9f+PpzDdnsrHX6xuml4Obw9mXyZcvJWczWupHb4QDhfzdrCfS2O2cKj3+CZ245Q4CnvW/4tU27OHWnd0X3baiVpihUNtPYaKKP0xfru/Aqa5l9FErTE -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Fetches a list of evaluations, optionally filtered by an app ID. - -Args: -app_id (Optional[str]): An optional app ID to filter the evaluations. - -Returns: -List[Evaluation]: A list of evaluations. - - - -
- -

Query Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - - - - - -
    - - testset_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testset_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - status - object - - required - - -
    - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - aggregated_results - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - evaluator_config - object - - required - - -
    -
    - anyOf - - - - - - - -
    - - settings_values - object - -
    -
    - anyOf -
    -
    -
    - - -
    -
    -
    -
    -
    - -
    - - - result - object - - required - - -
    - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - average_cost - object - -
    -
    - anyOf - - - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - total_cost - object - -
    -
    - anyOf - - - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - average_latency - object - -
    -
    - anyOf - - - - -
    - - value - object - -
    -
    - anyOf -
    -
    -
    - -
    - - error - object - -
    -
    - anyOf - - - - -
    - - stacktrace - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/fetch-list-human-evaluations-human-evaluations-get.api.mdx b/docs/docs/reference/api/fetch-list-human-evaluations-human-evaluations-get.api.mdx index 3167a00bdb..c79ae06c90 100644 --- a/docs/docs/reference/api/fetch-list-human-evaluations-human-evaluations-get.api.mdx +++ b/docs/docs/reference/api/fetch-list-human-evaluations-human-evaluations-get.api.mdx @@ -5,450 +5,73 @@ description: "Fetches a list of evaluations, optionally filtered by an app ID." sidebar_label: "Fetch List Human Evaluations" hide_title: true hide_table_of_contents: true -api: eJzdVkuP2zYQ/ivEnBJAsbeLnnSqmmwTI2mz8Dq5eA2DlsYWE4lSyNGirqH/Hgypp1+bNreeDFPfN5zHNzM8AMmdhXAJ76pc6ld3TzKrJKlCW1gFkKCNjSr5P4TwB1KcohVSZMqSKLYCe3ggCoeTWbYXW5URGkzEZi+kFrIsxezN5FE/6sjsbPiohRB8ulaJePGx4S0tmdXLUES6M9UwBRWNSUEpDm91NudIldGt2Q/K0tJF0wezCkV0zukJBFCUaNy/WQIhbDnGNUPXKdtYD9BnTnZIEEApjcyR0HAmD6BljhCCjw8CUJy8bxWaPQRg8FulDCYQkqkwABunmEsID0D7kmmWjNI7CIAUZXwQcQ4SqOsVs21ZaIuWCbc3N/wzLtJDFcdo7bbKxLwBQwBxoQk1MVyWZaZi5//0i2XO4dQJaYxkbxVh7u4qDeeJlL9ZJdccZmeDNvwfCCxg618wpmfw9x7VcPoyrD3hMrEXglgwpA7gSRolNd/oA2rjHJuog+OEtCY/e76YJXZojkv/cwb/chZ6k3Zt8ElZDvMnfbVi3lhqvW4t/zez847NGLRk8bkKLjyqqWDL8f3yPItTwzxLkqozrvaMB4+oA4gNSsJkLeka/rVHiYiYU5XJD3A+eZTj9EkqNizRUZ8vwU2BbhwMxH6q4rEyj4V1SRXDUo5qcZTkLnejxIwiXvURHg1RV7Ku9n60CLcT3MwVDi4GG+TMyVvkbHG+fr29PR1en2WmEt+od8YU5t9MrvGESpCkyka6HgOyIh59lXr/cevG97H+uxOlCXdooF5dbooPRdwlK7e7awL6E62VO+w77MoA42Q0s+sZrXFc/uoGtxoOgja9PruXw3jj03fusk4di8X9iUFf2xwpLXibtuuRUghh6tbnq8H6ZD2ieWr3ZmUyCCElKm04ncZZUSUTuUNNciLVVJYKjl8kkfsqXjMUeD9ajCujaO/sRfez97h/hzJBA+FyNQQ8sG68EsawfgWW6j1yTpp1HlWUFkb948vbbPXUszhopbeFo7fbzfv2u4y/ouZO5Di92zeTXyY3l4JpCCK6nzXyl7GTf+uHg3HTjtLVJYqHSu60D4Qy/63/wF6WhaVc6oG9ax187OOhb8f/6WuwKT7h3zQtM6lcI7tMHxodL+FUx6sA0sISfzwcNtLiJ5PVNR/7Zx+rMVFWbjJu0q3MLF7J7It5088vxSWPvuJ++MJkVxjkesCtiA1rcMmDKm31f2hYURxjSQPWyVxlK10Pv71bQF1/B8jEMvo= +api: eJzdVkuP2zYQ/ivEnBJAsTeLnnSK0WwTI2my8Dq5eAWDlsYWE4lSyNGirqH/Xgypp1+bNreeDFPfN5zHNzM8AMmdhXAF76tc6ld3TzKrJKlCW4gCSNDGRpX8H0L4AylO0QopMmVJFFuBPTwQhcPJLNuLrcoIDSZisxdSC1mWYv528qgf9czsbPiohRB8ulaJePG54a0smehlKGa6M9UwBRWNSUEpDm91NhdIldGt2Y/K0spF0wcThWJ2zukJBFCUaNy/eQIhbDnGNUPXKdtYD9BnTnZIEEApjcyR0HAmD6BljhCCjw8CUJy8HxWaPQRg8EelDCYQkqkwABunmEsID0D7kmmWjNI7CIAUZXww4xwkUNcRs21ZaIuWCbc3N/wzLtJDFcdo7bbKxKIBQwBxoQk1MVyWZaZi5//0m2XO4dQJaYxkbxVh7u4qDeeJlL9ZJdccZmeDNvyfCCxg698wpmfw9x7VcPoyrD3hMrEXglgypA7gSRolNd/oA2rjHJuog+OEtCa/er6YJ3Zojkv/awY/OQu9Sbs2+KQsh/mLvlqxaCy1XreW/5vZRcdmDFqy+FwFlx7VVLDl+H55nsWpYZ4lSdUZV3vGg0fUAcQGJWGylnQN/7tHiRkxpyqTn+B88SjH6ZNUbFiioz5fgZsC3TgYiP1UxWNlHgvrkiqGpRzV4ijJXe5GiRlFHPURHg1RV7Ku9n60CLcT3MwVDi4GG+TMyTvkbHG+fru9PR1eX2WmEt+od8YU5t9MrvGESpCkyka6HgOyIh59lXr/eevG97H+uxOlCXdooI4uN8XHIu6SldvdNQH9idbKHfYddmWAcTKa2fWM1jguf3WDi4aDoE2vz+7lMN769J27rFPHcnl/YtDXNkdKC96m7XqkFEKYuvX5arA+WY9ontq9WZkMQkiJShtOp3FWVMlE7lCTnEg1laUCXoEW48oo2jvK7H7+AffvUSZoIFxFQ8ADS8MXewzrt1ypPiCH3WzsWUVpYdTfvoLN4k49i+NSels4ervAnHNidj/nzkRjvYpvJq8nN3D8ehqBWdUydqpu73afuRdHWeji51mRO0kDoczf9B/Ys7KwlEs9sHetMY99O/Rd9j995DUFJ/yLpmUmletPl+lDI88VnMozCiAtLPHHw2EjLX4xWV3zsX/NsQITZeUm497byszilcy+WDRt+lJc8ug77ocPR3aFQU73bvJvWHcrnj9pq/lDw5rFMZY0YJ2MS7bStea7uyXU9T8xjSRr sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Fetches a list of evaluations, optionally filtered by an app ID. Args: -app_id (Optional[str]): An optional app ID to filter the evaluations. + app_id (Optional[str]): An optional app ID to filter the evaluations. Returns: -List[HumanEvaluation]: A list of evaluations. + List[HumanEvaluation]: A list of evaluations. +> + -
- -

- Query Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-new-analytics.api.mdx b/docs/docs/reference/api/fetch-new-analytics.api.mdx new file mode 100644 index 0000000000..893bc9e5f8 --- /dev/null +++ b/docs/docs/reference/api/fetch-new-analytics.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-new-analytics +title: "Fetch Analytics" +description: "Fetch Analytics" +sidebar_label: "Fetch Analytics" +hide_title: true +hide_table_of_contents: true +api: eJzFWUtz2zYQ/isanJoMY7mZnnSqkjgTN07sxmp60Gg8K3AtIQFBBgBtKRr+984CJAWKEkU/Mr3YErWPD/vGcsMsLAwbTdlEAxdqwWYRSzPUYEWqzmM2Yrdo+fJG4f0NKJBrK7hhEctAQ4IWNTFvmIIEiTblOf0qFBuxHznqNYuYxh+50Biz0S1IgxEzfIkJsNGGgVpf3joBdp2RAGM1gYgYqjwhWFYDRxYxk4EibFZYSYTvnaYiqjlVLiUr2hREUqPTCdhnhQcLVBaYs5myKDFBq9dNoE5pN1JPEkBNZYzmOaAGeoWyuEDdCeXS6w2hKLz/X6B89npDKMSm70A+BUwf1eeVnlC5BotPUazyZH5E7xdS0YhYIS3qB2itQ8ozhrJMhvwhuVmJunZ8BeHUaLJUGTT0++vTU/oXo+FaZFQuiDjnHI25zeXgS0nMIsZTZVFZZ5Ysk4K76jL8ZohnE+jMNNUeK7wGnuaeacd1W4O9dRQRi/EWcmnZ6LSI2Dzn39E6CcJiYtqCrUjQWEiyQHid2mWVGLEYLL4i0kDhpOYsom04dkHcxlLEqDhQ+WyEB8SxIHOAvGqAfGwa7UbZPE0lgnKP9utiXGieS9C/vc+l/Muk6tVlbrPcvqBzeCnp/BtyX8ZKo/bhAq1h3V37mrxkpbbGQ8yfSnsWLa4wsqeBvwOnteW8cYETQPDwt3RvysgKAm46K6Iym1wylI83RbQTcz6sLHmw4dxdKmpav6QzFtvQ/sWdbZ87mkx2J5C3EO+FitP7I1YqW1LnOfakcZ9uE1Wt9zmFV101YgpXfUXnuYiPQF45mVIkYr/QPr3uwnHTuXWMumdsGI4q9s+o/pdfZp02cOJ3quYTu3Pkm/ITu+3BWP23jsX92eR67JFQ9bN0qhvVgYGKt0WybV73a0pdRKUESPknKtVh/l2kC8FBXlYaCtdofYFvdr+D1UagjPf1wO0YQQRFxL7jumdPapn5I1IHYHcg8/2ueoa+Vp10t3Qf7nlW5/iQVvPVwS+ihkOPZ4pwE5e5IT/OwrklyUALk6rAe4el4A/yvvu7oHiQ1n1C95H+zu19owd8zhPUgvcSbixoa+6FXbqHcfWRhjYQig6QgOVLpE9SfMdQ0bWT1kuPUD6eb0QD6oUwthf/EgjAElrGfCd4Pwm4EsZ1b0JRfgnknNETVBz3CWvXs4ooGAbI3S5E6hQ8lHkcDN4YVEZYcbc/LcL4PgTiLRgcXNdiAihunC8ihivg9sY58NFazkjG4JOT0VLRUT8nuLKXpS1IftMEIPe3gD6IxlI+CIkPsi2Sw04taY4MlL5wNhK6LLyuCteDcdUhXlBvPDRVvt0W7eZg2TVG1b3nYeNXueX52w2sRVReCjtuSk5O2LpUqrCjdylfeYZUPYTKU7cOqh7GwnCNvmIJBe4GysHiItXUyYZGqIXEnYdJLq3I3ONam7s5RhWWl+1ZfkLwaAYHu+xqcFdgGzHNXhLXXOxm7wPGkzfCBRm7S4R67GjylXidDFg9XgasSAbGi8cXmDNi7goob27aEXTcm67L1UPP4B5Xe8Z6hVAURP/H69ftjcNXkCJ2+4TBmdauHj9y3RCjBSE7kkGm/MBYdXyS6cj/i9QDdBsCs+gK109oDCxwa+rDpM4YA58HR6oZncurLumac09pXm/dw8d4583X5dgPk8lVS6D3bdOp72nnPBgH++YE7TKldXSWumWkT2w2zDTeCbwfWl/YhvWOelituAzqu2pNnWvJRmxpbWZGwyGXaR6f+IvuCYghZMIFv0Gea2HXjmV8df4R1x8Q3O1oOgsJrimSfGw0yWq3QCZo/o2qJdw4t8tUi5/e4eUybum5Cnc5uk3D5dvYgRuMr85ZxOgY3j6nJ7+fnLJdqzWI3fjGXRJUuqsbfdMK9fmpiicuA5hFSP7c/kDIyO4JqEBe20kNOLUNLK7sMJPgS5pTvin9N2Wl/yhIyhcQEQvfM3gvziK2JL+PpmyzmYPBf7QsCnpcrl6mGxYLA3MZrDLdnaV+JVHeP5jLzoO05QuCPsT1ir4Pcb1E70McrLn7kJeL6V4HrPbJfYirhfGWdkZftCDicvO1rPJiUzKNOccsPGirApOUOpuvLq8nrCj+Aw+a/zc= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Analytics + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-organization-details.api.mdx b/docs/docs/reference/api/fetch-organization-details.api.mdx index f6fbbe67e1..bffb0405b3 100644 --- a/docs/docs/reference/api/fetch-organization-details.api.mdx +++ b/docs/docs/reference/api/fetch-organization-details.api.mdx @@ -5,316 +5,67 @@ description: "Return the details of the organization." sidebar_label: "Fetch Organization Details" hide_title: true hide_table_of_contents: true -api: eJydVU1v5DYM/SsGTy0gzKRBTz512ux2g22bIJttD4NBwNgcWxtb8kp0tlPD/72gLDv2ZGf6cbIlPYqP5CPVAWPhId3CjSvQ6L+QtTWwU5CTz5xuwjKFO+LWmYRLSnJi1JVP7D4s7cxuBQpsQy4srnNIYU+clQ9zzEO0BwUNOqyJyQmBDgzWBClYVzzoHBRocdwgl6DA0edWO8ohZdeSAp+VVCOkHfChESvPTpsCFLDmSjZuXJFc59D3O7H2jTWevBhcXlzIZxnfhzbLyPt9WyV3EQwKMmuYDAscm6bSWYhg/cmLTTcj0TgJm/XgQefniAkpFYM9jfpNznsF9oshdzbOAOiPCnYafzWD9SrCOkBzuNmHMiwNezXtmLaqQNI5XnUv+72CL9Y9+QazGD1T7V8zmHwBOoeHGaM/XsxDGHtsK36YLl2ywzzXwh2r21nOB1HE++3jJ8r4LPOrwUkyuYa+P7afi24LQZGhaGNNlhnfLZQ3qf0qir3vxcH3l5evpfc7VjoP4OSNc9b9f90NnbWowRJQ2Wxx+i+Krg1TIQLbnS7gL3YgKOWrfXFOfb+S91jQXHmnoCEZyaCxfyiOxDW4jrhZNV7SO2T3dBhDrb7qbIS8u7+/fXXhUNuauLQy8griMNu4hBTW89Hn190w3HpQ4Mk9j5OvdRWkUDI3Pl2vs8q2+QoLMowr1GtsNBzP4004TX4SaFC2p6x1mg/hvs3t9Xs6vCPMZXZsd3PABxHPIIclbKoENvo9HUa5p7BpubRufBriXC4HK4lcm70N5jFJkduPmD2RkbaROAfaF6vvVhengokGyeb2OvYAZqEHRh4BBuooXVOiQAHVoQGACesfXg6EZWM912hm972VtymZd2tyNb1NR9N06sj/8BLGdDL9yeumQh36I3Dvojy2sJAHKEjj67dTUFrPAum6R/T00VV9L9ufW3JS5Z2CZ3QaHyXn2w5y7eU/h3SPlaczEXxzF1vn2+QUy1EJRmTwjFUrK1DwRIeXFzqMhHIUWRcPN1lGDc/MXk0wUePULT+/uYe+/xtOFuuP +api: eJydVU1v2zAM/SsGTxsgJF2xk08L0G4tuq1Bm22HIChYm4nV2pYr0e0yw/99oPxRO22yj1Ni6ZF8JJ/IChg3DsIlXNoN5voXsjY5rBTE5CKrC/8ZwhVxafOAEwpiYtSpC8zaf5qB3QQUmIKs/ziPIYQ1cZTcDDE3rT0oKNBiRkxWCFSQY0YQwgisY1CghUGBnIACSw+lthRDyLYkBS5KKEMIK+BtIeaOrc43oIA1p3IwTCw4j6GuV+LGFSZ35MTy+OhIfsYZX5dRRM6tyzS4asGgIDI5U84Cx6JIdeTdTu+c2FQDNoWVQrBuIuj4EEMhpdr096O+yn2twDzlZA8m7AH1Tgv3408GsFq1sAow316ufWPGhrXqT/IyTUHK2blayHmt4MnYe1dg1GbPlLmXDPpYgNbidsDox7O5T2ONZco3vdMxO4xjLdwxnQ9q3qij9W9u7yjig8xPmiBBHxrqetd+qL4leGn6pnU9GVd89boET1r517UEeH98/FJ63zHVcaPXU2uN/X/dNW9t1IMxIDXR6PYvmq5zpo0IbLW/gZ9NQ1Dal7nNIfV9IedwQ0Pl7YP6YgSNxv7QHMmrCd3iBt14Lm9T3f1pNL16NVgHOVss5i8cNr3NiBMjQ3BD7KcdJxDCdDjf3LTaGXc1KHBkH7uhWNoUQkiYCxdOp1FqyniCG8oZJ6inWGivYkdRaTVvvclsfn5B2zPCWObEcjUEXItQmtaPYX3VsdAXtO2kHcKs5MTYbjG0wzhprCRLna+NN28LMvPkgtn8HBRIGo2mjybvJkewu1ZGYNE4Rl7jXWx/DWqnCn3+oIAyL3BgwuzD84UwK4zjDPOBv4+yjYLRQjjpt9HOtOxf3D/svraETD95WqSovf4996pt/3K03iRsuLvvVgoS41iwVXWLjr7ZtK7l+KEkKy1eKXhEq/FWCr6sINZO/scQrjF1dCCVN1ftG3kb7KPbySAXDTxiWsoXKLin7SvL2Q+BpJNa1aJmUUQFD+xfzCzRZP8+Pp0uoK5/Awqq8AE= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Return the details of the organization. - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - default_workspace - object - -
    -
    - anyOf -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-plans.api.mdx b/docs/docs/reference/api/fetch-plans.api.mdx index 733b02a8d9..4dabad9271 100644 --- a/docs/docs/reference/api/fetch-plans.api.mdx +++ b/docs/docs/reference/api/fetch-plans.api.mdx @@ -5,69 +5,59 @@ description: "Fetch Plan User Route" sidebar_label: "Fetch Plan User Route" hide_title: true hide_table_of_contents: true -api: eJx1ksFu2zAQRH9FmDNhuT3qVKdoUyMXI2lOhlCs6bXFhiJZkjKqCvr3YmXZSQxEF0Ha2eXsPA7IdEyotrgz1hp3RK3gA0fKxrv1HhUOnHXzK1hyCQqRU/AucUI14PNyKa89Jx1NkA5UeOq05pQOnS0eZzEUtHeZXRY5hWCNng4ofyfpGZB0wy2hGkZ51M3I72Kh2FhyxXPiWDz6LsvQlnPjxeORMxQC5QYVyt15lfLiOXE8cZQtB3TRokKTc0hVWWrru/2CjuwyLciUFAxuD19N1eKrSDHWMk530eR+mrfarB+4/8G054hqW78VPMlS56TeywbkPjAqUDAP3EPBUSvfqy43Ppp/UzhQMGKgOXdJLMYd/NRusuVXb3ekX9jtoSB7nm0vF58Wy4+WmRuK1WY9syE9sbn4mGRQN3Fdg4ICt2SklpnaL68FcRl8yi25N/M+AvjO3DWVzH+zwDMO42xhmOFuMcMV3BPeWqHxKUtpGHaU+DnacZTffzqOAqlWOFE0tJPItvWoLokKvxfuZV+tOcgVOpHtzmBu7qhwvV63+28/MY7/AQbWGQA= +api: eJx1Usuu2jAQ/RV01hahXWZVKvWB7gbd27tCUTWYgbh1bNeeoNIo/15NePSC1GyiZM4Zn4cHCB0K6g0+Ou9dOKAxiIkziYthtUONPYttvydPocAgc0kxFC6oB7xfLPS142KzS8pAjZfeWi5l3/vZ8wUMAxuDcBCFU0re2emA6kdRzoBiW+4I9TDqYx5WflYJs7WnMHstnGfPsRdd2rG0UTUeWGCQSFrUqLZnK9VVc+F85KwuB/TZo0YrkkpdVdbHfjenAwehObmKksPYKMP22clpoizXqyc+fWXacUa9ad4CXlT3OYx72AA5JUYNSu6JTzAI1On3spc2Zvdn8g8DpwbbM0udu7CPE92Jn/CTuNlyvYKB2jhHspi/my/wGNQdWCMnO0V+PXsawzykcPMPA+7I6UyYug//BqosxSIdhTf7/tfLnahbEsK/RTtxAeNFwnDpbINLZ9ri1Fpj0MYiOhqGLRV+zX4c9fevnrMW0xgcKTvaakybZjTXFLWzn3xSv9Zy0ptxJN+fy3i4etrl7RZ9+fQN4/gXyGwKcQ== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Fetch Plan User Route -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-query-revision.api.mdx b/docs/docs/reference/api/fetch-query-revision.api.mdx new file mode 100644 index 0000000000..4792f38a8a --- /dev/null +++ b/docs/docs/reference/api/fetch-query-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-query-revision +title: "Fetch Query Revision" +description: "Fetch Query Revision" +sidebar_label: "Fetch Query Revision" +hide_title: true +hide_table_of_contents: true +api: eJy9WVFz2zYM/is+PLV3bJz19uSnZU26Zm2TLEmzB5/PR0uwzZaiFJJK4vn033cgKUWyZMXx3L0ksgx8AD6QBAivwfKFgdEY/spRCzQwYZBmqLkVqTqPYQRztNFyep+jXk01PggjUgUMMq55ghY1aa9B8QRhBE2xqYiBgVAwgozbJTDQeJ8LjTGMrM6RgYmWmHAYrcGuMgIwVgu1AAbzVCfcwgjy3KFYYSUJkJ+rwXWwMDiPoSgmBGyyVBk0hPX++Jj+xWgiLTKKBEZwk0cRGjPP5eA6CAODKFUWlSVxnmVSRC7w4XdDOuuaf5kmWqzwFqI090rBbaEsLlDX/PzgJBjEOOe5tDA6LtgGPc6oWl3OHYNNA17ygWvBlSUeG7L9ZBWsklC5lED8NOm787iOPQaHt9LE97EcOgaPzbUVcx4d0vmTAFlayO0y1QcD92gFg5hb3BGVRN9ZkWAv9CkBFgwSNIYverH7YL4G9YLBXLrDoY7D41jQDuHyqrFeW5ZmaSqRq7qp0vikYOWrdPYdI9vrz0fnhIvL8j2daYddbtiG5WTWfFOPodsWREJHueT6zcdcyj9Nqt5d5jbL7VvoilFYTHbU4lrzVT8xTV14FatfiUzS2D/D/wOpF+kXYeyLtG4LsqX+Oo5uw8LztW2/3XTB3a5t1qL9oE5rEAWDSCO3GE+5Pegp8sHDDk4cWXkW/wwj3zxsMBKjxJ9g5NTDBiMlXbNDVqKSrN/LclTydVArJVuVlZKwg1op6aqsPKBudym7L9e7oF4wMDJf7AtzQ7oFg8MFGjjkm9Wk2YA9ChWnj4TdI6TwEc1hV+2FhywYpDI+NPilh6QzDZ92hX6R0AvCKhhIkYhu0M7CsIHyxWlT3DrGF/otVHlClxZuIlSxf0cnbPgw6eXAwdOKUhb1A5d7e3xeAhQM9LZurl0AWzjXrnFrlaZngb+rtdiGoTZNSIv6haXqL3W+ka3uJMBV/FxR2/S6b1O61qiUHFL+jUo11DOXLkTE5WVpoXDXKl/Zne3Q9mx3bi5Qxl23wKrXcQIFgx+42vck+Ywrf9uR+a7l/NUNTRlp0dHHdTc7/h68e1Ny59wvWCOhL+8UYegmbqaUx3oBS5OMa2FSVcvedhS8p+y7vwtaD9K6J3SP9HdmH1Ud/yJPUItoJ3BjubbmUbhBAaq4fKQrOheKAki4jZZIT1L8wLqhG4e2kx2h/Hqeioar1CrupL/k5MCSt8g8FdFuCPgkjDXBi/ChhnNGb1BF2AXWPs9KodqsgdLtlki1BbftvIgbnBpURljx0L0tOm5y7UaIGxzcVDA1V+ZcGiwY4BPd0l0C97ZyRhiDrw6jZaLn/LzFJ3sZuCD8JgVcdpeAXTw6kfJVnvhF9uzJ9qQGmQ6s5xnaOBycjQ0dDl53ClfXzLJCvIXJ5tHUoWvqMY0nfQFVyF2lqUfPzXDKKd4pd5fRvfX/i241CywK0vn1/fv26PCOSxG7weDgTGu31facG8ZouZCNmtgUkGm0pWK+XKR6Uvsl9Q66OYpZ9JXa2vzHi2wXdWQMbunblxYqxeVNB7lmSQv0ena3h3Hq6etL7qfb26sWoM9tM6kfaa49aI6TwU2ZlinNvRdo3ZjbLmEEw4yGtvg4vPdj8mE5wzXDdWvmXQADg/qhnI3nWsIIltZmZjQcRjLN4yO+QGX5ERdDngm39Q1GuRZ25VROrs4/4+oTctcKjyd1gRtaW361NMWqRPFMULNTTi7C0FH845dAmMgvvVbhOuF56tTLU805Nzi5OofaNRCOj345OoZNHhvCrlZHbluUtt3XwDZYqOKnspi4PQEWefLb8xfkWZYam3BVw9uSto35SiDC4pMdZpILt/CdB+uQ0jGElIIfUAvXVlRpBQaj9o8ZEwbLlO5kY1ivZ9zgNy2Lgl47WcpUGKfPiMjxGmJh6DkOtaHlaHWOwJvrsF3eDp5b8mYAZXoV5Tb0sQChKe747cWdCMtyEa2D3EkUYWZrCK0DjFZbtQ/+OLuFovgXo/nr+Q== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Query Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-query.api.mdx b/docs/docs/reference/api/fetch-query.api.mdx new file mode 100644 index 0000000000..45c653c4a4 --- /dev/null +++ b/docs/docs/reference/api/fetch-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-query +title: "Fetch Query" +description: "Fetch Query" +sidebar_label: "Fetch Query" +hide_title: true +hide_table_of_contents: true +api: eJy9V1Fz2zYM/is+PLV3bOzm9qSneU2zZu3WtHH34vPlYAm22FGiQoLZXJ3++46kZEt2kia+tE+2RQDfhw8QAdfAuLaQzOGTIyPJwkKArsggS11eZJDAijjNr28cmQ0IqNBgQUzGO9VQYkGQQDi9lhkIkCUkUCHnIMDQjZOGMkjYOBJg05wKhKQG3lTez7KR5RoErLQpkCEB50IUlqy8gWe1GV1k0DQLH89WurRkfYjTycR/ZGRTIytPFxK4cmlK1q6cGn1ujUFAqkumkr05VpWSachu/NV6n7pHqzI+d5YRIdUuOrVsZcm0JtOj9yZYCMhohU4xJJNGRDECVrn5uAoyDeOuVNC8b4BZJj0nVJcD051Fy2GptSIsoRH7IjaLRnSP9PIrpdw3Kp1S4DXsqJ8HEo2AghiPJNMhiwOJBsjFcvikn8PdWJBKkzqF5sW5U+oPq8tXHx1Xjl/CXTlKpuKRXmgMbh4WZugLT1L1Ty+m9zi+wj9B1L/0B2n5u7Lel+SB+9M0mrWNF++ORylwSMH7NmL49h8X6qwXohGQGkKm7Br5oYC9GytDplcsA5/7Ud7EsKNpEMtV2Y8A+RLDtiAZKfoBIGcxbAvSybUM1//jcMId/xixfotX/06vZ0Xp1NqidII9K0on1xbFKrc+tlevvG8j4PnohdG6//buzd87AnzXZzt9m8bb/nJ6ejis/0YlszCKR2+N0eb4SZ0Ro1T+WzsK9g2UTgenT7l1e3M1To9dqh90JBjmqF3ftdnsJoO1uKbdVXm/aRBjNPOnd+m826rmIa8I3dr1SruTN6p7fxpnUb6HivpuNrs8CBhrOyzquV8XR5/adbEgzrXfItfEYXvkHBIYV4ZuJf07volL57juFsgGBFgyt91+6YyCBHLmyibjcaq0y05wTSXjCcoxVjI0s6XUGcmb4DK9vHhPm3eEGRlI5ou+wZXvn9gRQ7NtMbCS78kzbzfbqeNcG/ktlrldb/Po5ZOX5UoH91anaSA3ml5egACfRlRlcvL6ZAL7Wg2MfetjGlq/ww7HIPZU2OYPAqgIfQ9MWPy6O/DMKm25wLIXb1iavdHZ5s/0H48rhTL0dACu27LNoS0bxB3Xv1oCku3uvxCQa8vesK6XaOmLUU3jH7cb8Xwh4BaNxKWXal5DJq3/nkGyQmXpgNP2NoAXn9umfznarSpDrl0BS5/cLSrnf4GAf2jT/4cSXue86466PZ6mKVXcczy4fXwbbbv597czaJr/AeUwgiU= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-queue-preview-evaluations-queues-queue-id-get.api.mdx b/docs/docs/reference/api/fetch-queue-preview-evaluations-queues-queue-id-get.api.mdx new file mode 100644 index 0000000000..3ba06422c8 --- /dev/null +++ b/docs/docs/reference/api/fetch-queue-preview-evaluations-queues-queue-id-get.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-queue-preview-evaluations-queues-queue-id-get +title: "Fetch Queue" +description: "Fetch Queue" +sidebar_label: "Fetch Queue" +hide_title: true +hide_table_of_contents: true +api: eJzNV0tzGzcM/isanJKZjeV6etpT1dhuVKeNa9m5eDQaaheSmHC5axJ0q2j2v3dA7lMPW06dmZ60IgF84AeQADZAYmkhvoeLR6GcIJlrC9MI8gKN/zdOIYYFUrKaPTh0OCsMPkr8e4atQtixs0pCprPZEgkiKIQRGRIahtiAFhlCDLUURCA1xFAIWkEEBh+cNJhCTMZhBDZZYSYg3gCtC9azZKReQgSL3GSCIAbnvBWSpFjgLzY8GKdQllO2Z4tcW7Rs4uz0lH9StImRBXsNMUxckqC1C6cGN5UwRJDkmlATi4uiUDLxhxx+sayz6bhVGGaJZEBIcheUKm+lJlyi6bj33ktEkOJCOEUQn5ZRIMNj6fWnhaepb3ehfIQOC0g7s/jgUJMUquPAPM8VCt1xYGwHk1ay48hCKItlGdWq+fwLJtTRbLPDc3zpfSqjBks7paCclhFkSKLvrUhTyZpCXff8biX68e2YrTnsIWXz/kp9Tl7ajwWJNIlTwry5dEr9bnP97pOjwtFb2D4yG5GE2ZFawhix3kNEy9yWLuyQ/JTyH0wma+ykwP+J1D/zj9LSs7QeOuSO+ss4ug2pWD0uRzGw6wLrllH/efg+U+cdE2UEiUFBmM4EPWWw86SlgvAdSe/PYZT3wexg5MlyRfojQO6C2QokRYU/AOQ8mK1Aarrma64Px+H4InAMWb+ufW1o+XpVlJqtBqUm7FVRaroalNczHew9orH/If0/V+plBJYEuScfpQhQu4y7jwJ1GlZ8PeSibpzWYcmGMs2HEVI5w0UajckNLyVCJ6gUpjDdV64mwYl9LjfVr0HnoInt8tUvts6imcl061hVxeh8PBeG7QJyfEG5s2gG49S/eTZBLYzMn/DopY4cBp5UYA04YTH7iuvjkF+ERFgMrtjyC3qSc+Fr5Z6WxDhd3cBjG8kbp0MbuYvedqn3teG9ied92ufP8SdqetKyZK2fz852W9jPQsnUqwwu+Ep8f/+aIgmpekncF1B50tt9Sasx3Q5/e+iPeXCQMySzy31hatsha8US21w6LOrJGNzy7nNR5HMF6Equ+5w19AZ2Dx/jPND3VHg/3N5e7xgMse0H9ZLHrUHIIN9Rr3KewuqZilYQw7Caw4adOWwY5rDhpp6wSn490TzWA5gzCmJYERU2Hg4Tlbv0RCxRkzgRcigK6a+hxcQZSWuvMroeX+H6A4oUDcT3067AhFMpJEdfrImLKOQVMk3V6DdytMqN/BYiXs1/q6DFPEi9yL16RdnIOzcYXY+hU5rg9OSnk1PYpq0nzLdAJP4W1Nh+G6ItFprzc1XJ/BUAQpH90m6wZ0VuKRO6Y68fpa3WsTo/4T80LJSQPr098KaK4D1UEWTczvBdlUD+iJtJeRrBKrfEWpvNXFi8M6osefnBoeFITSN4FEaKOfN2v4FUWv5Oq+Fux8HmlYA3N9VleDto+/a+43U0NYeSfeV/EMFXXHfneX/NV3WqbKrtUZJgQR3FnVeJc6rJ8t8ubqEs/wU/p6yy +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Queue + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-queue-scenarios-preview-evaluations-queues-queue-id-scenarios-get.api.mdx b/docs/docs/reference/api/fetch-queue-scenarios-preview-evaluations-queues-queue-id-scenarios-get.api.mdx new file mode 100644 index 0000000000..102b34a9f7 --- /dev/null +++ b/docs/docs/reference/api/fetch-queue-scenarios-preview-evaluations-queues-queue-id-scenarios-get.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-queue-scenarios-preview-evaluations-queues-queue-id-scenarios-get +title: "Fetch Queue Scenarios" +description: "Fetch Queue Scenarios" +sidebar_label: "Fetch Queue Scenarios" +hide_title: true +hide_table_of_contents: true +api: eJydVdtu00AQ/ZVonkCy4lDx5CciKDQqiNIWXqIo2tqTeIvt3e4lYCz/O5pdX9ZNUiSectkzM2fOmZ1twLC9hmQNlwdWWGa4qDRsIhASlfu1yiCBHZo03z5ZtLjVKVZMcaG3UuGB468tjqEeo7cdlmfbAL9HAxFIpliJBhWVbaBiJUICPR4i4BUkIJnJIQKFT5YrzCAxymIEOs2xZJA0YGpJcdooXu0hgp1QJTOQgLUui+GmIMA3SjxbZdC20VDNalRBsSeLqp5U27FCT8qxqv66c4RfLkxFOkRliwLazUjlu0blmWyolpai0qgp+8ViQR8Z6lRxSUpCAnc2TVHrnS1mtx0YIkhFZbAyjpOUBU+d8PGjppgmYCwVeWi4r5AK64M6crwyuEcVCPXeISLIcMdsYSBZtCSAN2/LM5eGGyynX/4lRw9gSrH66PdY/q6rNFtlOmSx3rRjkHh4xNQEUePUOp/7JKtMD5K1LSV4e3FxrPAPVvDMRc8ulRLq/+XN0DBeTISZAgqRTk7PzVMwP71F7ea8ap+FJ0jClnp/ypAe+gW1ZnscLTgPdWLM7un0lPjjNVm7vnzpDhfM+yivV/d8Gx+8fC85fXV/f3OU0Hs7NfUj7aqZv/b9PNBElWhyQcusX0MmhwTibonFwRKL/RKLm34ptbEOEmlUh357WVVAArkxUidxnBbCZnO2x8qwOeMxk9wtAI2pVdzULmR5s7rG+gpZhsqNdwC4o/HyAzOFDV4xya+RpOs22dKaXCj+x09Bt89yH0Xa8GonXHgn49KRmy1vVhABteFFW8zfzBfwXMoJmG4GS93N6Gu7Y4ieqTD0DxFg6a4FGGTlu/GAmEmhTcmqIN855yakBiUM/jaxLBh3w+8oNJ2ra+hcJQbBuxb5Z4a+JMGDM5q7iSAXmrYONM0D0/hdFW1Lf/sngvzLuGYPRfBI/MR68qRQQSLorD8wxQl+OvRZZ8PygVe33R17PYPodMf9QFR1WLOnM7TntkfeT1vTHS/TFKUJAo+WHZEfrsyny3to279Yz83T +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Queue Scenarios + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-result-preview-evaluations-results-result-id-get.api.mdx b/docs/docs/reference/api/fetch-result-preview-evaluations-results-result-id-get.api.mdx new file mode 100644 index 0000000000..e21976457e --- /dev/null +++ b/docs/docs/reference/api/fetch-result-preview-evaluations-results-result-id-get.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-result-preview-evaluations-results-result-id-get +title: "Fetch Result" +description: "Fetch Result" +sidebar_label: "Fetch Result" +hide_title: true +hide_table_of_contents: true +api: eJzVWEtv20YQ/ivCnBKAsRyjJ56qJnbtOmkMW8nFEIQRORI3XS7p3VnVqsD/XuxySZGSLD/gBO1J0nIe337z4IzWwLgwEN/C6RKlRRaFMjCJoChJ+18XKcQwJ06yqSZjJU9LTUtBf09poxEemWkjI9LpdEEMEZSoMScm7bysQWFOEEMrBhEIBTGUyBlEoOnOCk0pxKwtRWCSjHKEeA28Kp2iYS3UAiKYFzpHhhis9VZYsHQC197y4CKFqpo4g6YslCHjbJwcH7uPlEyiRemQQww3NknImLmVg+sgDBEkhWJS7MSxLKVI/EWH343TWXdwldpRxaL2kBS2VgpwhWJakO7g++AlIkhpjlYyxMdVFOjwztTqy9wz1Tc8lz5OXQFMU+FAobzqiW4kAohZUUhCBVW0TWM1qaLmqJh9p4S7QspKCY7EBvuZB1FFkBPjC8E0nqMdjnqe81n/pHuH/b4gETqxEvWbMyvlH6ZQ775YLi2/hX13FEz5E7VQa1wdJqavC89i9bMj02m8PMI/gdQ/i0/C8KO0PnTJHfXncTQOiZdoQqZ0inyIh053SJHpHYucDpr/UJsdjDwsW6Y/wsnX2mxwkpKkH+DkY202OGnomq1cq32aH99Pn0LWbyvfZTd8vaqXhq3WS0PYq3pp6Gq9vJ7p2t6StBH1O+MJVbtj5FtQryLI0GSvePNzNFm4M2tM6BHTB4vT6Te2yHCC5jFzz0E6DiaDB9K60P/dPvk/e/mcejarCAwj24OsRUDK5m5WLEml9cmdJUtu/NJWqfrI1POUCzEKabWbpnzM3FGCKiEpKYUuhnaQvKlB7APczkutd1etikkvUe6FvTe020XaGHCkiZwMY16+akMet1b9nFcSurH3/sWIr72JwUV6vz1EGqZy+het9k3LjfYNUzm4pJWPeEIKtShCqT51wL4JaqEctVXPNHBtVT2eb+dpd/y/3Vynj7T1uDeB6ul/D4H7vD2k3q4BVeXUfjk52d0avqEUqdcZ1CX04pUhJUbhMzh0hW0BWSS9p8/pap35vm4km1t/KmqAfp43i0NZ85mMwQVtOsvDop6Mwdg9fSzA7l616yDXfe+19LYN6oFrfKzpOxTf8/H4asdgHdt+UM/cmjsIOeS3nKxw62+zyXIGMQzD/jvs7L/DsP8O1+1iW7m8Jb1sFl+rJcSQMZcmHg4TWdj0CBekGI9QDLEUvsoNJVYLXnmV0dXFJa3OCVPSEN9OugI3Lpvq/OiLtaHBUlz66gkr98hyVmjxTx30sHZntVble+m88OqBtZEHNxhdXUBnjIHjo/dHx7DNXE/YFQImvhAa3/4xRFsstPd3r4jcVwEwYf7r5oFDVhaGc1Qde1uB6mFpCWC652EpUfgU957XIYi3EILoHHf++Gg2cfct3vxHMYkgKww7vfV6hoa+allV7vjOknbBmkSwRC1w5qi7XUMqjPueQjxHaWgHYtsr4M11KIm3g81Lvw+9Cahy0XRo3S+IwPf6zl8pvtqzJl3W4fkoSajkjuZOc3J51eb676djqKp/AUN2MQM= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Result + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-results.api.mdx b/docs/docs/reference/api/fetch-results.api.mdx index 7ab6eaeb32..c0747c0672 100644 --- a/docs/docs/reference/api/fetch-results.api.mdx +++ b/docs/docs/reference/api/fetch-results.api.mdx @@ -5,298 +5,73 @@ description: "Fetch all the results for one the comparison table" sidebar_label: "Fetch Results" hide_title: true hide_table_of_contents: true -api: eJzNVcFu2zAM/RWBpw1Qm6zYyadlW7cW3bAi63ZJg4K1mVitLbkSXSwz/O8DZSeOm7XAbjvZlkjq8fE9uQHGdYBkAWd1ifbo9BGLGtk4G2CpIaOQelPJNyTwiTjNFRaF4pyUp1AXHNTKeeUsxbXUlRV6E5xVjLcFXdtrO/PruiTLIbm2SilFuyNuTKaOjtTN3ik3kjEnrr3dxo+2QYOryMf08wwSWAmmmx4LaKjQY0lMXppqwGJJkMDoTNBgpJ0KOQcNnh5q4ymDhH1NGkKaU4mQNMCbSpIDe2PXoIENF7IwkKTOM2jbpRQJlbOBguSdTKfyGJP3vU5TCmFVF2reB4OG1FkmyxKOVVWYNJad3AXJaQYsbdu2Gt6enBwW/omFyTo0p947/w9VofLCJpsOd0aMppA3w1SGw4DCpaNdtJtvq8jzmKpW71aMZVqTh3bZ6u0aeo+bPT6/uA4gtBrKsH6J+q8UAq4JdsVemJKQoa5ktx3Odrd3lPJo7IvYV3d0H7ccygz0duw+38bHjr6/HbYNObu6ujwo2M22JM6dKHpNHHXMOSQwyaMtB/2GSTMSczsZtB/IP26FX/sCEsiZq5BMJmnh6uwY12QZj9FMsDLw1N2zuKs+SCiIpgOltTe8ifVml+cXtDkjzMhDsljuB3wXPXUKGYfthoOVuSDhqvfjrObcefO7G3vvx7zLEjKMXbmY3vPWY3uP6T1ZMbD02cGeHr85nj7XTJ+gZpfnvS0wjbbY4ohhoJ/QtSMKNFAZPQFMWL4bNgRl5QKXaPfqdTfkfDeREahm8OV/cpX202H6xZOqQBMdGKloegEu4ECAoCF5ep9uNbjUkLvAktc0txjohy/aVpYfavKipKWGR/RGOoq6ykyQ9wySFRaBXqDs1bx37Gv1HPSt2qxITSDKF2i4p83BTyBeSPlWz00fM0tTqngv++D+FOHvvPr59Ara9g+yg4Mn +api: eJzNlN9v0zAQx/8V655A8pYy8ZQnKjFYNRBTV3jpqspLrolHYmf2ZaJE+d/ROUnTrGwSbzw1te/n15+7BkhlHuI1XNWlMmeXT6qoFWlrPGwkpOgTpyv+DzF8QkpyoYpCUI7Coa8L8mJnnbAGw1liy0o57a0RpO4LvDN3Zu6yukRDPr4zQgiBhxRbnYqzM7E9yrJljyVS7cxgP7kGCbZCF9wXKcSw45q2fS0goVJOlUjouKkGjCoRYpjkBAma26kU5SDB4WOtHaYQk6tRgk9yLBXEDdC+YmdPTpsMJJCmgg9GkcQihbbdcBBfWePRs9/FbMY/U/Fu6yRB73d1IZa9MUhIrCE0xOaqqgqdhLDRg2efZqylbdtWwvuLi9PAP1Sh066aS+es+4eoUDlWk3RXd4qkdMFfmrD0pwaFTSa3yuy/7YLOU6laeTjRhjBDB+2mlcOZck7tj/T8YrsCoZVQ+uw16b+i9ypDOAR75ZVYDLHi23bMbe8fMKHJs69DX13q3m4zhhnl7dR9uY2PnXx/SzaYXK1WNycBu7ctkXLLRGdIgWPKIYYoD2M58uujZgJzG43se3RPA/i1KyCGnKjycRQlha3Tc5WhIXWudKQqDYytx6R2mvbBZX6zuMb9FaoUHcTrzbHBLSPTQTA1O+ivKn2NLEc/cvOacuv07+5l+5HLOy/uV5udDe69NPNQnJjfLEACt9HRPTt/dz6D55toYsy0qyTQPuQO1yCfqXDoHyRgGVAHQlV+GC+4ssp6KpU5itctvuVB6EkxzThu/8mG7F+E8BdFVaF0GKwgRdNztYYTrkBC/HxNDmhtJOTWE/s1zb3y+N0VbcvHjzU6pmcj4Uk5zR0FllLt+TuFeKcKj69I9mbZD+Jb8VLpA2GG8eIS+R9I+In7k90e9kw+MNz0NvMkwYqOvE/WIsN+GMHPlyto2z9nQXSY sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Fetch all the results for one the comparison table Arguments: -evaluation*id -- \_description* + evaluation_id -- _description_ Returns: -_description_ + _description_ +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-run-preview-evaluations-runs-run-id-get.api.mdx b/docs/docs/reference/api/fetch-run-preview-evaluations-runs-run-id-get.api.mdx new file mode 100644 index 0000000000..b6079d2031 --- /dev/null +++ b/docs/docs/reference/api/fetch-run-preview-evaluations-runs-run-id-get.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-run-preview-evaluations-runs-run-id-get +title: "Fetch Run" +description: "Fetch Run" +sidebar_label: "Fetch Run" +hide_title: true +hide_table_of_contents: true +api: eJzNWEtz2zYQ/iuaPSUzjOVkeuKpqp00auLGIzu5eDQaGFxJSEGAwUOtquF/7yxAUqQetPzITE+2wN1vd79dYBfYgGMLC+kdvF8x6ZkTWlmYJqALNOHXOIMU5uj4cma8mhUGVwL/nuFWnNbtLHwV2Wy2QAcJFMywHB0aAt+AYjlCClEGEhAKUiiYW0ICBn94YTCD1BmPCVi+xJxBugG3LkjLOiPUAhKYa5MzByl4H1CccJIEJl4NxhmU5ZTQbKGVRUsA787P6U+GlhtRkLeQwo3nHK2dezmYVMKQANfKoXIkzopCCh6CG363pLNpOVUY4saJaIFrH5UqX4VyuEDTcu4iSCSQ4Zx56SA9LxMiIlhS6y/zQFAXdS5DVo4LCDvjUlsirS1UOXGvtUSmoEyaJeWlBOKndmtsBxcRoUwITooVPgfsM+lHKMbdM8FGEaEsk1pK339H7lq0but14tWHwNc+aJlAjo51XWFZJkiPyesOp3vOVnXXgq2z27GU33dX2jEetgVcGO4lM68+eCn/sFq9+eJd4d1r2A2YQITD/EQtZgxb97K7owt7FPcpXxGZpLFXnv8nUv/Un4V1D9J6LMg99cdxdBtLsTryTmJg3wXSLZPuwfU0qMsWRJkAN8gcZjPm+gBbR23GHL5xIvhz3MpFhB2MAlm+yH6Gka8RtjKSocSfYOQywlZGarru19S3TrMTmtMpZP22Dl1ry9eLWqnZaqzUhL2olZquxsrLQUe8FRr7jPL/VqmXCVjHnO89lBJA5XOahgpUWVz54dEjDRvGKxWXbBwgKBgmpDc0PqAx2tASZ4qjlJjB9FCzuolOHHK5GRAa65Q0ttu+uoOAdVjsxFS1i13Jv3B9aKaqXfyE6+05d5wYoehApAFupeOIBAkwpbSLP9oHIUGUCWgjFkL1gXJvnc4hgaXPWQD0TrehvkQIGpxwjgYVr7rLka7TjfwFS0j6xVNhbkj3xTdIz4Q0qana718HhELPCtl9uXI6YHc77N8FiIObZOLVJXPsxmExVt0G/PCAM44xnGK8kmhKtFNeD3n2KKduwjYN9Vsg26W4bxDaAZpU+q3j4i1NuawohNodyo6kjmvpc3UgpUJlvTml763J5phcnF4e4p/AKqw+qq9iZBfR53CMY/HU0y3cOHvErun7aZUToE5wPJbKA5BVRqrgTkB9VPFd1cVx8n2KLB26Tp2q/xzd5k5elqTzy7t3+1f4b0yKLCgM3lPjffr9PUPHhAxX6sObRWre+fqYC810N0vbkD/X3ZM2r130FeUVWssW2NedGyKJjEFsvA+UHMUVTVdy7Y7X0BvZPR7GZaSvL7kfb2+v9wBjbrtJ/UCPTAOqnnBrX2p6eapfk2jfwrB6fRq2Xp+G9Po03MSXpZK2EJpV/ezkjYQUls4VNh0OudQ+O2MLVI6dMTFkhQj7xCL3Rrh1UBldjz/h+iOyDA2kd9O2wA0VUSyLrliTEVaIT+F4qB68Rt4ttRH/1pNSePdaRq0yNNy5DuoVWaPg3GB0PYbW6AvnZ2/PzmGXsI4w1T/jof5r2+EzJDssNPHTAJaH4geHLP91+4E8K7R1NIxt8dr52bmYVtE7/McNC8niqBbMbqrc3UGVO7LaemoMczX9Sau3wWkCS20daWw298ziVyPLkpZ/eDSUo2kCK2YEuyfG7jaQCUv/Z5DOmbS451xzMsCrSbUBXg+2LwJdp+s8Kkoi+Um/IIn9pX6/DBt7WZdI1XxgxDkWrqW2dw5RLTWV/fv7WyjL/wAbjVX3 +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Run + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-scenario-preview-evaluations-scenarios-scenario-id-get.api.mdx b/docs/docs/reference/api/fetch-scenario-preview-evaluations-scenarios-scenario-id-get.api.mdx new file mode 100644 index 0000000000..ca686f016a --- /dev/null +++ b/docs/docs/reference/api/fetch-scenario-preview-evaluations-scenarios-scenario-id-get.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-scenario-preview-evaluations-scenarios-scenario-id-get +title: "Fetch Scenario" +description: "Fetch Scenario" +sidebar_label: "Fetch Scenario" +hide_title: true +hide_table_of_contents: true +api: eJy9V0tzGzcM/isanJKZjeV4etpT1cRu3KSNx1Zy8Wg00C4kMeVy1ySoVtXsf++A+5Zkx/Y4OWlF4vHhAwmAO2BcOYhv4XyD2iOr3DiYRZAXZMO/yxRiWBIn67lLyKBV+bywtFH0z5w6nXbTzTs5lc7nK2KIoECLGTFZ8bUDgxlBDD1BiEAZiKFAXkMElu68spRCzNZTBC5ZU4YQ74C3RVBlq8wKIljmNkOGGLwPVlixFoGb2vboMoWynIlJV+TGkRMrZ6en8pOSS6wqJAJR8UlCzi29Hl3XwhBBkhsmwyKORaFVEgIef3Ois+shK6yQxqrykOS+UqoBK8O0IttD+C5IRJDSEr1miE/LqKUkuDPbz8vA19D0Uoec9QUwTZXAQn01EO0kahiLPNeEBspon8pyVkbNUr74Rgn3hYzXGoTGBv1FAFFGkBHjM8E0nqMDlgaes8VwpR/DcV+QKJt4jfbVhdf6D5ebN589F55fw7EYFVP2SC20FrcPEzPUhSex+qeQKRrPz/BPIPWv/JNy/F1a7wvyQP1pHE3rg5dYQqZ0jvwQD70KkSLTG1YZPWj+XWV2NAmwfJH+CCdfKrO1k5Q0/QAn7yuztZOGrsVWyu3j/ISa+hiyftuGOtvx9aJeGrZaLw1hL+qloav18nKmK3sbsk5VXeMRt/bAyNdaXboEI/sHr38EZHwmjb0gk1Yrd548SY+03phqyVUtT4JBpb2VhkfW5laWEjQJaU0p9FB0c8JNBeIY5Laltd6FTsNkN6iPwj5ao/ZZbAxIuVAZOcaseNEbM22tloGl+nQ9dua49qYaN/bLWX+guW0MHye16f+HMI+Zvd9AO8GUpSj+cnZ2OPB8Ra3SoDU6l6Q/f9pJiVGFzNa9dF9A58lg9yltqzeYVO23i/tTXgEMg4hbHUtW11qdwxV1veZ+0UDGaCq738ulxFW5ruX6F7alt2L3/jDeV/Q9lOEP0+nVgcEqt8OkXsisPmrPURjQ1rlM8c0ozmuIYVwP8ePeED9uh/jxrjebl1IoyG6a6d1bDTGsmQsXj8eJzn16gisyjCeoxliocKccJd4q3gaVydXlR9p+IEzJQnw76wvcyJmqTslQrE0QFuojCV/1u2HieZ1b9V+V+vrlsK60ylBplmGAbribBHCjydUl9KownJ68PTmFff4GwnIdMAnXofEdtiHaY6GNXwpoFu4CMGH2a7chyIrccYamZ+8gXQM0LQVM//K40KjCUQ++d3Uqb6FOpbjuveK6x4R8x/3H1iyCde5YdHe7BTr6YnVZyvKdJyspm0WwQatwIQTe7iBVTr5TiJeoHR3AbOsGvLqur8frUTcVDuE3aTWSU0Es/yCCv2m79yoMd3/dHJtdLTFJEiq4p3tQquR8tef+9/MplOX/T0YcUQ== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Scenario + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-simple-evaluator.api.mdx b/docs/docs/reference/api/fetch-simple-evaluator.api.mdx new file mode 100644 index 0000000000..bedcaee7df --- /dev/null +++ b/docs/docs/reference/api/fetch-simple-evaluator.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-simple-evaluator +title: "Fetch Simple Evaluator" +description: "Fetch Simple Evaluator" +sidebar_label: "Fetch Simple Evaluator" +hide_title: true +hide_table_of_contents: true +api: eJzNWFlv20YQ/ivCPCXAxnKNPvGpqo/aTdoYPvJiCMZoOZI2XR7Zw60q8L8Xe5AiRcuVZBvQUxxx5pvZb2Z3jiUYnGlIHuD8CaVFUygNYwZFSQqNKPKrFBKYkuHzRy2yUtIj1YLAoESFGRlSDmIJOWYECTQSjyIFBiKHBEo0c2Cg6IcVilJIjLLEQPM5ZQjJEsyidLraKJHPgMG0UBkaSMBaj2KEkU6g8XNwlUJVjR2mLotck3YwJ8fH7p+UNFeidCeABG4t56T11MrBTRQGBrzIDeXGiWNZSsH9gYfftdNZtlwrlaPDiGCBFzYoRY9FbmhGquXiqZdgkNIUrTSQHFdsRYq3ly++Tj1lXeyp9NHYLCD0I7faFFlXKLoyKQpJmEPFmp9yKyU4lmrnrvTgNCBUzMFt8Gs3xCYoEXRuM8xfA3jpAaqK1ULF5Dtx0yL51mdjY/jCM9dHrRhkZLDrC6apcLFGed1ht+dtzMYWbB3tjqVs0v2lfcjnbQEXiluJ6sOFlfJ3XeSfvlpTWvMR1o/sQIShbEstVAoXL9K7pgs9kl9S/sOR6TR6iXpIpP5ZfBHa/C+tmw7ZU9+No7uQivE53IqBvgtOt2Ldh2w/qLMWRMWAK0JD6SOalwBbD3CKhj4Z4f3ZbOU0wA5Gnixbpu9h5D7ARiMpSXoHI2cBNhqp6ZosXDXbzo4vWduQ9evCV7EVX29qpWarsVIT9qZWaroaK1ra2b65eut0XQ15M/fiyXG9BnTr6hMp/Yor9i2qu0gqsS/KvRIBQe6PIB3CnDD1Pdlu7/N7UXJ4CfFCX3FDU1KU884bUTs63qkOXMYwVHWfu21EDqiSHmR7skMMbiPxrg/EshT5tm3LOsW79Ei1IR94V3r3zv6gXXUnrUPtug4yVzYrX68odYEi9SQ4bcNuGF13yMEIXfmZcypmNszW72HrtGNghwHqDH1j35uftkd4nXYzmFeV0/r55KQ/x39DKVJ/ssG5Un4DsecQn5JB4ctszMd1AVnwztdd7lOrSoQUXh36S8GxbsQzPXtu8bGatLTGGa1yerOoJ2Nw574+x/hq6fLgzxVMR7l2yW7oDexuPsZZoO+l8F7e3V33AENsu0G9cMulQciG1iLBz+3zwq2fZmT8rsnMIYFhqehJ0N/DsI4aNvsLPVy2F08VhDtd76Z8VwVzY0qdDIdcFjY9whnlBo9QDLEU/hpp4lYJs/Aqo+urz7QIVRySh3FbwNeVkCpdsSZKWIrP5EiLW7GRNfNCiX9D/ONaLHRqnkiRTwuvHgkceecGo+srYKtmDI6Pfjo6hnUSO8LuTiD3d6K27T8DW2OhOT8woMxfCDCE2S+rD86zstAm7nMi3saYrY2rkQpD/5hhKVHkrf42xPMBYjxduDwetHZlGhgknXXimMG80MYpLpcT1HSvZFW5n39YUi5uYwZPqAROHIsPS0iFdn+nkExRaur52Lwg8OEmXpSPg1UR6vpexzZ3gXV+uf8Bg79osb749M/AvE6eZRQZcU6laSn3Xi2XZU3q/3Z+B1X1H4qAb2U= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Simple Evaluator + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-simple-query.api.mdx b/docs/docs/reference/api/fetch-simple-query.api.mdx new file mode 100644 index 0000000000..ec223c9884 --- /dev/null +++ b/docs/docs/reference/api/fetch-simple-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-simple-query +title: "Fetch Simple Query" +description: "Fetch Simple Query" +sidebar_label: "Fetch Simple Query" +hide_title: true +hide_table_of_contents: true +api: eJzNWN9T2zgQ/lcy+1RmXMIx95Sn4wpcubZAgfYeMpmMYm9itbJkJBnIZfy/36wkOzZ2QsjQmXsBx9Z+u/r2h1a7AssWBkZj+Fqg5mhgEoHKUTPLlbxIYARztHE6NTzLBU7vC9RLiCBnmmVoUZPsCiTLEEbgvk55AhFwCSPImU0hAo33BdeYwMjqAiMwcYoZg9EK7DInOWM1lwuIYK50xiyMoCgciuVW0AIybjm4SKAsJ4RnciUNGoI4PjqifwmaWPOcrIYR3BZxjMbMCzG4CYshglhJi9LScpbngsduk8MfhmRWDbNyTRRY7jXEqvBCwVouLS5QN8z74FZEkOCcFcLC6KiMPBlOl1xezR1NbVxPWvN7m44yqt/IQgigrVcaL0m2jNrb3g/qtAFRRhBrZBaTKbPbABuuSpjF95Y7ezZr+eBhByeWlBR58iuUfPOwQUmCAn+BklMPG5RUdM1c3O+mxwX3LmT96WN+zdebaqnYqrVUhL2ploquWosRxWLfWL0l2TKCtzPP2zQXrgo2IVmScMoJJq5bWdtROlNKIJNNLdVOJmVUvVKzHxjbraacOyNIZH9juhxW1aqlOZu13zT30K8LYq7jQjD97lJ95sb+bZR8f1XYvLAH8JpddsThVSTdBY4ytOz/y9F5IcSLDHGL2Y5STGu23B48bdnXkfqFyKQCwJ6T2j6xHrlM1CORt+1Yw0c0b1tyLz1kGYESyVuDX3nIMgKJT7tCv1hXLgmrjEDwjPeD9gbdM5TPTpr2rRPU221DWWTUyDETo0z8O2oPwo/JVg4cPBVWaVE/MLG3xRcVQBmBZra/wekmVwfnhmTLThSvF/xTx2IXhio6Fxb1C6HqG12lfQMZejdgMllnXpde91VR+ycVGST9G6k0ND2nFjxm4qrSULr201cNpztk/2bj5hxF0tck1ynvFpQR/MTlvgfqJ6SyAg9MFLv2oq8ultVOy55y1l9I/TVh9/r13ZlfRi2Hvpwp3NBFxUzJj83uS2U509wo2fDeZhS8J++7vwuKB2HdE7pH+juzj7KJf1lkqHm8E7ixTFvzyN09CmVSPdJVhnFJG8iYjVOkJ8F/YlPRrUPbSQ+XPp6nvGUqHdU7yaeMDEhZh8xTHu+GgE/cWBOsCD8aOGf0BmWMfWDdelYtatzJyN0uROoU3JR5MTM4NSgNt/yhPy16mr5uF88MDm5rmIYpcyYMlhHgE4vt1Dlwby1nhDH44jA6KrbUzzt8sleBC8JvU8BE/xGwi0UnQrzKEh9ka0s2OzWs6cFajxjGoXC2EjoUXleF626rOiEOYPK8NPXImuaexpNtG6qR+46mLXJuynGDD9xwJU+Z68leI3/rZjQOZX/Jel5SliTx+/Fxd7zynQmeuOHJ4Exrl2Z7zlYStIyL1nnYXiBUvOG0fPmA2uLWz8ob6K4SZrHtmP2CxrAFrjvqzUsdGYM7+vpSkNK+vOqwrn2cBXo9u5u3cerp2+baj3d31x1A79u2U89pzjfwkTD4GuZ8GdpU0RRwgdaN/WwKIxjmGh84Pg79VHB472eHw1U1ACwhAoP6oZoPFlrACFJrczMaDmOhiuSQLVBadsj4kOXcJbrBuNDcLp3IyfXFJ1x+ROYa3/GkueCWosnHR3tZ7RqWc2ptomoyeVLYVGn+r3d6GE+mXqp0fe9cOfGqhjnjBifXFxABbcNzdHT42+ERPGeutdidzLFdD/jCZ4iesVDvnw7BzGUBWGTZH+sPZFmujM2YbOD1OurZIDDQYPHJDnPBuAt0p38VnDiG4ERylcMCP7PkrpcY1bPcSQSpojvXGFarGTP4TYuypNdhwjmeUAOpOZsRdeMVJNzQcxJqf8e4ulbAu5uQEgeDdcvdNrpyqKRdhj4VIDS964mzS/a0ipZV+HwSx5jbhmCnNlFY1UH+19kdlOV/T1Hb2g== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Simple Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-simple-testset-to-file.api.mdx b/docs/docs/reference/api/fetch-simple-testset-to-file.api.mdx new file mode 100644 index 0000000000..dad3210b9e --- /dev/null +++ b/docs/docs/reference/api/fetch-simple-testset-to-file.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-simple-testset-to-file +title: "Fetch Simple Testset To File" +description: "Fetch Simple Testset To File" +sidebar_label: "Fetch Simple Testset To File" +hide_title: true +hide_table_of_contents: true +api: eJztWEtv20gM/isCTy0wjbPBnnRab7NB0nabIHb3YhjGWKKt6Y406jzS9Rr678U8JEtW7DiuA/SQUxyJ5Ed+5HAorkHTpYJ4AmNUWqFWMCUgSpRUM1HcpBDDAnWSzRTLS44z7cVmWswWjCMQKKmkOWqU1swaCpojxFDLsRQIsAJiKKnOgIDEb4ZJTCHW0iABlWSYU4jXoFel1VRasmIJBBZC5lRDDMY4K5ppbgWCp9FNClVFGkTrzszZCIDfDMpVB3FBuepA0mJ1u3BuY2FyS0OiHoDAVyUKS0TXJQsWnhSGc6imG6euGMdobF/2fHK/j/HpmeifLU5lH0tUpSgUKmvv4vzc/klRJZKVNqsQw8gkCSq1MDy6D8JAIBGFxkI7L8qSs8QVwcCxEa9bPpbSlohmHiERxisF91ihcYmylbL3ToJAigtquIb4vCJ1iXRj7lpecFeduwUyqlxJJjRE22NvLgRHWuyl75qqaNxYqYg3K2nysza9iapqKknMv2Ki+8V85QLt26sI5Ki36oKmKbOJofyuQ8YBlVOnpoOUz7tP2uE9jgUJk4nhVL65Mpx/UKJ4d2t0afRb2A7VGmEa8wO1qJR0tb/Wu7rQI3ef8t+WTKvRq6tfidTP4hNT+kladwXZU38eR2NfiqGHHdeQfC8i3a5znKnLlomKQCKRakxnVO8z2Lo9UqrxnWbOn90o773ZaOjIMmX6EiBfvNkAkiLHFwC59GYDSE3XfGWv4sNw3H17CFl/rtwlvOHrpCg1Ww1KTdhJUWq6GhTFzfLYWh1Z3YrA6dwLkdPtO6B7DdZX4IylW00rtN6nXTi8Adc3ZXSTuj6x4/5tkPuuhsHwRBS150ECp7U9auy+9p3XvvOifefUPeOR2fngGeeRAbfuftNnzRL1XPs6cB0wcL1O+i8w6fevzldSjyb10pL51OesnQWOGigO+lK+xwemmCi8K/0P5j0WRm6FFez8jG6zMqkqq/P7xUV/w/IP5Sx1+5PoLymFPH69kqKmjNtfO0YqLpLO2+cU8nQ7UZuQPwnvoGtNavnYELk5bErRZSvru0UdGc2mrMf3ZjE2cXF56CDXqpkNvZ7d3WFcevr2Jfd6PL7rGfS57Sb1yq5CI18LUT13jkV05VehOepM2JVpKZR2q1GdQQyDUuIDw+8Dv0MdhBFYDdabYbgapOJ7wQW1m06F8qHepxrJIYZM61LFg0HChUnP6BILTc8oG9CSuaOkMDGS6ZVTGd7dfMTVNdIUJcSTaVtgZIvMl01XrMkYLdlHtASGHebQ6ExI9r+vhbDHzLyWZYgVC+HUA5lD51w0vLsBAjYMT9352W9n57BNaEfYng+auPNRY7vXQLZYaOIHApi7wwEaaf7H5oX1zGYhp0XL3hP529pWBEI0/qcHJafMnQTnyTqkdgIhtTZpzio0e00FBOLOGrzJ8JRAZisknsB6PacKv0heVfax3w/bJKZM0TlvbYj/xdXWlvuBcmMddAd7n3zYQG/kp/YfyazC42BbTDSdC97chwP6NtrcOl2G6joqVm3M2qEWI675ZHWZroPAMEmw1C3VXq+07jdH7e52NIaq+gHQUHa4 +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Simple Testset To File + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-simple-testset.api.mdx b/docs/docs/reference/api/fetch-simple-testset.api.mdx new file mode 100644 index 0000000000..ec78be7799 --- /dev/null +++ b/docs/docs/reference/api/fetch-simple-testset.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-simple-testset +title: "Fetch Simple Testset" +description: "Fetch Simple Testset" +sidebar_label: "Fetch Simple Testset" +hide_title: true +hide_table_of_contents: true +api: eJztWEtz20YM/isanJKZjeV6euKpahzXbtLGYyu9eDQeiITETZeP7IJuFQ3/e2cfpEjRsmVHnunBJ8sk8AH4gMWCWAPj0kB0A1MybIgNzAQUJWlkWeQXCUSwII7TWyOzUtEtezEQUKLGjJi0VV9DjhlBBOH9rUxAgMwhghI5BQGavlVSUwIR64oEmDilDCFaA69Kq2lYy3wJAhaFzpAhgqpyKCxZWYHg4egigbqeWURTFrkhY0FOjo/tn4RMrGVpfYcIrqs4JmMWlRpdBWEQEBc5U85WHMtSydiFOv5qrM6641ipLREsvYW4qLxS8FfmTEvSHQffOwkBCS2wUgzRcS0aQpy1fPV54cjqIy+Uy8FugRSNIz7GEO1GMDgzLwpFmEMt2kd5pRRYnhr3ztGMpi1KLTysxvhHMT1EbYP1YsX8K8U8TN2ZC3SIVwvIiLHvBSaJtIlBddkjY+BnKJwObJOanqVs3n/SDe9+WxBLHVcK9ZuzSqnfTZG/+1xxWfFb2A7VgkimbE8t1BpXDxK7pQsDch9S/sOSaTUGdfV/IvXP4pM0/Citu4IcqD+No6kvxdC39mJg6ILVrUW/6zwP6rQDUQuINSFTcov8EGCnVybI9I6l82e3lfcedjRxZFVl8hJGvnjYYCQhRS9g5NTDBiMNXfOVvXj2s+Nul33I+nXlrpwNXwe10rDVWmkIO6iVhq7WilHV8rm1em11awGHcy9Ejtt3QP8abK7AW5lsNa3Qeh93Yf8G3NyUo4vE9Ykd929reehqGIMORFF3+hFwWOzrFve177z2nRftO4fuGffMznvPOPcMuE33mz1plmjm2teBa4+B63XSf4FJf3h1vpL6bFJPLZmPfc7aWeBZA8VeX8pXdCeNLHLvyvCD+QGEa7eoCTg/otuuTOra6vx8cjLcsPyFSiZufzL6oHWhn79eSYhRKvtrx0ilirj39imFPNtO1CbkT4V30LUms7xviNwcNmNw2cn6blFHxmhq397H92YZduPi8qaDXKdmNvR6dneHcerpeyi559Pp5QDQ57af1DO78Bv5WhhN24VfRpwWdiG4DPs/TiGCcanpTtI/Y78gHIfJ14zXmxm4Bjux6rtmV1hpBRGkzKWJxuNYFVVyhEvKGY9QjrGU7uAYiisteeVUJpcXH2l1TpiQhuhm1hW4tiXli6Qv1uYHS/mRLF1hSzmpOC20/O4zHxaVqdeyfMh8UTj1QN3EOTeaXF6AABuGJ+r46KejY9imrydsTwPG7jQ0tt1rEFsstPGDAMrcUQAmzH7ZvLCelYXhDPMO3o5sbe0kAhFM//K4VChdvTsP1iGTNxAyaZPl0KDdXhoQEHW+aWYC0sKwVVqv52joi1Z1bR9/q0jbjM0E3KGWOLf83awhkcb+TiBaoDI08K/tGvDmKhyOt6NNx+/73WQ1tym9Q1XZ/0DA37Tqr6DdwU+bolkHgUkcU8kd1UGfstXVlvtvH6ZQ1/8BgZbrRw== +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Simple Testset + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-subscription.api.mdx b/docs/docs/reference/api/fetch-subscription.api.mdx index ace8e35fba..6d1efd54db 100644 --- a/docs/docs/reference/api/fetch-subscription.api.mdx +++ b/docs/docs/reference/api/fetch-subscription.api.mdx @@ -5,69 +5,59 @@ description: "Fetch Subscription User Route" sidebar_label: "Fetch Subscription User Route" hide_title: true hide_table_of_contents: true -api: eJyFUktv2zAM/isGz0Kc7ahT02GPoJeiWU+BMTAyE2u1JVWig3mG//tA201SA0N1MSR+pL8He2A8JdB7uLd1bd0JCgU+UES23m1L0HAkNtWv1B6SiTbIMyiIlIJ3iRLoHj6v1/Ip6YrQsGuNoZSObZ09zWBQYLxjcixwDKG2ZvxP/jtJTw/JVNQg6H6QoxYjvwmTbHfDJHtOFLMn37IMb4grL5RPxKAgIFegIT9MyvKFhETxTFG099DGGjRUzCHpPDe1b8sVnsgxrtDmGCwsuWzGavZFoDAUMs600XI3zts8bh+o+0FYUgS9L24BO9E4Gfce1gN3gUADBvtAHShw2Mh903Llo/2LM3MrBKqpS1yy7ujHdss1Xbndo3khV4IC0TnRXq8+rdb/EzM3ZJvH7RwVmjGqNx4jDNTCrotRoIAatFJjwubuWhCWwSdu0N3M+yjPdyQv7jD94TzUaB0MM5V+znoPc9YS723ahYLKJxZE3x8w0XOsh0GeX1uKklmh4IzR4kEc3BeDejNY4nyhTuQbQ0EW64x1O+W02GCJ+bKE37/+hGH4B2X9KQk= +api: eJyFUk1v2zAM/SvBOwtxtqNPzYB9BL0UzXoKjIFRmFibbakSHcwz/N8HOm6a+FJfBIuP1PtgD6FTQr7DF1dVrjmhMPCBI4nzzeaAHEcWW/5K7T7Z6IJewyByCr5JnJD3+Lxa6XHgd0SObWstp3Rsq8XzBIaB9Y1wIwqnECpnx3ey30l7eiRbck3I+0E/Mxv5TZkstjdMFi+J4+LZt6LDa5bSK+UTCwwCSYkc2f6iLJtJSBzPHFV7jzZWyFGKhJRnma18e1jSiRuhJbmMgsNQaIdto5NubFk/bR65+8F04Ih8V9wCtirj4s09rId0gZGDgnvkDgYN1fq/bqX00f2jiZxTveWlS41wzdGP7U6qET+SW6yfNjBQGReHVstPyxXmvt2BNQGyYwJvb49lmJkLV/0w4Jqc1oSpfngvKLPgk9TU3Mz7KKY7cldHhP9KFipyDYaJSj9FuMMUoaZ2G2JhUPokiuj7PSV+idUw6PVry1FzKgzOFB3t1bVdMZg3UzXCP9ypfGs56L6cqWov2cwWU6O97tb3rz8xDP8Bxkwaeg== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Fetch Subscription User Route -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-testcase-preview-testcases-testcase-id-get.api.mdx b/docs/docs/reference/api/fetch-testcase-preview-testcases-testcase-id-get.api.mdx new file mode 100644 index 0000000000..38139d6a0a --- /dev/null +++ b/docs/docs/reference/api/fetch-testcase-preview-testcases-testcase-id-get.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-testcase-preview-testcases-testcase-id-get +title: "Fetch Testcase" +description: "Fetch Testcase" +sidebar_label: "Fetch Testcase" +hide_title: true +hide_table_of_contents: true +api: eJztl99v20YMx/8Vg08toMZusCc9zWuaNmu3Bo27F8MwaIm2rjvp1DteNlfQ/z7w9MNSnGZJ4QJ72FMcHckv70PegVcB485BvIQFOU7QkYNVBKYki6xMcZVCDFviJFtza7AuLd0q+qv/4NaHNZWu1ztiiKBEizkxWYleQYE5QQwDQ4hAFRBDiZxBBJa+eGUphZitpwhcklGOEFfA+1JcHVtV7CCCrbE5MsTgfYjCirUYdDuYXKVQ1ysJ6UpTyJbiCs5nM/mTkkusKmVvEMONTxJybuv15GNrDBEkpmAqWMyxLLVKAorpZyc+1SCz0gooVo1CYnzj1CasCqYd2UGGr4JFBClt0WuGeFZHPZIgV+w/bAOvcWixccRCbWT1MJo66i0KrzUIkyEsRxxYRXDa2Dd93MQSMqVr5EfGTpHpBaucHhR41YSdzFlEfJn+CJFPTdhWJCVNP0DkognbinS4NvsTVqOD9cu+LUrH66QqHa1epQN2UpUOV69yutBNvK0O1+EwJKapkvOP+np0Jo9EN8ZowmKo0uZRr+ScN5/M5jMl/GAqlyEJcfn+ZDrl6Og6Ginnm/GX4R7u14JE2cRrtM9+N++V41+dKV588Fx6fg5P2eWROzwJ0qJllBPjf5fRpdf6XwkppvyRXmgt7h9unrHv06D+JjDl8OL/UE8G9UJg1kcux4PLPVEe49ZPLnUt5j+dnx8POn+gVmkYYyavrTX2+6eclBiVll8t4bsG2iSj1ad0yOCebIpy2O170yQYzrzb3TcYHrrYOdzRoUrfNg0wJgtZvQ/1YShdhn010q3doMQHvA3db2/josH3UF3fLhbXRwGb2o6Leilz+aTvnnAXZkYm9m4E5wximLYD+7Qf2KfVYA6vQeY/e9tN6t5qiCFjLl08nSba+PQMd1QwnqGaYqlCcztKvFW8Dy7z66t3tH9LmJKFeLkaGtxIHzWdMTbri4KlekfCqH0jzD1nxqqvTbnbV0LWeAkEVWxNcG95zUNyk/n1FUQg22jozM5ens3gLrORsRwBTMIR6LTDMkR3KPT7hwgoD/0PTJj/fFiQzErjOMdiEO+oRKNsegRMf/O01KhCewftqi3fEtryweGp4CCCePiUWkWQGcdiXVUbdPTJ6rqWz188WSnSKoJbtAo3gmxZQaqc/E4h3qJ2dJRYfzvAs4/tIXg+OVyZ44S7QhZSxVvUXv6DCP6k/Z03XzjhWdcoVWsxTxIqeeB7dCFJR/Xd/eb1Aur6H99vClU= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Testcase + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-testcase.api.mdx b/docs/docs/reference/api/fetch-testcase.api.mdx deleted file mode 100644 index d38802bf23..0000000000 --- a/docs/docs/reference/api/fetch-testcase.api.mdx +++ /dev/null @@ -1,258 +0,0 @@ ---- -id: fetch-testcase -title: "Fetch Testcase" -description: "Fetch Testcase" -sidebar_label: "Fetch Testcase" -hide_title: true -hide_table_of_contents: true -api: eJydVU2P2zYQ/SvGnBJAXW0XPelUNx/NNi2ySJxeDCMYU2OLCSUq5HAbR9B/D4aibMneRZOcLFNvPvjezFMHjHsPxRpW5NkTe9hkYFtyyNo2tyUUsCNW1Qcmzwo9QQYtOqyJyUlgBw3WBAWMgA+6hAx0AwW0yBVk4Ohz0I5KKNgFysCrimqEogM+tBLq2elmDxnsrKuRoYAQYhbWbASwSrkXtyX0/UZS+tY2nrxkubm+lp+SvHK6lb6hgHdBKfJ+F8zibQJDBso2TA0LHNvWaBWvmX/0EtNNOmudkMB6qKBsGIJSw7ph2pObdPgsIvrsSEMs0Rze7CJHWJZaKqG5myU+IeZU9NlFrclRE+rt/GRrrSFs4tHDtUBpp4JB9+RlMOYvb5tf3gRuAz+VWwxZ7PYjKY5JNFP9nVHoHB7m7RkDotJIzllspOmi4mPBo/bQX4RNR2udRHog8qh/30uO325uLsflXzS6jMOweOGcdT8/KyUxaiNPicNzgLFq9vZHZmDTn9F+uu3fdmhQ2K39/qH1GqH/kPe4p5MOj0MjGYuVvP0//uVeQ+mEm0hxondg9/FrPB/oe6jYCHm1Wt1dJBy0nYv6UpxrsTo5V01cWfG0PXE0Mq6ggLx1dK/pv5yTB+bjEvu8m9haDxl4cvej8QVnoICKufVFnitjQ3mFe2oYr1Dn2Go4b2gZ3y6eCTQOuScVnOZDzLe8u31Nh1eEJTko1psp4J1M2zA/c9hROmz1axImkx8vA1fW6a/DUCRHroYooUo3OxvDE6uptz9QfaJGzFfuObR9ffXr1fVjl0kBi+XdbVoaVHFpxj4iDLIzuo5EQQZUx40BJqx/P72QLlvrucZmku9C1FlXRzqYvnDeGtRxIWLtLgm+hiQ4DHYdP3sn55bnYvo122RQWc8S2HVb9PTemb6X48+BnGi3yeAencatMLnuoNRenksodmg8XfR4tBZ48jZt0NPFyVHnvY/6NiLuPZog/yCDT3Q4++xGe6jG+ekSYqkUtTyJvXAzGbTjavz5YgV9/w1zEMd+ -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Fetch Testcase - - - -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testcase - object - -
    -
    - anyOf -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/fetch-testset-revision.api.mdx b/docs/docs/reference/api/fetch-testset-revision.api.mdx new file mode 100644 index 0000000000..7cce0422bc --- /dev/null +++ b/docs/docs/reference/api/fetch-testset-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-testset-revision +title: "Fetch Testset Revision" +description: "Fetch Testset Revision" +sidebar_label: "Fetch Testset Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWUtz20YM/isanJKZjeV6euKpbhzXbtLEYyu+eDQeiISkTZeP7IJuFQ3/e2cfpEVSkmVFnunBJ8si8AH4gMWC0BIYZwaiOxiRYUNsYCwgL0gjyzy7TCCCKXE8v2f//F7TgzQyz0BAgRpTYtIWYAkZpgQRdAXvZQICZAYRFMhzEKDpeyk1JRCxLkmAieeUIkRL4EVhIQxrmc1AwDTXKTJEUJYOhSUrKxCcHVwHG4PLBKpqbKFNkWeGjEU7OT62fxIysZaFjQciuCnjmIyZlmpwHYRBQJxnTBlbcSwKJWMX/vCbsTrLFQ8Lbclh6S3EeemVguMyY5qRXvH0vZMQkNAUS8UQHVeiR5Ezmy2+TB2PbRO17ANqiRlbNlvS2ymrRCORlUqB5ahL4q1HdhwKOLydNn4dz+Hj8PioWU4xPqSB0wBZWyh5nuuDgXu0SkCCTDuiWtF3LFPaCn1mASsBKRmDs63Y22D+CuqVgKly3WJztc7RuE4RYziDPYOTPFeE2VaLF2gGowalEh5WY/yzmB6ismXoxfLJN4q531nOXaB9PMcmY9sLTBJp2wWqqxYZO5BdN4yWpXTS/mY1vPW2IJY6LhXqN+elUn+aPHv3peSi5LfQDdWCSKZ0Ry3UGhdbie3oQo/c7bXF6DR6dfV/IvVz/kkafpLWTUH21J/H0ciXYrhf9zvDn9H1ivZduB/U2QpEJSDWhEzJPfJBe9d7Dzs4dWSVRfISRr562GAkIUUvYOTMwwYjNV2TxQEvqJqs3xfhiqr5OqiVmq3GSk3YQa3UdDVWHkj3Z6Tdy/U2qFcCjCpn+8LcWN1KwOECDRxi9zbpj3/2GryXSaf9hSb+tAu7t/L6zh1cJqae1dbc5I3l9ZPqS012h8W+aXBfO9hrB3vRDnbonrFmCt95WlozKtfdb/ysqaSekF9Htx1Gt9d3hhd4Z+hfna+k7k3qmSXzqRdjOwvsNVDs9M5dL/O8K/1X790Rfk67WQtWldX69eSkv0W8RSUTtyMcfNA61/uvEBNilMp+2jBWqTxuPX1OMY+7yXoM+lPuHXTtyczWDZJrFkBeZLOoI2Mwsk/XMf64+b1zcXnTQa61Mqzp9exuDuPM07ctvRej0VUP0Oe2ndRzu+gedHfL4Nr3PLer8Bmx23vzHCIYFnZ/S/8Mw+BrhvU+1wyXa7bgFdgZVj/U+/JSK4hgzlyYaDiMVV4mRzijjPEI5RAL6Y6SobjUkhdO5fTq8iMtLggT0hDdjVcFbmyB+ZJpizXZwkJ+JEte2NT71aP84esg7OjnXsuyI7Np7tTrVaVzbnB6dQkrr2VwfPTL0TF0yWwJ27OBsTsbtW33GESHhSZ+EECpOxjAhOlvjw+sZ0VuOMVsBW9j7jobj0AF0788LBRKV//Oh2XI6x2EvEKzrDaudENuQUC07jeOsYB5btgCLJcTNPRVq6qyX38vSdv8jcN2fWLZvFtCIo39nEA0RWWo52vTUeDNdTg4bwePN0I7hjrHmU3wA6rS/gcC/qbFhh9lXHeY17W0DJKncUwFr2D0mpktuuZE/PFhBFX1HwFH/r4= +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Testset Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-testset-to-file.api.mdx b/docs/docs/reference/api/fetch-testset-to-file.api.mdx deleted file mode 100644 index a048dce2c8..0000000000 --- a/docs/docs/reference/api/fetch-testset-to-file.api.mdx +++ /dev/null @@ -1,856 +0,0 @@ ---- -id: fetch-testset-to-file -title: "Fetch Testset To File" -description: "Fetch Testset To File" -sidebar_label: "Fetch Testset To File" -hide_title: true -hide_table_of_contents: true -api: eJydVctu2zAQ/BVhTy1ARGnQk0510wZNXwlqtxfDCBhpbTGhSJVcpXUF/XuxFCXLdtxDTzbM2eXszHLcAsmNh2wJC/TkkTysBNganSRlzXUBGayR8vKO+vM7sndrpREE1NLJCgkd17dgZIWQwYBTBQhQBjKoJZUgwOHPRjksICPXoACfl1hJyFqQZnuzDj1oW3MPT06ZDQhYW1dJggyaRhXQiUNEtxJAijT/FAdIrgvoGBn5MNm7UBXp/GzQbff4rKX2e4TQNBVrcjn/AQI+zm++siqH5IaLr5TGZMGHHfNx6GtrPHrudHF+zh8F+typmiWFDOZNnqP360Yn3yIYBOTWEBoKgtS1VnlwIH3wXNNO2NWO/SHV35Dbpi+K9JQh3KCb8LsMiE4M1jwrub1/wJzgSM6p6KbRGrpV14mjqp2Yy8jo2Jlx1q7jFq8vLo6l+SG1KsLgyXvnrPt/XQokqTR/U4SVPwZom++dntrCiQCDtt1qJ4F0Tm4nun22PUEWvPKbiTNHi/MFvZcbhLHZaWgQY1iyf8vPc/VXR9zEiZ28vbqnx3jXy/fcZQPkw2Jxe9Sw93bf1CsOkGR4nwubXPUBUiGVlhOmtp5CoFAJGaS1wyeFv9K4rz5td6HSpYX9ZbSVHC8e3dMQP43TkEFJVPssTXNtm+JMbtCQPJMqlbWCQ1qzcJpcMjQkice8cYq2od/s9voTbj+gLNBBtlxNAXPeuX6L9mGjgbJWn5D1jCk0a6i0Tv3pVyMmUdlXsWDKrG0oj9pGbm9l/oiGR+U5e9rnZ6/Ozk8NEwuS2e11fDoyD09n4BFgIA7kGoUCAViFdwOEsnqzO2CW7FMlzaTfKWv3yI2qEP6mtNZShdcRKLTR9SVE12HMKQ8Csr2/k9H6lYCSdyZbQtveS4/fne46/rlPdzawUF7e60m+P+L24P/gSeqGeQX3n6RTXPB88cFAYyjBi2/x7b1MQDw/6LATZju9cyA0mTDkSjmsXBsBszzHmialRzHI9MfHdHszX0DX/QW3m60c -sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Fetch Testset To File - - - -
- -

Path Parameters

-
-
-
    - -
-
-
-
- -

Query Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/fetch-testset-variant.api.mdx b/docs/docs/reference/api/fetch-testset-variant.api.mdx new file mode 100644 index 0000000000..65f3cfcaa6 --- /dev/null +++ b/docs/docs/reference/api/fetch-testset-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: fetch-testset-variant +title: "Fetch Testset Variant" +description: "Fetch Testset Variant" +sidebar_label: "Fetch Testset Variant" +hide_title: true +hide_table_of_contents: true +api: eJzNV9tuGzcQ/RVhnhKAsVyjT/tUNY5rN2ljxEpeDMEY7Y60TLmXkEO3irD/XvCyknZXUhxXAfqkC2fOmTkzJIdrYFwaSO5hSoYNsYGZgKomjSyr8iaDBBbEaf7AYf3hEbXEkkFAjRoLYtLOfw0lFgQJ9OweZAYCZAkJ1Mg5CND0xUpNGSSsLQkwaU4FQrIGXtUOwbCW5RIELCpdIEMC1noUlqycQQx19ClQjG4yaJqZQzZ1VRoyDuzi/Nx9ZGRSLWuXDCRwZ9OUjFlYNfoQjUFAWpVMJTtzrGslU5/7+LNxPuudAGvtlGEZGNLKBqcYtyyZlqR3An3tLQRktECrGJLzRvQF8qzl6v3Ci9hlaE1l1rU6LlQjNhalVQqcNH3pnGQCULNcYHpKgkmEjAwL5dvrcIo5Gt9aKca6DYKYV5UiLI+yXqMZTTcojQiwGtP/ihkgGle2YFbNP1PKw2a88okO8RoBBTF2o8Ask67FUN12xDhUgB3Ytsk6TMW8+89uevu5IJU6tQr1iyur1O+mKl+9t1xbfgn9VB2IZCqe6IVa4+qosD1fGIh7zPkPJ6bzGPTV/0nUP6t30vA3ZT2U5MD9+zSahlaMJ/KTFBiG4Hwb0T0/nwd1uQPRCEg1IVP2gPzEMydDplcsfTyHWV4H2NHEi2Xr7EeQfAywkSQjRT+A5DLARpJWrvnqhKd0K9avq3hOt3qdlKVVa8PSCnZSllauDYtRdvncXr1zvo2A04Xnh5NvXh9xlNl3gTzZeTPRNI1z+vniYjgAfUIlMz/ejN5oXennTz8ZMUrlvsXLoW+gqrSz+j3n8Kzp3SfbnN9VIUBXpcIs982N27vCGFzS9vA8bOrFGE3d6j7BtzPrvc8rUEe7nWJv5Q3qHk7jMsh3rLrX0+ntADDUtlvUKzegj3pTMfjBI6/cBL+kMK9zDgmMa02Pkv4ex+nSjOMkasbr4fDegABD+rGd8q1WkEDOXJtkPE5VZbMzXFLJeIZyjLX0zW8otVryyrtMbm/e0uqaMCMNyf1s1+DOdVfol67ZplRYy7fklIvvi4nlvNLya2iC+LTIg5eTRpaLyru3A6kPbjS5vQEBLo2g2fnZT2fn0FeyY+w2BqZ+Y7TcfhlET4VN/iCACr8rgAmLX7YLLrK6MlxguYN3qHC9SzcqwfQPj2uF0ve+D2Edi3oPsaiweV8Yl24sLAhI9rzLZgLyyrBzX6/naOijVk3j/v5iSbvizSLG3El5v4ZMGvc9g2SBytAg0s1ZAi8+xC3zcrQdfboZtAUuVz5UZd0vEPAXrfa/I/2xkLd9tI6GkzSlmncgBqeYa7jNXvjtzRSa5l86vCCi +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fetch Testset Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-testset.api.mdx b/docs/docs/reference/api/fetch-testset.api.mdx index 79c78ebe90..311897eb33 100644 --- a/docs/docs/reference/api/fetch-testset.api.mdx +++ b/docs/docs/reference/api/fetch-testset.api.mdx @@ -5,834 +5,67 @@ description: "Fetch Testset" sidebar_label: "Fetch Testset" hide_title: true hide_table_of_contents: true -api: eJydVcFu2zAM/RWDpw0Q4qzYyadlXbcG3bCizXYJgkKVmVitbakSnS0z/O8DbdlxkgYDdopjPVKPj3x0DSQ3HpIlLNCTR/KwEmAsOknalPMUElgjqeyBunMQYKWTBRI6jquhlAVCAuH8QacgQJeQgJWUgQCHL5V2mEJCrkIBXmVYSEhqkOXu+7rNQTvLOTw5XW5AwNq4QhIkUFU6hUYcI5qVANKU86tAPJqn0PB7h96a0qPnKy6mU/5J0SunLZcECdxXSqH36yqP7gIYBChTEpbUErM216pVIH7yHFOPaFvH+pDublCm6oICQ10SbtDBnuBli2hEL9GrpZvHJ1QEJ2WNiy+rPIdm1XCqo6i9yMvA6FShodam4RTvLy5Opfkpc522hUdXzhn3/7qkSFLn/KQJC38KyI06OD03DSMBem2b1V4C6ZzcjXT7ajqCLHjhN6PODNPVQ7+h93KDMCQ7D23FiBZ8+i/5ua7u6oAbdWIvb6fu+TI+dfK9dlkPuV4sbk8Sdr09bOpnNnC0GAxcIGWGnb0JfqYMEoitw63GX3EYUx/Xe083IMCj2/amr1wOCWRE1idxrHJTpRO5wZLkROpYWg3HJGbtaXTJ0Na/HlXlNO3afLPb+Q3urlGm6CBZrsaAe56wbmYOYUO7pNU3yOqFXTSrKDNO/+kGIayjrItieXS5Nm14UDJw+yjVM5a8v7jOjvZ08m4yPVdMCIhmt/NgFKlao/Q8WhiII7kGoUAAFq1LgFAWH/YHzNIaT4UsR/mOG3lAalCD8DfFNpe69UB7dR2avITQZBi2kQcByWh5rwRkxhNj6/pRevzh8qbh1y8VOu7WSsBWOi0fWbtlDan2/JxCspa5xxNawwKBN3fBJ28jEK/T7Ttacju3Mq/4Hwh4xt3hR6bdAVk/MHUAzJRCS6PQk5XFkzUY4MvVAprmL9AyZhQ= +api: eJzNV9ty20YM/RUNnpKZjaV6+sSnqnFcu0kbT6z0RaPxQCQkbrq8ZBfrVuXw3zu7XN5E3+I6M32SxAXOAQ6gBVgB495AtIYVGTbEBjYCipI0sizyywQi2BHH6Q035yCgRI0ZMWnnV0GOGUEE4fxGJiBA5hBBiZyCAE1frdSUQMTakgATp5QhRBXwoXSehrXM9yBgV+gMGSKw1qOwZOUMQmizywTqeuMQTVnkhowDOV0s3EdCJtaydEFDBNc2jsmYnVWzT8EYBMRFzpSzM8eyVDL2Oc6/GOdTDQIrtVOAZcMQF7ZxCvHKnGlPehDgW28hIKEdWsUQLWrRCuLZ8sPHnRdrjLxTXvz7DVI0XvgYQ7a9YQhmWxSKMIdadI9yqxQ4ndrwLtDMVh1KLRpYjfF/xWwgapdsY1Zsv1DM09Kd+0SneLWAjBjHUWCSSFcYVFcjMSZxhsYZwLalGTFl2/GTYXp3c0EsdWwV6lfnVqlfTZG/+Wi5tPwajlN1IJIpe6IXao2HB4U98oWJuA85/+bEdB6Tvvo/ifp78UEaflTW+5KcuH+bRqumFcO99SQFpiE431qMb53nQZ0NIGoBsSZkSm6QHwIc3JUJMr1h6eO5n+VtAztberFsmXwPks8NbCBJSNF3IDlrYANJK9f24AbP03j8dHmKWD8f/Mjp9XpRllatjqUV7EVZWrk6FqPs/rm9eu18awEvF54f6Y+Oj7smx+Ne3eSva2f94+npdFH4A5VM/Bowe6d1oZ+/JSTEKJX7FsbBsYEq4tHpt9y8m/pogvTJfiiaAF1dMrO/a6/qp4MxuKf+urzf1IsxW7nTu5Tud7q1z6uhDnaD8vbyNuren8ZZI99DZb1Yra4mgE1tx0U9dwvrbNUtrBlxWrhNdh/2V04hgnmp6VbSX/OwqJl51e+wNQgwpG/bJddqBRGkzKWJ5vNYFTY5wT3ljCco51hK39WGYqslH7zL8uryPR0uCBPSEK03Q4Nr10RNW4zNuopgKd+TEyis10vLaaHlP02tw4adNl5OAZnvCu8exFr64GbLq0sQ4NJopFmc/HCygGPBRsau/zH2/d9y+2MQRyp0+YMAynzzAxNmP/UHLrKyMJxhPsA7rs/RFA0KMP3N81Kh9K3tqatQuzWE2kG3ZhsQEA3eQTYC0sKws62qLRr6rFVdu8dfLWlXoY2AW9QSt06vdQWJNO57AtEOlaFJWN29AK8+hfZ/PesXl3G4bRVzV8JbVNb9AgF/0mH8ruT/2mnbJFUwWMYxlTxwndxErpu6vv7l3Qrq+l/SnLUr sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fetch Testset - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-trace-by-id.api.mdx b/docs/docs/reference/api/fetch-trace-by-id.api.mdx index c4c10cb26f..81dc03e114 100644 --- a/docs/docs/reference/api/fetch-trace-by-id.api.mdx +++ b/docs/docs/reference/api/fetch-trace-by-id.api.mdx @@ -5,4336 +5,67 @@ description: "Fetch trace by ID." sidebar_label: "Fetch trace by ID." hide_title: true hide_table_of_contents: true -api: eJytVU1v20YQ/SvEnFqAEG2jJ56qNEkjpK0NR+3FMIwRORI3IXc3u0OhLMH/XswuKZO2FCBoTxK4bz72zZu3PTAePOQPcLvz5I64U7XiDh5TKMkXTllWRkMO74mLKmGHBSW7Ltm8XUEKxpJDAWxKyGEvkKcAedp1T6qEFCw6bIjJSY0eNDYEOURMAChJbpErSMHR11Y5KiFn11IKvqioQch7QN3d7kMG7qxk8OyUPsCQnr4ozXQgB8NjCqy4lm/b0O6mhEGAY/G9cQ3yVPprS65b1N5j7RfFSbeNMGQsaaaaGuIQggfSjELVsimhbo9tzZCHGJoHTa29j10M0q4jb4325KXazdWV/CzZ/9QWBXm/b+vkfgRDCoXRTJoDQdbWqgizyD57iem/RZ/ZfaaCF9d+gCM5L+VS8Ba1hxmRt1uqhUylD6f6M+6/mW6WZh0Y+8OU5P97mq2j/yPNvTE8SzM7nz4mUftRTG+6qKdhSOGnm5vXo/oLa1WGQSTvnDPue+ZknWwUq6iEkhhVLf8UU+NfA2pTLE6/a0uGk2zROZxL8zcTG4QhhcYfJPNLgU/Q38l7PAj7I+QyNJCRbOV0eK59dlZyr1h6xM2G8kxvZPfyNd5G+s4VmyAfttu7VwnjbBviyoirHYiDj3EFOWRm7pLZ8ToLVuazfrK0QdaH3HFyvNbVkEPFbH2eZUVt2nIVjWOFKkOr4KXTRlkmvwg06NFT0ToxZcm3vtt8pO4DYUkO8ofHOeCTCClKYwk7TQWt+khC0uiF65Yr49Q/cd6jJVYxSlhQem9C+GJlkjdYfCEt9j2tVQ5Xq+vV1aXLjAHJ+m4z7gMWYR+mPqKVpi/oOhEFKVATlgGYsPn5+UC6tMZzg3qW7+xrteisf97K8+iRMaa/ObM1qrAOob1+VMMDLNQgbFxLYFAEpPKKjc/cYwqV8Swhfb9DT3+6ehjkc3x+ZLCl8rirZw/QF+rmr9UR61YaCpI4olOCPh958aI/3I9b9mNy6YaTUHQ3rzl1c7pR8I9qUmE/Hq+Lguy82Vd2J82fVuvXd1sYhn8BBjnlqg== +api: eJztm1Fz2jgQgP8Ko6frjC+0nXvi6bhA75ikkCHkXjoZRtgLqBjbJ8tpfQz//WYly9jGGBqaS5ruU1pb3l2tVqvdb9CGKb6IWecTG81ikA98JnyhUnbvMA9iV4pIiTBgHfYBlLtsKcldaM3S1qB3wRwWRiA5Dhh4rMPmOGSqh0xn6VR4zGERl3wNCiTq2LCAr4F1mBmjBwgUHnG1ZA6T8E8iJHiso2QCDovdJaw562wYD9LRXEtQaYQSYiVFsGBbJ38iAgULkGx77zAllI/PJtrcgce2ODBTPg/lmiur+p8EZFrSPed+XFIOQbJGD4URBAp8WIPSn/AFBIqjq8pGoevmPPEV6+hvoPiRNe2DsWKL5kqIozCIIUZt79++xT9l798mrgtxPE/81jgbzBzmhoGCQGkHRZEvXL0W7c8xfrOpdV8kcc2UMLrcMMk+r/o39+bOwUHi+yXvXuqvtw6LIx5oeULBWv+jqiZQ8FXtv8jjoFNd2Lo1NIqODL+NeJCtuB0Tzj6Dq0pr/KkYglZqYWqjCfiXxureZISqTfAc1jvE91uHrUTgmfWzIXB70x1OrwbD3vRueHvTvxx8GPR7bD9obJgdGr97PhhO+uNh97r08LY//rs/Lj26vB70h5PSo5vxqHd3WR03Gt7efeyPqx5AX17hfND1iks1VaLeC9me6jCPK/hVjyosCX7amgjjIAi8x4npB14uJFZcJfHUDT2oOHvSndzdTi9HvT66rz9pcnRh7OgKPVJ40B+PR+PKMyOw6iRtyiVasjNsDXHMF3Bi6trbWUZm62MmZeswrpQUs0SZfbOTyT1P4Kbn/k1hZ5n0WQ7/Jn3dnXRcoQcIVEXPgZ196q7ApYwVX0eNOz0f9L9O+Eii0FMszqCy/n30VpYkMjlcSp426u8bF2/1AQnVHPyjJsnqfLcO80WwOi2UXsMh8WKC1jqzYu21CFbfGqrXegVPVejY/VI4Lwo5v+aAqbOnvFLHtZsCpCIcY0IEix5XPK+ZcKKVDBZ61dU6EKBPGYe4Uebgpq4PTanAlcAVeFNeX7SdcLJcGgmtri7cksg7U96dkVCRZ6r/M0X+kWau2Uk9X2RtKOWhDgvuptd2JQ4mNRmGNXmqfqnzkiZJdB6xuk7IPuVsMw7D/JiRAN9Dv1V/2Km7YkkED6HpL7DzCYJQ2f8kwSoIvwSs1HcBTFBQjfu+adIoyBbgWa13/qRPLlpOdo7uBJnDvoRyNffDL9ibLblA7yger/BPGPr4wXoGnmc+tp2nG64jHzJnuktuPCJ5sCp6Yhh6Z7g0m3RFXubZ4yXIE4f2jTbg4Haz3ULZJn3APK4XydqQx3Qgx48ircDILwayWFt3mxahrgDyasPSBpltZ3SrYtqTvZbBtiFn9h9543H01Pdg34hsnvDVhYxfNBS3TY1B42KUugW7VQ+ey2bnfDe/6FV0V7okOKPJsxJeUum4W5FsXLFtsUt6cK96XPGnmABWcWYBlRTuk/joYybaaHmSWXwEMwsJ8yeZwhjlflPXdWjjnHvsP64akQBHCseqiCZvoDkndXn4zqmcSWe0Sg4LFfhNWc9CwsekDQvkiAi9UiJEyOT1IpNSmHxVkh88SGu4RL1LngccErAgYEHAgoAFAQsCFgQsCFgQsCBgQcCCgAUBCwIWBCwIWJwELJgrpJv4XP6S/RDkDXPy2Kl7WZnR/Z7BTZMcagMfEQ5Z/5y1sVljl1X5eXV8X4486yb6LQmhGUIzhGYIzRCaITRDaIbQDKEZQjOEZgjNEJohNENohtAMPA+a+THs7eor5oX+6uS4MSYWrqJ/wil+lwvfDbG4szduuHOFkz/1ztVPSieartMTPCR4SPCQ4CHBQ4KHBA8JHhI8JHhI8JDgIcFDgocEDwkePjs8JGBBwIKABQELAhYELAhYELAgYEHAgoAFAQsCFgQsCFgQsHhxwOLV/9qJfktCaIbQDKEZQjOEZgjNEJohNENohtAMoRlCM4RmCM0QmiE082xo5sewt/ki2rcblCut0VLoj0+Ozom+UvY819207obrbujp03LfS2AwzTfPflJGQ9fxCKESQn2x25MQKiFUQqiEUPfaa0KohFAJoRJCJYRKCJUQKiHUnxKhErAgYEHAgoAFAQsCFgQsCFgQsCBgQcCCgAUBCwIWBCwIWLw4YPHqf/NFvyUhNENohtAMoRlCM4RmCM0QmiE0Q2iG0AyhGUIzhGYIzRCaeTY082PY+xKu45UPweNaCjOs0VJED6fugbG+WPc8l/607t2lv1KBZB62PoByly2TAzPQtEXBv71/j+Z5ELtSZN0L+5v7wtN1T6svZSh10x4o2zRHkS9MjdT+HJt2J3aXsOb7idkDxYUuDQ6kdD90S29PqBByz90fjoJrW8RhcRsvmhJ9occ51lVpZ7RMxXckwHBeRvV+V7Fzr/Hu4Wn0jPuaIuCvyeRmT6BZ2zWoZeixDlsAfhFxtWQd1g5nMcgHPhO+UGn74V1b54C4vbG5YIvbHOQDyFivRCJ91mFLpaK40267fph4F5oA8Qsu2jwSOuRicBMpVKo/6d4MriD9C7gHUm+FwoBbjBWz+uVhueN5JK4gtRCnw7qJWoZS/GtLcYFBujRf4URFMA9Nc13cFa3uzYA5DKdhwvrtxbuLt3qLFoO9NBjDnLtqV9hlr7H+L3khn7+GXDrGmQK+/n33Ai2LwliteVCQZzaidnVrlrYGvYuqRZvdZqsfnXkJT+925CN222bmbbJF/sRKi4xeeKfTHS40c7CuyNL+vcOWYYzpim02Mx7DnfS3W3xscB0upidiPvMxrufcj8FhK0hZxzYmDnvgfoIG6TB44FLg6PovD070l3G2ed60Ds3QBkeQFnVaa/IZ6bSwtJG3yV53XezkCx/uZTE0Pt8xf/YnbLv9DyUBByQ= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fetch trace by ID. - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
- -

Query Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
    - anyOf - - - - -
    - - count - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - - spans - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - context - object - - required - - -
    - - -
    -
    -
    - - - - - - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - parent - object - -
    -
    - anyOf - - - - - - -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - context - object - - required - - -
    - - -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    - - -
    - - nodes - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - root - object - - required - - -
    - -
    -
    -
    - -
    - - - tree - object - - required - - -
    - - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - node - object - - required - - -
    - - - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`agent`, `workflow`, `chain`, `task`, - `tool`, `embedding`, `query`, `completion`, `chat`, `rerank`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - parent - object - -
    -
    - anyOf - - - - - -
    -
    -
    - -
    - - - time - object - - required - - -
    - - -
    -
    -
    - -
    - - - status - object - - required - - -
    - - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - exception - object - -
    -
    - anyOf - - - - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - stacktrace - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metrics - object - -
    -
    - anyOf -
    -
    -
    - -
    - - meta - object - -
    -
    - anyOf -
    -
    -
    - -
    - - refs - object - -
    -
    - anyOf -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - tree_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - otel - object - -
    -
    - anyOf - - - -
    - - kind - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - events - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - - context - - object - - - required - - - -
    - - -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - nodes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - - -
    - - count - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    -
    - - -
    - - trees - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - tree - object - - required - - -
    - - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - nodes - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - - -
    - - lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - root - object - - required - - -
    - -
    -
    -
    - -
    - - - tree - object - - required - - -
    - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - node - object - - required - - -
    - - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`agent`, `workflow`, `chain`, - `task`, `tool`, `embedding`, `query`, `completion`, - `chat`, `rerank`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - parent - object - -
    -
    - anyOf - - - - - -
    -
    -
    - -
    - - - time - object - - required - - -
    - - -
    -
    -
    - -
    - - - status - object - - required - - -
    - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - exception - object - -
    -
    - anyOf - - - - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - stacktrace - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metrics - object - -
    -
    - anyOf -
    -
    -
    - -
    - - meta - object - -
    -
    - anyOf -
    -
    -
    - -
    - - refs - object - -
    -
    - anyOf -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - tree_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - otel - object - -
    -
    - anyOf - - - -
    - - kind - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - events - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - - context - - - object - - - - required - - - -
    - - -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - nodes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - - -
    - - count - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    -
    - - -
    - - roots - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - root - object - - required - - -
    - -
    -
    -
    - -
    - - - trees - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - tree - object - - required - - -
    - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - nodes - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - - -
    - - lifecycle - - object - - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - root - object - - required - - -
    - -
    -
    -
    - -
    - - - tree - object - - required - - -
    - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - node - object - - required - - -
    - - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`agent`, `workflow`, - `chain`, `task`, `tool`, `embedding`, `query`, - `completion`, `chat`, `rerank`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - parent - - object - - -
    -
    - anyOf - - - - - -
    -
    -
    - -
    - - - time - object - - required - - -
    - - -
    -
    -
    - -
    - - - status - object - - required - - -
    - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - exception - - object - - -
    -
    - anyOf - - - - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - stacktrace - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - data - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - metrics - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - meta - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - refs - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - links - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - tree_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - otel - - object - - -
    -
    - anyOf - - - -
    - - kind - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - events - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - - object - - -
    -
    - - anyOf - -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - - context - - - object - - - - required - - - -
    - - -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - - anyOf - -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - nodes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - - -
    - - count - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-trace.api.mdx b/docs/docs/reference/api/fetch-trace.api.mdx index a1038a8bf0..d3e2370e53 100644 --- a/docs/docs/reference/api/fetch-trace.api.mdx +++ b/docs/docs/reference/api/fetch-trace.api.mdx @@ -5,900 +5,67 @@ description: "Fetch Trace" sidebar_label: "Fetch Trace" hide_title: true hide_table_of_contents: true -api: eJztWktv2zgQ/ivGnFpAjbPBnnRa11a23qS2YSu5GIFBSxObjUSpJJWu19B/X5DU2684TfYB6BSHGs4Mv/lmyAG5BUlWAuw5uJx4lK3gwYIoRk4kjdjQBxseUXrrheTEQ7AgJpyEKJGrSVtgJESwQX9dUB8soAxsiIlcgwUcvyeUow+25AlaILw1hgTsLRC2GT9qDXITKw1CcmU9tYoRyiSukEP6YIGkMlBjyknsDH1I1ShHEUdMoFAary4v1R8fhcdprLwHG2aJ56EQj0nQmWbCYIEXMYlMaj/iOKCeXmz3m1BzthUvY66gkNRYeEYuqBGpO136d5+JpMpIYkw0llMK97VEakEU+CjkMVgseIx4SCTY4BOJnyQNsYoVS4KgBtTYqEwtYPjjrZWPjMrUAhETJvbqJpyTzVEtMz03tQx5GlqI71MVFBJMajGoR2SP+UMTS4mfVgEe5V4SEP5h7GKglvERrC1QiaEAe+/XBioPaTESLb+hJ18GlMeRSPQX5G3D2TdqOz0d0iT238PInVGbGfExwHcwMjBqMyM5XMuNqkwvs5Mk1H8RWJ83ugyVeL2plRytwkoO2JtayeEqrBRl/EiJK0uwSf8T4oq8mXRMODJ5wv9j/k60gqrtJ8pOoIEsCVXOzia90eJmOBos7kazidMfXg+dAViV8eHIdaaj3m1tcOZM751pbah/O3RGbm1oMh0P7vpNufFodvfVmUK1LGcl4Ub5vbvUfFlmV30dSBrwEdGZAkISLhc6b34iz4qd+JhZZanjmpmAzP9HrDrML2wKSWQiFl7knzBbUMLtuXezRX88cBQpHB3Tytj4pjHgTKfj3XBqs31ldX9AjVshCkFWr4+q1tL5mmlJLSBScrpM5Et3znNOXFVHwmV9ZBlFARKmh/bbKnfA6yQI/hAR+zROZJzIykZY2fZ29s3Ds04fKhpz4ayNtldCqjj8jEw2oMt8bR4i8nw9VATzdFQUF5KE8ZvkRfVcXChumfHezNiZWO1z5oYL1VA36oWjaFWxftpzxxAxtSCg7OlljDxvZz53328Z9m8yLI9tJW4Njt1S9nQWxW41sU4ZrnT5uQ97zjZVYNtuq+222m6r7bbabqvtttpuqz3xtN1Wy4y222q7rf8Rw/773dZbtDt7fGlaEi5HPA9m19zsnVppfrGaX5o2lpndTBcXuGmqFP56dbV733tPAurr29yOw3nEX3/Z66MkNFC/DuR8EHm1r2fdaDeDVuFGZBxUQIdidaxGVI4nRuSwqAaj46qvp4Kh1mVMZ3KVaJTwGnQPL2Ng4DvGqy+uO9lRaGJbD+q1eoDQcbMHCCHKdaTeJaxQ6vcIcg02dGOOzxR/dKUhS9dcKne3eRalKo2QP+cPFxIegA1rKWNhd7teECX+BVkhk+SC0C6JKTTd6Omvnb4S1SwX6CWcyo3W15sMb3DzBYmPHOz5Q1VgpjhmWFMXK2/LY3qDCr/sPUUvkeuI078MFbJHFWszSwFE2WOkp+f1zPj2mXhPyFTFKN4qwOXFLxeXhxaTTej0JsMsVYgnyzNWJgZWA64CKHW+D3WegEQS/lZ+UF7GkZAhYRV99VDWXCqwkPin7MYBoToHtOFtFuY5ZGHOqnFGclNlLPXKpKzQ60i9epjDdrskAu94kKZq+HuCXEXswYJnwilZKvzmW/CpUL99sB9JIHDHuaKMwIdpli0fO+V+VXc6jypTIX0mQaL+AwuecFN9LKPrwDqnzDb73PM8jGVl4k7ZUtwq0uB3x4U0/RsjoCRz +api: eJztXFFv4jgQ/itonm6lbOmt7omn49r0yrULCOi+VBUyyUC8OE7WdtrlUP77yXYSEmgLtN29ruQnwJnxjGc+jyefkNegyEJC5xYmggSUL+DOgyRFQRRNeC+EDsxRBdFUCRIgeJASQWJUKLTSGjiJETpgnk5pCB5QDh1IiYrAA4HfMiowhI4SGXoggwhjAp01qFWq9aQS2qYHiiqmB7QX2OqFkOd3Wl+mCZcotcqn01P9EaIMBE21e9CBcRYEKOU8Y61RIQweBAlXyJUWJ2nKaGBW0/4qtc665kYq9FoVtRaCJLNKhXeUK1ygqLl3ZiQ8CHFOMqagc5p7IFPCjT7hq8HchIUqjOUjBgQSheGUqKb4djTmiYi1DIRE4UdFY4Tcq8R4xhjo8FRe2WlbXQW5B1ka/ggjN3bawkiIDH+AkXM7bWGkDNdspaF1mJ0so+FBwfprZWC2idebWimjVVkpA/amVspwVVaqfXjQFrPQ3SM+TgkvpFMikKs9/j/n79BM0PDVij4XDuRZrAsU5feJ3cjgAeE8UeWPjC958sDhbmuREz3Trj/lug83TRZotn0QEaoNPiRiOWfJgw4TkUv9kSRMK8QzDEOr/C1DsQIPGItNSYpThoXDQUSUKY+C8OXjC9Bh3+P/kvI9SCr9Hw+7/elVr38+vemPh/5Z76Lnn4NXG+/1J/6o371uDI790Rd/1Bg6u+75/UljaDganN+cbcsN+uObz/6ovqTBBJle1pX2++ll2SPlZQAzYO0TU2VAKiLU1NScV9So8hB41qy21JpYTUAe/hSrPg8rm1IRlclpkIQHQno86U5uxtOzwbmvQeGbnNbGBldbA/5oNNhNpzF7pq0+nlDrVoxSksXLs2pmaX0uZsk9IEoJOssUbp27JAyp3mOEDRsH7wFWH414PGuOzJKEIeFm6HFbEFARZIyI3y4yxv6RCf84yFSaqQ+6SthZktlXDJSZpGgUDtEiQpDVs3Ha0jVFdsfiU8rdTUhzXZrmKJAH2+F7orG5RyGpba5ekuAvhbpGDMsWL8aJ1s09eLsD1p5UDm0/FG07is0aMyqhWLOw37vRBsC5B4zy5WFIPq4jOrbfckj62UjavILeVrmt5W3rPLumfHkUzK4NsHIPIiKjA4ulK0+/OqjqkLkkMjoKMpcWKbpR/B5gQWS4vL1J3vwqojq898jVYVuyfOd4qoaXrxS6TZeKxOmb9Pb199VqYreh/+dTwmChnuqtM8LXsDpqx/sWiPsM10jU8qTaMn3BiNLdx1HWx4aeLJuVAyG12xQdjcVXT7GBTckcfIDHQFV7uhWVu6MwUgXK0bSOpnU0raNpHU3raFpH0zqa9r02so6mdTzIu+FBHE3rkORoWlee3hGoHE37TvPmaFoHjNeeEu+Ypi0o2mebF8eFOi7UcaGOC3VcqONCHRfquFDXLTou1JENvwraHBfqkOS4UFeefh1QOS70nebNcaEOGK89Jd4/F/oWZOSeqmakJgLxuDBP7L9i981eXI9QXTKQ51rjj0+fYOdOgi+E0dAQPS1fiES8/EKCEBWhzBzAjxcBlgSNp8dsq7vtrNRahJK1yj2I5eK5MlN7wy3JqadETTBaliHagyu9Lmu6kKu/eVXhtdF9ehnnNnzPpfZyMhnuTGhz20zqhb4FozUpbsGIUUWJvhxjgcpciqEi6EA7FXhP8aGtLFja9h/X7XW5TXK9T1Dcl7dnZIJBByKlUtlptwOWZOGJIe7ICaFtklKDVIlBJqhaGZXusHeFq0skIQro3N7VBcYaRhYYTbEqJySlV6hDVNzb0c1UlAj6b0lLmss7IqulY0D5PDHqZU0yzrW6wx54mzdoOD35/eQUtkPWENY7gARqc3IVjzWV2IhCtX7DTRr4g0IS/7l5oD1LE6liwmvzNTPUcKVav8Lvqp0yTYnmheF1kb1bKLJX9NoFdm118PQNJpv+O0qk0hrr9YxIvBEsz/WwpU87t3ce3BNByUzH7HYNIZX6ewidOWESd5yrqgP8Nio2wYfW5pxpOl1mkus03hOW6V/gwRJX9YtYzPaOSpisi8fdQDcbNcWdaqTxVKH7b38Cef4fELbnuA== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fetch Trace - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - oldest - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - newest - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - spans - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - parent_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - span_kind - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`SPAN_KIND_UNSPECIFIED`, `SPAN_KIND_INTERNAL`, - `SPAN_KIND_SERVER`, `SPAN_KIND_CLIENT`, `SPAN_KIND_PRODUCER`, - `SPAN_KIND_CONSUMER`] -
    -
    -
    -
    -
    -
    -
    - -
    - - span_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - start_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - end_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - status_code - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`STATUS_CODE_UNSET`, `STATUS_CODE_OK`, - `STATUS_CODE_ERROR`] -
    -
    -
    -
    -
    -
    -
    - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
    - - timestamp - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - traces - object - -
    -
    - anyOf -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-usage.api.mdx b/docs/docs/reference/api/fetch-usage.api.mdx index ca33031b4a..b08828674c 100644 --- a/docs/docs/reference/api/fetch-usage.api.mdx +++ b/docs/docs/reference/api/fetch-usage.api.mdx @@ -5,69 +5,59 @@ description: "Fetch Usage User Route" sidebar_label: "Fetch Usage User Route" hide_title: true hide_table_of_contents: true -api: eJx1kkFvm0AQhf8KeueVcXvkVKdqUyuXKKlPFqrG6zFsA7vb3cUqRfz3agA7iaVwQTBvZr95bwckqiKKPe5M0xhboVRwngMl4+z2iAInTrr+1UWqGAqBo3c2ckQx4PN6La8jRx2Mlw4UeO605hhPXZM9LWIoaGcT2yRy8r4xejog/x2lZ0DUNbeEYhjlUTcjvwtCthOEbBc5ZE+uSzK15VQ7gaw4QcFTqlEgP8y75BfoyOHMQdYc0IUGBeqUfCzyXDeuO66oYptoRSYnb3B7+maqZl9FirGUcboLJvXTvM3j9oH7H0xHDij25VvBs2w1W/VeNiD1nlGAvHngHgqWWvnedKl2wfyb3IGCEYB67hJfjD25qd2khl/Z7ki/sD1CQfacsderT6v1R8ssDdnmcbuEQ3oK58IxyaBu7LoaBQVuyUgtMbVfXgtC6V1MLdk38z5M8B3d1ZbEf1PuGzIW48IwLOnusaQrcFO+pULtYpLSMBwo8i404yi//3QcJKVS4UzB0EE825ejulgqAb5wLwtrzV7u0Jmabk7m5pZKsNf7dv/tJ8bxP0g6Gbk= +api: eJx1Uk2PmzAQ/Svona2Q9sipqdSPaC+r3eYUoWriTMAtYNceolLEf68GknQTqVwQzHvj9+ERQlVCscdH1zSuq1Aa+MCRxPlue0SBE4utv/eJKoZB5BR8lzihGPF+vdbXkZONLigDBV57azmlU99kLxcwDKzvhDtROIXQODsfkP9IyhmRbM0toRgnfczDys8qIduphGyXOGYvvhfd2rLUXkVWLDAIJDUK5IfFS34VnTieOarNEX1sUKAWCanIc9v4/riiijuhFbmcgsNUKsP20ckwUzbP2ycevjIdOaLYl28Bryp8SeMeNkKGwChAwT3xAIOOWv3e9FL76P7MAcDAqcN6Yal11538THfSzPhZXLZ53sJAbSyZrFfvVms8JnUH1szJzplfz57HMA8p3PzDgFtyOhOm9sO/gSoLPklL3Zt9/y3mTtUtCuHfkoeGXIfpomG8lLbHpTQVN9dWGtQ+iY7G8UCJd7GZJv39q+eozZQGZ4qODprTvpzMNUYt7ScPathaDno1ztT0SxsPl0/LvF2jL5++YZr+Au0pCyo= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Fetch Usage User Route -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-user-profile.api.mdx b/docs/docs/reference/api/fetch-user-profile.api.mdx index 84dcae3422..8092308b24 100644 --- a/docs/docs/reference/api/fetch-user-profile.api.mdx +++ b/docs/docs/reference/api/fetch-user-profile.api.mdx @@ -5,69 +5,59 @@ description: "User Profile" sidebar_label: "User Profile" hide_title: true hide_table_of_contents: true -api: eJx1UsFu2zAM/ZXgnYU421GnZcOwBb0E7XoKjIKVmVqrLamSHMwz/O8DHSdpDUwXQeIj+fgeB/jAkbL1bldB48jZ1E9d4vgUoj/ahqEQOQXvEifoAZ83G7kqTibaIInQeOiM4ZSOXbO6n8FQMN5ldlngFEJjzdSn+J0kZ0AyNbcEPYxy1KLkY+K42l85tJxrLwxfOEMhUK6hUdxIJo4njgn6MKCLDTTqnEPSRWEa31VremGXaU22oGCx7LadoqtvAsVYSjnTRZv7qd52v7vj/idTxRH6UL4HPMgUZ2k+wgbkPjA0KNg77qHgqJX3tsu1j/bvpAYUrBCoz1mig3VHP6Xb3PCN21cyr+wqKMicZ9qb9af15n/DzAmr7X43m0FmMuPCY4JBLeS6CgUFbslKLDO1X24BYRl8yi25d/UWjn3gdBUj859chIaswzh3HmY3D7i4WSrUPmX5GoZnSvwYm3GU77eOo3hSKpwoWnoWhQ7lqC4Cil2v3Mt4xnCQXTlR0519WOyg2Hjdqx/ff2Ec/wGdpws6 +api: eJxdUk1v2zAM/SvBOwtxuqNOzWFYg16CtT0FRsEqTK3NtlSJDuoZ/u8DnY829kWw+Ci+Dw4IkROJD+1mD4sDi6teu8zpNaZw8DXDIHGOoc2cYQf8WK302HN2yUdthMVT5xznfOjqxe8zGAYutMKtKJxirL2b5hR/svYMyK7ihmCHUT8ze/Ilc1psrxwalioow3cWGESSChbFF8nM6cgpw+4GdKmGRSUSsy0KV4duv6R3boWW5AuKHmOpHa5LXvqpZb3dPHL/wLTnBLsrvwOelOhJ/S1sgPSRYUHRP3IPg5Ya/V93UoXk/02CYeBVUXXqUqm+PYSp3Us94Sdyi/V2AwOVcfJgtbxbrjB35gasHpObPL7MnsowMxeu+mHADXmtCVNz/1VQZjFkaaj99t4siBsuVwOEP6WINfkW43nycA5ph0tIpUEVsujVMLxR5pdUj6Nef3ScNIfS4EjJ05u6sitHczFNI/rLvcpzjqOuwJHq7uT9bLU0uuu6/Pr5jHH8D6yG/Jw= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - User Profile -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-workflow-revision.api.mdx b/docs/docs/reference/api/fetch-workflow-revision.api.mdx index 2989530282..fbb8267e0a 100644 --- a/docs/docs/reference/api/fetch-workflow-revision.api.mdx +++ b/docs/docs/reference/api/fetch-workflow-revision.api.mdx @@ -5,2193 +5,67 @@ description: "Fetch Workflow Revision" sidebar_label: "Fetch Workflow Revision" hide_title: true hide_table_of_contents: true -api: eJy1VlFv0zAQ/ivVPafL6LYCeaKDARMgpjLgoaom17kkZo4dbGdbifLf0dlpmm4rIAR9aB3nu8vdd5+/pgHHcgvJAr5qc51JfWthGYGu0DAntDpPIYEMHS+ubjvAlcEbYYVWEIHB7zVad6rTNSQNcK0cKkdLVlVScJ8j/ma1oj3LCywZrSpDT3ACLV3dMCOYclcGMx+q1h8zSBYNuHWFkIBefUPuIAInnKSNOWZoUHGENupRqpYS2mVLVYUC/1HCNtobR41f7aOnbVtfjK20sqHTyeEh/aRouREVkQMJfKo5R2uzWo7mHRiiv+WS6zoEdSUL5TBHM6j5pUcMaPozijb6mPft/RFTpBBhMCWJhdqW+3P27QfqjieTh2x9YVKknovRmTHa/D1VKTomJK2Ew9I+BEjNd+4+IMk6I1Q+ZGJDt9dht8eMYesBk+91KJBmUNp8MKwu3xb6Aa1lOamyg+yHejJGl3T3d3OgvsKjO9xgJFt6A7v723gV6PvV8Xh7eXnxIGGY7e5QX9MRGm3kMJpvHaZEV2gyoRwpc8VcAQnEFYkXb+MVsxhvjp6NN5K2cdObgEhbiMCiuUFj/fRqIyGBwrnKJnHMpa7TA5ajcuyAiZhVAu7XN/N3Ry8JCu2S0vHaCLf2+WYX5+9w/RZZigaSxXII+ETiC3LahfWTZJV4h0SsYiVdz2pXaCN+BI1EIKiAIkQRcyTr+dZ3z+5YWUl8xEcF0XaUsWcn2fR4fPL0ydPx8cl0Ml4dZXw84c+nR9l0yjI2JXpknQ9VRVyF1vst5pwRq9r5ZtpHbPb/Pq8lJjLtievk1U3llPFrVOlOlsODJweH+8bYBYxmF+edezDu3WMzAQ+D6J5QeolABFh66wCHrHyxvUFVVtq6kqlBvv3q3imvV4TDOxdXkglvEb6IplP+AjrlQwSkfYigVz9sR0LrZHAC6IQX2jpK0DQU+NnItqXt7zUakvEyCvpZEbULsq9iI+gGrnHt/zm8z469yRBc1kHA9zyX/DBEzDjHyv0Suxyc8Tdnl9RX9zZR6pRCDKNm6TsBoFcT5xtMmrDXgGQqr8klEwgp6fMThXcJJQ== +api: eJzNWNtu20YQ/RVhnhKAsVyjT3yq60vtJk0M3/pgCMaIHEqbLLnMXpyqAv+92JskipIqKTLgJ184c2bnzOzO7pmCxpGC9An+FvJbwcUPBYMERE0SNRPVdQ4pFKSz8fOPYPAs6YUpJipIoEaJJWmSFmIKFZYEKXQsn1kOCbAKUqhRjyEBSd8Nk5RDqqWhBFQ2phIhnYKe1BZDacmqESRQCFmihhSMcSiaaW4N4np7tyFI7zqHphlYbFWLSpGycCfHx/ZHTiqTrLYpQQp3JstIqcLw3m0whgQyUWmqtDXHuuYscwz0vyrrM11YYi0tP5r5CJkw3imsnFWaRiQXlnrmLBLIqUDDNaTHTdIlycWtJl8KR2U7xsz4BSXDSltCW+abWWuSmUVlOAfLUofHRw/taEzg8IHa+LOMXiETHwGlZgVmh0zhNEDGCEaPhTwYuEdrEshR05ao1vSDZiVthD63gE0CJSmFo43Ym2D+Cu5NAgV3x8b6jmXqOTNKi3JlsKEQnLDaGO1a9c48QpNYOHpBblCvIXxLxIsZiAcdmxKrnwG8cgBNk0QjMfxKmV5xUF06yrpwri4a24vAPGf29EF+06J1i7LF86cVqRy2/7OY3epYkDGZGY7y3aXh/E8lqg9fjK6Nfg/LuVoQpqnc0gulxMlGXpd8ocPu5i7V6Dw6HfqWSP0sPjGl/5fWdUl23Hfj6N63YhjY+50Gn9GdOu3Ruh/U+QJEk0AmCTXlz6gPegqeedjeqSPL1PlrBHnwsCFITpxeIci5hw1BIl3DyQFHXSTr90kYdpGvg0aJbM2iRMIOGiXSNYvyQrJ749q+XR+De5OA4ma0L8yd9bVj6GCJBg5xeZq0R/PhsjeS7YvyIJlH4PsjcIswJszd+2O3k/61KHl7DbHhanJLBUmqstZpExc62GmiXIUyNPEtt21F3tBMfpMXnR1qcBeItzdKrGtWbXsBWqZ4l9tWDOQKb4f43t3vvZu2qvBW729vslfWO9/MKbWFIvnCMtqGXS/P7NCDAbpxekrBRsYLSa8R66wVYJs3WNSKztG9ETpPsR0gftJ9pjs1jXX79eSkK1M9Ime5S653IaWQ+2tUOWlkbtKGllw24CJrfd1lSy0MCt/F86w/iQzjrb5Uo1X63gpxwZusN3Vk9O7t11WUz7XFJ5eXDx3sWoJUpNezuz6Nc0/fpvpe3d/fdAB9bdtFvbRiaq+jXoJTAcbC6q0j0k5b1WNIoV9bgZB+9KNipvpRMVT96SqptQG/w6Mq6+5YMNa6Vmm/n3Fh8iMcUaXxCFkfa+Y2laLMSKYnzuX05vojTfxMh/RpsGjgpozvmrbZrGBYs49k+Qt6sFe22L++FYIQ7O9tjlNWFcK5RyXMLa53enMNC3d1OD765egYlvlsGdvtgZnbHjG2+wzJEguz/CEBKt3eAE1Y/jb/YFdWC6WDQBTw1pdv6R0cuND0j+7XHFm1cN31pX2CUFqYy6HK9W8oLySQrtTSBwmMhdIWYjodoqIHyZvG/vu7IWlLOAgK7tAS+jSFnCn7ew5pgVxRZ7WzcwXe3Ybt8743n07tLGKZK1tjK6jZvyCBbzRZp/67Q2Ic+2kaTE+zjGq9ANI502zjzfbFHxf30DT/AXsQfZM= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fetch Workflow Revision - + + + + + + + + + + + + + + + - - -
- -

Body

-
-
-
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - revision_ref - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - revision - object - -
    -
    - anyOf - - - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-workflow-variant.api.mdx b/docs/docs/reference/api/fetch-workflow-variant.api.mdx index 0cf3dd4cab..31c2b0ce2d 100644 --- a/docs/docs/reference/api/fetch-workflow-variant.api.mdx +++ b/docs/docs/reference/api/fetch-workflow-variant.api.mdx @@ -5,1008 +5,67 @@ description: "Fetch Workflow Variant" sidebar_label: "Fetch Workflow Variant" hide_title: true hide_table_of_contents: true -api: eJydVcFu2zAM/RWDpw0Q4qzYyadlXbcG3bCi67pDYBSqzMRqbUmV5HaZ4X8fKMuO0zQYsFOU6JF6fORjWvB84yBbwS9tH9aVfnaQM9AGLfdSq2UBGazRi/L2OQJun7iVXHlgYLjlNXq0lKEFxWuEDOL9rSyAgVSQgeG+BAYWHxtpsYDM2wYZOFFizSFrwW8NRTpvpdoAg7W2NfeQQdOELF76igA3fepkWUDX5ZTRGa0cOkpyMp/TR4FOWGmIPWTwoxECnVs3VXIVwcBAaOVReYJzYyopQrHpvaOYdkLMWJLCy/4FoZs+KPKVyuMG7YTgaUB0bBAhvKC239dBoBim7+5R+EnUoH0sDzo2YlVTVdDlXccOondyriKz/GjKsfauo1TvT04OpbrhlSyCEMmZtdr+v04Fei4rOkmPtTsEVFrs3R5IFCdhIsSgdZfvpODW8u1Ex6+6J0gNqN3mtckaoN/QOb5BGJMdhwYxkmu6/VcbqK7+6YjLp7M7yNure7yMT718rz02QM6vry8PEva93W/qZ/JuMkxDcjN6t0ZfanL3Bnsr+xIySI3FJ4nP6R13mA6Wd2kcZ5e2O3d3wMChfRrs39gKMii9Ny5LU1HpppjxDSrPZ1ym3Eh4SW4RbpNTggL52aForPTbkG9xubzA7TnyAi1kq3wK+EGT18/SPmxsIzfyAknVuJUWjS+1lX/6AYmLqeyjSDap1jqER4Ujt49cPKCiHUR19rTns3ez+bFiYkCyuFxGA3ERDDTwCDBgL+QahQIGWAf3gEdef9hdEEujna+5muQ72uA9dqMsHn/71FRcBpMEDm1s/gpi84EBtR8YjAMA40ajYzZZ8TmDUjtP4W1LYT9t1XX082ODljqZx9g70nXVQiEdnQvI1rxyeMB0XDrw5ip6620C7PUKhm6rbaBYNfQNGDzgdv+vKOyNchimNgIWQqDxk9CDNUdTN3rly9k1dN1fcHR4xA== +api: eJzNV01z2zgM/SsenNoZNnYze9JpvfnYZNvdZhq3e8h4MrAEW2wpUSXBZF2P/vsOKcq2LDtN03Smp3wIeA94AEFwBYwLC8kN/KvN57nS9xamAnRFBlnq8jKDBObEaX57Hw1u79BILBkEVGiwICbjEVZQYkGQwK7hrcxAgCwhgQo5BwGGvjhpKIOEjSMBNs2pQEhWwMvKQ1g2slyAgLk2BTIk4FxAYcnKG7TRDj42HIPLDOp66qFtpUtL1qMdj0b+R0Y2NbLy+UAC1y5Nydq5U4P30RgEpLpkKtmbY1UpmYb0h5+s91ltRVgZLw7LhiHVrnGKgcuSaUFmK9KTYCEgozk6xZCMatGTKNCWy3fzoGOXYm0rs67Zw1rVYm1ROqXAi9NTz6smAA3LOab8jAzjCBkZ5ip02eEkpb1NnWVd7A1gprUiLB9kvLSDkwahFh6O7lA5ZG1+BPFsDdKA5q7A8kcALwJAXYvWSM8+Ucp7Ovs8SNaHqwUUxNgNArNM+n5FddWR9VApt2Dbju0wFbPuf7az288FqTSpU2henDul/rK6fPXOceX4Jezm6kEkU/FILzQGlw/quuMLPXUfcv7bi+k9eh36K4n6j34rLX9T1kNJ9ty/T6NJ04pxwD9KgX4I3rcW3WH8NKjTLYhaQGoImbJb5EdOrwyZXrEM8RxmOWlgB+Mglquyn0HyoYGNJBkp+gkkpw1sJGnlmi2fcd63Yv2xjBO/1etZWVq11iytYM/K0sq1ZrHKLZ7aq9fe118ezxZe2HS+fX/ExWjfDfJ47/WCVNfe67fj4/4+9RGVzMK2NDgzRpunL1MZMUoV1oHmetg1UDrtfP2eSTytd26UTdJvdROgr1NhF/v20M1tYS0uaDM+D5sGMQYT/3Wf4psd+Cbk1VBHu61yb+Rt1D2cxmkj30PlvZhMrnqATW27RT33K/9gd8uGsHvk2j8KFtS8ADiHBIaVoTtJ98N2WbXDuNna4WrPe6AGAZbMXftycEZBAjlzZZPhMFXaZUe4oJLxCOUQKxlOgKXUGcnL4DK+unxDywvCjAwkN9Ntg2vfYE3LdM3W1cJKviEvXnyzjB3n2sivTR/E10reeHl1ZDnXwb3db0Nwg/HVJQjwaTSyjY5eH41gV8yOsT8bmIaz0XKHzyB2VFjnDwKoCAcDmLD4ffPBR1Zpy3EpjXgHa7dz9UYpmP7jYaVQhv4PMaxiXW8g1hU2TxbrE461BQHJvtfeVECuLXuA1WqGlj4YVdf+318cGV+/aQSZeTVvVpBJ63/PIJmjstSLdT1R4MX7eHBeDjYrUDeHtsblMsSqnP8LBHym5YHnaZgOedtLq2g5TlOqeAujN8x8061PxJ9nE6jr/wGy1UCI sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fetch Workflow Variant - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fetch-workflow.api.mdx b/docs/docs/reference/api/fetch-workflow.api.mdx index dae5d8732d..68dfcd4d87 100644 --- a/docs/docs/reference/api/fetch-workflow.api.mdx +++ b/docs/docs/reference/api/fetch-workflow.api.mdx @@ -5,598 +5,67 @@ description: "Fetch Workflow" sidebar_label: "Fetch Workflow" hide_title: true hide_table_of_contents: true -api: eJydVU1v2zAM/SsGTxsgxFmxk0/Lum4NumFFm62HIChUmY7VypYr0ekyw/+9oL/i1C0G7JQgeiQfH/mYCkhuPURruLHuITH2ycNGgC3QSdI2X8YQQYKk0tunDgACCulkhoSOIyvIZYYQgXSkE6noVscgQOcQwWOJbg8CHD6W2mEMEbkSBXiVYiYhqoD2Bcd6cjrfgoDEukwSRFCWTRrSZBiw6JIHyxjqesMpfWFzj56znMzn/BGjV04XTBwiuC6VQu+T0gRXHRgEKJsT5sRwWRRGq6bP8N5zTDViVjhWgXRbQdmyDeoI65xwi27E8LRB1AIGobhEvv+ZNCJ1cfbuHhWNwnrd+wahFgM4L42BelPXYhJ+UHTdcdtMcw5t1zXn+HhyMlXptzQ6bjQIzpyz7v8lipGkNvxNE2Z+CjBWHb1OxOm2YKRAL3O9OWggnZP7kYLfbUuQtc/89rWt6qE/0Hu5RRiSvQ1txAhW/Pov/bmvtnSHG43iIG+r7tttfGnle61YDzlfrS4nCdvZHg/1Kzs2uDk4NkNKLXt5i9QYmFKIICwc7jQ+hXfSY9jvrQ+r/uutjmsQ4NHterOXzkAEKVHhozBUxpbxTG4xJzmTOpSFhpdkFs1rcMpQYOt6VKXTtG/yLS6XF7g/Rxmjg2i9GQOuedPa3TmGDWOThb5AVrG7QYuSUuv033YhuiuUtlEsk84T24T3Z6Xl9lmqB8z53nCfLe357MNs/lYzXUCwuFx2hmHrRsMtbGEgXsg1CAUCMGvcAoQy+3R4YJaF9ZTJfJRvMtAjVoMchH8oLIzUjRma2lU37DV0wwYBPG44HCoPAqLRyHl/U+uJg6qKwb+cqWv+uT3oPLdYe3ln2ACJNB4njIYjAu+uOq+8D0C8zvQB95M/kJ00JSObldlJp7lcsyGinyjzaEMXSmFBo6jJ4eIsgwu+na2grp8BUd9kyQ== +api: eJzNV01v20gM/SsGTy0wjd1gTzqtNx8bb7vboHG3B8MIxhJtTTvSqDOcZF1D/33BkWRLlp2maQr0ZFtDPpKP1PB5AyRXDqIZfDT281KbewdzAaZAK0mZfJJABEukOL29rw1AQCGtzJDQsucGcpkhRNAY3KoEBKgcIigkpSDA4hevLCYQkfUowMUpZhKiDdC6YFdHVuUrELA0NpMEEXgfUEiRZoMmu8EkgbKcM6QrTO7QMcrpaMQfCbrYqoLzhghufByjc0uvB+9rYxAQm5wwJzaXRaFVHMocfnLss2llVlgmgVQVITa+cqoTVjnhCm0rw7NgISDBpfSaIBqVYktJCJev3y0DX13opQ4dOG6g3G3sHZmsa1RnsjBGo8yhFNtHudcamKQmt4kbnFUIpWA4vJPaSzL2RxAvtiAVaOozmf8I4FUAKEvRGJnFJ4zpwBRcBsr6cKWADEl2k5BJorjHUl93aO2lWQ9hC7bpcidStug+aVd3OBbEysZeS/vi0mv9lzP5q3eeCk8vYb9WBlGE2SO9pLVy/SCve77QY/ch57+ZTPboTeivROo/5q1y9E1ajxXZc/8+jqbVKNaX4KMY6KfAvqXoXmBPgzpvQZQCYouSMLmV9BBg695NJOErUiGf41HOKtjBOJDli+RnBPlQwdZBEtT4E4KcV7B1kIauxZqX2OPihE31GLL+WIfttePrWaM0bG2jNIQ9a5SGrm0Up/3qqbN6w768PJ4tvaAOvr0/Dq2OR7htZURZsvlvp6d91fGv1CoJmmJwYa2xT5ccCZJUOgiAaiHsG2gTd06/5+6dl3s7ZFftW1MlyJ3J3OqQStvtB+fkCncX5nHTQMZgyqeHqN4pxFmoqwpd27UavKO3Yvd4GecVfQ/19Wo6ve4BVr3tNvWSBfDg404AZ0ipYWm8Qgp6mFKIYFhYvFN4P2xknxtuWqK4BAEO7V0jm73VEEFKVLhoOIy18cmJXGFO8kSqoSxUGG2HsbeK1sFlfD15g+srlAlaiGbztsENz1E1GV2zbVNkod4gc1QL9rGn1Fj1tWp3LdnTyotJUPnSBPear3FIbjC+noAALqNiZ3Ty+mQE+5x1jPkVkHF4BZrY4RjEHgvb+kEAZmH+gVBmv+8OOLPCOKrVZo3Xa9HeLq0pIPyPhoWWKox3iL2p2zeDun2w0+0OBETt/zVzAalxxNabzUI6/GB1WfLjLx4tN2ku4E5aJRdM2WwDiXL8PYFoKbXDXmLb2wFevK9fgpeDnYDpJtw0Mucusv7mXyDgM673/oCFNzxtBmVTW4zjGAtq+fYuJJ6o7XT/eTGFsvwfCqXUMw== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fetch Workflow - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - workflow - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/fork-evaluator-variant.api.mdx b/docs/docs/reference/api/fork-evaluator-variant.api.mdx new file mode 100644 index 0000000000..a719f0cc59 --- /dev/null +++ b/docs/docs/reference/api/fork-evaluator-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: fork-evaluator-variant +title: "Fork Evaluator Variant" +description: "Fork Evaluator Variant" +sidebar_label: "Fork Evaluator Variant" +hide_title: true +hide_table_of_contents: true +api: eJztXFlv2zgQ/ivGPLWAHKdpm+76adOkRbO9giTtPgSBQUuUzYY6SlJpvYH++4KHDupwZNdeOKn6kEISZ4b8hhp+nBF9BwLNOIyv4M0togkSEeNw7UAUY4YEicJTD8bgR+xmgrMGk1vECAoFOBAjhgIsMJMq7iBEAYYx1FpOiAcOkBDG8D3BbAEOMPw9IQx7MBYswQ5wd44DBOM7EItYKuGCkXAGjjQeIAFjSBKlRhBBZYO8w4Ov2srg1IM0vda6MRevI28hFVZNuVEocCjkIxTHlLhqoKNvPArlvaInMZMwCIK5vMpHteTRhOFbwolWhMLFZ1/hYrf2qYK8vQHhEzfhIgrsRgaYaRRRjEJInfxWmFAKcuQZNqd8cKw1pI5UZ/V9XY054EbpPAlQ+CsK3ykFaepkjaLpN+yKJh+/VZjV9aUOBFgguxfI84h0KaJnFq61fpo5VlJLQoFnmNmWgql9pzy8ZlvgEuYmFLEnbxNK/+ZRODwN40Q8hepYpQ4icNBNCDGGFkthtUWhhu0y2Y8SSSlRm5+7hOin6APh4j5M28ZYlV4NoUs9C02g6zT+eg+kbOqAh7nLSCxq0aK7qpOSitQBTpPZuqoupKzsFaq+TXZsusWsHt+6m/lqxFMHEkbW1fKFEa2Brq+BSg1zjDy1eK022bcFySYcSLxlGqrL6dII7S2NzefYxwyHLi4ryTp6vdJr9c64Ic14QFeP7FBY2r1Av4IDLgzqcjlFcUzCrgtAFd9VVpvMkPK6DGNrT30tndp8dFfXr92bKO2yZwWe0kuY3RIXd4FWM+0VJqBRnSp67pNZorcf27B1bBnoRD/PDa0/QYohNbJQztFsbVLw0Yiv1Ju3Ebtp7s2a25DOr0kDwV8v8me8vmfxPYvvWfwWWfwu+f4hvU0m4v8f8f3+sF7PM002R/eLfFrWEZVQc+BHxG58Gv3YhtF/jO6qzXqysU+o9Qm1hxY8+qX4d1+Ku7yKpnzRHvbXC4E9me8jSB9BHnMEuTdwNBZiN04Xy+XXElvcvMmcLNoWi1FuY3SVUW1hNC0su2e8G2G8Gcw94e2Xq3656ivIfQX5Pgf2FeQ+0PcV5B1ev3ZvorTL/uYV5Ix97kQBudqZ++vHG9zutBUV+vx+v9t5oLGt3+387rudDm9i1+z+BkOtnR5DTBAfuZs0cGRUGgsejsW8UXfjZK45RUp3K1oqEBtaFkc8rkrnNJryeVLFuT4fAmmaqrWOx1HI9Qt6sL8v/7PmGlwkros59xM6ODeNYe1jJG6UaKEKRGV2kajDNR72UUIFjPdXLYg/jozo9iduTyw6E4tH9OHA50SsQS1qUitwCy37yMnFMlg7sIt1MNpteuEyjAT2JmhpWqIUvjwk8FCQAC+1cqzVDo4UWEnsbcPIF63WGPEwxVswcqLVGiMZXNPFBgN+BtbrhQn5GV4btZKhlVvJANuolQyu3MqDSvZWP3dpWkJWEM+JmCZxLw4O6rztK6LEU6xs8IaxiK1P2jwsEFGlArNAVBvQyLWerhKLS5luvaYUo/4QuSgLJwGf1fOlDQmgTFl7UwXG4FI+vY9My3Fp06adtc3I4NXotg/jRMO3zL/vLi/Pagq1b22nSgI/qH18AIp9zCN5Wj2OuD6bLjclMIplMgv/GOXMi48MheYjebAddFoyO8OuSkIwFyLm49HIpVHi7aEZDgXaQ2SEYqImPcduwohYKJGjs9P3eKFLEDC+ui43UHlxPUfsZrl7UEzeY4mWOT1/lIh5xMi/2vHm2LwuMykE5Vw9L064v/mJgphiqJ5Qbz6TnjPeErPV2U+bm+b3DLWU1wXDK2hJvvgWs8x2V35bB6tSM1MmzGtfxSNV1ytf0vJlUXGzij124aFUESgkrdy+lY1uSBqn5ZxsqTzRhOZWkGmx3/INODz30R8v/cMXw5evnr0avnh5eDCcPvfd4YH75+Fz//AQ+egQ2j7m7irduAvdlTllfym5Dd+0flK1MvrrCNu7+pVN/tIs2SU/P/zY8UtzZpdcUUlfdh2SldnpKmSyjPsSXBL6kVpCs7yOWqAHR2en4JRmxf7es7392lisxpIQIleBmq2/6nE+dzImkHMA+SYGig2CwCj4q3ggeybJh0nGGH2thKWy4zR0QOCfYhRTRMLSByqay1yB4TLlYMAh9wHXfP1GkrS5JEHjK7i7myKOvzCapvK2/vkdSVo8wtGUSpbnI8pxrTs5U4Yn54YQPh0Um3u7mzd40f67P/KuFFHEST2ZSqddXeefz6gOaR3H2uxQsdNCtkbWJZHWEkeui2OxtO11iR2efb64BAem5seBgsiTMgxJUOXfMYD8+SMprd4wde8OKApniX6ftU757z+l9CiM +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Fork Evaluator Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/fork-workflow-variant-by-revision-id.api.mdx b/docs/docs/reference/api/fork-workflow-variant-by-revision-id.api.mdx deleted file mode 100644 index b8be4a8f03..0000000000 --- a/docs/docs/reference/api/fork-workflow-variant-by-revision-id.api.mdx +++ /dev/null @@ -1,2491 +0,0 @@ ---- -id: fork-workflow-variant-by-revision-id -title: "Fork Workflow Variant" -description: "Fork Workflow Variant" -sidebar_label: "Fork Workflow Variant" -hide_title: true -hide_table_of_contents: true -api: eJztWVtv2zYU/ivGeWoBOXac2N30NDdp0azrGiRpBywwjGOJstlQokpSST1D/33gRVdf6qTusIfkIYmpc/3OIfkdeQUK5xL8W/iLi7uI8QcJEw94SgQqypOLEHyIuLibPrjn03sUFBM1nS2ngtxTSXkypSF4kKLAmCgitL0VJBgT8KEpQxPwIUW1AA8E+ZpRQULwlciIBzJYkBjBXwEmy4+RMaKWqTYilaDJHDwdSowKfMgyGkLulRJJxhjkEw8UVUwvXDm/nYsQci3o4inCr8L5mhGxbMQTIZMHD+izdWzjmVh3RKrXPFxqF200Ap4okijjPU0ZDUw9el8kT/RaFVsqdLUUJdKasWmvP8FMLbg4VDZjay33IERF9rSqRbuKxmSn6XNtMPcgJlLifKftXWY+OPXcc6V/mpk/0YQLIZGBoKly2D7F1HnNRO5BIAgqEk5RHRS+M2u2M1baSZaGP8PJJ2vWOQkJIz/Bybk165wUcM2Weu8eqI0LsF4vzb6s8DqolwKt0ksB2EG9FHCVXu6JkD/Qrp+deu6BZNn8qWautW7uweEStdlFzNxcG0zy2RcSKKgUirvtrVFZN20OG4UhqtZpj2FI9XZFdtk8S7+PA00UmRPR9BbPmiszzhnBxCxt9gUBFUHGULx4mzH2u+RJ9yJJM/VSp9dIV9ugisT7KaEQuNyJclNVI77ub/vZ69C098PmO3Rrmc6t5oYqoVA0wkAdcNeMnUm3ZwoP+0VcKG+OtkY1fgKHKO0/DlxnYlPEayVe1y5YFWwSrijMbcVDJtuNXFkGBHmurQkiU55Iu8EG/b7+07h04ToLAiJllLHOlROGJxOlgGdWqbVfa3eDkfhvcK5DZyPbgJszWeZucTsdDNah+oyMhgaIzhshuHg6TiFRSJn+zx0ubQHGg8bTx5yNk7x1IFVJ/8FtgIYJynmtUuW+2cD0rMh2UQNG50Y//V4ZdF7WtZNr7MMCXovu9jTOLXy79ta7m5vLNYO2ts2ivuXirlM0Q6doMHN3Lbge1FIulRnE1AJ86KV6E5KH3gwl6RXzm+wVW1P2VrXhLO/pMQ88kETcFzNcJhj4sFAqlX6vFzCehUc4J4nCI6Q9TCm0Yxybp50zLWqOLkmCTFC1NPbGlxfvyfIdwZAI8G8ndYFr3YC2pZpiZTUxpe+JBteNcnYGof/YPnHT3MJqafR0a19VU9abbxinjLSnpGIugpMIfxlGo9Pu8NXxq+7pcDTozk6ioDsIfh2dRKMRRjiCYt6BQX8w7PaH3ePhzfGJ3z/2h6dH/WH/b6gNLlX/uYjLz03QyuX6SLDLQ53V75KrE/Ndci1uvS8ULbK8N4JN9ruvWklnK7wsL60+P8ZcyR+pnAaZVDwuRm8qp+QeWYZK90W5tshiTOznJmGskRy9eWhA7GLAk4jOM/smRS+1Gcy+odZJyXMn/XgnHaJtWi3Qont793RFLZ4L+/8o7EHOg+dt/twN5dFgqBxNIm64TDE6WqL0GoM7koSN661/dHzU38asnEJnfHnhSH2zY6yYxrrB3UrWBh6Q2DB6UATj36oHOkrNIE0epb1tpLP1PtRRNEW+qV7KkBrebkJYOT56C46PggeakYIHJSc11NuxUvDAb35pYIjpxIOFprf+LaxWWv+TYHmul+37e00vQypxxmpv8O/Isv3KX5dOR2rIqXky0/XYpN1KsRyg4MWVmxNedqo3Ks3UC8qaLOs+i4jq+ZkhaFFQ4pWTOLPOumZUqSysTW56qrIa4yAgqdopO6nNCpcfr290JdzXDzEPzbc1qMujf5touUnefrGg11bAMJlnltxam/rnXyR5jVQ= -sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Fork Workflow Variant - - - -
- -

Path Parameters

-
-
-
    - -
-
-
-
- -

Query Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - - revision - object - - required - - -
    - -
    - - author - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/fork-workflow-variant.api.mdx b/docs/docs/reference/api/fork-workflow-variant.api.mdx index f92f4cb184..5d01d9eb97 100644 --- a/docs/docs/reference/api/fork-workflow-variant.api.mdx +++ b/docs/docs/reference/api/fork-workflow-variant.api.mdx @@ -5,2487 +5,67 @@ description: "Fork Workflow Variant" sidebar_label: "Fork Workflow Variant" hide_title: true hide_table_of_contents: true -api: eJztWW1T2zgQ/iuZ/dTOOCQEQq/+dAHKlOvdlQHKzRyTYRRbTlRky5VkaC7j/36zkvyalwYabu4DfAAi7z67erSSnnUWoMlUgX8Lfwl5H3HxqGDsgUipJJqJ5DwEHyIh7+8e3fO7ByIZSTR4kBJJYqqpRIAFJCSm4IN7fsdC8IAl4ENK9Aw8kPRbxiQNwdcyox6oYEZjAv4CSDL/HBkMPU8RQ2nJkil4GDomGnzIMhZC7pUWScY55GMPNNMcB25s2M55CDnauWwkfWCKiaSWzreMynkjn4hwtfOELl1km9HYxqNKH4twjjHadAQi0TTRJnyachaYBeh9VSLBsSq5VOLyaEaVhbFhlp+QTM+E3NV0RhYt9yAkmm6JiqZdzWK6EfoUAXMPYqoUmW7E3gTzh3PPPbf4z4P5k5h0IaQqkCzVjtvnQJ3WIHIPAkmJpuEd0Tul78TCdkYag2Rp+BJBvlhYFySknL5AkFML64IUdE3muHl3VMYFWcdzsy8rvnYapWCrjFIQttMoBV1llAcq1U+U641zzz1QPJs+F+YKfXMPdjdRO7uIm6tqBaSYfKUB3kiFQ3GZnRmXZWhz2GgSEt067kkYMtyuhF80z9If88ASTadUNqPFk+bIRAhOSWKGVseCgMkg40S+Ocs4/02JpHuepJl+i9NrTBcxmKbxdk5ESjLfyHLTFRlfjrf+7HVs2vth9SW6dplOreeKVSJSs4gEeoe7ZuQg3Z4pImyXceG8Otua9HkBVVPiP41cB7Eq46UlXvYuVAysMq4kzG2lQ8brQS6tAoI8RzRJVSoSZTfYoN/HP41LF66yIKBKRRnvXDpjeLZQCkRmnVr7tXY3GIv/huc6dTazFbw5yHLulrfDwWCZqhvCWWiI6HyQUsjn8xRSTRjH/9zh0jbgImg8fcrZOM5bB1I16d+FTdAoQTWtrVS5b1YoPWuy3tSQ0bnGpz9aBpyXDe3sGvuwoNeyu34ap5a+TXvr4/X1xRKgXdvmop4Jed8piqFzUzZeMdUzgZ1ZKpRtxPQMfOiluAnpY29CFO0VDZvquXJWvUV1QOU97OrAA0XlQ9HBZZKDDzOtU+X3egEXWbhHpjTRZI+wHkkZtDMcmaedEzQ1B5eiQSaZnhu80cX5Jzr/SElIJfi347rBFZafLaimWbmWJGWfKFLrWjnbgbB/bJW4Zm5mvZA7LOzLqsf68J3EKaftHqnoiuAgIr8Mo6PD7vDd/rvu4fBo0J0cREF3ELw/OoiOjkhEjqDodmDQHwy7/WF3f3i9f+D39/3h4V7/8P3fUGtbqupzGZefm6SVw/WGYFOEuqbfZFeX5ZvsWsp6WypaUnlrBpvad1u3UsxWfFlVWn1+ClypHpm6CzKlRVw03kzd0QfCM6KxLsqxWRaTxH5uysWaxMHNwwJqBwORRGya2RcnONTWL9umWpckr5X085W0i7JplUBL7G1d05WweF3Y/8fC7uQ8eN3mr9VQHg1GyLEkEkbLFI2jFUrHJLinSdi43vp7+3v9dcrKOXRGF+dO0jcrxpoh1w3tVqo28IDGRs+DpiT+tXqAWaJ+NPMo8dZJztbbUCfRNP2ueyknzKh2k8LCqdFbcGoUPEA9Ch6UirQ6CfFfv/GNgZGlYw9mKG39W1gs0PuL5HmOw/blPYrLkCky4bXX9/d0vvTCH1cOEzXa1MSZ4HKscm/NsOye4M2laxLedqrXKc2ZF4o1mddjFinV5mcaoFkhiBfO4MTG6po2pQJY6tqwo7IeoyCgqd5oO671CRefr65xHdxXD7EIzXcjBBcHf5tkhZm7/VIBxxbASTLNrLS1mPjzL6brhaA= +api: eJztW21T2zgQ/isZfbqbcQilQO/y6WgpA9c3BmjvQybDKLacqMiWqxfaHOP/frOS7PgtwXGTG9qGD5DY2l3pWWn3kbQ8IIWnEg1H6B8u7kLGv0o09hBPiMCK8vgiQEMUcnF3+9W9v73HguJYIQ8J8kUTqV7yYI6GD8jnsSKxgo84SRj1jYbBZ8ljeCb9GYkwfEoE6FeUSPiWKV7+5laQeyqpVYPj+YcQDUfVxiEzA1negMpbX0vFo3IjNU8IGqIJ54zgGKVe/ijWjKF07CFFFYMHF7L3ympIPVBH7jHTWHHxPRpf50qs0pmOcPw9Cs+NgjT1skZ88pn44K+sUebqMwNZXV3qoYgoXO4EDgIK/sTssgRrrZtSCRpPi2pprMiUiLKlaFJ+Uhxdsy3kU+FrhsVvZ5qxvyWP+xdxotXvqDpU0EEVidoJYSHwfCWqZVFUg3aV7DtAEiRq0/MpIfqev6VSPYbpsjFWpddD6MbOQhTjiLQcf70HIJt6KCDSFzRRtWDRXtVpQUXqIcn0tKuqa5CFXuHqaiqHpnsi6uGtvZlPTjz1kBa0q5aPgloNrLsGBhpmBAdErD3ZtwXJJhxIg1UaPMiQEVZoiLSmweoAHawMzVckJILEPikqyTo6XmtZnTs3AAQm9bb1yBMKS08v0K/hgGuHOqRTnCQ0bpsAqviuk20yQ8brEMY6T30rnXoowQJHRHVY0r/yRFkue7nAE7xExD31SRtoldBkrQnoVKcecPOQTrUl9duw9apkoA37vHKk/hQbgtRIQqXE086c4J0TX6czZ1zcNXem4x6k9SJpYPfd4n7G6nccfsfhdxx+ixz+Kfn+R1pNLuD/H+H98bBeO2O63RzXz5JLL+tGD9j/IpVs0FTFQu2wbndwtjs4+8HCxC7p/upJt8VK/GTj2/L43i0A7lj7LoDsAsjPHEAeDRxVCrUNXug64Ujb5g2V9ecj2sJIrAUsFA2xv8khnDiVzkJAEjVr1N24MGsTDKRbMTwzLxoawp03FSSAK/P85roBEVBwZe/HUZqmRUE4WjMPZMJjaSPPwf4+/CktInStfZ9IGWrWu3KNkdf1mt3n2gpV8Coe4WlzrR+QEGum0HB/zZ3EzzDBdruhX3A39EGrDmymJrUGnbGyPzmfWQVrC0LTBaOnzWh8QbAiwS1eeStXiF4BVqSvaERWWnll1fZODFg6CbZh5KNV64wEhJEtGDm1ap2RDK7JfIPxPgPr5dxF/AyvjVrJ0MqtZIBt1EoGV27lh6p1qOzhmzJIe+mcIKWGbR0eHNT51CfMaGDYUu+1EFx0J1MBUZiaOhmXHqoNGPdLb9eJxIWDA5tRFoN+y32cBZNITuvFAg3H45my5U0NGL0bePsY5YVxWdOuXWm3kcFr0V0+jFML3yr3nt/cXNYUWt+WnQpEu1fdUSFDPWYcqlcTLuF7gmHjgAYJnL6Tr4OMrMqBY7ZyAHWuyN7Im2KH0YOthkIzpRI5HAx8xnWwh6ckVngP0wFOqJnwkvhaUDU3IieXF2/I3FbfoOFoXGxgSkLsDCk3y52DE/qGAFY2g6ETrWZc0H+t2z1EYcy2wsrgBzP1alGH+/objhJGUKWutrGSNqe6BUprr/3LpDR/5jil2784brcgJHnaXcywsqvyxzZMFZq5u7W86GvxyhS0Fb+y4tdFqVmpyqlccVMohVlIlopaSmUYDdUSafG2qlCX04TmVpBZYr/58go9D/EfR+HxYf/oxbMX/cOj44P+5Hno9w/8P4+fh8fHOMTHqHIN1VaoaT/4VCZS+bh3Gw5Zdi7UFr0uMqVddVuh0ka5rZA7XNmH6U7jkJuwlG2TTdDrnVxewDDydbq/92xvv4ZeqTGkWOwbl2QxzbzOV3MWXfO4ijxEIpNfkSI4+mvxAnoG8dztbZ2+ZSmgQuBdhFXkmxokDNO4UO5qs8MIuexQgF0u3CYt+7mDpDeDrDIcoYeHCZbko2BpCo+/aCIgDYyd0ATAG43zqliTIe7I3FZMAfXom7wLzZm2CaBCQ4AiWIkT3yeJWtl2XEh8lx+ub5CHJu7fMyIegIzAMDr4PUQI/tMDpM3qNc8eEMPxVNtIY3XCz3+wbTUT sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Fork Workflow Variant - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
- -

Query Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - - revision - object - - required - - -
    - -
    - - author - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/get-all-workspace-permissions.api.mdx b/docs/docs/reference/api/get-all-workspace-permissions.api.mdx index 5dcecd6447..ab12ab47b7 100644 --- a/docs/docs/reference/api/get-all-workspace-permissions.api.mdx +++ b/docs/docs/reference/api/get-all-workspace-permissions.api.mdx @@ -5,144 +5,67 @@ description: "Get all workspace permissions." sidebar_label: "Get All Workspace Permissions" hide_title: true hide_table_of_contents: true -api: eJztVU2P2zYQ/SvEnAV726NOcYMgWSQHI9miB68hjKWxzSxFqpyRHcfwfy9G1neybX5A97LW4+Ob7+EVCuI82kps8JDCexKDzplziC9cYU6molhaZhs8L579s/9MUkfPBo2zLCbsGz6e0DrcOfrvm+mzN8aYT5Zls+4p29SsesUBNmH3lXJhE6mKxOTF+oORI/2aRbRMncEPT0/rd99yakJNzeNeZSIZywa9oRhDNJEkWjp1Nn6uDAmEiiKqzmMBKRxIMnQu6+nZiA4JROIqeCaG9Aq/Pzzov2nav9R5Tsz72pnPLRkSyIMX8qJ0rCpn88bk8ivrnStwfqQS9ZcVKhtxuVQEKbBE6w+QAPm6hHQDkbDI+MJCJSRwsnTORopKLKzMoDwSCs3Aghz9AA7M7ITRopcJcwSWobD7SwdkefB7e6jvqeSfyo8ux9pnTPFkcxqMMuWRpAuq/6qrYnLaCk/Z6hv5k43Bl+QlK6hy4aI/Rxl5nTEK+1VOY0eIhakXHT5bhQFo3RyA5j6d0NVdsjULA8Cd6ITT6k6wVnqGqauzajYm+1bu9MdAKz+GWvUx1Na6ZopZDI7UVSyKzNP5Dkr40UyIB/T2+8zpGTpXmR3rnpCsQuZziEUX0c461w6FGho++3j3Lpx5HG8HjIsQ4jzld2RcaJ5Vuj9H74NM6zaFuv4fgdsExIrTsR7WItySbtYxRrzAQOr2h9FVvnLO/NUvsfVoK930L4GS5BjaHQYJVChHSGHZ14WX01Wm80eRId1coY4OUjiKVJwul7kLdbHAA3nBBdolVrYJaLzmVs2peatUuG1VLq+jlUujt1o/fqTLB8KCIqSb7ZjwRXfdfYFOaf3Ow8p+JE2Ex1K/V7UcQxy6wqoDx/stjdz6fWiut3lrffsD8xfyTddQ5LvbD4vfFg+vBdNeMKv1Y7uyMW9WdudHQ9OVNElXnyhthBKtnglh+WY4UC+rwFKiH+n9e1lnTl6HN+T/p/3Xnva2nYS+ybJyaJtZa2p3bcdjA8N46MyM0r9N4BhYlHO97pDpz+huN4X/rilqm28TaF60nTbdZntLup7UCXihi3ZMrpFoB6Kr7609e/x1MvrJff/uCW63fwCoIY1k +api: eJztVkuP2zYQ/ivEnAV726NO9SFIFunBSLbowWsItDS2mVCkMjOy4xr+78XIeq+T5gd0L2t+882LnIeuUCDn5CpxMUAK71GM9d6cI33lyuZoKqTSMbsYePEaXsMnlJoCG2u8YzFx3/DtyTpvdx7/WzN9DcYY86dj2ax7yjY1q97iAJu4+4K5sCGsCBmDuHAwcsRf82gdY+fww8vL+t33HJtUU/O8VzOExrGxwSBRJEMo5PDU+XhsGRKIFZJVO88FpHBAyaz3WU/PRnRIgJCrGBgZ0iv8/vSk/6bX/rnOc2Te1958asmQQB6DYBCl26ryLm9cLr+w6lyB8yOWVn85wbIxLpcKIQUWcuEACWCoS0g3QGiLjC8sWEICJ4fnbGRRY8TCyRhT94RWUMHsZMnZIJBAgR7fgGUs3P7SAVkew94dauqND0qd+ZEy1SFjpJPLcXDKmBNKF2t/qqtiIm0NT9kaG4aToxhKDJIVWPl40Z+jPH/MGKX9Q07jR5CFsTc6HFsLA9CGOQCNPp6sr7vL1lsYgP5FJpzW7gRrTc8wDXX2mo3LvkI7+2OgNT+GWutjqH3rmpEyih41VFsUWcDzHZT41k2kgw3un1nQM3RuZSbW9pesssznSEWX0c5539a6OhqOfb57H888zrcD9MrH5/GjRJo/wR1pON9qJIc9YTiOy4JnddHLbQhRZn03gRqWC6c4684pNCuhjOpHVdPBczbnGCy5+EhlLHvjBbn28tBRL5nrlDpU80c6g2Su863GGh+ptIJtAuLE67AblgXckm4CWiJ7gYHUTVWjC27lvfm7H+3r0ay+6V8CJcoxtpMdEqisHCGFZV/WvJwOeB1fSAzp5go1eUjhKFJxulzmPtbFwh4wiF1Yt7SVg9tWNfKanFwaldX6+SNePqAtkCDdbMeEzzrk75tjSuuHva3cR9Rcgy31vKrlGGnoG6cL5njX0uRc2MdGvb2aVROcWa2f9R2Q+L6Snha/LZ6aXh0vqglZ95PNm/3U+W7EOqgnt9Dnrw9aWqcyQVv+MQg0siqylDaM7P38tWbBXYeF+f93zK99x7QlJPhdlpW3rmmh5u2ubdVvYKh6bYXR9W8TOEYW5VyvO8v4F/nbTWGdiFra2wSaPb/TQttsb0lXh1r1X/GiFZNrJlp51tf3cp596Wg39A35/t0L3G7/AnMr6lI= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Get all workspace permissions. Returns a list of all available workspace permissions. Returns: -List[Permission]: A list of Permission objects representing the available workspace permissions. + List[Permission]: A list of Permission objects representing the available workspace permissions. Raises: -HTTPException: If there is an error retrieving the workspace permissions. + HTTPException: If there is an error retrieving the workspace permissions. + + + + + + + + + + + + + -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • -
    - string -
    - **Possible values:** [`read_system`, - `view_application`, `edit_application`, - `create_application`, `delete_application`, - `create_app_variant`, `delete_app_variant`, - `modify_variant_configurations`, - `delete_application_variant`, `run_service`, - `create_secret`, `view_secret`, `update_secret`, - `delete_secret`, `view_app_environment_deployment`, - `edit_app_environment_deployment`, - `create_app_environment_deployment`, `view_testset`, - `edit_testset`, `create_testset`, `delete_testset`, - `view_evaluation`, `run_evaluations`, - `edit_evaluation`, `create_evaluation`, - `delete_evaluation`, `deploy_application`, - `view_workspace`, `edit_workspace`, - `create_workspace`, `delete_workspace`, - `modify_user_roles`, `add_new_user_to_workspace`, - `edit_organization`, `delete_organization`, - `add_new_user_to_organization`, `reset_password`, - `view_billing`, `edit_billing`, `view_workflows`, - `edit_workflows`, `view_evaluators`, - `edit_evaluators`, `view_testsets`, `edit_testsets`, - `view_annotations`, `edit_annotations`, - `delete_annotations`] -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/get-all-workspace-roles.api.mdx b/docs/docs/reference/api/get-all-workspace-roles.api.mdx index 50cfaf38ca..c6801a440d 100644 --- a/docs/docs/reference/api/get-all-workspace-roles.api.mdx +++ b/docs/docs/reference/api/get-all-workspace-roles.api.mdx @@ -5,119 +5,67 @@ description: "Get all workspace roles." sidebar_label: "Get All Workspace Roles" hide_title: true hide_table_of_contents: true -api: eJztVE1v2zAM/SsCz0Kc7ejTsqFog+4QpB12SIOCVZhYrSx5Ep02M/LfByp20gZo+wfmi23p8evxkR0wbhKUC/gd4lNq0BAsNawomWgbtsFDCZfECp1TzwNExeAoje78nZ8Tt9EnhcrZxCqsMxK3aB0+OPrIprzzSin10yZeHKPPg6M5pSb4RMtSTY5u3yBUeHgkw0lFaiIl8mz9RnFFn0VGm2gIfHV7O7t4MZTLLNV0rdArijFEFYxpY1LPlXWkInG0tB0inPsFDaGhiOJluoISNsT36Nz9EXifgaAh9oUlKDv4Oh7L6y3VN60xlNK6dWpgATSY4Jk8CxybxlmTgxWPSWw6SKaiGuXLMtXZOa5WVjDoZlGyY3sIyruGoITE0foN7PVwcODz1QHGiDvQwJad/A/ZKBHDxLlTP9Q8V7eXR0NNXIWeBdDQIFdQQnHkIhUDGYnilqJor4M2OiihYm5SWRTGhXY1wg15xhHaAhsL55qc5Fv1Q6CwX4o700bLu+xvMpte0+6KcEURysXyNeBG2Dqw8RZ2ZAcbe01SvMda/ictVyHav5l10GAlgepgJTVbvw7ZvOeqz+07mifyK9AgdR7SHo++jMbvFdMbqMls2jcdTW76kEeGgT6j60gUaKAardwxYf3tdCFZNiFxjf6Vv/daeZZed9Lf/1Xw2SroJcT0wkXj0HqZqdyvrh+GBZyGQXZCpnypoQqJ5bbrHjDRr+j2ezn+01IUUS81bDFaqScrWg8KFL0/0U70YaQC0Ru69iDks2Uhc3Cc0MuLW9jv/wFK9h0F +api: eJztVMtu2zAQ/BViz4Tl9qhTfQgSIz0YTooeHCPY0GuLCUWq5MqJK/jfi6Ut+QG0+YHqYomcfczsrDtg3CQoF/AzxLfUoCFYalhRMtE2bIOHEm6JFTqn3nuIisFRGj35Jz8nbqNPCpWziVVYZyRu0Tp8cfSvmPLJK6XUd5t4MVSfB0dzSk3wiZalmgxpLxAqvLyS4aQiNZESebZ+o7iizyqjTdQXvnt8nN18GMo0SzVdK/SKYgxRBWPamNR7ZR2pSBwtbfsK13lBQ2goomSZrqCEDfEzOvc8AJ8zEDTEI7EEZQdfx2P5uZT6oTWGUlq3TvUqgAYTPJNngWPTOGtyseI1SUwHyVRUo7xZpjonx9XKCgbdLEp3bA9FedcQlJA4Wr+Bve4PDnqeHWCMuAMNbNnJd9+NEjNMnDvNQ80zu708GmriKhxVAA0NcgUlFIMWqejFSBS3FMV7HbTRQQkVc5PKojAutKsRbsgzjtAW2FjYLyXCtNHyLodMZtN72t0RrihCuVieAx5EkAPhS9ggADb2noSfx1q+Jy1XIdrfWVjQYGUY1SFKaFm/Djn8KMckN6cmsyloEBqH8Y1HX0ZjuN6fC7DMEk2eZV87X4O+UmHgDxqoRit3TFh/O11IZ01IXKM/y/e3CV211Z1s9X/DP9vwo22YPrhoHFovq5Ln1R09voCTx2XVs+RLDVVILLdd94KJfkS338vxr5aiGHmpYYvRCp/sYt27Tjz+RjvxhxEG4jN07cG8V/8B4v1h8W5vHmG//wP6PA52 sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Get all workspace roles. Returns a list of all available workspace roles. Returns: -List[WorkspaceRoleResponse]: A list of WorkspaceRole objects representing the available workspace roles. + List[WorkspaceRoleResponse]: A list of WorkspaceRole objects representing the available workspace roles. Raises: -HTTPException: If an error occurs while retrieving the workspace roles. + HTTPException: If an error occurs while retrieving the workspace roles. + + + + + + + + + + + + + -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/get-config-deployment-revision.api.mdx b/docs/docs/reference/api/get-config-deployment-revision.api.mdx index b8b63992a5..d2cdd35c39 100644 --- a/docs/docs/reference/api/get-config-deployment-revision.api.mdx +++ b/docs/docs/reference/api/get-config-deployment-revision.api.mdx @@ -5,36 +5,36 @@ description: "Get Config Deployment Revision" sidebar_label: "Get Config Deployment Revision" hide_title: true hide_table_of_contents: true -api: eJyVVNFu2jAU/ZXoPm2SRVi1pzyNtVWLumlVy/aCEHKdS+I2sV37Bo1F/vfJTghQYNWeCPa5x8fn3uMWiBcOsjlcarWShYMFA23QcpJaTXPIoEBairi5zNFUelOjoqXFtXRSK2BguOU1EtrA04LiNUIGJ7BLmQMDqSADw6kEBhZfG2kxh4xsgwycKLHmkLVAGxNYHFmpCmBAkqqwcDXQJg89bTLNwftFYHNGK4cuEFyMx+EnRyesNOE2kMFjIwQ6t2qq5KEHAwOhFaGiAOfGVFLEy6fPLtS0O1Hee8/g88XFMfEvXsk8liXX1mr7H6xgbDCcZKc7R+KyCl+SsHbHgEqLg12uNj9W0flDzzwbVqQiLNCCX3i2XePW8s2esd90JxA8g9oV/+rBd3SOFwgD2XloNCOZhV2/O1s/PaOgg/7P4726o3vcYkezs7dz9/w1rjr7Th22hdzOZvdHhF1vD5t6g5R0sUhOjF0Qi1TqPiMxCFRCBmmXFpfuIpC2p+PggYFDu95mp7EVZFASGZelqah0k494gYr4iMuUGwlvNU7ibnIZoBBC4FA0VtIm8k3up3e4uUWeo4VsvtgHPIYB7EbqEDZ0kxt5h8HcPtKThkpt5Z9uTvokl11VcE+qlY7lvdG9tq9cvKAK0Q/37GSPR59G43OX6QuSyf20zxEXMUdbHREG7I1dg1HAAOsYIiDk9ZfdRlBptKOaqz2+d/t8oHKwh/A3pabiMmYmamn7GZhDPwOxeEsJDLIzz+KCQakdhcq2feIOf9rK+7D82qANzVwwWHMr+VOwdt5CLl34ziFb8crhkcjh+YEPD33KPibATovfNlyFbq951YR/wOAFN+ef8vialNvZanvwRAg0tEdz9PiFIRySc3M9A+//AtfHQNQ= +api: eJyVVNFu2jAU/ZXoPG2SBazaU56G1qpF3bSqZXtBCLnJJXGX2K7toLHI/z7ZCQEKbNoTwb73+N5z7rktHC8s0gU+K7kWhcWSQWky3AklZzlSFORWWbxc5aQrta1JupWhjbBCSTBobnhNjkzAaSF5TUhxJnYlcjAIiRSauxIMhl4bYShH6kxDDDYrqeZIW7itDijWGSELMDjhqnBwPcAmjz1sMsvh/TKgWa2kJRsAriaT8JOTzYzQoRukeGqyjKxdN1Xy2AeDIVPSkXQhnGtdiSw2P36xIafdF+W99wwfr65OgX/wSuQxLbkxRpn/QIU2gXAnurpzclxU4Us4qu1pQKWyo1sut9/WkfljzjwbToR0VJCBX3q2O+PG8O0BsV9UVyA8Q22Lv2nwlazlBWEAuxwayUjm4dbv31bPL5S5I/0Xsa/u6T5uuYfZ09uxe7mN646+c4/tQu7m84cTwE7bY1FvySWdLZIzYxeKJVeq3iPRCK5EinHnFjveW2DcnreDB4Mls9l5pzEVUpTOaZuOx1mlmnzEC5KOj7gYcy0Q5txS1hjhtjFl+jC7p+0d8ZwM0sXyMOApzFg3Ncdhg2Bci3sK/PWunTauVEb87kahN2vZZQWChFyrmN5zOY3FJdOHGRhCGx1zk9GH0QRv+TwKDvbgWbTH7u14DfaGhaF/MFAdvQFHvP60vwiVaWVdzeUB3j/lO6puoMTRLzfWFRfRCrGWtpd2gV7amLyDBEN6YdstGUplXchs22du6bupvA/Hrw2ZIOCSYcON4M+BzkWLXNjwnSNd88rSSZHDVsG7x9487xOw88XvRJZB4Q2vmvAPDD9pe3lDxyVR7uap7YOnWUbaHcCc7LQweIMhbm/m8P4POBkyRQ== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Get Config Deployment Revision @@ -43,254 +43,29 @@ Get Config Deployment Revision as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-config.api.mdx b/docs/docs/reference/api/get-config.api.mdx index fc5feb6336..69eec783cf 100644 --- a/docs/docs/reference/api/get-config.api.mdx +++ b/docs/docs/reference/api/get-config.api.mdx @@ -5,33 +5,36 @@ description: "Get Config" sidebar_label: "Get Config" hide_title: true hide_table_of_contents: true -api: eJy9VU1v2zAM/SsGTxtgJFmxk0/LuqINuo+g7XopgkKVmUStLLsSHSwL/N8HSv5Mmq7YYafEEsn39B5F7YDEykFyB6e5WaqVg0UMeYFWkMrNLIUEVkj30m9CDIWwIkNCyzk7MCJDSOBBOLxXKcSgDCTwXKLdQgwWn0tlMYWEbIkxOLnGTECyA9oWnOfIKsNlSZHmhc/CYTRLoaritnjAvvdfRwGWQrsBgjDbH0vPcYjFhesVU2oN1aJDDxJE3xmpzwDNRtncZGjof9A46+AaLgsGcUVuHDouezKZ8E+KTlpVsFWQwHUpJTq3LHV0VQdDzPIRGvJkikIr6Z0dPzrO2fWoFpZ9JxUQ+qq/YthAshhkaS2rtEHrVACoM5UhXKHtp4bY6LaOrYbdtQORpoq5Cj3vUQutVFfNHx5RUq/ovKtQVYdhnVN3e321z3xApmfOOVI4cytxVTHSx5OTQ0duhVap1zs6sza3/25HiiSU5n+KMHOHATqXg903NF5jSbXolBLWim1Pz695IMjuZG71Wit8Q+fEyrdBCDke6sWIbnj3by7xuQJ0HdfzopM3qHv8GF+CfC+BNSEXNzfzg4LB26Gp50jRaTMPM6R1Xk9J3zO0hgTGsh6mMTi0m2ZallZDAmuiwiXjsdR5mY7ECg2JkVBjUSjYx5r63eiUQ/2McChLq2jr603ns0vcXqBI0UJyt+gHXHMjhdYYhrWuiEJdIotUT7lpSevcqt/B73rErUMWq6DMMvfptWA1t89CPqHh2d9eepiMPowmxw5TJ0TT+ay+D0L6+9Dw8GEQ78nVCgUxYOYvAxCK7FO3wSyL3FEmTK/ewK8Bo1YKwl80LrRQvs897q72spkTfgisc0e8tNvxi/fT6qri5fAOsCOpcuJB916CPbz29sO7q7rJ30cQv8zjCbeDt3UjdMlR/g4fIIXo4VB7S8YLj1uXtuAPqzjPN1jcNAQfNuRPpcSCelkHY42rtPfk/OwGquoPPCXjqw== +api: eJy9VU1v2zAM/SsGTxtgJFmxk0/LuqINuo+g63opgkK1mUSdLLkSHSwz/N8HSv5M2q7YYafEEslHvfdEVUBi4yC5hVOj13LjYBWDKdAKkkYvMkhgg3SX+k2IoRBW5EhoOacCLXKEBO6FwzuZQQxSQwKPJdo9xGDxsZQWM0jIlhiDS7eYC0gqoH3BeY6s1FyWJCle+CgcRosM6jruigfsO//1LMBaKDdCEHr/be17HGNx4WZFl0pBverRAwXRV0YadoB6J63ROWr6H22c9XBtLysGcYXRDh2XPZnN+CdDl1pZsFSQwPcyTdG5damiqyYYYqaPUJNvpiiUTL2y0wfHOdWg1cKy7iQDwpD1FwQbURZDWlrLLO3QOhkAmkypCTdoh6khNrppYuuxuyoQWSa5V6GWg9aClZqq5v4BUxoUXfYV6vo4rFfq9sBXh52PmhmIc44UztxRXNeM9P7k5FiRG6Fk5vmOzqw19t/lyJCEVPxPEubuOECZdLT7CuO1ktSrnilhrdgP+PxsQoOsTu42L1nhCzonNt4GIeT5UE9GdM27f1OJzxWgm7iBFj29gd3nj/Ep0PcUWBtycX29PCoYtB2Leo4UnbbzMEfammZKes/QFhKYps0wjcGh3bXTsrQKEtgSFS6ZTlNlymwiNqhJTIScikL6MeAwLa2kvU+ZLxeXuL9AkaGF5HY1DPjOXgnqj8M64kUhL5F5aAbZvKStsfJ3kLSZYtuQxQeVem18esPJ3DcXzZcLiKG70zCbvJvM4JCXUTDbXKTe5i2234b4gIXu/BAD5t7jQCjyD/0Gd1YYR7nQg3ojGUaddMcn/EXTQgnp7etxq0ai9vr7u701jnipqvgh+2FVXfNyGO+sQiaduFeDAX+A111qeHPVePdtBPHTffzE/ejJ3AlVcpS/mkdIIXo8q16T8cSb1aet+MNKzvOmilsT8GFD/jxNsaBB1tG04iqd/c/PrqGu/wDyNdUc sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Get Config @@ -40,344 +43,29 @@ Get Config as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - - - parameters - - - object - - - - required - - - -
    - -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-evaluation-scenario-score-router-human-evaluations-evaluation-scenario-evaluation-scenario-id-score-get.api.mdx b/docs/docs/reference/api/get-evaluation-scenario-score-router-human-evaluations-evaluation-scenario-evaluation-scenario-id-score-get.api.mdx index 58b295fd04..134b72247f 100644 --- a/docs/docs/reference/api/get-evaluation-scenario-score-router-human-evaluations-evaluation-scenario-evaluation-scenario-id-score-get.api.mdx +++ b/docs/docs/reference/api/get-evaluation-scenario-score-router-human-evaluations-evaluation-scenario-evaluation-scenario-id-score-get.api.mdx @@ -5,317 +5,73 @@ description: "Fetch the score of a specific evaluation scenario." sidebar_label: "Get Evaluation Scenario Score Router" hide_title: true hide_table_of_contents: true -api: eJzdVU1v40YM/SsDnrqA1k6DnnSq26SJsS0aJG4vjmEwI1qaXWlGO0MFdQX99wVH8lcsB9trT5ZHj2/Ix0eqBcY8QLqE+6ZC+/H2FcsG2TgbYJVARkF7U8t/SOE3Yl0oLkgF7Twpt1GoQk3abIxWtA9VQZNFb9zk2T7bmc9D+myVUkeQ9Q6yNlmqFgWp+Y3wCfkIkWKnNnJ7ZHwkbrzdkd4YLVj0W6WdZTTW2HzIcoie3yi0mTIc+swnkICrycdL5hmkkBOvx7KL8LV3DZNfFyLRESyMhowemmw9cOXEkECNHiti8qJ9CxYrghTGIyEBI/LXyAUk4OlrYzxlkLJvKIGgC6oQ0hZ4WwtLYG9sDgmw4VIODk1VT3tJMui6lbCF2tlAQQiur67k57TrT43WFMKmKdXjAIYERGqyLHCs69LoyD/9HCSmPU/KvXwmLZVjlpnYr/LBSw/Y9HefJt8dst9dqu6I1VgpT9GMj7FHKtr4CBZGQ0YP55kauO6Ioeu6LoGfrq/PFfkbS5P1wbfeO/9f5KhPis6I0ZTyZJiqcA4onT55i3b75yZa5q1e+xNjmXLy0K1ExP4MvcftkSN+d32ConMV8vfM8weFgDnBnuwdn4kYaiFvu8Pd+84fjLuMdfVXD7jVgeYgb6/u5TJuevnGLttB7heLhzPCvrcVceGG4Y8jyQWkMI1T/vFoyqcjYzltx2e1m8YphwQC+dfdeDe+hBQK5jqk06kuXZNNMCfLOEEzxdrA21U7i2/VrwIFmdNAuvGGt5Fv9jD/RNt7wow8pMvVMeBJrNab5xS27xvW5hOJjMPWmTVcOG/+7R0xLJuijxKdjN24GD5IOuT2C+ovZGU7SZ192leTHydXl4oZAtTsYT5MDOo4Mbs8IgySN3LthYIEqIrjAkxY/Xx4IVnWLnCF9ojve/bF21zbwyT/vz53Q++Z/uFpXaKJox+FbgfnL+HM+aL4eQ2QQHrxS9Xbf5VA4QILadu+YKC/fNl1cvy1IS8mXiXwit7gi1hq2UJmgjxnkG6wDPROW354HPbIB3Wprp3RrbhcMpV/kMAX2l7+ysZ9Wexmqh3AM62p5iOas/Uuw7dfJXe3C+i6b5V/R48= +api: eJzdVU1v40YM/SsDnlpAa2WDnnSqgaSJsS0aJG4vjmEwI1qarTSjnaGCuoL+e8GR/BUrQXvdk+UZ8pF8fOR0wFgEyFZw39ZoP92+YtUiG2cDrBPIKWhvGvkPGfxCrEvFJamgnSfltgpVaEibrdGKDq4qaLLojZs922c790XInq1S6sRkszfZmDxTy5LU4kbwBHwCSLFTW4keER+JW2/3oDdGiy36ndLOMhprbDFmOXovbhTaXBkOQ+YzSMA15GOQRQ4ZFMSbqeyi+ca7lslvSqHoxCxMukwemnwzYhXEkECDHmti8sJ9BxZrggymPSEBI/Q3yCUk4OlbazzlkLFvKYGgS6oRsg541whKYG9sAQmw4UoOjk1VTwdKcuj7taCFxtlAQQCur67k57zrT63WFMK2rdTjaAwJCNVkWcyxaSqjI376NYhPd5mUe/lKWirHPDexX9WDlx6wGWKfJ98fs98HVXfEaqqUpyjGx9gjFWV8YhYmXSYPF7kase6Ioe/7PoGfrq8vGfkTK5MPzrfeO/9/6GjOis6J0VTyZZjqcGlQOX12i3b3+zZK5i1fhxNjmQry0K+FxOEMvcfdiSJ+dUOCwnMdio/E8xuFgAXBAewDnQkZaim3/TH2ofNH4a5iXUPo0W59hDnSO7D7fhk3A31TwfYm98vlwwXg0NuauHTj8MeR5BIySOOUfzqZ8nRiLNNuelb7NE45JBDIv+7Hu/UVZFAyNyFLU125Np9hQZZxhibFxoCMYiDdesO76DJ/WHyh3T1hTh6y1frU4EnUNOjj3OzQGmzMFxKmxsUyb7l03vwzNH3cJ+XgJVQYu3XRfWRtHpNT84cFJCBlDMK/mn2eXcHbZ+HMOK5gHQdhHzteQ/KGhUP9kADVcQqACeufjxeSWeMC12hP8P7LGnibY3cc0O/rFRv7zfQ3p02FJk50JLobBb2CC0EL45c1QALZuw/QoOp1AqULLKBd94KB/vBV38vxt5a8CHedwCt6gy8io1UHuQnynUO2xSrQB2354XFcDz+q9+rai9uKsiVT+QcJ/EW79x/PuAbL/Rx1o/Fca2r4BOZia8vAHTbE3e0S+v5fAjE5AA== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Fetch the score of a specific evaluation scenario. Args: -evaluation_scenario_id: The ID of the evaluation scenario to fetch. + evaluation_scenario_id: The ID of the evaluation scenario to fetch. Returns: -Dictionary containing the scenario ID and its score. + Dictionary containing the scenario ID and its score. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-evaluator-config-evaluators-configs-evaluator-config-id-get.api.mdx b/docs/docs/reference/api/get-evaluator-config-evaluators-configs-evaluator-config-id-get.api.mdx index 34391cf2e0..4afc7ecf0e 100644 --- a/docs/docs/reference/api/get-evaluator-config-evaluators-configs-evaluator-config-id-get.api.mdx +++ b/docs/docs/reference/api/get-evaluator-config-evaluators-configs-evaluator-config-id-get.api.mdx @@ -5,299 +5,70 @@ description: "Endpoint to fetch evaluator configurations for a specific app." sidebar_label: "Get Evaluator Config" hide_title: true hide_table_of_contents: true -api: eJzNVk1v2zgQ/SvEnHYBwc4GPelUNw3aIO2ukaS9OIbBUGOJrUyy5CioV9B/Xwwp2/LnFnvakw3yzdebN0O1QLIMkM/g9lXWjSTrA8wzKDAorx1payCHW1M4qw0JsmKJpCqBG7RQ1ix12XjJ2CCW1gspgkOll1oJ6dzo2TybB6TGm5A/GyGE+KQDzbYBb6KH9+/muZiIWgcSdnkugLAv31BRGEEG1mE6vCsghxJpsTVaJKPdQehPwuIYpIvFokSCDJz0coWEnhlpwcgVQg4nDCADzcQ4SRVk4PFHoz0WkJNvMIOgKlxJyFugtWMXgbw2JWRAmmo+2BYvUvXiroCum7Or4KwJGNj6+uqKf/ab8dgohSEsm1o89GDIQFlDaIjh0rlaq8jM+Ftgm3aQkfPMG+kUQReXsuSksp6G86g/+b7L2DP3ZnHZ5zShRPK94/Y7rn+NsHtcs2VAIm3KsOCLVIw067+WsXOyKDTXL+vpoNzUnD5CEhJ02TamaeoauAebmI99CPE1hegyUB4lYbGQdCnZm4QSE/YPjSt+weZLQkWb7jDLocRmEPUXu7JH+iGbe9nupTE/wWvSIXQdR39zfX0svK+y1kWawlvvrf/vqiuQpK6j/ghX4RhQW7V3u+vsPn2D7mlDWKKHbr5jT3ov1wOOP9mUIHdlFcpL7fiMIcgy6jpBLkiTyRBPfPtvneO6UugeN+jEjt7E7vky3if6TgXbQD4+PU2PHKberpAq22/MuPOoghzGu1U57lfluD2x+Trg0fOvmx3Z+BpyqIhcyMdjVdumGMkSDcmR1GPpNBw+JpN4K24YGsctoGq8pnX0N5ne3eP6I8oCPeSz+RDwyHJKAtmHbXsjnb6Pyu9X96Shynr9d+p6v7SrZMVcaLO00bynrc/tnVTf0fBEcZ0p7avRH6Orc8X0BmIyveunQqo4FZs8IoyHcI+uLVE8u6s4EkAoV293F5yls4FW0gz8fUASh0/IYW7tbjr/pw943zTCnzR2tdRxLiNDbS/L2W6lhUQsCxMyyE89yvMMKhuIzdr2RQb84uuu4+MfDXrW1zyDV+m1fOFuz1oodOD/BeRLWQe8wOBvD/0Y/y7OZb7RoGEBxlcJcoAM4st28isi7qpqo/W2R06UQkcDH0erlYdiO8Yfbp+g6/4BGvRlfw== +api: eJzNVk2P2zYQ/SvEnFpAsLeLnHSqmyySxSapsbvJxWsYXGkkMZFIhhwt6gr678WQsi3ZXjfoqScb5JuvN2+G6oBk6SFdwc2LrFtJxnlYJ5Cjz5yypIyGFG50bo3SJMiIAimrBO7QIjO6UGXrJGO9KIwTUniLmSpUJqS1syf9pO+RWqd9+qSFEOKj8rTaB3wbPLz7Y52KhaiVJ2GK1wII8/wNM/IzSMBYjIe3OaRQIm32RptodDjww4nfnIJUvtmUSJCAlU42SOiYkQ60bBBSOGMACSgmxkqqIAGHP1rlMIeUXIsJ+KzCRkLaAW0tu/DklC4hAVJU88G+eBGrF7c59P2aXXlrtEfP1tdXV/wzbcZDm2XofdHW4n4AQwKZ0YSaGC6trVUWmJl/82zTjTKyjnkjFSOo/FKWnFQy0PA66jPf9wl75t5sLvtcRpSIvg/cfsftzxF2h1u29EikdOk3fBGLkXr7ZxE6J/Nccf2yXo7Kjc0ZIkQhQZ/sY+q2roF7sIv5MIQQX2OIPoHMoSTMN5IuJfs2osSC/UNr85+w+RJRwaY/znIssRUE/YWuTEg/ZnOS7SSN9Rleow6h7zn6m+vrU+F9lbXK4xTeOGfcf1ddjiRVHfRH2PhTQG2yye2hs1P6Rt1TmrBEB/36wJ50Tm5HHH80MUHuSuPLS+34hN7LMug6Qi5Ik8kQj3z7b53jumLoATfqxIHeyO7rZbyL9J0LtoN8eHxcnjiMvW2QKjNszLDzqIIU5odVOR9W5bw7s/l64NFzL7sd2boaUqiIrE/n86w2bT6TJWqSM6nm0qowUR6z1inaBpPF8vYOtx9Q5uggXa3HgAdWTNTAFLanX1p1F8Q9bOdFS5Vx6u/Y2GEvV9GKy1W6MMF8YGYRkhOL5S0kwGVEcV/NfptdwfHDNwGz2GUWxL6LHa55tiYs7OvnkWyC0oFQNr8fLjgzazw1Uo/8vUcSxy/DcU7dYej+p+/y0CjCv2hua6nCuAWGukFtq8Om8pFY1hskkJ57a9cJVMYTm3Xds/T4xdV9z8c/WnSsqXUCL9Ip+cwdXnWQK8//c0gLWXu8wOAv98N0/ipey3ynO82iC48NpAAJhAfr7MdBWEHVTt/dgFxkGVoa+TjZmDwI++l8f/MIff8PsRtW8A== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Endpoint to fetch evaluator configurations for a specific app. Returns: -List[EvaluatorConfigDB]: A list of evaluator configuration objects. + List[EvaluatorConfigDB]: A list of evaluator configuration objects. + + + + + + + + + + + + + + + - -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - -
    - - settings_values - object - -
    -
    - anyOf -
    -
    -
    - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/get-evaluator-configs-evaluators-configs-get.api.mdx b/docs/docs/reference/api/get-evaluator-configs-evaluators-configs-get.api.mdx index 1980ea48f0..5f3234bb06 100644 --- a/docs/docs/reference/api/get-evaluator-configs-evaluators-configs-get.api.mdx +++ b/docs/docs/reference/api/get-evaluator-configs-evaluators-configs-get.api.mdx @@ -5,325 +5,73 @@ description: "Endpoint to fetch evaluator configurations for a specific app." sidebar_label: "Get Evaluator Configs" hide_title: true hide_table_of_contents: true -api: eJzdVsFu2zgQ/RViTi0g2NlgTzqtmwSpke6ukbi9OIbBUGOJrUyy5ChYr6F/L4aULDuJve11TwbIN5w3b96MvAOSZYB8ATfPsm4kWR9gmUGBQXntSFsDOdyYwlltSJAVayRVCezRQlmz1mXjJWODWFsvpAgOlV5rJaRzo0fzaCa+DPmjEULw0UoX4l0g/z4X8wrF9FrYtaAK9/B7pMabPuKTDrTY87uKCa8/LHMxEbUOxMEn+Aj79BUVhRFkYB2mw2kBOZRIq33QKgWF4STsj0okyMBJLzdI6FmrHRi5QcghlQIZaFbpe4N+Cxl4/N5ojwXk5BvMIKgKNxLyHdDWcVggr00JGZCmmg8mzolpAW275OjgrAkYOODy4oJ/jrvx0CiFIaybWtx3YMhAWUNoiOHSuVqrWOv4a+CY3WsS0nvJbDXhJuZynhUinTLr4hxhJpt1KpxG/cX3bcYvcxdW59+cJZRIbw+9+Ybbc2F7X4g73HJkQCJtyrDii1SMNNu/17Fxsig06yLr2UG5qU9dhmQZaLN9TtPUNXBv+pwPXQrxJaVoM1AeJWGxknSO7FVCiQm/D40rfiLmc0LFmPYly0O3LSB6MXblSPSXah6xPaKxfEPXNG/Mt7/qXSdukcSgfwKG4STsj26RyTP93y8vXzv6i6x1kQb2xnvrf8XOx7YtkKSuo4Hf9nVt1dHtYI1j/Q/arw1hiR7a5SB/Pz29JJ9sIsgybUJ5rp9/YgiyjIORIGe8zWKIOd/+V+u5rpS6wx20cpA3qXu6jOsk31vJesjH+Xz26sHU2w1SZbvlGncmVZDDeFiq426pAk+pf+63aeNryKEiciEfj1Vtm2IkSzQkR1KPpdPw8oM0ibfiiqFxMgOqxmvaxvcms+kdbj+iLNBDvlgeAh7YOMkKx7BhMTp9F4ekW/KThirr9b+pv92ur1IUV63N2sbwfpknbh+k+oaGh4/rTLQvRr+NLk4V0wWIyWza+V+q6P+eR4TxvB7JtReKx3wTzQ+EcvPHcMEsnQ20kebgvTeH9yW53TCI/49/AV2TCf+hsauljhMbFd11hl0M2zKkRkRhlhlUNhDf73ZPMuBnX7ctH6fvPhuv0EE+1TyQa1kHPKPlu/tudt+LU6Tid2/4ixG/ZpBDtPuz9JozRXdnvRuZQoqaKIWODqJe7VB+ZT+vtzdzaNsfLvt1uQ== +api: eJzdVk1v2zgQ/SvEnLaAYKdBTzqttwlSI91do3F7cQyDkUYSW5lkyVFQ19B/XwwpWVI+vN3rngwM5+PNmzcjH4Fk6SHdwPWjrBtJxnnYJpCjz5yypIyGFK51bo3SJMiIAimrBPbeIjO6UGXjJPt6URgnpPAWM1WoTEhrZ/f6Xi9c6dN7LYRg007l4jdP7k0q1hWK5ZUwhaAKT+6fkBqn+4iPytPmhO99KHj1xzYVC1ErTxz8Ch5hHr5iRn4GCRiL0bjMIYUSaXcK2sUgP1j8yVQiQQJWOrlHQsdcHUHLPUIKsRVIQDFL3xt0B0jA4fdGOcwhLWTtMQGfVbiXkB5B6sPfRchAB8sZPDmlS2iTk0U3dQ3tNgFSVLNhYa1Y5tCyzaG3Rnv0nOzy4oJ/pqO6a7IMvS+aWnzqnCGBzGhCTQGCtbXKAhHzr55jjiOAHQjpnORWFOE+1LKO6SMVK6t85Nu1MABmsElH0etef/F7m3BmHtHufM5V9BIx9zC4b3g4F3YSjbjFA0d6JFK69Dt+iM0MM5F5rpgXWa9G7ZJrMOkrRD2dndddV0J8iSXaBDKHkjDfSToH9n30EgvOD43NfyHmc/QKMe1TlGMpbiAINUxlQvpTNidoJzC2L/Aal5Hx9k+96sQNkhj4j45+sPiT6QYZPMN/d3n5XNFfZK3yuM3Xzhn3X+Q8lW2OJFUdBPyyrmuTTV5/YV2VJizRQbsd6O+3p6fko4kAmaa9L8/N80/0XpZhMaLLGW0zGWLNr/82eu4rlu78RqMc6I3svt7GVaTvpWK9y4f1evUsYZztHqky3eUNB5UqSGE+XNx5d3GBt9Q99qe2cTWkUBFZn87nWW2afCZL1CRnUs2lVWH5PGaNU3QIIYvV8hYPH1Dm6CDdbMcOd6yNOO2p23D7rLoNe9Ad+UVDlXHqZxxhd+urGMWNKV2YEN7f6wBOLFZLSIDbiDK+mL2dXcDTL+vEmWUtsyDrvnZ45jWcsHDqn7d3HzQNhHL/+/DAyKzxtJd6lO/FnXwK6jjs1//jy98NlvAHzW0tVVjEwOix0+FmOII+DiIQs02gMp74/Xh8kB4/u7pt2Ry/9Sy2XHn5UI++9uGTNPw1CB8aSCHI9FE6xd5BlUmvIk4ToxZZhpZGUc/OG2c5rdLN9Rra9h/3llyW sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Endpoint to fetch evaluator configurations for a specific app. Args: -app_id (str): The ID of the app. + app_id (str): The ID of the app. Returns: -List[EvaluatorConfigDB]: A list of evaluator configuration objects. + List[EvaluatorConfigDB]: A list of evaluator configuration objects. + + + + + + + + + + + + + + + - -
- -

Query Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - - -
    - - settings_values - object - -
    -
    - anyOf -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/get-evaluators-endpoint-evaluators-get.api.mdx b/docs/docs/reference/api/get-evaluators-endpoint-evaluators-get.api.mdx index 8214bc6bdc..bff073893a 100644 --- a/docs/docs/reference/api/get-evaluators-endpoint-evaluators-get.api.mdx +++ b/docs/docs/reference/api/get-evaluators-endpoint-evaluators-get.api.mdx @@ -5,271 +5,62 @@ description: "Endpoint to fetch a list of evaluators." sidebar_label: "Get Evaluators Endpoint" hide_title: true hide_table_of_contents: true -api: eJy9VU1v2zAM/SsCz0LS7ejTsq3oihRr0XanNAgYm4nVypIq0cUyw/99kOw4Tvpx2GG+2KDIp8ePRzfAuA2QLeD8BXWNbH2ApYSCQu6VY2UNZHBuCmeVYcFWbIjzUqDQKrCwG0FD3OTBPJhb4tqbkD0YIYS4UoEXA/IyE7PXccKuHynnMAEJ1pHHeOllARlsiVcH+BX1LMa2LTFI8BScNYECZA18PjuLr+MM7uo8pxA2tRa3vTNIyK1hMhzd0Tmt8nT39DHEmAZCXlKF8UsxVQnc+UiRVXeVwYrim3eOIIPAXpktSGDFOhp+xvNWwhPtPnKb0y56FcpTzqs6jDHX1mpCM/L+ntzEr5CgAzErsw0rpspp5BSLRaFiJqhvRnzZ1yT3uF3RR7B3PZC43wO1J2PQAJrd9QayxWkqrRwsptYa2uWI7giilWBDeBNpn+dHUNchQOS0wVozZBvUgdrY/edaeQorrasVOrV6ot2/X3Lbo4krXYmZU2Ie0d64thPOaDZOa7I3oPe4G1X6Pga27etW9IkUUY5ptLrJOZqMtzrecxklMUjuAxp7HYgLYnFQvxjEPrJdEEMbHwkVcWl7dYIEh1xCBtODJhNF/0I+pNLXXkMGJbML2XSaa1sXE9ySYZygmqJTcLptZulUfIuuqTWB8tor3iW82c3lnHY/CAvykC2WY4e7KNhOmsduQ3PQqXkqaSddmNVcWq/+JOGDBBUJlF1UzFaZjU3hfdF6bl8xfyJTgISYZ0f7bPJpcvZeMn2AmN1c9nsHcz6skN4N5Em5hkKBBKpQxTMmrL4cDiJLZwNXaEZ47/T0lF5zWIH/b8n3rWD6zVOnUaW9kPJu+nFaAB39jUobOFqbZo2BfnndttH8XJOPQ7GU8IJe4Tq2aLFs5b6DcV7S7oVZnpOL6UfcbhBO9n2co2G2L87voW3/AqNKdWc= +api: eJy9VU1v2zAM/SsCz0KS7ejTAqzoihRr0Y9TGgSMzcRqZUmV6GJe4P8+SHYcJ+162GG+2KDIp8ePR++BcRcgW8LFG+oa2foAKwkFhdwrx8oayODCFM4qw4Kt2BLnpUChVWBht4KGuMmTeTJ3xLU3IXsyQghxrQIvB+RVJubv44TdPFPOYQISrCOP8dKrAjLYEa+P8GvqWYxtO2KQ4Ck4awIFyPbwdTaLr9MM7us8pxC2tRZ3vTNIyK1hMhzd0Tmt8nT39DnEmD2EvKQK45diqhK485Eiq+4qgxXFNzeOIIPAXpkdSGDFOhp+xvNWwgs1n7ktqIlehfKU87oOY8yNtZrQjLy/JzfxGBJ0IGZldmHNVDmNnGKxKFTMBPXtiC/7muQBtyv6CPa+BxIPB6D2bAz2gKa52UK2PE+llYPF1FpDuxrRHUG0EmwIHyId8vwM6iYEiJy2WGuGbIs6UBu7/1orT2GtdbVGp9Yv1Pz7JXc9mrjWlZg7JRYR7YNrO+GMZuO8JgcDeo/NqNIPMbBt37eiT6SIckyj1U3OyWR81PGeyyiJa9ph3gzC+4TMQQ3iklgcd4AYJD+yXRJDGx8JFXFpe42CBIdcQgbTozITUf9GPqQG1F5DBiWzC9l0mmtbFxPckWGcoJqiU6kHgfLaK25SyPz2akHND8KCPGTL1djhPiqz0+Cp29AFdGqRatdpFOY1l9ar30nhIEHFrVB2UTEhZbY2hfd1mSdyYn57BRJiGt0emU2+TGZwvh9PnONSwZyP+6E/BnlWhSF/kEAVqnjGhNW340Fk5mzgCs0I7y+tOqe1P+63/7fB+/Iz/eKp06iS6FPe+35KlkAnv5rSBo7W/X6DgR69bttofq3Jx0FYSXhDr3AT27JctfLQtTgjabHCPM/JxfQjbtf8s2UeZ2cY2cuLB2jbPxsiaS0= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Endpoint to fetch a list of evaluators. Returns: -List[Evaluator]: A list of evaluator objects. + List[Evaluator]: A list of evaluator objects. + + + + + + + + + + + + + -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - -
    - - - - settings_template - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - oss - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - requires_llm_api_keys - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/get-own-org.api.mdx b/docs/docs/reference/api/get-own-org.api.mdx index c1c74e3a8c..a609a250b7 100644 --- a/docs/docs/reference/api/get-own-org.api.mdx +++ b/docs/docs/reference/api/get-own-org.api.mdx @@ -5,97 +5,59 @@ description: "Get User Organization" sidebar_label: "Get User Organization" hide_title: true hide_table_of_contents: true -api: eJx9U01v2zAM/SsBz0Kc7ajTsmHoggJrsa6nwCgYmY3V2pIqUekyw/99oO18Ap0PtiE+ko/vUR34QBHZereqQMOW+Mm/uycft6AgUgreJUqgO/i8WMinomSiDZIBGh6yMZTSc25mvyYwKDDeMTkWOIbQWDM0KF6S5HSQTE0tyl+I0p7t2MFW8uZ9INCQOFonJNhyIwerCnoFDlv6H+qnxPteHQB+80KGh1neso1UgV5Lo6lSecq8i1t09u9A9S5zyAy9POpq5Bvi2WOiODtPAAUtce0nDUFBQK5BQ+HPUKnw7wJNFHcUE+h1Bzk2oKFmDkkXhWl8rua4Jcc4R1tgsHBNYDlEZ98ECn0p5UyOlvdDveX96pb2PwgriqDX5TngQYQftb6EHfXEYG9pf1BHwzJz7eNpSCsE6jFLpLHu2Q/pk4gTt69oXsmJyjLnSHsx/zRffDTMlDBb3q+m/UEz7M+BxwADdSXXUShQQC1aiTFh++UUEJbBJ27RndX7yMQLckdVmP5wERq0TlZwoNBNBq/hwmBQIBaXCmqfWMJdt8FEj7Hpezl+yxTFqFLBDqPFjci2Lnt1UFU8fKW9zGwMBVmlHTZ5NOfqLom3x7W7+f4b+v4fYDlNCA== +api: eJx9U8tu2zAQ/BVjzoTl9qhTfShSI0ATNM3JEAKa2lhMJZIhl05dQf9erOQ30OogCdoZ7s7MqocPFDVb71Y1SmyJX/yHe/FxC4VIKXiXKKHs8XmxkEdNyUQbhIEST9kYSuk1t7MfBzAUjHdMjgWuQ2itGRsUb0k4PZJpqNPyFqK0Zzt1sLXceR8IJRJH62QIttzKh1WNQcHpjv6H+i71YVBHgN+8keFRy3u2kWqUa2l0OKk6Mx/iVjv7Zxz1IXPIjEEudSP5jnj2nCjOLglQ6Igbf/AQCkFzgxKFv0Clwn8INFHcUUwo1z1ybFGiYQ6pLArT+lzP9ZYc67m2hQ4WQyUMk6Pl/UhZPq7uaf+NdE0R5bq6BDyJt5Od17CTZTrYe9ofDSixzNz4eNZhRWQzsUS9da9+pB98Wo7DzZaPKyiIjMmWxfzTfIFbs67AshbajGtx7D2WoW5cOOmHAnXaSo1Jd1/OBZks+MSddhfn/Subq6FOTjD95iK02jrZrHGE/pDbGle5QUGSqxQan1jKfb/RiZ5jOwzy+T1TlHAqhZ2OVm/EqnU1qKOTktsv2otmYyjIhux0m6dAbn4RyfO0TXdff2IY/gLwUT55 sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Get User Organization -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-projects.api.mdx b/docs/docs/reference/api/get-projects.api.mdx index aaf6ac0850..65bc6d3b68 100644 --- a/docs/docs/reference/api/get-projects.api.mdx +++ b/docs/docs/reference/api/get-projects.api.mdx @@ -5,304 +5,59 @@ description: "Get Projects" sidebar_label: "Get Projects" hide_title: true hide_table_of_contents: true -api: eJytVE2P2jAQ/SvRnC2gPeZU+qEtWqmLlq56QAgNzkC8JLbXdralUf57Nc4HkLarqi2XIPvNmzdvZlxDwIOHdA0raSx52AgwlhwGZfQigxQOFLbWmUeSwYMAR94a7clDWsPr2Yw/GXnplOUQSGFVSUne76siue/AIEAaHUgHhqO1hZIxw/TRc0wNXuZUIv9TgcpIbh0LCapNZdwBtfoeo7Yqizz6dLeHdF1DOFmCFHxwSh9AwN64EgOkUFUqg0YMCF0VBTQbAUGFgg/uLmiTBWOvM2ks6aVcf8z9iYkaAV+NO3qLkv5jEV96zq6Cc45/kX9m7bV3Y9Apf1nvmWfZRnXaeo5e2ZhlHNXnrjy5rTPFX5fz4Mkl90zQCFB+m1Fpfsm1M6Yg1C+SLXzynuObRvQYs2O9cUOeKuUo46W6cGxU+uanUv2wLWdSdA5PF670kOSGQtLHQcM/MVrDK4SAkkJuun1mLRhySGF6sdme3DM5H62oXAEp5CFYn06nsjBVNsED6YATVFO0Csbp5vE2ecfQaJUnWTkVTpFvvlzc0ukjYUYO0vXmErDi1W+X/Bo22I9W3RLb0A4NzKuQG9dtFghQLCBvo9gIpfextb1rnba3KI+kuRNcZyt7Nnk1mf2umC4gmS8X3QuGMr5gvY4IAzGyazAKBFCJiu8CYfnmfMEqrfGhRH3BN2rZlabBjEDfwtQWqHRcC85cd+0c5i0+47nxgc/qeoeeHlzRNHz8VJHjpmwEPKNTuGOL1ptG9A5yv4504vqkJMvT8oxF1TZi9HJzH4fJuvnwGZrmB0NmKVU= +api: eJytVE1v2zAM/SsGz0KS7ejTAmzoggJr0a7YIQgCRmZitbak6qNbZvi/D5Q/knhFMWzLxYFEPr73SKqBgAcP+RrupbHkYSPAWHIYlNGrAnI4UNhaZx5JBg8CHHlrtCcPeQPvFwv+FOSlU5ZTIIf7KCV5v49VdtcHgwBpdCAdOBytrZRMFeaPnnMa8LKkGvmfClQncOuYSFBdKeMOqNXPlLVVRcLRx5s95OsGwtES5OCDU/oAAvbG1RgghxhVAa0YI3SsKmg3AoIKFR/cnMFmK469rKSxprdq/TH2FwZqBXw37slblPQfRXwbMHsFpxr/Qv+EOnDvx6Bn/jbfE85tl9VzGzAGZlOUadZQO3pyW2eqv5bz4MlldwzQClB+W1BtXsXaGVMR6jfBVj77yPltK4YYs2O+aUOeo3JU8FKdOTaRvvlNqh+35QSKzuHxzJUhJLuikA150PJPTNbwIkJATaE0/T4zFwwl5DA/22xP7oWcT1ZEV0EOZQjW5/O5rEwsZnggHXCGao5WJTc8yehUOKaU5e3qmo6fCQtykK835wH3vN3dHl+GjQ6jVdfESru5gGUMpXH98oAAxZLKLou1Kr1P3RuMWSZy2fJ2BQJYRmfCYvZutoCpNRfB/DChTA/TUDtdg5i4MOoHAVSj4rtAWH84XTAza3yoUZ/hTTpxwWU0INCPMLcVKp2mnSs3fZfGMUqvc2l84LOm2aGnB1e1LR8/R3LciI2AF3QKd2zLetOKwTXu0RMdWZ+UZHkIXrCKnfmTB5l7Nw7M1aev0La/AIODGsY= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Get Projects -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - -
    - - organization_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - organization_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - user_role - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - is_demo - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-single-testset.api.mdx b/docs/docs/reference/api/get-single-testset.api.mdx index f4f7ac966b..0f30ce6838 100644 --- a/docs/docs/reference/api/get-single-testset.api.mdx +++ b/docs/docs/reference/api/get-single-testset.api.mdx @@ -5,295 +5,73 @@ description: "Fetch a specific testset in Postgres." sidebar_label: "Get Single Testset" hide_title: true hide_table_of_contents: true -api: eJzVVcFu3DYQ/RViTglA7LpGTzplm7qJkRY17G0u64VBUyOJiUQqnJGRjaB/D4aSVrtxHaDHniSRbx5nHt+MemBTEmQ72CIxIRPsNeRINrqWXfCQwR/ItlJGUYvWFc4qHqHKeXUTiMuItLr3934TS8ruvVJqhjy4XL0ijq8zta1QuVyFQnGFRwoOqhD6FH+L3EU/U0hAxC8dEmO+nFmoInQ+1wprQmW8er/d3lx9tZjSXYGG0GI08nGdQwYl8gM5X9b4MHGAhtZE0yBjlNJ78KZByGBJGjQ4Kb01XIEGScNFzCHj2KEGshU2BrIe+NBKJHF0vgQN7LiWhUlNdZ3DMOyFgdrgCUmCLi8u5HGu8l1nLRIVXa1uJzBosMEzeha4adva2VTY+hNJTL8kMgzDoOHXy8vnxB9N7fIUpq5iDPE/sEIbRUx2Y945snG1vDnGhp4D6mDPdo0//F0khc91GvRxxXnGEiMM+0HPayZGczgR888wJgiDhobKn+n+FxKZEuFI9jI0iaG2sjssZ4fHT2j57M53qa7x6Am3X2gWeUd1Xy7j91G+fztshoiXnxGOd9sgV2EydHIwV5DBevIsrfvFvQNoIIxPs727WEMGFXNL2Xpt69DlK1OiZ7Mybm1aBz+2/CbtqrcCBfEvoe2i40Pi29xcf8DDezQ5Rsh2+1PAnXhndMM57HgRpnUfUHSZum7TcRWi+zZe8dR41RglhTtfhBQ+aTTl9puxn9FLp0qdY9oXq19WFy8VMwWozc311ALGphaY80gw0D/IdRQKNGCT/A+MpnmzbEiWbSBujD/he4es7tLgUdvj4DnLrF8a8X83ZKfLZPzK67Y2LjVnUq6fvLmb5ymBhuxktu41VIFYEH3/aAj/ifUwyPKXDqNYbK/hyURnHuXCdz3kjuQ9h6wwNeFPZHx1O7Xta/VSkrMNvXjwydSdfIGGz3g4/wekkVTNLu8nwMaKCiehzyaotMOxW99dbWEYvgMSJooP +api: eJzVVMFu2zAM/RWBpw4Qkq7YyacFWLcV27CizXZJg0K1aVubLbkiXTQz/O8DZTtO1rXAjjvFkR6fyMdHdsCmIEg2sEZiQibYasiQ0mAbtt5BAu+R01IZRQ2mNrep4gGqrFOXnrgISIsbd+NWoaDkximlJsitzdQJcXiVqHWJymbK54pL3FOwV7nQx/gr5Da4iUICAt63SIzZ/Gauct+6TCusCJVx6uN6fXn+mGJMdwEafIPByJ+LDBIokG/JuqLC25EDNDQmmBoZg5TegTM1QgJz0qDBSumN4RI0SBo2YAYJhxY1UFpibSDpgHeNRBIH6wrQwJYrORjVVBcZ9P1WGKjxjpAk6Oz0VH6OVb5u0xSJ8rZSVyMYNKTeMToWuGmayqaxsOUPkphuTqTv+17Dm7Ozp8TfTWWzGKbOQ/DhH1ihCSIm2yHvDNnYSr4sY01PAZVPj26N233No8LHOvV6f2IdY4EB+m2vpzMTgtkdiPnZDwlCr6Gm4iXdvyCRKRD2ZM9DoxhqLbf9/La/+4EpH/V8E+sanh5x25lmlndQ9/ky3g3y/e2xCSJefkI49LZGLv1o6OhgLiGB5ehZWnaze3vQQBgeJnu3oYIESuaGkuUyrXybLUyBjs3C2KVpLIhFCdM2WN7FkNXlxSfcfUSTYYBksz0EXIs9hoYfw/Zam8Z+Qil9HKxVy6UP9tfQxXG2yiFKarMu9zF8lGEVk1OrywvQIGUMTj5dvF6cwp/r6QgszjZpdPb0drwG/YcK+/pBA9bR1sBo6rfzhWTWeOLauAO+D8jqOu4Ttd7vk6OMunm+/rvdOTaQ8ZGXTWVsnLmoXDdabjOtSQINycHK3GooPbEguu7OEH4LVd/L8X2LQWy11fBggjV30uRNB5kl+c4gyU1F+IKMJ1fjNL5SzyU5Wc+J7x5M1co/0PATd8erPW6acnJ2NwJWqahwEPpkMcoI7Ifww/ka+v43SC97gA== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Fetch a specific testset in Postgres. Args: -testset_id (str): The id of the testset to fetch. + testset_id (str): The id of the testset to fetch. Returns: -The requested testset if found, else an HTTPException. + The requested testset if found, else an HTTPException. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-testsets.api.mdx b/docs/docs/reference/api/get-testsets.api.mdx index 9121891458..6790f5ef5a 100644 --- a/docs/docs/reference/api/get-testsets.api.mdx +++ b/docs/docs/reference/api/get-testsets.api.mdx @@ -5,144 +5,65 @@ description: "Get all testsets." sidebar_label: "Get Testsets" hide_title: true hide_table_of_contents: true -api: eJzNVE1PGzEQ/SvWnLdJqDjtqSlCECG1CMIpRDB4J1nDxjb2mJKu9r9Xsx/5QCrqsXvxyn4z82bes2tgXEfIFzCnyJE4wjKDgqIOxrNxFnK4IFZYVYp7xOje3tsb4hRszO/tFzVVlYms3GqAKPf0THpAoonUAR8v5/Pr83dNbepH9ctwqSIjp6i0K0idTk6VWSnrdsUUBlIrl2wxggycp4ASOysghzXxw4CDDAJF72ykCHkNXycTWY47uU1aU4yrVKmbHgwZaGeZLAscva+MbiuMn6PE1BB1SRuUP8O0aZP7IETYdKUeTCELbz1BDpGDsWvIgA1XsjEroMnA4oY+Q/2Q8yYDHQiZigfkz9BnHUpNWWKSL/4h5q5DtTFNNsA6pdrpvSYTqBAvSEc95SNGR6WW+9TinVvin4l94t1k90UwBNweUBkgSqy1M14jXwYb4tL18kIGHrmEHMYHQkcKbxTEtTWkUEEOJbOP+XisK5eKEa7JMo7QjNEb+GjnaXuqzgQKzVLS6RQMb9t80+vZFW0vCQsKkC+Wh4BbcUKn+TFsN3T05oq2w+xymCYuXTC/W0dBBkYIlF2U9GrsyrXh/WB6bt9Rv5AVDaTPjvZkdDKa/K2ZPkBNr2e9oVG3Zhh4tDDR72hcu0FBBrRBI2dMuPm2PxCW3kXeoD3Id6TbB071/kL9T09HrxDTO499hca2N0fGUfceWwAfvIGliyx7df2Eke5C1TSy/ZooiFOWGbxhMPgkui2WTTbIKiZ6oa0MXQtbERGr1Lnjw+si5trZ/eJ8Dk3zB3r16L8= +api: eJzNVE1PGzEQ/SvWnN0kVJz21KhCECG1CMIpRDDsTrKmG9vYY0q62v9ezX4kWQ6ox+7FK897no/37BoYtxGyFSwpciSOsNZQUMyD8WychQwuiRVWleIeMXmwD/aWOAUbswf7Rc1VZSIrtxkgyj2/UD4g0UTqgE9Xy+XNxXtO7dFP6rfhUkVGTlHlriB1PjtXZqOsOyRTGEhtXLLFBDQ4TwGFuygggy3x44ADDYGidzZShKyGr7OZLONO7lKeU4ybVKnbHgwacmeZLAscva9M3maYvkTh1BDzknYof4Zp1x7ugxTCpkv1aApZeO8JMogcjN2CBjZcycaigEaDxR19hvoh8UZDHgiZikfkz9DfO5Sas3CSL/6Bc9+hWk6jB1inVDu912QCFeIF6agveVTRKNX6eLR45474Z2Kf+DDZYxIMAfcnpQwQJdY6GK+RT8OOuHS9vKDBI5eQwfRE6EjhjYK4toYUKsigZPYxm07zyqVigluyjBM0U/QGmrUw8hQM71vK/GZxTfsrwoICZKv1KeBOxO5kHcMOc0Vvrmk/jCeDeeLSBfOnNQ1oMGK0smNJO8ZuXEvve5+3xan5zQI0SBudNWeTs8kMPl69EVh8inmr8ZC7DYssoykc+gcNtEMjMSbcfTsGpDLvIu/Qnpw3kuNDLfXxnvxPL0KvCtM7T32FxrYXQsZR99ZZAZ88baWLLHt1/YyR7kPVNLL9miiIO9Ya3jAYfBatVutGD1KKcX7RXoaeS7UiHlapc8SHR0MMdXDx5cUSmuYvFW3aMA== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Get all testsets. Returns: - - A list of testset objects. Raises: - - `HTTPException` with status code 404 if no testsets are found. -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-variant-by-env.api.mdx b/docs/docs/reference/api/get-variant-by-env.api.mdx index 54ba4f898b..9ff0b6e622 100644 --- a/docs/docs/reference/api/get-variant-by-env.api.mdx +++ b/docs/docs/reference/api/get-variant-by-env.api.mdx @@ -5,575 +5,77 @@ description: "Retrieve the app variant based on the provided app_id and environm sidebar_label: "Get Variant By Env" hide_title: true hide_table_of_contents: true -api: eJztVk1vGzcQ/SvEnGJgIalGelmgQGXHSIQ0jeHI7sEWBHp3JDFekQzJVbMR9r8Xww9p1x9yYKOXoifLy5n3hjPzZrgFx5cW8msYa21hlkGJtjBCO6Ek5HCBzgjcIHMrZFxrtuFGcOnYLbdYMiX9gTZqI0osyWIuSsZlyVBuhFFyjdINbuSNHJulzW8kYyxZvbHOHOVsukI2ecfUYsfhFDNd3sS5UGYQEDrgXZju5w5e8u/g+pAuuLCYgvownZ6ffS/Q3zxnk4fuwjKpKIpa+uC5q+28UCX+9utodJQxZZhYMM6ueFXjmTH0v2WGSO7Zv+3ay4Ypt0LDMLE/5UY0IXB0tZEp8rHWVyHEC7RaSYshG+muZfcWA8hAaTSciCYl5LBEN4+H89tmjnIDGWhu+BodGuqNLUi+RsghFA4yENQb32o0DWRg8FstDJaQO1NjBrZY4ZpDvgXXaHKzzgi5hAyccBV9GGvNJiW0bbaD7pTu9fhnHbC2nRFESIwlr+PRiP70G/1LXRRo7aKuWMoiZFAo6Qgk39LdK1H4tA2/WvLZdiLRhpLqRGCIefqJDGTeNuTgsPWfZNNmkEp1GD82RORIPs/xJK/EpY36isVzXOfBKnLRYHiW6IRb3LF4j8MU3j7gF0ouxPJZhlNvtuOojfCFkc3nhe/ovh81Yvwi66oC6pmEdGkEIRjcCCtC3aOpkA6XaDqsF8mIAjXIHZZz7l7KfBoQ2Nj5K+jylXiXASHirVUpFgJLEn3I/kswP0UUdtLEAimz5FL88Ep5BfDnDkxE/luZO6t5ga+A/SthxAGUDNUt9XBv2lzv591OpD393RNWTy9dIexbvN++naaa9cR+b5zPoW0p1LfHxw8H1xWvRBmy5HfOy6dWiY6Lin4Jh2v70KBSRe/0J/KfJNLO9qnmxvCmI5o/VAjQN6VdHlL1J7SWL72ig8mBHeAX8JROnysz3StQR7tZdySm9IbsPn2NdyF9j5ElE3pjPAAMtV2jW6m4jv3+dSvIYci1tsNHN7RFs0nruTYV5LByTtt8OCwqVZcDvkTp+ICLIdcC7r/rxv6UnZKp14fFojbCNR5vfD75iM0H5CUayK9nXYMv1D2hH/pmu1JwLT4iZSau9nHtVspEKaflvgpedHUhF8q7JwGE2E54cYfSqwxNmLwwGvwyGD11mejAxueTKAJeeBGkOLwZZPfStUsUZIBrrwBwyNe/7w8oSq2sW3PZwXuPjqWNedKwM1+WXmTbvRT/f0n/F1/SseMdfndDXXEhw1vDD9EgYb9ELGSPPbNnGayUdWS03VIbXJqqbelzePqSFEth+W1Fc2rBK4sHGuzNRRxpR+ypyO6w6b7iN5ReyMEP7H+BqP+m37PN4uK8Jblf02ZYpVGzja7jgirY8XqwyAhlNzTfn02hbf8BFTwR0Q== +api: eJztVk1vGzcQ/SvEnGJgIalGelmgQOXESIQ0jeHY7sEWBHp3pGWyIhmSq2Yj7H8vhlxKXH/IgY1eip4sL9+8NzOcD27B8ZWF/BqmWluYZ1CiLYzQTigJOZyjMwI3yFyFjGvNNtwILh275RZLpqQ/0EZtRIklIRaiZFyWDOVGGCXXKN3oRt7IqVnZ/EYyxiLqlXXmKGcXFbLZW6aWOw2nmEl1o+ZSmVFgSMhTmvRzwhftE17v0jkXFqNT7y8uzk6/F+gjz9nsvrmwTCryopHeee4auyhUib/9OpkcZUwZJpaMsyteN3hqDP1vmSGRO/jXKV62TLkKDcOo/pgZyQTH0TVGRs+nWl8FF8/RaiUthmzEWMs0ihFkoDQaTkKzEnJYoVv0h4vbdoFyAxlobvgaHRqqjS1IvkbIIVwcZCCoNr41aFrIwOC3RhgsIXemwQxsUeGaQ74F12oys84IuYIMnHA1fZhqzWYldF22o06u7uX8pwlZ182JIiTGktXxZEJ/hoX+uSkKtHbZ1CxmETIolHREkm8p9loUPm3jL5Zstokn2lBSnQgKfZ5+IgOZx4YcHEb/SZgug3hVh/n7gug1os1TOtEqammjvmDxlNZZQPVaNBieFDrhFncq3uKwhMcH/kLJpVg9qfDGw3YajRH+YmT7aekremhHhdh/kU1dA9VMZLo0ghgMboQV4d57qJAOV2gS1fMIIkcNcoflgrvnKr8JDGzqfAi6fCHfZWDo+daqFEuBJTV9yP5zOD/2LOyk7S9ImRWX4ofvlBcQf0poeua/lflqNS/wBbR/RY5+AEWguqUaHkyb6/282zXpoP/uNNagX9JG2Jf4sHyTopoPmv3OOF9A15Grr4+P7w+uK16LMmTJ75znT60SHRc1/RIO1/Y+oFbF4PQn8h9bpJvvU82N4W3SNH+o4KAvSrs61NUf0Vq+8h0dIAd2gF/AF3T61DVTXEG6x83TkRjTG7L7eBhvQ/oeEosQemPcIwx3u0ZXqX4d+/3rKshhzLW24wc3tEWzieu5MTXkUDmnbT4eF7VqyhFfoXR8xMWYa+FbwGLRGOFabzI9m33A9j3yEg3k1/MU8JkKJFz5ELbLNtfiA1Lw/faeNq5Spu/WuL+rYEXRCblU3jzWuHeOTc9m1ERowmCFyeiX0QTuvkEHYKptXvjajtr+GLI7WdjFDxng2hc2OOTr3/cH5JlW1q25TPjeoWNxEZ607NRne+DRdt9h/z+Q/4sP5L7KHX53Y11zIcMTws/G0Jl+N1jIHno9zzOolHUE2m6pDC5N3XX0Obxoqf1KYfltTeNnyWuLBwrs1Xk/qY7YY559xTZ9nG8ovZCDn8P/gtDwqb5Xm/f78JZa/JoGfhXHy7Y3nRZ0g4nVvf1ELLtZ+O70ArruHwciA0I= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Retrieve the app variant based on the provided app_id and environment. Args: -app_id (str): The ID of the app to retrieve the variant for. -environment (str): The environment of the app variant to retrieve. + app_id (str): The ID of the app to retrieve the variant for. + environment (str): The environment of the app variant to retrieve. Raises: -HTTPException: If the app variant is not found (status_code=500), or if a ValueError is raised (status_code=400), or if any other exception is raised (status_code=500). + HTTPException: If the app variant is not found (status_code=500), or if a ValueError is raised (status_code=400), or if any other exception is raised (status_code=500). Returns: -AppVariantResponse: The retrieved app variant. + AppVariantResponse: The retrieved app variant. +> + -
- -

- Query Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - - - - - -
    - - uri - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - modified_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - organization_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-variant-revision.api.mdx b/docs/docs/reference/api/get-variant-revision.api.mdx index 301e32f1de..925a1951ac 100644 --- a/docs/docs/reference/api/get-variant-revision.api.mdx +++ b/docs/docs/reference/api/get-variant-revision.api.mdx @@ -5,36 +5,36 @@ description: "Get Variant Revision" sidebar_label: "Get Variant Revision" hide_title: true hide_table_of_contents: true -api: eJy9Vk2P2zYQ/SvCnFpAWG0WPelU7yZIFvmosdnmYhgGLY4tJhLFkKNFXUH/vRiSkiU73qQ55GSbnI83b94M3QGJvYN8BZ+EVUKTg3UKjUErSDX6XkIOe6TNU7jdWHxSTjUaUjDCihoJLbt3oEWNkMNgqCSkoDTkYASVkILFr62yKCEn22IKriixFpB3QAfDno6s0ntIgRRVfBARJfcS+j4dMwwQNrqtt2j/bxqlCffebcjzEAMmH0LAvl9zHGca7dCx6831NX9IdIVVhomBHD62RYHO7doqeYjGkELRaEJNbC6MqVThecw+O/bpJnCMZZZJhQxKeg99+Gvn2ZxzwtXHE91WFTDAAT2zk46k/FCh7FA3Uu0Uys328FwP3kez5PbAXkWjd2p/Dj+cb0KHLke782bJBzbr5wrqQEipmCtRLSexQxdjwGb7GQuaBFweI/T9udlRDKsZxPUppJe3vjqLglBuBD1bRLBKFhQYqWtFmxqdE3v82Sbe+SjJ+xjle7VMpnDax7E/s1ImaRbGxKE6SqHnZH/c3JwL/JOolPTyTV5Z29ifV7dEEqryOies3blB1RSz2x/gcJB3vz6SJawVh0mr3jUBoBe82z8r9IH6IdhlU09G8si332sU1xVSR7v1dL0N9AZ2L5fxMtD3rWSDyZvHx+VZwNDbeVNfIyXDYn2YyAipbOKy97udSsghi9vcZd1xr/fZID+XdSfLuIcUHNqn4VFobQU5lETG5VlWVE0rr8QeNYkroTJhFJziW/jb5I5N/Yg4LFqr6ODjLZb3b/HwBoVEC/lqPTX4yOILcpqbjZ0URr1FJja+JIuWysaqf4NG4jtSBi9mTuld492H8QnYbkXxBTW/b1xngH199eLq+lIx0SFZLO/jDInCz9CAw5tBekLXSBSkgLUfICAU9Z/HC0ZpGke10JN4F3o8wzaSQvgPZaYSyk+JR9DF/q+G19xBCvnsZR8lwDenL/I6hbJxxAG6bisc/m2rvufjry1a7uQ6DaG3zOuqA6kcf5eQ70Tl8AzruHfgt4c4Xr8nkH67hqHbmlv9JKqWf0EKX/Aw/4PC2+QXZj6lyW+uctByF60WRYGGJv5ni5ZFP87r61eP0Pf/Aa5LWo8= +api: eJy9Vstu2zoQ/RVhVrcAEaVBV1pd94E26MtIc7MxDIMWxxZbiVTJUXBdQf9eDCnJkt2kj0VXtsl5nnNm6BZI7j1kK7iTTktDHtYCbI1OkrbmWkEGe6TNfbzdOLzXXlsDAmrpZIWEjt1bMLJCyGAw1AoEaAMZ1JIKEODwa6MdKsjINSjA5wVWErIW6FCzpyenzR4EkKaSD/qKkmsFXSfGDEMJG9NUW3S/m0Ybwn1wG/Lc9AGTDzFg1605jq+t8ejZ9erykj8U+tzpmoGBDD41eY7e75oyuemNQUBuDaEhNpd1Xeo84Jh+9uzTTsqpHaNMOmbQKniYw8ddQHOOCXffn5imLIELHKpndMQIyi81yg6VVXqnUW22h8c4eN+bJc8P7JVbs9P78/Lj+SYy9HC0F8Es+cBm3VxBLUilNGMly+UkdmSxD2i3nzGnScDlMULXnZsdxbCalbg+Lenl89CdQ0moNpIebSJaJQuKiFSVpk2F3ss9/imJL0KU5H0f5We9TKZwyuPIz6yVSZpFXfdDdZRCx8meXV2dC/xOlloF+SavnLPuz9WtkKQug84JK39uUNp8dvsLGA7y7tZHsKRz8jCh6p2NBQbB+/2jQh+gH4I9bBrASG759mdEcV8xdW+3nq63Ad6I7sNtvIzw/SjZYPLm9nZ5FjByOyf1NVIyLNabiYyQCtsv+7DbqYAM0n6b+7Q97vUuHeTn0/ZkGXcgwKO7Hx6FxpWQQUFU+yxN89I26kLu0ZC8kDqVtQ5T4DFvnKZDcFksr9/i4Q1KhQ6y1Xpq8In1FRUzNxvJkrV+i4xd/1gsGiqs09+iDPqnooheDI42OxvchwkJxSWL5TUI4DYiapcXTy8u4RTLmTGPhszDaAy5wzWIExTG/kEAVmEugFBW/x4vuLLaeqqkmcR7gLpZTSMQhP9TWpdSB/GHCtqe1tXwSHsQkM0e7JFZvjl9aNcCCuuJA7TtVnr8z5Vdx8dfG3TM3lrE0FvGctWC0p6/K8h2svR4Vuu4TuCfm35qniQgftzDwLBheu9l2fAvEPAFD/P/Hbwk/mLmU5jCQioG/ba91SLPsaaJ/9n+ZKGPY/j61S103XdXDUwA sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Get Variant Revision @@ -43,429 +43,29 @@ Get Variant Revision as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - - - config - - - object - - - - required - - - -
    - - -
    - - - - parameters - - - object - - - -
    - -
    -
    -
    -
    -
    -
    - - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-variant-revisions.api.mdx b/docs/docs/reference/api/get-variant-revisions.api.mdx index f8ca1331c8..7b258aa7d6 100644 --- a/docs/docs/reference/api/get-variant-revisions.api.mdx +++ b/docs/docs/reference/api/get-variant-revisions.api.mdx @@ -5,36 +5,36 @@ description: "Get Variant Revisions" sidebar_label: "Get Variant Revisions" hide_title: true hide_table_of_contents: true -api: eJydVtFu2zoM/RWDTxtgNF2xJz8t7Yat2HZv0HV9CYJAtZhYmy1pEl0sM/zvAyUrsZum271Pba1D6pCHh2oHJLYeiiXcCaeEJg+rHIxFJ0gZfS2hgC3S+iGerh0+KK+M9pCDFU40SOg4vgMtGoQCElJJyEFpKMAKqiAHhz9a5VBCQa7FHHxZYSOg6IB2liM9OaW3kAMpqvnDQCm7ltD3K87grdEePQddnJ/zD4m+dMoyWSjgS1uW6P2mrbObAQw5lEYTamK4sLZWZaht9s1zTHdMRDgndsyesAl3WccdIRVvVjJk0rt/N6HwKf0+33/RbV0DE08FcSFcRuzh6EalCbfoRrXfJFCfQ2Ok2iiU6/vdc+36PMCyyx1HlUZv1PaYfvy+jnKdznYVYNk/DOunYncgpFTcQ1EvRrmjrkNCc/8NSxolXBwy9P0x7DAeywnF1WNKby9DdQ4FoVwLeraIiMrmFDvSNIrWDXovtvh/RbwKWbLPQ5Y/1bJXe6rjXp9JKaNr5tYO8z8ehcN4xOnO3iNlySc3e3P2PdN6fXFxbJE7USsZDJC9c864/+KP6SBJJKHq4IinjVKbcnL6F91ORuhXh7YmO6baP5lIMFjDb5+1RBIpJTsNDc3Ibvn0T5JyXfHqAbca76zU3tjd02W8je176rIE+XB7uzhKGLWdivr0FOTQIFVm2OFhY1MFBcyGHe1n3WFb97PxbvfoHtJib10NBVRE1hezWVmbVp6JLWoSZ0LNhFXwmM48nGZXDA3e8Vi2TtEu5Jsvrj/i7gMKiQ6K5WoM+MKzFqdnCjssZ6s+IvdxeG/mLVXGqV9xJIYnp4pR3CilNyaEJ19Fbpei/I6a3yiuM9I+P3t1dn6qmCEgmy+uB8uIMlgm8QgwyB+1a98oyAGb4BcgFM2bwwGztMZTI/Qo3ylJJ+T2XSH8STNbCxVcESh0g9zL9CRzdDF5ng+Kr3KojCdGd9298PjV1X3Pn3+06Fi3VR7z3HMXlx1I5fl3CcVG1B6PiO2XCry4GbzzMoP8acJJW83CPoi65b8gh++4m/5LEfZClUanGwDzskRLo9CjNcYztjfD+3e30Pe/AQZqE9s= +api: eJydVk1v2zgQ/SvCnLYAEWeDPem07gfaoNvWSLO9GIbBiGOLXYlkyVGwrqD/Xgwp2lKcpNs92RZnhm/emzdyDyT3Aco1fJFeS0MBNgKsQy9JW3OtoIQ90vY+nW493uugrQkgwEkvWyT0nN+DkS1CCTlSKxCgDZTgJNUgwOO3TntUUJLvUECoamwllD3QwXFmIK/NHgSQpoYfjJCKawXDsOEKwVkTMHDS1eUlfygMldeOwUIJn7uqwhB2XVPcjMEgoLKG0BCHS+caXcXeFl8D5/TnQKT38sDoCdt4l/PMCOl0s1axkjl82sXG5/AHcXxiuqYBBp4b4ka4jcTh5EZtCPfoJ73f5KBBQGuV3mlU27vDc3R9GMOKlwfOqqzZ6f05/PR8m+R6utqrGFZ85LBhLnYPUinNHMpmNamddB0L2ruvWNGk4OpUYRjOw07jsZ5B3DyE9Ppl7M6jJFRbSc82kaKKJSVG2lbTtsUQ5B7/r4ivYpXiw1jlZ70c1Z7reNRn1srkmqVz4/xPR+E0Hmm6i7dIRfbJzdGcw8Cw/ri6OrfIF9loFQ1QvPHe+l/xx3yQFJLUTXTE40ZpbDU7/Q9sZyMMmxOt2Y65979sAhitEfbPWiKLlIs9HRrJKG759GeScl/p6jFuM91Zmd7E7tNtvE70PXZZDnl3e7s6K5i0nYv6+BQIaJFqO+7wuLGphhIW444Oi/60rYfFdLcH9Pd5sXe+gRJqIhfKxaJqbKcu5B4NyQupF9LpaI+AVec1HWLKcnX9Hg/vUCr0UK4304DPPE5pQOZhp/3r9HtkqsZXyrKj2nr9Pak+vlXqlMVcaLOzMT1bJ4IrlqtrEMBtJJIuL36/uISH1M2C2Qmyik7Id8djEA9YOPYPArCNNgBC2f55OmBkzgZqpZnUe0qpGagjE4T/0sI1UsdhjxD6UcV1ftNydjl7656E3AiobSCO7vs7GfBv3wwDP/7WoWetNiLVuWPm1j0oHfi7gnInm4BnwI67An67GS3xogDxOOCsp2Ex72XT8S8Q8A8e5v8Uot3rPC79GLCsKnQ0ST3bTjxXxxl/++YWhuEHVosFTA== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Get Variant Revisions @@ -43,443 +43,29 @@ Get Variant Revisions as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - - - config - - - object - - - - required - - - -
    - - -
    - - - - parameters - - - object - - - -
    - -
    -
    -
    -
    -
    -
    - - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-variant.api.mdx b/docs/docs/reference/api/get-variant.api.mdx index a82b12bcbf..9e72dd044c 100644 --- a/docs/docs/reference/api/get-variant.api.mdx +++ b/docs/docs/reference/api/get-variant.api.mdx @@ -5,33 +5,36 @@ description: "Get Variant" sidebar_label: "Get Variant" hide_title: true hide_table_of_contents: true -api: eJylVk1v2zgQ/SvCnHYBIs4GPem0TrZog7bbIE2yB8MwJtJYYiORLEllV2vovxf8kqW6iYvkFMd882b4Zt7QO7BYGchXcIeao7AG1gykIo2WS3FZQg4V2c1jOAUGCjW2ZEm7qB0IbAlyiOcbXgIDLiAHhbYGBpq+dVxTCbnVHTEwRU0tQr4D2ysXaazmogIGltvGfRELyS5LGIa1YzBKCkPGBZ2dnro/JZlCc+VKhBy+dEVBxmy7JruOYGBQSGFJWAdHpRpe+BstvhoXs5sUorS7r+UhAyrlbvFMgUulfHHMY4MAz6P/dpiBTVX6RQH2McfypKiUS2n5lYpjua4CKua6R0NHE52joTGLj3g+hccH/kKKLa+OZrjwsDFHp7lvjOg/b/3MzeMGNn4juqYBNzOJ6VZzx6DpkRse+h6hXFiqSE+yXieQK1QTWio3aF+a+SIwZEvrr6DKV/LdBobI18qSbzmVm/s+qv8Szk+RJTvvY4OkrlDw/71TXkH8eUITmf+V+sEoLOgVtP8kjrAbWALKezfDs2WzSj6emJTNt9TMWDO/TI2wH/H5+E6Gaj0ze/RhWkQbGAZX6puzs8PFdYcNL4NKb7WW+uVbqySLvHGfuKXWHAIaWcxOf0H/ZJFhvZcatcZ+YpqPMhToh9JUz7n6ExmDlXd0gDwN9WJkN+70WJvdvULqiFtPV2KSN6j79DX+CvL9LFmCvL+5uTogDL2dN/Ud2exufC5bsrWMr6h/PW0NOSzi8JnFbj+TAzAwpB/T09rpBnKorVUmXyyKRnblCVYkLJ4gX6Di8GPqpT/NLhzUO8dQ0Wlue8+3vLr8QP17wpI05Kv1FPDFzVWYlDlsbBIq/oGcZvHFX3a2ljqaPD36dYhyonCxlT48WSPUdo7FAwnvP9JhJ8PpyR8np09dJgZky6vLaA8svD1SHR4G7Ae5RqGAAbXeG2AJ2z/3B65KJY1tUUz45u2blTRqYek/u1ANchHeJ2+80NpV2isGGOSThbNmUEtjHWK3czvlVjfD4L7+1pF2HVrHnXTv9FrtoOTGfS4h32Jj6KCYcVXAb9fREb9nwH5eZOqi6P3qazr3HzB4oH7+8827vU5DsouAZVGQspPQg+Xkpmkc9ndvb2AYvgN0xIWe +api: eJylVk1v2zgQ/SvGnLoAEWeDnnRaN1u0QdttkCbZg2EYjDSW2EokS1LZVQX992L4IUt1EhfJybL45s3Xm6F6cLy0kK3hlhvBpbOwYaA0Gu6EkhcFZFCi296HU2CgueENOjRk1YPkDUIG8XwrCmAgJGSguauAgcHvrTBYQOZMiwxsXmHDIevBdZosrTNClsDACVfTixjI4qKAYdgQg9VKWrRkdHZ6Sj8F2twITSFCBl/aPEdrd229uIpgYJAr6VA6gnOta5H7jJZfLdn0k0C0oXydCB641pTFEwGutPbBMY8NBXga/Q9hBjat0m8WYG9zzE+ySr60UV8xP+brMqCirztu8aijN9zi6MVbPO3C4wN/ruROlEc9nHvY6KM1wjdGdp93XnNzu4GNb2Rb10CaSUw3RhCDwXthReh7hArpsEQz8XqVQBSoQe6w2HL3XM/ngWGxcj4FXbyQ7yYwRL5GFWInsNjedbH6z+H8FFkWb7rYIGVKLsUPPykvIP48oYnM/ynzzWqe4wto/00cYTewBFR3pOHZslmnOZ4MKZtvqdlgzeZlOgh7ic/lOxHVZjbscQ7TItrCMFCor8/ODhfXLa9FEar01hhlnr+1CnRc1PQkHDb2EFCrfHb6G/VPIzJs9qXmxvBuMjQfVQjQi9KWT031J7SWl36iA+RxqC/G4ppOj7WZ8gquI24zXYmpvKG6j6fxdyjfQ84S5P319eUBYejtvKnv0C1ux+uyQVepeIv629NVkMEyis8u+70mB2Bg0dynq7U1NWRQOadttlzmtWqLE16idPyEiyXXwg+Hxbw1wnXeZHV58QG798gLNJCtN1PAF5JOEMMcNvaBa/EBqSzxUl+1rlImznG616tgRXkLuVPePKnfB7dYXV7QeKEJKxdOT/48OYVfyzQDk+p57lWffPtjYL9UYcwfGGDjJQ8OefPX/oAi08q6hssJ37wrs1DG/B3+75a65kKGa8fPU+jYOq0LCwyyyR7ZMKiUdYToe1oVN6YeBnr9vUVDXdnEVXNHNVr3UAhLzwVkO15bPAhm3ADw6ioK/Y8FsIeDTJ2Tnd9odUv/gME37OZfZX6IqySMPgJWeY7aTUwPdg4paNTwu7fXMAw/AXuSdw8= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Get Variant @@ -40,518 +43,29 @@ Get Variant as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - - - - - -
    - - uri - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - modified_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - organization_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/get-workspace.api.mdx b/docs/docs/reference/api/get-workspace.api.mdx index 7fb010eb1c..5a9852e900 100644 --- a/docs/docs/reference/api/get-workspace.api.mdx +++ b/docs/docs/reference/api/get-workspace.api.mdx @@ -5,218 +5,67 @@ description: "Get workspace details." sidebar_label: "Get Workspace" hide_title: true hide_table_of_contents: true -api: eJzllE1v2zAMhv+KwMsuQpLt6NOyrWiDAlvRZtghDQpGZmK1tuRKdNss8H8fqDiOk2GXXpeLY5Ivv/TIO2DcRMgW8MuHp1ijIVhqyCmaYGu23kEGl8Tq9eBWOTHaMo7u3b27JW6CiwebwpVvWHFBg3iM0RuLTLl6tVwkbxMpfIgqUozWu2Gq7N4ppVTfTabmRV9T+fVp8r0SbaSD8Go+v7l4M5R6z9Rs3ddTuaeonGdV4AupmkJlU3nFXt7WPlSKCxsVGhGPQIOvKaC8zHLIYEP80JcGDYFi7V2kCNkOPk0m8jjd3F1jDMW4bkp12wWDBuMdk2MJx7ourUklxo9RNDuIpqAK5Z9lqlLyOkgnbPelbJ6kbvtjDdliB7ytCTKIHKzbQKt7i2vKEtqlBrZcimGWQ6vBYUWS4VR3jPou/vaMgvcV/DZI0eou7H2p5mJv+yTgV49kOB3Dc2MD5UJxGq0LGWiPcB/1GAJuB1MfDkgJ7gOB/DRUxIXvIAANNXIBGYx7HCJoiBReKMQ0VxNKyKBgrmM2HpvSN/kIN+QYR2jHWFs4v2XT5FVfJTQNHsk0wfI25ZvezK5pe0WYU4BssRwG3AkwezROw/plYm2vSYbdHz1MGy58sL8TeKDBSgPFXiXTWrf2Sd7tpuvtC5oncjlokDn3bU9GH0eTfw3TCdT0ZtZxjyZxf+gjhYE+W1e/KNBAFVrxMWH1+eiQLmsfuUI3yHd6dH8R3F+8//iT1hHB9MbjukSb7mVa/66jegEDqpcaCh9ZrLvdCiP9DGXbivm5oSBsLjW8YLC4ElIWy1YfQBJsn2grx2yke8EGy2bP49lnT3Dur9jlxRza9g/UIEo1 +api: eJzllE1v2kAQhv/Kai69rID26FORGiUoUhslVD0QVA32gDexd52dcRKK/N+rWcAYesu1XIxn5p2Pnce7A8ENQ7aAXyE+c4M5wdJCQZxH14gLHjK4JjFvR7cpSNBVPHr0j/6epI2ejzaDq9CKkZIG8cgccodChXlzUiZvyxQ/sWFidsEPU2WP3hhj+m4yMy/7miasz5PvleiYjsKb+fzu6j2n1HtmZuu+nikCsfFBTImvZBqKtUvljQR9W4dYGykdG8xVPAILoaGI+jIrIIMNye++NFiIxE3wTAzZDr5MJvo4P7mHNs+Jed1W5v4QDBby4IW8aDg2TeXyVGL8xKrZAecl1aj/nFCdkjdROxG3L+WKJPXbH2vIFjuQbUOQAUt0fgOd7S2+rSrolhbESaWGWQGdBY81aYZz3Snqu/q7Cwo+VvDbIEVnD2EfSzVXe9cngbB6olzSGl5aF6lQitNoh5CB9gT3SY8x4nYw9XFBRnEfCPRnoSYpwwECsNCglJDBuMeBwQJTfKXIaa42VpBBKdJwNh7nVWiLEW7IC47QjbFxaTamvI1OtkkyvZvd0vaGsKAI2WI5DHhQJvbbPw/rzwsbd0s6z367MG2lDNH9SWyBBac8lnuVDuT8OiT5Yfxpas5M72ZgQcfYEzwZfR5N4PJGOAtWnDFPOB9rJzfYi1Po5wcLVKNTnxDWX08O7awJLDX6Qb7zjfwDZv89/cc31YECoXcZNxW69Lml498dYF3AANalhTKwqHW3WyHTz1h1nZpfWorK49LCK0aHK6VjsezsER5F9Zm2uuZcu1dcsGr3DF7cZopw/+VcX82h6/4CIHk7pg== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Get workspace details. Returns details about the workspace associated with the user's session. Returns: -Workspace: The details of the workspace. + Workspace: The details of the workspace. Raises: -HTTPException: If the user does not have permission to perform this action. + HTTPException: If the user does not have permission to perform this action. + + + + + + + + + + + + + -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - type - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/handle-events.api.mdx b/docs/docs/reference/api/handle-events.api.mdx index 156ce9c472..7239e1f558 100644 --- a/docs/docs/reference/api/handle-events.api.mdx +++ b/docs/docs/reference/api/handle-events.api.mdx @@ -5,72 +5,59 @@ description: "Handle Events" sidebar_label: "Handle Events" hide_title: true hide_table_of_contents: true -api: eJx1Uk2PmzAQ/SvRO1sh7ZFTs1WljfbQqGlPCFUTMxvcNca1TVSK+O/VAMnuIpULgnkz8z5mQKJLRF7gwVhr3AWlQus5UDKtO1TIUZOrLP/kK7sUoRA4+tZFjsgHfNzt5FVx1MF46UGOU6c1x/jc2c23BQwF3brELgmcvLdGTyuyX1F6BkRdc0PIh1EetRr5OJHYfLmRaDjVrbDzbUxQ8JRq5MjOs4ospmA8ZzPpDAqRw5WDKB3QBSu6UvIxzzJt267a0oVdoi2ZjLzBev1+qm4+CxRjKeN0F0zqp3n74+GJ+0emigPyonwLOIms2av3sAGp94wc5M0T91Bw1Mj3vkt1G8zfyR4oGCFQz11ijHHP7dRukuVXbg+kX9hVUBCdM+3d9sN29z8xS8Nmfzws6ZCe0rnxmGBQK7vuRkGBGzJSS0zNp9eCsJRcGnJv5q0jfEfq7kbiPynzlozDuKwelnQLLOlKnFO+QuE2Tg63lmPICwzDmSL/CHYc5ffvjoMkVSpcKRg6i29FOaqbrRLiC/ciWmv2clBXst2czupUJdz79R2/nr5jHP8BBLsc2w== +api: eJxdUk2PmzAQ/SvRO1sh7dGnplKljfbQaNOeIlRNzGzwrjGubaJSxH+vBpJ0AxcE82bmfcyATOcEfcRX65z1Z5QKbeBI2bZ+V0GjJl85/sUX9jlBIXIKrU+coAd83mzkVXEy0QbpgcahM4ZTeu3c6uUKhoJpfWafBU4hOGumFcVbkp4BydTcEPQwyqMWI58mEqtvNxIN57oVdqFNGQqBcg2N4jSrKFKONnAxky6gkDheOIrSAV10oivnkHRRGNd21ZrO7DOtyRYULMZSOkwXbe6nlu1+98z9E1PFEfpYfgQchPlsxyNsQO4DQ4OCfeYeCp4a+d52uW6j/Ts5AAUrEuu5S7Rb/9pO7Ta7CT+RW233OyiIjNmUzfrTeoOlVQ9gMZ3MZPpt91SGWrhw1w8FbshKLTM1X/4XhJnY3ZD/MG+ZzAOZuwOZ/+QiOLIe43X1cA3tiGtoktIUm1C4jZN7rCVjfcQwnCjxz+jGUX7/7jhKOqXChaKlk3h1LEd1s1KCe+deRBvDQe7kQq6bE1lcoAR6P6r998MPjOM/FmYOTA== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Handle Events -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/health-check.api.mdx b/docs/docs/reference/api/health-check.api.mdx index 239ad076d7..34aa4dc3e8 100644 --- a/docs/docs/reference/api/health-check.api.mdx +++ b/docs/docs/reference/api/health-check.api.mdx @@ -5,69 +5,59 @@ description: "Health Check" sidebar_label: "Health Check" hide_title: true hide_table_of_contents: true -api: eJx1UsFu2zAM/ZXgnYU429GnZcWwBr0U63YKjIGV2VqLLWkSHcwz/O8DHTdtDUwXQeIj+fgeR4TIicQFf6hRomFqpflpG7YnGCTOMfjMGeWIj7udXjVnm1zUFJR46K3lnJ/6dvNtAcPABi/sReEUY+vs3KH4lTVnRLYNd4RynPSYVcnbmcPmZuHQsTRBuT2zwCCSNChRXJjCIHM6c8oojyP61OoQIjGXRWHb0NdbemYvtCVXUHRYN9vP0c2NQjFVWs72yckw19vfH+54uGWqOaE8Vm8BDzrERZn3sBEyREYJiu6OBxh46vS976UJyf2dxYCB8xfFNUtlcP4pzOlOWn7l9pnsiX0NA53zQnu3/bDd/W+YJWGzvz8sXpCdvXjhMcNgVnJdhYIBd+Q0Jkzdp9eAsowhS0f+Tb2VYe84XcUQ/iNFbMl5TEvncTHzuKwdKoMmZNGfcXykzD9SO036/bvnpJZUBmdKjh5VoGM1mRf91K0TDzqdtRx1U87U9hcbVhuoLl636uuX75imf188Byc= +api: eJxdUkFu2zAQ/IoxZ8Jye9SpRhEkRi5B05wModjQm4iNRLLkyogq6O/FSoobSxdC3BnuzOwOCJETiQv+cEKJmqmR+pet2b7BIHGOwWfOKAd83e30OHG2yUWloMRjZy3n/NI1mx8LGAY2eGEvCqcYG2enDsXvrJwB2dbcEsph1M+snrybNGy+LxpaljqotlcWGESSGiWKWSkMMqczp4zyOKBLjZoQibksCtuE7rSlV/ZCW3IFRYexUobtkpN+ouwfDvfc3zGdOKE8Vp8Bj6pzNn8NGyB9ZJSg6O65h4GnVv/3ndQhub+TXxg4P4eqLHXq/EuY6E6aCT+J2+wfDjBQG3MEu+2X7Q7rYK7AGjHZKeKP3lMZZpXCxT8MuCWnNWFqv/0vqLIYsrTkP723msOVlksAwu9SxIacx7h0HpYZHZdtQmVQhyx6MwzPlPkpNeOo1386TjqGyuBMydGzhnKsRvORmU7ojXt1Zy1HXYAzNd0c/WqxdHKXZbm9+Ylx/AcGdfiJ sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Health Check -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/human-evaluations.tag.mdx b/docs/docs/reference/api/human-evaluations.tag.mdx index 592e00ba89..3e4ee7417a 100644 --- a/docs/docs/reference/api/human-evaluations.tag.mdx +++ b/docs/docs/reference/api/human-evaluations.tag.mdx @@ -5,9 +5,16 @@ description: "Human-Evaluations" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/import-testset.api.mdx b/docs/docs/reference/api/import-testset.api.mdx index a2ea57d6aa..c1fb8108bd 100644 --- a/docs/docs/reference/api/import-testset.api.mdx +++ b/docs/docs/reference/api/import-testset.api.mdx @@ -5,373 +5,74 @@ description: "Import JSON testset data from an endpoint and save it to Postgres. sidebar_label: "Import Testset" hide_title: true hide_table_of_contents: true -api: eJzlVlFv2zgM/isCn3aAmnTFPfnpst6A5bZbgya7lzQoVItJtNmSJ9HpssD//UDJTpx2SYe97im2xY/8+JEiswNSqwDZHGYYKCAFWEjQGHJvKjLOQgbjsnKexD/Tm4+CkpXQipRYelcKZQVaXTljSSirRVAbFIYEOTFxgVYew+DO3tmRX4XszgohDvavAvk/MjHqufh0+4GhJsXchxkkZBv+3qoSOzStUcR3t4zPHUWzFJV3G6NRRwK3SLW3HQdtcsrEbI3CY6gL6tBt4Mq7HEMYgARXoVcsxVhDBun8vg0CEirlVYmEnlXcATOBDFRNa+fN9wgECYaF/Fqj34IEj19r41FDtlRFQAkhX2OpINuBstubZXRE24odBfLGrqCR+y+2LgpoFhLIUMEfRkexGj7iCBjojdNb9po7S2gpBqiqwuTRdPjt4vHx8WLpfHlR+wJt7jST2vX4VJ7TJ4OB37oq8fMxvwObt51NI6FfrnOYtvfER7ZrGJgM3cNnzKlnyAndPylB0zDCY6icDYnn1eUl/xy38bTOuaTLuhC3rTHIU9J8Dow5rYTR5/IZa87+paxTthJyj4pQ36uzul4nKzGiHyp06Kk5k2ujHzlfHAs+RZqasipwr0ZS8s+rq+fi/acKo6M04q33zv+6chpJmSJqSFiG5waFy49Of+JKGEu4Qg/N4qCM8l5te/p9cHl7QSSUYXVO6n8xBLWKtUkmZ7qdxRAzPn2pKpxXCt3a9epxkDepezqNv5N85y7Ju9ls8sxhqm2JtHY8xioX0vCiNWQwbO9SGO5vuISAftNNtdoXkMGaqArZcJgXrtYDtUJLaqDMUFUGni6NUTwV12wap1XAvPaGttHfaDJ+j9t3qDR6yOaLvsGUGye1wrHZvgqqMu9x2/X40wHYDtt1QnHWxi5dhHcDM3F7o/IvaPmucJ6J9uXg9eDyVDItQIwm47b/VR77v+MRzUA+kWsvFEjAMjY/EKryr8MBs+SSlMr2/LWLd7bfNUesemP9d1/RbV8QfqNhVSgTL3kswq5t8Xm3iwIXoWvyhYQ1X4RsDrvdgwr4yRdNw5/TquZW1Saoh6K3rL/g9gcLfqOKmjnEXt8obxgUW1t2rcjeEvg6Fe4izo0D9uXdzDMvuRjlOVZ0AhxnMBPZ3/fJzXQGEh7aPwSl04zpeZb9F6bdNP8Dnod8+g== +api: eJzlVU1vGzcQ/SvEnBqAllyjpz1VTQNETRoLltKLLBj0ciQx3SUZctaOKux/L4bclVZ2LAe99rQfnDcfbx5n9kBqE6FYwgIjRaQIKwkaYxmMJ+MsFDCtvQsk/phffxKUrYRWpMQ6uFooK9Bq74wloawWUT2gMCTIiZmLtAkYR7f21k7CJha3VghxtP8pUnhTiMnAxeebjww1OeYhzCgju/B3VtXYo2mLIn27dXrvUzRr4YN7MBp1SuAGqQm2z0Gbkgqx2KIIGJuKenQX2AdXYowjkOA8BsVUTDUUkM/vuiAgwaugaiQMzOIeOBMoQDW0dcH8k4AgwTCRXxsMO5AQ8GtjAmoo1qqKKCGWW6wVFHtQdne9To5o59lRpGDsBlp5+GObqoJ2JYEMVfxjchKr5SOOgJF+c3rHXktnCS2lAN5Xpkym428Xj4+PF2sX6osmVGhLpzmp/SAfH7h8Mhj5q+8Sv5/md8zmXW/TShi26xym0574xHYtA7Ohu/+CJQ0MuaC7Jy1oW0YEjN7ZmPO8urzkx6mM503JLV03lbjpjEG+RM2XyJiXmTD6XD1TzdW/VnWuVkIZUBHqO3WW17fZSkzouwwdNbXk5LroJ85Xp4TPkeam9hUe2MhM/nJ19Zy8v1RldKJGvAvBhf/OnEZSpkocEtbxuUHlypPTH7gSxhJuMEC7OjKjQlC7AX8fXdldEAl13Jyj+k+MUW1Sb7LJGbUzGWLBp691hevKoTu7QT+O9GZ2Xy7j90zfuUvyfrGYPXOYe1sjbR2PMe9iHl60hQLG3V2K48MNlxAxPPRTrQkVFLAl8rEYj8vKNXqkNmhJjZQZK2/SQIpYNsHQLkEms+kH3L1HpTFAsVwNDeasjdztU7MD0cqbD7jrZfx0xnXzdJtRXJixa5fg/UxMyYnJbAoSuIws48vRz6NLeLrgToxZ1qpMsu5jp2OQT1g41A8SsE6aBkJV/3o84MyY6VrZgb9uny4OK+Qkm8G0/r9v3k4LhN9o7Ctl0t1NTdh3yl32KyZyE3rtriRsWd/FEvb7exXxc6jaln/nDczy1Caq+2qwg//G3Xf29oOqGs4h6ftBBcOgJGfZy4+9ZfDb3LiLNA6O2NdXLo+y7GJSlujpBXAarZzI4RrPrucLkHDf7fnaacYMPMvhB6fdtv8CFsduaw== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Import JSON testset data from an endpoint and save it to Postgres. Args: -endpoint (str): An endpoint URL to import data from. -testset_name (str): the name of the testset if provided. + endpoint (str): An endpoint URL to import data from. + testset_name (str): the name of the testset if provided. Returns: -dict: The result of the import process. + dict: The result of the import process. +> + -
- -

- Query Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

-
-
-
    - - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/ingest-spans-rpc.api.mdx b/docs/docs/reference/api/ingest-spans-rpc.api.mdx index e25577cf07..3680a95149 100644 --- a/docs/docs/reference/api/ingest-spans-rpc.api.mdx +++ b/docs/docs/reference/api/ingest-spans-rpc.api.mdx @@ -5,898 +5,67 @@ description: "Ingest Spans" sidebar_label: "Ingest Spans" hide_title: true hide_table_of_contents: true -api: eJztWktz2zYQ/iuaPbUzlOWXnJanKjIzUe1IGonOoRqNBiIhCTFfAUA3qkb/vbMA39bLjtPmwBwcDbjYXXz4dhcLcgOSLAWYE7A5cViwhKkBYUQ5kSwMei6YwIIlFXImIhKIGY8cMIDTrzEV8n3orsHcgBMGkgYSf5Io8pijJre+iDDAMeGsqE/wV8RRtWRUqHHUqCYF68ECzMkG5DqiYALhnKxha2QDQex5sJ0aIJn0cGCs5m4NkJw4tKKFuC5DD4g3LBk8an7fxFziu1WAw7gTe4T/MrCph8v4FYwNMEl9AebOpxVUpttsJJx/oY48DSiHUyKpOyNyJ+RCctx9AxYh91EGXCJpUzKfHtTf1WobHXQD4sj9EUYetNrEiEs9+gOM3Gq1iZEUrvl6xtwT7cQxc08C6/260XOLeL2plRStzEoK2JtaSeHKrKhITAxU1aaTMMnQRB6D54g4kjeRjgingTzi/yF/h0pB0fYjC46gQYPYx5gdDzv92V2vfzt76I+HVrf3oWfdglEY7/Vta9Tv3JcGx9boszUqDXXve1bfLg0NR4Pbh25VbtAfP3yyRlBYQZoS7tDv50tNlxUQn74WJAV4n6hIASEJlzMVN98RZyyQdEn5YbNoqWHrmUAD9z+xagVuZlNIImMxc0L3iNmMEnbHfhjPuoNbC0lhqT0tjA3uKgPWaDR4vp3KbBet7t5Q7ZZPhSDL1++q0tL4lGjZGkCk5Gwey1Mr5wlWdyLuz8sj8zD0KAnU0G5beQX8EHvenyIMmr0gimWhDhaq3rOyuXfS8SNFeSq8qMp2cjyRwE80kBXcEk+rJ4g0WPdlwDQWkd9CEj96k6AoeG5nimta/FBaPJuoj9GMUxfziSJCcZ8rmcJCThWsH3fc0izcGuCx4PE0Or6sJr+04tf0+t/olW5sYdMqBLtnweOL+HWvWHXMcGYuP/DtONIUYa2brLrJqpususmqm6y6yaqbrPq4UzdZNS3qJqtusn5+ev38TdZbdDk7fKlaEjan9GUw2/o93jHtyVvKkX4BCVuUz5GQPKZqQERhIDS/L88v8T+XCoezCFmJS4kdhwqxiL3GKBEG47XvMZ8oF0yL7AvQz4kI9jxhrE1UgqvQwCiJ3SnljYmTup66tYOuIgNoq9C+vtyB52fiMVeh1bA4D/nrwXSpJMzDX3uypxc6pacvyV/TagQU8Aq1g4i7L5aHNrNwxNMi+0UVGA0bnx7bClyXNp3IFfYih1eju38Ztxq+Q2H00baHzxTqvS1vak+9+G/osDfAp3IV4gcBUShQX0TkCkxoRZw+Mfp3S+rQbKn7mpb+agATEuXIMrVDMffAhJWUkTBbLccLY/eMLGkgyRlhLRIxqPrQUU8bXRRV/BbUiTmTa6WvM+zd0fVHSlzKwZxMiwJjJJimTFksD6KI3VEET58PoRPLVcjZP5oHBjB0YKVnITpI3VH+5YP1jfiRRwtXVJNN6QIIU0+7ed5uXrTtiyvz/MJsX5+dX9/8BeU7nENyxWuYQ3KVmxS4WpDf2oub62b73cW75nX75rI5v1o4zUvn95urxc0NWZAbeHY1cuq0yl3HqdPyo0weKdlhKB8q3EJU5PRlwt6bgkJnXphYaLAPIZg3xIekSi3szv602k3mnpROZoUOZpJ2KMX8kXUih7wpa0T2JyVjstkF7C78qypUDUm/qUHWs2ARqqBJz0M6It8T55EGeOLIyh+cn12cne8L4WRCozPsJdWBODLvzhIx5GQpSWTpAbfIV6UBJCX+H/kD9BJzkk+Cgr5K9ir5lKUASb/JVuQRpvK+srxJEtsEksSWAJfTUKjcoNLb1IAVZkNzApvNnAj6wL3tFoe/xpRjkpoa8EQ4I3MEb4IFaJWmqw080rWq96pSNlWZQHEv1umpUjWxoukZHcehkTwoOy0k7OFgjMycJ59r+Zq8nODS8K8JgB994WyVL9XYBjwSLGPNYa0T//0Ll5Ta6g== +api: eJztXG1z2jgQ/iuMPl1nTEjSvLR8Opq4Ey4tMED64RiGEbYAFVv2yXJSjvF/v1nJNrIhvDXtpR31Q17ErlbafXZXftR4iQSeRqg+QH2OHcqmaGihICQcCxqwpovqiLIpicQoCjGLRjx0kIU4+ScmkfgQuAtUXyInYIIwAT/iMPSoI5VrX6OAwVjkzIiP4aeQw9SCkkiOw4xSiS3aE1QfLBEVxI/WJR1OsCDuCIuiuFiEBNVRJDis3EKTgPsgg1wsSFVQn6DEysVY7HkoGVpIUOHBwI2attIQKLFQHLo/wsiDmjY14hKP/AAjt2ra1EjmrvFiRN097cQxdfdy1odFpenq/npRK5m3ciuZw17USuau3Irg2CGpgfK0mRIkCEnlAbo7xHshZql0iDlhYsf6t623IycorFWJbnMHYbEPiU3ZY6AyElkIMxaI7JeYzVnwxNCwtMk+zLS+nmzf+5vGUygLFnJmmILBp4DPJ17wBG7C0Ry+BYEHCv6YuK5S/icmfIEs5Hk+qAZ+6JF0wc4MC1l+OGbzzRsAt+9Y/5yyHUjK1t/rNFqj+2brdvTQ6nXsm+bHpn2LLG282erb3VbjU2GwZ3e/2N3C0M2npt3qF4Y63fbtw01Zrt3qPXy2u/qW2n3iwbbuYd3Pb4thf2tYtgFMgrWFZZVBkcBcjGTN+Y4aRZkgU8K3mwVLlb7SRIS5P8WqzdzcZiSwiKORE7h7QrrXb/QfeqOb9q0NoLBlTLWx9n1pwO522+vhlGZvwOrmgKpl+SSK8PT4qMpZKp/TWRILYSE4HceClPoudl0KOYa9TqHx7mF1o8f9cXFkHAQewUwObbaFHMqd2MP8j4+x5/0VBazaZGEs3kCRUJME46/EEXKO9JywhxLmHC+2eqmoKivsmr3ndBsrfyZQlyaEE+aUfffMqeaR8IiqI9Ix0f2SqgNcvHh6NEhAN7HQy3VX1aYM1H4c1NYUi9Wlm+FQs7B7cd0VehMLeZTN94PxYWehQ09aBkY/FUbwZEc5caHVZYHVglZqY58omx+EsU8SVYmFZjia7VkmTWH6pRGl4+UOR7OD8HKnYAKHw28OCcVauzRBOy5odu5O8O0jYWK/ZMweMp4r3dkzBJzLI4H98EUO8/oDaj6xSeX/szlIIOhxLrUGGzB1UK7bCoW7DOe9aMXClEx/9LCAE8dB1nuSjMwOKHviaSefuRuI3z3FCjQZT/AGbYKU9mnJK8ODMJI7ypCyhpQ1pKwhZQ0pa0hZQ8oaUvZVnmINKWu4j9fBfRhS1sDIkLKmML0KRBlS9jUGzZCyBhW/KymbErJbDyyG+TTMp2E+DfNpmE/DfBrm0zCf5qhomE9DMLx+qBnm08DIMJ+mMP0KiDLM52sMmmE+DSp+c+bzJajHHfVMSvU5IYe5ua/+x+uu2dMXBHTV3/6jJEl0TwgeEzkQhQGLFL7PT8/hm0sih9O0WqJe7DgkiiaxV+mmwpJXOeoVAk4QK6VSumg8oZQA4m6CY0+g+qk5TR5XMNqxOKJirGkdUDKU7i94oNyRSVIqB38iM+nifEOufMEedWUmVGzOA358orhEYOrJ8+tmoHuBU/j0EKgNyy7SHJJxvYmF/Gi6LTE0XiijdJ8Tlc6oKF51R5BhX8p0KqdTFrl7lXef38atct+2wN71+521CVVsi0FtyvepVFRJt5BPxCyA96yEQQTzhVjMUB3VQk4eKXmqCVV2a/KCrKZexgLNhnAgbGSEYu6hOpoJEUb1Ws3xgtg9kVw3PsG0hkMqMRoRJ+ZULKRKo9O8J4s7gl3CUX0w1AV6gCGFiqJYHhAc0nsC/lHnL9SIxSzg9N+Myaewz5nSAgcAOrurd8bY3zCw6Nq136D4jhfoHBfV0+vq+fv+2WX98qx+/u7k9Prsb1S8F9smp19tbZMr3U6htxP87nJydVG9vD67rl5cXp1Xx28nTvXceX/1dnJ1hSf4Cq1dN+2rVro/2ldt1VhWyZC3ptWQdrOjJY12QVO8fdGuT/K7Ee1K4tn7Bo3f15aj0fTb/L2i1bdJFYjwjSx3mZNeraTQVUs86EDjObW1S8Jy9fshoSlagzxKTxeD5aYQbYrk+hQZHzFYfuda9OdU7dFqkD066bU1f0TaFpiyCdn9sj+ZglynbBLIUpE1ZFmIKo1OE1ma709Pzk5OUbk2FoSh1WFHrJ7z0o8h+woVL6918upO9jkkCPb/XH0AK4MC62OmzVcqxYW15MVOkG+iFnpwZZiklpdplR6gtEqngV0lZiSroKzVEE4o7fUBWi7HOCIP3EsSGFZXi/XB0EKPmFM8BocNoJvOssK8RHOykMdY2farsueBuBerQlw6AkB7VhoNByK/VXaodZ9OuwdZNU5f6eWrxOMYtgZf6wjBi8FAW3YGObZEHmbTWOWfmhP+/Qcuy97e sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Ingest Spans - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - spans - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - parent_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - span_kind - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`SPAN_KIND_UNSPECIFIED`, `SPAN_KIND_INTERNAL`, `SPAN_KIND_SERVER`, - `SPAN_KIND_CLIENT`, `SPAN_KIND_PRODUCER`, `SPAN_KIND_CONSUMER`] -
    -
    -
    -
    -
    -
    -
    - -
    - - span_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - start_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - end_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - status_code - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`STATUS_CODE_UNSET`, `STATUS_CODE_OK`, `STATUS_CODE_ERROR`] -
    -
    -
    -
    -
    -
    -
    - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
    - - timestamp - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - traces - object - -
    -
    - anyOf -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/ingest-spans.api.mdx b/docs/docs/reference/api/ingest-spans.api.mdx index b3a93a6476..0a5d66d840 100644 --- a/docs/docs/reference/api/ingest-spans.api.mdx +++ b/docs/docs/reference/api/ingest-spans.api.mdx @@ -5,898 +5,67 @@ description: "Ingest Spans" sidebar_label: "Ingest Spans" hide_title: true hide_table_of_contents: true -api: eJztWktz2zYQ/isanNoZyvJLTstTFZmZqHYkjUTnUI1GA5GQhJgEGQB0o2r03zsL8AHSetlx2hzoQ+yAi93Fh293sSA3SOKlQPYEuRx7lC3R1EJRTDiWNGI9H9mIsiURciZizASyECdfEyLk+8hfI3uj/ks58ZEteUIs5EVMEibhEY7jgHpKUeuLiBiMCW9FQgx/xRzMSEqEGlfaYRJbDxbInmyQXMcE2Qhzjtdoa+UDLAkCtJ1aSFIZwMBYzd1aSHLskYoW7PsUPMDBsGTwqPl9EwuJ71aBPMq9JMD8l4FLAljGr8jaICpJKJC982kFlek2H4nmX4gnTwPK4wRL4s+w3Am5kByYYKFFxEOQQT6WpClpSA7q72q1jQ64gZLY/xFGHrTa1IhPAvIDjNxqtamRDK75ekb9E+0kCfVPAuv9utHzTbze1EqGVm4lA+xNrWRw5VZUJKYGqmqzSZBwSCoPwXNEHMibSseYEyaP+H/I36FSYNp+pOwIGoQlIcTseNjpz+56/dvZQ388dLq9Dz3nFlnGeK/vOqN+5740OHZGn51Raah733P6bmloOBrcPnSrcoP++OGTM0LGCrKUcAd+P19qtiyGQ/JakBTgfawiBQmJuZypuPmOOKNMkiXhh82CpYarZyLC/P/EqsP83KaQWCZi5kX+EbM5JdyO+zCedQe3DpDCUXtqjA3uKgPOaDR4vp3KbBes7t5Q7VZIhMDL1++q0tL4lGrZWghLyek8kadWzhOs7kQ8nJdH5lEUEMzU0G5bRQX8kATBnyJizR6LE2nUQaPqPSubeycdP1KUp6IXVdlOgScQ+IkwWcEt9bR6gsiCdV8GzGIR+C0kDuM3CQrDczdXXNPih9Li2UTLOEdPNBHMfa5kCgc4ZVg/7rijWbi1UEDZ42l0fFlNfmnFr+n1v9Er21hj0yoEu6fs8UX8ulesOmY4N1cc+HYcaUxY6yarbrLqJqtusuomq26y6iarPu7UTVZNi7rJqpusn59eP3+T9RZdzg5fqpaEywl5Gcyufo93THv6xnKkX0ii7RYmcCLiiAnN58vzS/jlE+FxGgMLwfXE84gQiyRojFJh9Or3lk+EC6pF9gXk51QEepwo0SYqwWQ0LEpidwp5Y6Jkrmdu7aCnyAHS4F5f7sDzMw6or9BqOJxH/PVg+kRiGsBfe7JlEHmlpy/JV9Mq4w28Iu0g4B6K5aHNNI50WmS/qAKj4cLTY1sB69KmUzljLwp4Nbr7l3Gr4TsUNh9dd/hMod7b8qb21Ev/xjh96R8SuYrgY4A4EqAvxnKFbNSKOXmi5O+W1KHYUvczLUg9hAO/1N4kPEA2WkkZC7vV8oIo8c/wkjCJzzBt4ZiiqvWOetrogqhitiBewqlcK32dYe+OrD8S7BOO7MnUFBgDtTRZymJF+MT0jgBs+iSIOolcRZz+oxlgIQoOrPQswAVIOyq+eXC+4TAOiHEZNdmUrnog6bSb5+3mRdu9uLLPL+z29dn59c1fqHxbc0jOvHA5JFe5M0FXC/xbe3Fz3Wy/u3jXvG7fXDbnVwuveen9fnO1uLnBC3yDnl2CnDqtcqtx6rTi0FLESH7sKYaM+4aKnL422HsnYPTgxkSjlT6EYNH6HpIqNas7O9Fq31h4UjqDGb3KJOtFzMyR9xyHvClrBPanxWKy2QXsLvyrKlT1yL6eAdZTtohU0GQnHx2R77H3SBicLfLCh87PLs7O94VwOqHRGfbSuoA9WfRhqRhwspQk8vQAWxSqooAkweEfxQPwErJRiJmhr5K3Sj7lKUCSb7IVB5iqjK8sb9KUNkFpSkuBK2gI6iAvryAD2hO02cyxIA882G5h+GtCOKSnqYWeMKd4DrBNoOisskS1QY9krWq8qo5NVRpAPEh0YqpUSqhiekbH80gsD8pOjSQ9HIyBk/P0E61Q05ZjWBT8ayMEH3nBbJUp1dgGBZgtE81erRN+/gU9ONQy +api: eJztXG1z2jgQ/iuMPl1nTEjSvLR8Opq4Ey4tMED64RiGEbYAFVv2yXJSjvF/v1nJNrIhvDXtpR31Q17ErlbafXZXftR4iQSeRqg+QH2OHcqmaGihICQcCxqwpovqiLIpicQoCjGLkIU4+ScmkfgQuAtUXyInYIIwAT/iMPSoIxVrX6OAwVjkzIiP4aeQw7SCkkiOy9lAiS3aE1QfLBEVxI/WJR1OsCDuCIuiuFiEBNVRJDis2kKTgPsgg1wsSFVQn6DEysVY7HkoGVpIUOHBwI2attIQKLFQHLo/wsiDmjY14hKP/AAjt2ra1EjmrvFiRN097cQxdfdy1odFpenq/npRK5m3ciuZw17USuau3Irg2CGpgfK0mRIkB0nlAbo7xHshZql0iDlhYsf6t623IycorFWJbnMHYbEPSU3ZY6AyElkIMxaI7JeYzVnwxNCwtMk+zLS+nmzf+5vGUygLFnJmmILBp4DPJ17wBG7C0Ry+BYEHCv6YuK5S/icmfIEs5Hk+qAZ+6JF0wc4MC1l+OGbzzRsAt+9Y/5yyHUjK1t/rNFqj+2brdvTQ6nXsm+bHpn2LLG282erb3VbjU2GwZ3e/2N3C0M2npt3qF4Y63fbtw01Zrt3qPXy2u/qW2n3iwbbuYd3Pb4thf2tYtgFMgrWFZZVBkcBcjGTN+Y4aRZkgU8K3mwVLlb7SRIS5P8WqzdzcZiSwiKORE7h7QrrXb/QfeqOb9q0NoLBlTLWx9n1pwO522+vhlGZvwOrmgKpl+SSK8PT4qMpZKp/TWRILYSE4HceClPoudl0KOYa9TqHx7mF1o8f9cXFkHAQewUwObbaFHMqd2MP8j4+x5/0VBazaZGEs3kCRUJME46/EEXKO9JywhxLmHC+2eqmoKivsmr3ndBsrfyZQlyaEE+aUfffMqeaR8IiqI9Ix0f2SqgNcvHh6NEhAN7HQy3VX1aYM1H4c1NYUi9Wlm+FQs7B7cd0VehMLeZTN94PxYWehQ09aBkY/FUbwZEc5caHVZYHVglZqY58omx+EsU8SVYmFZjia7VkmTWH6pRGl4+UOR7OD8HKnYAKHw28OCcVauzRBOy5odu5O8O0jYWK/ZMweMp4r3dkzBJzLI4H98EUO8/oDaj6xSeX/szlIIOhxLrUGGzB1UK7bCoW7DOe9aMXClEx/9LCAE8dB1nuSjMwOKHviaSefuRuI3z3FCjQZT/AGbYKU9mnJK8ODMJI7ypCyhpQ1pKwhZQ0pa0hZQ8oaUvZVnmINKWu4j9fBfRhS1sDIkLKmML0KRBlS9jUGzZCyBhW/KymbErJbDyyG+TTMp2E+DfNpmE/DfBrm0zCf5qhomE9DMLx+qBnm08DIMJ+mMP0KiDLM52sMmmE+DSp+c+bzJajHHfVMSvU5IYe5ua/+x+uu2dOXA3TV3/6jJEl0TwgeEzkQhQGLFL7PT8/hm0sih9O0WqJe7DgkiiaxV+mmwpJXOeoVAk4QK6VSumg8oZQA4m6CY0+g+qk5TR5XMNqxOKJirGkdUDKU7i94oNyRSVIqB38iM+nifEOufMEedWUmVGzOA358orhEYOrJ8+tmoHuBU/j0EKgNyy7SHJJxvYmF/Gi6LTE0XiijdJ8Tlc6oKF51R5BhX8p0KqdTFrl7lXef38atct+2wN71+521CVVsi0FtynepVHrpu1R8ImYBvGMlDCKYL8RihuqoFnLySMlTTaiyW5MXZDVoM4QDVSNjE3MP1dFMiDCq12qOF8TuiWS58QmmNRxSic6IODGnYiFVGp3mPVncEewSjuqDoS7QA/QoPBTF8lDgkN4T8Iw6eaFGLGYBp/9mHD6FHc6UFmwdcNldvS3G/oaBP9cu/AbFt7tAz7ionl5Xz9/3zy7rl2f183cnp9dnf6Pijdg2Of1Sa5tc6V4KvZ3gd5eTq4vq5fXZdfXi8uq8On47carnzvurt5OrKzzBV2jtomlftdLN0b5qq5aySoO8Ka2GtDsdLV20q5nivYt2cZLfimiXEc/eNGjMvrYcjaDf5u8Vob5NqkCBb+S3y2z0aiWFflpiQAcaw6mtXVKVq98PCU3RGuRReq4YLDeFaFMk16fImIjB8jvXoj+hag9Vg+yhSa+q+cPRtsCUTci+l/2xFOQ6ZZNAloqsFctCVGl0msjSfH96cnZyispVsSAMTQ47YvWEl34M2VeoeHmtk5d2ssMhQbD/5+oDWBmUVh8zbb5SES6sJS92gnwTtdCDy8IktbxM6/MApfU5DewqMWE6aDIzKOf1AVouxzgiD9xLEhhW14n1wdBCj5hTPAZXDaCDzrKSvERzspBHV9nqq7LPgbgXqxJcavvQkpVGw4GYb5Udah2n0+5BPo3T13j5KuU4hk3B1zpC8CIw0JY9QY4tkYfZNFaZp+aEf/8BA1jYJg== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Ingest Spans - + + + + + + + + + + + + + + + - - -
- -

Body

- required -
-
-
    - -
    - - spans - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - parent_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - span_kind - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`SPAN_KIND_UNSPECIFIED`, `SPAN_KIND_INTERNAL`, `SPAN_KIND_SERVER`, - `SPAN_KIND_CLIENT`, `SPAN_KIND_PRODUCER`, `SPAN_KIND_CONSUMER`] -
    -
    -
    -
    -
    -
    -
    - -
    - - span_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - start_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - end_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - status_code - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`STATUS_CODE_UNSET`, `STATUS_CODE_OK`, `STATUS_CODE_ERROR`] -
    -
    -
    -
    -
    -
    -
    - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
    - - timestamp - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - traces - object - -
    -
    - anyOf -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/inspect-workflow.api.mdx b/docs/docs/reference/api/inspect-workflow.api.mdx new file mode 100644 index 0000000000..eaf5f4c8e4 --- /dev/null +++ b/docs/docs/reference/api/inspect-workflow.api.mdx @@ -0,0 +1,71 @@ +--- +id: inspect-workflow +title: "Inspect Workflow" +description: "Inspect Workflow" +sidebar_label: "Inspect Workflow" +hide_title: true +hide_table_of_contents: true +api: eJztV01v2zgQ/SvGnLYAG6dBTzqtd7eLuu0iRpy2B8NY0NJYZkuRLD+ceg3992JI2ZJix00M9LTxxSI5MyTfm3kkt+B56SCbwWdtvy6lvnMwZ6ANWu6FVuMCMhDKGcz9v3eNCTCw+C2g83/oYgPZFnKtPCpPn9wYKfLoPPzitKI+l6+w4vRlLIX2Ah211midSCZcba6XkM224DcGIQPnrVAl1Gzfo4KUUM8ZeOEldXxq3GsGwYpzo3y0IkWQ50eQFGGFvEDr+lF4UQjCgstJb+utxa+CxMlQnhtmSr41A1GcisBgqW3FPWQQgihORhwXUNdsN6wXXzD30A7f4BItqhy7QXYLnR84nprpbUMDQRDz7rGM/JSpB/ETymOJtr+satHvWWgtkavYdXwuyIXNg+T2t7+DlO+cVi/HygT/Ao7tX3isHufEreWbk5j1XeEI3k8gYNqgXjOouDFClY9k4D6+T5jzn91Ep5JsJ3FTtGuR41h5tEtOOUdeJGnCYgGZtwFjhzNaubS2q8tL+ivQ5VYYH0sUpiHP0bllkIObxhjYsxg+i+GzGP4KMbwO/gw1PPB6ghwm3/+jHtYMXl9dHUreJy5FEQVt8MZabc/XuwI9F1FmGu7uG0id90afknudKkl0t7v+oNMCIx+uPAS6gyI6x0tsoX/YNIIxuKXRY5C3h8ss7itN3dh1JWsPb0L34W38leA7xe/b29vJQcDEbZ/UcbrgDz63F/wK/UrT5d9oRzEN9yvIYGgsrgXeDXdvATdsXgfAwKFdR82fbdMJAivvjcuGw1zqUFzwEpXnF1wMuRExXR3mwQq/iS6jyfg9bpJiQTabdw1iDaW06JvtGeFGvEcCSPGK2qPgV9qK/xLXDARtNJ1KETRKz5v2FfPmO6+MxN6p07IcT9RuU3ab7VnXk9l+vdOcQi11XHJD0CgCMhhNxsA6015evLq4hPsk9Yyp5ngea2633zi8X9wO+T3mwACrWHDgkVe/twO0MmK54qoT70hO9NazB97jdz80kgvVuTmkdJlBky7AYJ8wkYuUMnMGK0qvbAbb7YI7/GhlXVP3t4CWsmLOYM2t4AvCazbfXyxiwnzFDWTwZ5Kfl7H2yFyGlA/3pIhkInmM8hyNP2k771TA5Hp6CwwWzVu30gX5WB7fwfwOMgB6MZN3TNDYtwXJVRlIPTJIMen3A+hBT+M= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Inspect Workflow + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/invite-user-to-workspace.api.mdx b/docs/docs/reference/api/invite-user-to-workspace.api.mdx index 6a4575f595..0acb514d02 100644 --- a/docs/docs/reference/api/invite-user-to-workspace.api.mdx +++ b/docs/docs/reference/api/invite-user-to-workspace.api.mdx @@ -5,407 +5,79 @@ description: "Assigns a role to a user in an organization." sidebar_label: "Invite User To Organization" hide_title: true hide_table_of_contents: true -api: eJztVk1v4zYQ/SvEnLKAaqdBTzrVu5tijW2RwPG2B8cIJtJY4kYiFZJK4gr678WQlC3HG7dFgV7aXByR8/lm5g07cFhYSFdwZQpU8nd0UitYJ5CTzYxs/GcKM2tloaxAYXRFwmmBorVkhFQCldAj5cmtulUzU9j0Vgkh+O5O5uLMOvMuFcuSxPyj0BvhSnqtx+INbiuNuTibqyfpaEGPLVkXNYfLTCuHUklVHJkRMk9CaFSjrBKBKt8H7dOInp61ebANZvRmeDsJn9OCXGvUkNa91lUqlqYlIYO0d/KMVtg2y8jaTVtV2+iS8kT8hJUloV1J5lnaaBOlpcHkp+Xy+vIlIw96KubBrM8l12SF0k6U+ESiIVNLazlbp/lro00tXCmtwGyE5TcNGhIspwQZo02Mb0ByAGpwPIEEdEPGQzvPIQXpy3LHl3dO3+0gggQaNFiTI8MN1YHCmiCFUH9IQHIjNehKSMDQYysN5ZA601ICNiupRkg7cNuGtawzUhWQgJOu4oMrU4h5Dn2f7CyPC/iP7f82GAte1sEGWfde51tWfG2Se5CU4ytsmkpmHqPpV8sD0x17RGNwy2E6qi2fN4aRdZL8l+/WUwFeeoE+Aa6RV0G1vdp4qA9cMELxQLVVBZzLYGThdfs+GST0/VfK3AFiqxjLSO1gFjmG4eI6DCT0Pds0ZButbIju4vycfw555GY3GmIRheGvQxm8/HBxcWz4V6xkHgjgkvv6b1h9VYicXKzEG5WqdHZwe1SGWLpRHaRyVJCBfr1HfuiHAcqfdQiQ4a1tcaoVfiFrsSDYGTvRNX7Il3z7Z1XnvILrKDdqgD28Ad230/gY4PuWs0GEaenIYKhtTa7UTDONts5TiishhemY4e20C5zST3cMYKfdmA36aaApSMCSeRoYqTUVpFA619h0Os0q3eYTLEg5nKCcYiPhaO/5W/GBRf0gWcpaI93W25tdzz/T9hNhTgbS1XoscMPtFRrmUGw/rY38TAxdpLNZ60pthhUc+awMWowNN+5iz0mXL1g3jOdqRx778keOWA0nPjSpNtr7j3WIyb3H7IEUMygDFfI+n3w/OX8LjaggZtfzOGaY+TEbEvFikLzCe4c0JLuAHWH94/6C0+TK16hG9gL7iC+8CJdaHLxUXoXY7af+/zfLf/jNEkfM0YubNhVKz6q+HbvIKSs44BRIIN29VPa0wsdHzwzPLOsESuaodAVdd4+Wvpiq7/n4sSXD/LBO4AmNxPs4pLm0/H8O6YZRPdG5Z4tIy+/EW7kMHKKYQJ6wavkLEnig7f7NxRvoX/R6AJRfdeVAjV0U+RC8fecX0t7E0X7myIPGLONeOCm7Hu2N66ubJSRwHx9ttc5Zx+AzkyI+h3B1E2rOrzo+66BCVbS8UlMINvnvDxCnhYQ= +api: eJztVktv4zYQ/ivEnLKAaqdBTzrV7aZYY1skcLztwTGCiTS2uCuRCkklcQX992JIPe0k3UWBnjYXR5z3NzMfWYPDvYV4A1dmj0r+jU5qBdsIUrKJkaX/jGFhrdwrK1AYnZNwWqCoLBkhlUAl9Mh4dqtu1cLsbXyrhBAT2Z1MxZl15l0s1hmJ5Xuhd8JldOyA7Uo85BpTcbZUj9LRih4qsq617ISJVg6lkmp/4kbINAo5UoEyjwSqdMje19NGetLmiy0xoVfT6zV8cStylVFdffda57FYm4qEDNo+yBNaYaskIWt3VZ4f2pCURuI3zC0J7TIyT9K2PlFa6lx+WK+vL58T8ujHYhnc+lpSTVYo7USGjyRKMoW0lqt1mr922hTCZdIKTEZYvujQkGA9JcgYbdr8OiQ7oLrAM4hAl2Q8tMsUYpC+LXcsvHP6rocIIijRYEGODE9WDQoLghiOBgEikDxaJboMIjD0UElDKcTOVBSBTTIqEOIa3KFkc+uMVHuIwEmX88F4YsUyhaaJ+ljjlv7nQH91zkKUbfBB1v2i0wMbHrvkqSTlWIRlmcvE5zj/bHmX6tOIaAweOE1HheXz0jDWTpL/8vP7VoKXXqGJgLvmTVAdrnYe/N7n1LiJpsEZu/ZAVXkOXGXnfuW9NoOJvv9MiZtguWmzHJlN9tYHbAXXYXmhadinIVtqZUPeF+fn/DMln5t+jcSqVYavBzlE+eni4tTxn5jLNMzPJe/AN3g9alFKru3RKz3MdTKRDg067kt/IpWjPRlotsfNGqD8XYcEGd7C7t8akj/IWtzT0Pk35skTwpql/9Z1riuEbvVGAzDAG9B9vYz3Ab6XgnUqTGEnDkNvC3KZZkoqtXWeflwGMczHhGPn9RH/NPOeJOy8HhNGMw/cBhFYMo8djVUmhxgy50obz+dJrqt0hntSDmco51hKvzSWkspId/Ami+vlRzp8IEzJQLzZjhVueJTCcEzVBloo5UdimFpSW1Qu06a7o1tWy4IV48BDuhqY6fIZi5Kx2/QUMrS6ZYpNd+JTk2qnffwW84WvTiyulxAB4xDW5nz24+wcTp4IY2V/Lyd+jbrkvRiiIxh7ACHqk3SExc+DgEvjzhaoRv4Cu4hPfCmutZg8X45Sq4et/v6Q+f6Q6TnG0bOblzlKT59+LuuWPDaT14qFCOLT58vAHyw/eXJ4CtlGkDErxRuo63u09MnkTcPHDxUZZoltBI9oJN63q5pKy/+nEO8Y3jdm+WzVEvE78VpRHZMoppFHzCv+ggi+0OGFFxlfPv9j+Ali/pbLOqasW5VfQ7Qf/F00uDi5mjnzYLFIeDre1N2Orozrq5s1RHDfvuQKnbKNwSfmSHwK6eoyTAE/9fishhzVvuLbNIbgk//+AaHXmm8= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Assigns a role to a user in an organization. Args: -organization_id (str): The ID of the organization. -payload (InviteRequest): The payload containing the organization id, user email, and role to assign. -workspace_id (str): The ID of the workspace. + organization_id (str): The ID of the organization. + payload (InviteRequest): The payload containing the organization id, user email, and role to assign. + workspace_id (str): The ID of the workspace. Returns: -bool: True if the role was successfully assigned, False otherwise. + bool: True if the role was successfully assigned, False otherwise. Raises: -HTTPException: If the user does not have permission to perform this action. -HTTPException: If there is an error assigning the role to the user. + HTTPException: If the user does not have permission to perform this action. + HTTPException: If there is an error assigning the role to the user. +> + -
- -

- Path Parameters -

-
-
-
    - - -
-
-
- - -
- -

- Body -

- array - required -
-
-
    -
  • -
    - Array [ -
    -
  • - - -
    - - roles - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/invoke-workflow.api.mdx b/docs/docs/reference/api/invoke-workflow.api.mdx new file mode 100644 index 0000000000..7649c17bed --- /dev/null +++ b/docs/docs/reference/api/invoke-workflow.api.mdx @@ -0,0 +1,71 @@ +--- +id: invoke-workflow +title: "Invoke Workflow" +description: "Invoke Workflow" +sidebar_label: "Invoke Workflow" +hide_title: true +hide_table_of_contents: true +api: eJztnVtv27gSgP+KwaezgHJp2qS7fjrZxIvmNE0C2+0CJwgCRqITbWRJS1FpfQL99wPeJOpqSbbTODt9aGBZvA2Hw5lPFucZMXwfoeE1+jOgjzMv+B6hGwsFIaGYuYF/5qAhcv2n4JHcfld3IAuFmOI5YYTyos/Ix3OChkjfcOs6yEKuj4bo75jQBbIQJX/HLiUOGs6wFxELRfYDmWM0fEbYX1zORDVsEfJqIkZd/x5ZaBbQOWZoiOLYdVBipXf4seeh5MZCzGUev6A7PzhzUMJvLPYo8uL7NfSpVR8mvK3KXjxh6mKf/UT5fJM9qJWT7uFLykv3qV5ulDy5kRv4P1FwY9WFWsmlfXxJ0aW9aiG7J0L53xfv2jfVbsJv462RiP0eOAveQtY4ozGxkB34jPhMNB6GnmsLI7T3VxT4/FrWtZByE8VcEvFP2TIn9Mm1ya1qpnznzBPmzhwbdhyXt4K9q9ytpdHfBYFHsG8OXwvkJrH0peDuL2KzRhn9ITqRWGhOGO7ZmfJUuD4j94TmW57f5a+YY6huC9kutWMP03/9EXvef6LA3znzw5j9gqqG6DIyb1cIU4oXzWLJFUWdRPqFS5KX6D+9LyDRi+DcjdgymdaNsVi6m4SmSue0Gei5vtPVbCEHF7U3v9ZMJ+G1zsg26fhVJs+EG/EwZiDZtUj2TMoysVAQMxBrT7G2sB6XSry8Goptcgs2Yr2aPOVSHeQthZQ02It1SzmzGlLCYDs2ajuk0IsWpMkBiULsd56OlavIRHc5Jd4kxP4vqEqwxrcFkXaLJiaii4mFbEowI84tZi2jXwczssPcOWms/0RWOzgWMxiHziYa+SqrVY04xCMbaORUVqsa0eK6W3CssCZeoIX1+0KAgkxea21FSyttRQtsra1ocaWtqI1ENFCstmAaxf188Sy5nSuvujvElEg21jM0uRIV5Poqb20SB/HjOV+0nHFK2oAshH0/YPpD7D/6wXcfFU3RlNdU7o8ed/um8T1HHhayH7DLGzQ4K8PRI/8TBB4vML8jjiMLa3zjeXNeNJiHHlEdth8wE2CHYv+xegBc7Ev6/+j6SzRJ939ydXxx+/ns4vT268XkanRy9sfZ6BRZxvWzi+lofHF8nrs4GY2/jca5SyfnZ6OLae7S1fjy9OtJ8b7Li8nXL6OxOSRtTj/zftcPS+KxfgomlPUCCyuDIoYpuxU2ZwUbVbnHF5vlLQ2msiQivvMirY58J20zYpjF0a0dOC1VejI9nn6d3J5cno64UozEnBrXLj8XLozG48vydIpmT3ir1RMquzUnUYTv+8+qqGXwRdWSWAgzRt27mBVdA/Dl+rnLx5k8E26XZoQS3y7KTvW26IGtj1cJMN9XSQRft9D6dle5TYGqbU7VSgXz1mWs9dBoYXnnxpn2JhbyXP+xnRp384W6elqgRi+qRtljq+t0Yo1JK2xj567/2EnHzoVWJRZ6wNFDSzMJhmmrNcrUl084euikL5+kmnDn8IdNQlbaLmHS+k3aKBUnl+0T8Yt0r2Yx6iCjznTrGIL75RHD83AtzrwZoKYVw1L+mZuDUARzngtbw4jrVKe1PpJauKzhdC/KKExFrGyKFcgnkE8gn0A+gXwC+QTyCeQTXEUgnwTI51aqGpBPUCMgn2CYtkGjgHy+xkkD8gla8cbJ5zrQ4xJ7Ju6aUlITxTH+TcOPT40AoG49GU6+HzhqQ6xemptlWJ47I/bC9hoH1I7TrhvJtqevrZFlJ0SZ1bp6lY0qd07usb041zNxOr2s1jsaBBWvRlZPdd57yvtKS1ZifuWNg4DJHqV6v2r7uvkNUE5SCzk7DZpXpAbtK4S0+qBb77GdOazBXzWSXc5hGwhs7uVFZwWRqkEX6lOSlfi8ye5sWLUlfq9dbppZFsJizjYbu5X5PAUiqmBo58Ijf/nIZLdk/QW3SolbssfygDQjrVMyTUMFAS1RzxzxRCuCzZRoLhms6HKpE2qcNRFFYVM1/dhOk5FzVPVSrd2X5cpZm1zELNqPFW/QdKLHuobOrrZ8238jjmc2I+q+qqimdq2W32lezwBOsXw/fU4Yde2NyOiLqrrDuQI9msAKZG9kCGNebye4WLdwVt32+3kjlJA1PoXm3Rm02IzEd1ZhT+IkTbtbnelbwIjXZPWWPSFtakQ9pXxBg7F5gFFrtvvDiA1ayFaheVfd0dF5l8UrTnv5URGKbDJUXRkfnMheKwG9mlnVwqxA8D3twBK4MfrBKK7dSFMa0f/dWwAWACwAWACwAGABwAKABQALABYALABYALAAYAHAAoAFAIufDiyy3+PwyTqdXla/7pZ9WRhRt5+cXIgO9lAHFT+rMFYFdsrLT73jwm9btJjgtySAZgDNAJoBNANoBtAMoBlAM4BmAM0AmgE0A2gG0AygGUAz5Oegme3o7zEPBrERX+V63bVDWQYzqRGlhtTbUMTJYuU2AaKuROcum8gsYsrPqoIeNQc51GnlP+dchwbpVp060M6Paz52oJ3QDbPe+wCc8gkFfarKNpsm/JZ/c76FnFKHy6bEIT5zsdf2ndYqMppWwdWM2JS0S2zSdVOaqKo7LMuxyu2XWBVJDpflJFvf2oup2xvBUlfW4PWvweM1PBDs9EidBOaoYI5KHe22nX5S05Do5JltZwReQ294Db2LFVFS57gCh6Hrt00CWZRvF36hGxKzTt2w93OjiSydWJAxcc3nFeTzoKnksJvZxmTViUhhO3PvY5k+exNtneQaaLNx6lS8dQ7tEre7Nruu0Sme0Pe2mCc8SRLhLEdh4EdSYw/29/kfh8glI0SEJrFtkyiaxd5grG5GvXMBr287W/fBQm8qX6rMw9Z1+ZdKdVj/suwqBmBrUiBuh3C3MWvqq5RsC7O03YlTX6XUawLzrc6duk2C3t70qa9Syq3JE2RQrTnMC/IIQB4ByCMAeQQgjwDkEYA8Al1mdbvzCLxKd27Jr5AglYAB1kDbNqptkE0ANGljmgQJBUCpNmqe/iE5BbZj3iCtACjGqrvE688sADlVgYUCCwUWCiwUWCiwUGCh4C0CCwUW+ia0DVgoaBKwUDBP26NUwEJf6bwBCwXFWHWXeP0sdB0wcolVgyyrcDImnIypQgk4GRNOxoSTMeFkTDgZs+yr6qVauy8v4GRMOBkTTsaEkzHhZEw4GfMlQnM4GRNOxmyGG5BlFYAFAAsAFgAsAFgAsABgAcACgAUACwAWACwAWACwAGDx9oHFm0/lAb8lATQDaAbQDKAZQDOAZgDNAJoBNANoBtAMoBlAM4BmAM0AmvlpaGY7+vtGs6xCrs+l234W2TlkhmOPZWHd4f6+EX2gY38Q++RHSGyOpQilAR0Eth1TSpzdwZVHcEQGjC4G+B67/sDDjNBdEatXhowlYbQ5BOZE6nHa1cP9/RbQo1G+642yjL71F9h647QGvZGxb7fUqSq7mszM9uHgAJWSsX3DnusIl3sw4oPun4nNIQy7wiut8Sa8wM592+Xd4Jt6M3eu4weuGNF9k49hhNfLAnohjIFUuCUWlI9LNl0OaDPxSunWD+NUiq9pej9Np1elCuXc5if1TGTmG/yZ0cI5YQ+Bg4YoDCJeZYjZAxqivZCn0iXf9zRYjPZkVj8k8yeKfFPXzzJ3LXpgLIyGe3u2F8TOrmCSeBe7ezh0hUJHxI6pyxaiyPHV2WeykLlS0fD6xrxBJPCUSpG/LZ0PHLqfyUJjxSE6jtlDQN3/6eDQ5cOU+XCFyLhyqkzBPDfh6AfmzJNXWJvOcPiMZh4WqUOziJxLP72WviqcqYfGD7l8XGauuVx6tKQyfVdSyjOVlJMiJUa6Hn2OZGKg+Yq+KY/u2nTPs2/TXTK7lHskZD76yW4xH+CUr6rHMFVfmMs5fZ4hbn4/w78ezo4+7Bx+fPdx58Ph0cHO3fuZvXNg/3b0fnZ0hGf4yHwI0b6QlZmNJ8MoaLDfpSKldplZUGp5r16wz5B2tzEp0qzYMjrYP/iws/9x5+C36bvD4eG74cGvu/sf3/1X8d2GG3LegNymU4CbuQHZFORgqREbN3WhaBtL9eZ3v+xqLuZKMmqX42u5RaeAVeYGmq6GQYg6KYOmPS2n5ybjKpKf1A0o4xXXz2VNMWRbJ5Abc5hGkN1q3RZj2iQXziXSG88dkmY418WE8UY7adb3pDHVeoXhEbnRzY+e+THLWp5LmJ1P3mxkVc5KFq1mltG3IvGu2AZdfxZIBTcjmMHx1Rkyzfn+7rvdfVTcNXM381nBNsuIk/o6HZ/eDNNtUDx9Ex4QYgTP/519wXvG99059o36ypt0rjup/nPl2As9/rQvyyIv9+9rpPZv49FgJHZHsYffWOiBb/fDa/T8fIcj8pV6ScIvy0eDXPscN8J3HndkZtiLiIUeCbfd6fyL+PQJezHvinDNlpUQx+R1LPOEqYvl+a09S/ZpNdXt7s2mRVdqN4u9s/I3/AN1eQXCbdILSMyWrOhEOug7U8mVddmSs877Iksc29z6N957YziJV5cTvo/cBY74RcRcbi8Ucz3j/w8RslAgFFXsP+LaM/Kwfx/LDULWyf/9H53l6Bw= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Invoke Workflow + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/list-api-keys.api.mdx b/docs/docs/reference/api/list-api-keys.api.mdx index 80f3651c79..4322c1a472 100644 --- a/docs/docs/reference/api/list-api-keys.api.mdx +++ b/docs/docs/reference/api/list-api-keys.api.mdx @@ -5,186 +5,65 @@ description: "List all API keys associated with the authenticated user." sidebar_label: "List Api Keys" hide_title: true hide_table_of_contents: true -api: eJzdVE1v2zAM/SsCTxsgJNmOPs3biq1ogRX9OKVBwMpMrMaWVYnumgX+7wNlx00ydIcdl4OjD/Lh8fFRO2BcR8jmkHurLmgbYaGhoGiC9WwbBxlc2sgKq0rlV+dqQ9uoMMbGWGQq1E/LpeKSFLZckmNr0nEbKUzu3b3Lwzpm904ppQI9tRRZvbvuF+8zdVuSss40tXXr8b55eCTDKfuauA1uDyBE5vLJr86F6jVF37hIi0zlqhKWzSqRvHiLZKIFGhpPAaW88wIykNQleruU4kBDGHAjZDv4OJvJ37EkN60xFOOqrdSeBGgwjWNyLOHofSVS2MZNH6Pk7CCakmqUlWWqE7gPwoQtDTta2RdZ8dYTZBA5WLcGDWy5koOrPqLTYAJJaUvkv8V/6aNUzpJTYeRlG8csdNsfK8jmp/mdHk9cW1XQLV4RLzGyuosjJr1420u5LJDpX2HPRhj1VWC6Tu9jezuktjy1NlAhbh2kOtLhkOWfJoFXRAwBtwcq7UOSwdQ4CJ38NNTEZSM2WZOw8MglZDAdvBIpPFOIqdw2VJBByexjNp2aqmmLCa7JMU7QTtFbOB2tPN2qLxKa9Ihk2mB5m/D6Cr4TFhQgmy8OA27ETL1tjsNGjdHbC5IyHdayz1sum2B/JZVBgxUCZZ8ldVq3alL6oMrA7TOaDbkCNEidPe3Z5MNk9lYxQ4IM4jATaJLd9jxSGOgTuUahQAPVaOWOCetPrxfC0jeRa3QHeMdNOyG1ex3K//EdG1rN9MJTX6F14vKk624w6hw2w6NeNpFlv9s9YKS7UHWdHD+1FMRuCw3PGCw+SPPni07vvSFO3NBWOmcMeZmBZ6za3mInr5w4dJyXb2e30HW/AYK5MV8= +api: eJzdVMtu2zAQ/BViTy1A2GmPOlVogzZIgAZ5nBzD2NBri4lEMuQqjWvo34ulZPlRtIce64PNx+54ZjjkFhjXCYoZlMGqS9okmGtYUjLRBrbeQQFXNrHCulbl9YV6pk1SmJI3FpmW6oflSnFFCluuyLE1eblNFCcP7sGVcZ2KB6eUUpFeWkqs3t30g/eFuqtIWWd8Y9163PePT2Q4d98Qt9HtAITITL7K6wuhekMpeJdoXqhS1cLSrzLJyz+RzLRAgw8UUeRdLKEAaV1gsAsRBxrigJug2MLHszP5ObbktjWGUlq1tdqRAA3GOybHUo4h1GKF9W76lKRnC8lU1KCMLFOTwUMUJmxpmNHKvsmIN4GggMTRujVoYMu1LFz3FZ0GE0mkLZD/Vv+5r1IlS0+NiRdtGrvQbb6voJid9nd6XHFtXUM33yNeYWJ1n0ZMegu2t3KxRKZ/hT0fYdQXgek6vavt45CP5aW1kZaS1sGqIx8OWf4eEtgjYoy4OXBpV5IDpsaL0MlHQ0NceYnJmoRFQK6ggOmQlUTxlWLKcttYQwEVc0jFdGpq3y4nuCbHOEE7xWCz5ESmjZY3uaUn+Y1wSRGK2fyw4Fby0ifjuGy0EYO9JFHisJF52XLlo/2ZjQQNVrJa9V0ixbqVz+2D8DKTkysDGkRGn+6zyYfJGZw+A0fFEnU0OUW7/87boE9cGPWDBmrQyh4TNp/2G8Is+MQNugO847M4IbPd37X/8XkajpfpjaehRuskvNnX7ZC/GTwPb3XlE8t8u33ERPex7jpZfmkpSsTmGl4xWnyUA5/NO73Lg6TvmTZycsZQkGi/Yt32sTp5vCSV4zX4en4HXfcLULMi0A== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - List all API keys associated with the authenticated user. Args: -request (Request): The incoming request object. + request (Request): The incoming request object. Returns: -List[ListAPIKeysResponse]: A list of API Keys associated with the user. + List[ListAPIKeysResponse]: A list of API Keys associated with the user. + + + + + + + + + + + + + -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - -
    - - last_used_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - expiration_date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/list-app-variants.api.mdx b/docs/docs/reference/api/list-app-variants.api.mdx index e5b1038d05..aa96e137fa 100644 --- a/docs/docs/reference/api/list-app-variants.api.mdx +++ b/docs/docs/reference/api/list-app-variants.api.mdx @@ -5,585 +5,73 @@ description: "Retrieve a list of app variants for a given app ID." sidebar_label: "List App Variants" hide_title: true hide_table_of_contents: true -api: eJzdVk1z2zYQ/SuYPSUzHMn19MRTaTvTaJI0HsV2D7JGA5MrEjEFIACoVuXwv2cWICRRqqw0vvUkCnj79gP7FmjB8dJCOoNMawvzBAq0uRHaCSUhhSk6I3CNjLNaWMfUknGt2ZobwaWzbKkM46wUa5R+Y3IzepSPMjOlTR8lY4xWF6Jgb6wzb1N2VyGb3BCNq9BbOMVMdLJP63mm6BojI9VHYd0s0/ohwKZotZIW5ynLTkdHfgbxQQJKo+GU4aSAFMh0QWFGO0hAc8NX6NBQbVqQfIWQQsgFEhBUG81dBQkY/NYIgwWkzjSYgM0rXHFIW3AbTVbWGSFLSMAJV9NCRoEU0HVzsg5JWDK4vLign+ERfGnyHK1dNjWLGUMCuZIOpSM417oWuc9n/NWSTXscBDeGbyhyhyvvSxuqghPBc5/ZDwSdeGwoyMvoPwjTJdCX9Qx/f6i9j2hzzk+0ir60UV8xP+frNqB6X0/c4llHV9zi1ou3eNmFxwf+XMmlKM96uPawrY/GCH8wcvN56XtwaNcl2xXZ1DVQL0WmeyOIweBaWBH6oYcK6bBEs+d1GkEUqEHusFhw97OerwMDy5xPQRev5LsPDD3fShViKbBYPG366v8M56eehV1t+gNSpuRS/OMV9Ariz3s0PfNfyjxbzXN8Be2fkSPMjCQC1RP18GAAzXYTaivSgf4OhDXQy74Qdi0+bN+9ppoPxH4wkheU/K7FwqKf34wmw0MctF1HCf16eXk89h54LYpQy3fGKPNfZt5wthXouKjp68Twq1U+2P2BU4pC6ua7A4kjNub9UYUAfeva8iXtf0Jreel1HyCnob4Y7I52zzUD5RVc97j5/uCM5Q3VPZ3GTSjfvzmLkPd3d7dHhOFsV+gqRbdsic7fq66CFMZcaztuQ7d2472L16JZx1u3MTWkUDmnbToe57VqihEvUTo+4mLMtYDD50rmd9k1Qb2ILOaNEW7j+bLbyQfcvEdeoIF0Nt8HfKHmCe0whO1uUC0+IBWmfwxkjauU6fUe3wRVsKLMhVwqbx5VEmK74vkzSi9FNGE8w8Xol9HFqWR6A5bdTnoN8NxrIMbhYZAclGtbKEgAV14A4JCvftttUJRaWbfico/vWKUHgbU7If5P34f9iTv82411zYUMF7KfIaGD/aSlyqTbibtt4nkClbKOQG1Lc/Te1F1Hy98aNNSK8x79RI0xa6EQlr4LSJe8tvhCvd9Me32/ZafijO0qNz6ouqF/kMAzbnZPWD+3qqiEtt/M8hy12zM7GrMkma2kf393B133HXgSLCQ= +api: eJzdVk1v2zgQ/SvEnFpAsNNgTzqt2xSt0XYbuE724BgGI40ltjLJkpR3vYL+ezGkaEv2Ou42tz3FIWfefL15VAOOFxbSBUy0trBMIEebGaGdUBJSmKEzArfIOKuEdUytGdeabbkRXDrL1sowzgqxRekvpjejB/kgJ6aw6YNkjNHpSuTshXXmZcrmJbLpDcG4Er2HU8zEIH1YjzNDVxsZoT4K6xYTre+D2QytVtLiMmWT89lRnEF+kIDSaDhVOM0hBXJdUZrRDxLQ3PANOjTUmwYk3yCkEGqBBAT1RnNXQgIGv9fCYA6pMzUmYLMSNxzSBtxOk5d1RsgCEnDCVXQwoURyaNsleYciLDlcX13Rn+EIvtRZhtau64rFiiGBTEmH0pE517oSma9n/NWST3OaBDeG7yhzhxsfSxvqghMhclfZTySdeNvQkKet/yCbNoGurRfwu6F2MaLPpTjRK8bSRn3F7FKs22DVxXrkFi8Ges0t7qN4j6dDePuAnym5FsXFCG+82T5GbYQfjNx9XnsODv3aZH8i66oC4lJEujOCEAxuhRWBD52pkA4LNL2os2hEiRrkDvMVd78a+U1AYBPnS9D5M/HuAkKHt1G5WAvMV4+7rvu/gvmpQ2Gvd92AlCm4FP/4DXoG8OceTIf8lzLfrOYZPgP2z4gRNCOJhuqRODwQoMVBofZLOti/o8Ua7Et/EQ4UH9K3R6rlYNmPJHlFxR8oFg69fjNShvsotG1LBf12fX0qe/e8Enno5VtjlPkvmjfUthwdFxX9OiN+lcoGtz8xpbhI7fIwkCixse6PKiToqWuLp3b/E1rLC7/3weS8qW8Gm9PtJTJQXSF0Z7fsC2dsb+ju+TJuQvv+LVg0eT+f354Ahtlu0JWKXtkCnX9XXQkpjLnWdtwEtrbj3sNr0Wzjq1ubClIondM2HY+zStX5iBcoHR9xMeZa+D2xmNVGuJ13mdxOP+DuPfIcDaSLZd/gC/EjTHxodngktfiAVHv33k9qVyrTrXR89svgRcUJuVbePS6CT45Nbqe0aWiC+sLV6NXoCo4/rQbGRG2eeWrH2P4akqMu7OuHBHDjeQ0O+eb3wwVlppV1Gy57eKfLd5RQc9iv/+lnXzdlh3+7sa64kOGd9dIQiOkFlDqT7oV0z81lAqWyjoyahuTxzlRtS8ffazREv2Vn/UhkWDSQC0u/c0jXvLL4RL9fzLq1fcnO5RkpKnc+qaqm/yCBb7g7fJl6OSoj+5vucpJlqF3P7UQ9aU32m/ru7Rza9gdYKx2V sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Retrieve a list of app variants for a given app ID. Args: -app_id (str): The ID of the app to retrieve variants for. + app_id (str): The ID of the app to retrieve variants for. Returns: -List[AppVariantResponse]: A list of app variants for the given app ID. + List[AppVariantResponse]: A list of app variants for the given app ID. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - - - - - - -
    - - uri - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - modified_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - organization_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/list-apps.api.mdx b/docs/docs/reference/api/list-apps.api.mdx index 3b86056d73..33be1d177c 100644 --- a/docs/docs/reference/api/list-apps.api.mdx +++ b/docs/docs/reference/api/list-apps.api.mdx @@ -5,390 +5,76 @@ description: "Retrieve a list of apps filtered by app_name." sidebar_label: "List Apps" hide_title: true hide_table_of_contents: true -api: eJztVk2P2zYQ/SvEnFpAsLeLnHSqmi4aI0mz2Di5eI3FWBpLTCiKIUfbuIb+ezCktJaz3STtuSfb5Hy8eW9m6CMw1gHyDRTOBdhmUFEovXasOws53BB7TfekUBkdWHV7hc4FtdeGyVOldgc5uLPY0uLW3trC1yG/tUqph3P105sYDs0msN/+nKt1QyredHvFDYml4m4MqnaHGOmGuPd2CvZKB94Uzm1zVfwglBvUgSb/F+v19dXnkiKSXK1iYk/qLwwKrSLvO698qlbbOsKap1lABp0jj+K/qiAHub2TK8jAoceWmLxQeQSBADlMaCADLWR+6skfIANPn3rtqYJ8jyZQBqFsqEXIj4D28GYfY/DBSYzAXtsahuzhxPbGwLDNgDUbOSicU39KmkFOPQXX2UBBwl1eXMjHuaZv+7KkEPa9UTejMWRQdpbJcgThnNFlrHT5IYjPcQZxhIHeoxSjmdqYy3nhh3XKLLXramY/FnIOe1XBkJ14+o51KjLZJ7v/Ttha7oYMelchU3WH/K3s75KVKhiGIZvMut0HKvlM0M1UeDZXf5bkHIYgmH5OWsRWV3Ech0GyPbu8fCziezS6ihKpK+ndf6PguVIVMWoj356Q0nTl2e0PUK4tU00ehu2JralhpnpfdQmgcNCG+lv0v6YQsI56Tbo/ZRrJGNX9jlJSV0o92s20OdGb2H26jN8Tff+UbDKR3fMoYNK2JW462SY1cdwj3EAOy3GtBPL3007pvYEcGmYX8uWyNF1fLbAmy7hAvUSn4evdXcRb9VxMY/8HKnuv+RDjFderl3R4QViRh3yznRu8lVZJ4p+bnabf6ZckNIyrrui56bz+Oyk67rsmeUmd2u676D71fsL2G5Yfycq0SJ0J9sXil8XFU8WMDqq4Xo0dj2Xs+AlHNJORO6PrgSjIgNrY7sCE7a+nC0HpusAt2lm80yx+Beh4Grf/H8n5Izk2CNNnXjqDOs53VOM4tnfckfG/RtMFlt/H4w4DvfNmGOQ4vZPSpJUOuDOzl/IjHc4f1ns0veSLDX6PXot97Ods6j8JlPyKUmqbeT3akxLlYSb/uFrDMHwBH3EdIg== +api: eJztVk2P2zYQ/SvEnFpAsLeLnnSqgC4aI2mz2Di9eI3FWBpLTCmSIUfbuIb+ezGUtJay3STtuSfbnK838x6HPgNjHSHfQeF9hH0GFcUyaM/aWcjhjjhoeiSFyujIyh0Veh/VURumQJU6nOTgwWJLq3t7b4tQx/zeKqWeztV3b1M6NLvIYf99rrYNqWRxR8UNiadiNyZVh1PKdEfcBTsle6Mj7wrv97kqvhHKHepIU/yr7fb25lNJCUmuNqlwIPUnRoVWUQguqDB0q22dYM3LrCAD5ymgxG8qyEGsD2KCDDwGbIkpyCjPIBAghwkNZKBlmB87CifIINDHTgeqID+iiZRBLBtqEfIzoD29PaYcfPKSI3LQtoY+ezqxnTHQ7zNgzUYOCu/Vb1Kml9NA0TsbKUq666sr+Vhy+q4rS4rx2Bl1NzpDBqWzTJYTCO+NLlOn6w9RYs4ziCMMDAGlGc3Uplo+yHxYD5Wld13N/MdGlrA3FfTZZU5f8R6aHPwHv/8+sK3Y+gw6XyFT9YD8pervBy9VMPR9Nrm5wwcqeUHobmo8m7M/K7KEIQimnxMXSeoqXce+l2o/Xl8/J/F3NLpKFKkb0e6/YXDJVEWM2si3F6g0rlxYv2Hk2jLVFKDfX6Y1CWbq940bAMoM2lh/afy/UoxYJ74m3l9yTcMY2f0KU9LXUHr0m3FzGe8w3Zfb+HkY3z8Vm1xk9zxLOHDbEjdOtklNnPYIN5DDelwrkcLjtFO6YCCHhtnHfL0ujeuqFdZkGVeo1+h1kniksguaTymkuN28ptMrwooC5Lv93OGdqGHgd+l2ueBevybpdNxmRceNC/qvgbRxpTVDlLSi7dGl8EneCZwqbjeQgbQxCPdq9cPqCj5/ZxbOImQsk5Cn2sksN2kxhaf+IQNqk4qBCdufLgZB5l3kFu0s3+WKfQbkfLlF/79987dvFAXTJ157gzpd28TGeVRtWn3pL0TjIsvv8/mAkd4H0/dyPDx/IsxKRzyY2QP4B52W7+Ujmk7qJVE/YtDinzScTZqTRENcUUpvs6hn60+yPF21X2620Pd/A86yDpM= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Retrieve a list of apps filtered by app_name. Args: -app_name (Optional[str]): The name of the app to filter by. + app_name (Optional[str]): The name of the app to filter by. Returns: -List[App]: A list of apps filtered by app_name. + List[App]: A list of apps filtered by app_name. Raises: -HTTPException: If there was an error retrieving the list of apps. + HTTPException: If there was an error retrieving the list of apps. +> + -
- -

- Query Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - -
    - - app_type - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/list-bases.api.mdx b/docs/docs/reference/api/list-bases.api.mdx index acab4a92c1..14d885bbc8 100644 --- a/docs/docs/reference/api/list-bases.api.mdx +++ b/docs/docs/reference/api/list-bases.api.mdx @@ -5,363 +5,78 @@ description: "Retrieve a list of bases filtered by app_id and base_name." sidebar_label: "List Bases" hide_title: true hide_table_of_contents: true -api: eJztVktv2zgQ/ivEnFJAsNOgJ53W3QSt0UeC1LsXxwhoaWyxpUiWHGXrNfTfF0NKlhyv291jgZ5sz+ObmW8e9B5IbgPkS3gtAwZYZVBiKLxypKyBHO6RvMInFFJoFUjYjVizpdgoTeixFOudkM49qlJIU0blo5E1Th7Mg5n5bcgfjBBCePzaYCBxcZ++vMjFokKhTGFrZba9fpKsO8SLQL4znF9zbKqQdYJsl4BY7zqXQ2RxcRuzl3oZyK8yYbufHVK06bDY6RhMXONGNpoCiz9akwq5R2q86Wt5rwItmbDbhlxDq1zMDuwMYmHXn7GgIDw6jwENcZ0cdeCOqUwBpArY479dLO5uvhUY887FPObqUfwlg5BGoPfWC58602MmKMjAOvSSHecl5MBpPUYdZOCklzUSeu74HpgIyCFxDRkobvjXBv0OMuB+KI8l5OQbzCAUFdYS8j3QzrFbIK/MFjIgRZoFM+fEvIS2zQ7Qh56cR99IHY7gpdndbmJ+x4EYtpOYRmtoV0NoJl185Dgtiz0GZw3XnO/h6vKSP47H+lNTFBjCptHivjOGDAprCA3FLJzTqog8Tj8H9tmfUiC9l1yNIqxjLOeZfVIpcqxeld/jLCbOpGUjrn5k3xWa9VZpzo5YXR6Cj4GfMZbGlGP30p6LOOEinYS25VCvrq5OWfxTalVGjsQNz+T/ofCYqhJJKs3fznCpbXGk/Q9TogzhFj20q4GqvmN9we9tSpBJqMP2e9R/wBDkFuEAdt40kiEWrP1Rm7iuFLqzG/VooDexe76M60TfvwXrTfimnACm3tZIleVjsUWKV4IqyGHaX42A/qk/GY3XkENF5EI+nRbaNuVEbtGQnEg1lU7B8wdkFrXidzaNOxuwaLyiXcSb3c3f4e4tyhI95MvV2OATz0rq/rHZsH9OvUPmoTs3s4Yq69XfqaXdyamSFxeqzMZG9/5ipdxey+ILGl4VrjOlfTl5Obk8V0znIGZ3827kZRFHvs8jmkH2jK4DUZAB1nHegVDWvw0KztLZQLU0I7zRNj7LaD8s3K+n+qd7qrsxJvxGU6elimcozsy+28J0x+P/ssoGYsF+z6I/vG5bFqcXlXepVEGu9ehNPTspsbF8gV6Ic1l8wd34r8GT1A0bxft6EigZjx/7wX7FP7xih7jgWb+QnHJynBXM38jr5OVglMOVenOzgLb9B82nqbk= +api: eJztVt9v2zYQ/leIe0oBwc6CPelpHhKsRrsmSL29OEZAS2eJHUWy5CmrZ+h/L46UbCme2+1xwJ5s36/v7rvjnQ9AsgqQr+FnGTDAJoMSQ+GVI2UN5PCI5BW+oJBCq0DC7sSWLcVOaUKPpdjuhXTuWZVCmjIqn41scPZknszCVyF/MkII4fFzi4HE1WP68iYXqxqFMoVtlKkG/SxZ9xGvAvnecHnL2FQj6wTZPgGx3fcuR2RxdR+zl3odyG8yYfuffaRo08dip2kwcYs72WoKLP5gTSrkEan1ZqjlvQq0ZsLuW3ItbXKxOLJzEgu7/YQFBeHReQxoiOtk1BN3TGUCkCrgEP/tavVw96XAmHculjFXj+JPGYQ0Ar23XvjUmSFmCgUZWIdesuOyhBw4reeogwyc9LJBQs8dPwATATkkriEDxQ3/3KLfQwbcD+WxhJx8ixmEosZGQn4A2jt2C+SVqSADUqRZsHBOLEvouuwY+tiTy9F3UodJeGn297uY3xSIw/YS02oN3eYEzaSLD4zTsdhjcNZwzfkBbq6v+WM61h/bosAQdq0Wj70xZFBYQ2goZuGcVkXkcf4psM/hnALpveRqFGETsZxn9kkl5Fi9Kr/FWUycSctGXH3Pvi80G6zSnE1YXR/Bx4FfMZbGlLEH6cBFnHCRVkLXMdSPNzfnLP4utSojR+KOZ/LfUDilqkSSSvO3C1xqW0y0/2BKlCGs0EO3OVE1dGwo+L1NCTIJTai+Rf2vGIKsEI7BLptGMsSKtd9rE9eVoHu7UY9O9CZ2L5dxm+j7O7DBhHfKWcDU2waptrwsKqS4JaiGHObD1gjoX4aV0XoNOdRELuTzeaFtW85khYbkTKq5dCo+y4BF6xXto8viYfkO929RlughX2/GBh95HFKDp2anJ+bUO+RS+42yaKm2Xv2VutZvlTp5cS3K7Gx0H5ZSTE4sHpaQAZeRJvd69sPsGl4fu4kxT7Is4iQP2FEN2SsWjvVDBtjEMQZC2fx0UnBmzgZqpBnFGz2yV5kcTu/o/wv8n7vA/egSfqG501LF7RJn5tA/rrSe49+t2gZiweHAot+87joWp0PJ76dUQW716FRenJTYWF4sb8SlLP7A/fjiv0jdslFcm2dAyXh8w0/2G/7hFTvER50Nj5BTTo6LgvkbeZ0dBI5yXD6/3K2g674CcIabKg== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Retrieve a list of bases filtered by app_id and base_name. Args: -request (Request): The incoming request. -app_id (str): The ID of the app to filter by. -base_name (Optional[str], optional): The name of the base to filter by. Defaults to None. + request (Request): The incoming request. + app_id (str): The ID of the app to filter by. + base_name (Optional[str], optional): The name of the base to filter by. Defaults to None. Returns: -List[BaseOutput]: A list of BaseOutput objects representing the filtered bases. + List[BaseOutput]: A list of BaseOutput objects representing the filtered bases. Raises: -HTTPException: If there was an error retrieving the bases. + HTTPException: If there was an error retrieving the bases. +> + -
- -

- Query Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/list-environments.api.mdx b/docs/docs/reference/api/list-environments.api.mdx index 03a799802d..6ae59d178c 100644 --- a/docs/docs/reference/api/list-environments.api.mdx +++ b/docs/docs/reference/api/list-environments.api.mdx @@ -5,569 +5,73 @@ description: "Retrieve a list of environments for a given app ID." sidebar_label: "List Environments" hide_title: true hide_table_of_contents: true -api: eJzdVk1v20YQ/SuLOSUAIblGTzxVrY1GSFobipoeZMFYkyNxY3J3sztUqxL878FwuaI+LMeBc+pJFHfmzczbeTNsgOTaQ7qAibUelgnk6DOnLCmjIYUZklO4QSFFqTwJsxKoN8oZXaEmL1bGCSnWaoNaSGvF9Gp0p+/0xK19eqeFEPz2XuXijSf3NhXzAsX0imGowM6DjHAxyDF0hzVDqp2OcB+Up8X1YHdTk61pmYrJUwkK8/AZM/IjSMBYdJLLmuaQAhvf78eDBKx0skJCx4Q0oGWFkEIoABJQTIiVVEACDr/UymEOKbkaE/BZgZWEtAHaWvby5JReQwKkqOQXE2Ynh7Zdsre3Rnv07HB5ccE/h7x/rLMMvV/VpZj1xpBAZjShJjaX1pYq6+oZf/bs05wmIZ2TW86csOpiWccskAqRQ4HnU/6Tz9skMvCC4hKOwIx/w/42WPU+OdrSbDG/50Ab6ZTUEUDq7c2qu41DqDbZvdF1WQKzGsGvejjBWX0KcMeRYpRIwavixBiRryfrcbhRXhn9owub9bh9hTHMkzGUJlyjezZIxGMw49ZSq/+6LntF3jd7MH2a/xj36K3M8BWwf0eMoKskGgbNH4h0EXo9GcS816fnG/Bcw7zgivduYi/lk8F1z2QM1Aeld0NOXO8Pp7blAn++vDwdFZ9kqfLA7bVzxn3PnDicBzmSVCU/nRkYpckOTl9wa7uWWw4XFMdSrPuDCQkyF5VfPzc4/kDv5bpTWTA5b9qRIeZ8+q3m4LpC6N5u78oGegO758u4CvQ9FSyavJvPb08Aw91WSIXhzbRG6nYRFZDCWFrrx01o23Z8tLA8uk3cVrUrIYWCyPp0PM5KU+cjuUZNciTVWFoFx7t90p2K39i0E5bHrHaKth3e5Hb6HrfvUOboIF0s9w0+cgOFljg0GzaPVe+RyemX6KSmwrh+BsRdWgQvrl7plenc40IJuf0qs0fUrCauM6R9MfppdHGumN5BTG6nvQ5kRsOu680gOaJrRxQkgFUnAiCU1S/DAWdpjadK6j28U6UeJdYMYvw/fUz110z4L41tKVWn3Y7Tpm/dBY8epiPdzdyD7l0mUBhPbNg0D9LjX65sW379pUbHPbhMoJusD9wRiwZy5fk5h3QlS4/PEP1m1ov7rTiXa+xTzU26kWXN/yCBR9wO33zd0CqiBJr+cJJlaGnP7WTGslZ2ev79eg5t+xUUaPEZ +api: eJzdVk2P2zYQ/SvEnBJAsLeLnnSqgV00RtLuwnHTg9dYcKWxxEQiGXLk1hX034MRRcsf602K7akny+LMm5nHeTNqgWThIV3BzFoP6wRy9JlTlpTRkMICySncopCiUp6E2QjUW+WMrlGTFxvjhBSF2qIW0loxv5k86Ac9c4VPH7QQgt8+qly88eTepmJZopjfMAyV2HuQES4GOYXusRZIjdMR7oPytLod7e4asg2tUzF7LkFhnj5jRn4CCRiLTnJZ8xxSYOPHw3iQgJVO1kjomJAWtKwRUggFQAKKCbGSSkjA4ddGOcwhJddgAj4rsZaQtkA7y16enNIFJECKKn4xY3Zy6Lo1e3trtEfPDtdXV/xzzPvHJsvQ+01TicVgDAlkRhNqYnNpbaWyvp7pZ88+7XkS0jm548wJ6z6WdcwCqRA5FHg55d/5vEsiAz9QXMIRmPHv2N8Hq8EnR1uZHeaPHGgrnZI6Aki9u9v0t3EM1SX7N7qpKmBWI/jNACc4q08B7jRSjBIpeFWcGCPy9Ww9DrfKK6P/68IWA+5QYQzzbAylCQt0LwaJeAxmXCG1+qfvslfkfXcAM6T5l3FfvJUZvgL2z4gRdJVEw6D5I5GuQq8no5gP+vQA8mywPHKyIzVBif0QEreHw6PrOIGfr6/PpfxJVioPtd86Z9y/0fGxXnMkqSp+uiDoymRHpz/A6r4l1iOBcWzEuj+YkCBzUfviJWH/ht7LoldBMLls2pMhlnz6vcvjukLowe7gykZ6A7uXy7gJ9D0XLJq8Wy7vzwDD3dZIpeHNUSD1u4JKSGEqrfXTNrRVNz1ZKB7dNm6TxlWQQklkfTqdZpVp8oksUJOcSDWVVvW97TFrnKJd7zK7n7/H3TuUOTpIV+tDg4/cI+HWj83G4W/Ve+T6hz02a6g0bpBhXGdl8OICld6Y3j3O9D45MbufQwJcRmjnq8lPkys4/U44Mub2lhmNK2Y4huSEhX39kADWfW8Doax/GQ84M2s81VIf4J0L8CShdtTY/+kbZrhawr9paiupekn2nLZDR654ojAd6X7UHTXlOoHSeGLDtn2SHv9wVdfx668NOu67dQL9znriLli1kCvPzzmkG1l5fIHoN4tBs2/FpVxjb2puzK2sGv4HCXzB3fip1c+iMrZ9OxzOsgwtHbidjU7Wx16mv94uoeu+Aamtvfc= sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Retrieve a list of environments for a given app ID. Args: -app_id (str): The ID of the app to retrieve environments for. + app_id (str): The ID of the app to retrieve environments for. Returns: -List[EnvironmentOutput]: A list of environment objects. + List[EnvironmentOutput]: A list of environment objects. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - -
    - - deployed_app_variant_id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deployed_variant_name - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deployed_app_variant_revision_id - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - revision - object - - required - - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - organization_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - workspace_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/list-evaluators.api.mdx b/docs/docs/reference/api/list-evaluators.api.mdx deleted file mode 100644 index db8f4d234a..0000000000 --- a/docs/docs/reference/api/list-evaluators.api.mdx +++ /dev/null @@ -1,1040 +0,0 @@ ---- -id: list-evaluators -title: "Query Evaluators" -description: "Query Evaluators" -sidebar_label: "Query Evaluators" -hide_title: true -hide_table_of_contents: true -api: eJy1V0tz2zYQ/iuaPTUztOV6euKpsq00btrGtZ32oPF4VsRKQgwSDB5OWA3/e2cBiiL1iuJxfLBlYHe/xbdPLcHh3EI6gfEzKgsPCeiSDDqpi2sBKShp3SM9o/LotLGQgKHPnqy70KKCdAmZLhwVjj9iWSqZBd3hJ6sLPrPZgnIMt0X1YQbpZAmuKglS0NNPlLnGojQk2I2cHAp0yJ446RQLjlfwf3sy1W3EhzppLRVeKah3aQyCyqDVqeua8WypC0uW3To/O+M/gmxmZMm+Qwp3PsvI2plXg9tGGJLjn1oaJtHJiJBpH5Uab2XhaE4G1u5eBok6gZZoFpeOcrttrsCcdvJpnZHF/CAvf7FunfRf+zJTVx0TdQKZIXQkHtEdMpjATJucZUCgoxMngz/7US6j2cEo0ONL8SNAPkazDYggRT8A5CqabUBWdE2rRymOxPFeiqPIuqgG16LL16uirNhqUVaEvSrKiq4WxSo/f2mu3rFuncDruRd9mqnQPA/1tpXCv9o8zZT+8jaobJuuk3Xr6xlEISQXGaqbXhs4godVo+mh5dP+yVRrRViEo91YkEmTeYXmp7deqd+tLk4+eFd694bf13svG2na1jFaaAxWB3ne0GXStxH3Kf+5IpSTdIvYb0XqKmpuBWrLhR1jp+NnfOMuGa6cGXrlIJ3sNNudi3GI7Bpxtp1Qcbr9cn6+PdD+QSVFGFeDsTEB/IXTTJBDqQ7MJ6Wz3u33JOrDft7+0NFBpja38848bct3HXdrcU7rIOwXDWQM7vn2WxHgd0XoRq4TjDW9kd39z7iK9B3Konf39zdbBmNs+0GNu824u5zl5Baa97Y5sckS3QJSGJaGniV9Ga4XuSEkYMk8k7EhNt4oSGHhXGnT4TBT2otTnFPh8BTlEEsJm+ijcDu4ZNFQdpYyb6Srgr3RzfV7qt4RCjIhvzsCd5xaMVn6Ym2csJTviWmLyw6MvFtoI/+LGZCAZAcWUYt54aS9Xe+l46+YlyoEvm3R0j5m3jqdQ+qMp4QPOutWe7bwORbx/35PZhxZzHRwswlVw8EFZk9UCEiA+Yz0nJ3+fHq2j7RGYTC6uW4qETO3Xu4aMUg2wtIGBBKgPJQhOML81/UFe1lq68IjWns7MmVjBWyId/TVDUuFMtRZQF82WTSBJougs6eyJS6EhbbcxmC5nKKlj0bVNR9/ZlwOfwLPaCROmbUJV/lilRlLeKIq7MChHZ2EWmRx5WMmbLQmbhtRY5RlVLqDsg+divhtfA8JTJuvLbkWrGKQn8O/UwD+7sPKIV/C2RIUFnPPzSSFaJJ//gc8UYWR -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Query Evaluators - - - - - -
- -

Body

-
-
-
    -
    - anyOf - - - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - metadata - object - - required - - -
    - -
    - - - property name* - FullJson-Input - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - evaluator - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/list-organizations.api.mdx b/docs/docs/reference/api/list-organizations.api.mdx index de65436e3a..8b2a7c2d04 100644 --- a/docs/docs/reference/api/list-organizations.api.mdx +++ b/docs/docs/reference/api/list-organizations.api.mdx @@ -5,184 +5,65 @@ description: "Returns a list of organizations associated with the user's session sidebar_label: "List Organizations" hide_title: true hide_table_of_contents: true -api: eJztVMFu2zAM/RWBl12EpNvRp2VbsQYdlqLNsEMaDKzMxGptyZXodlngfx+o2Emcrb3sOh9ih3ykyMdHbYFxHSFbwCys0dlfyNY7WGrIKZpg6/Q3g2viJrioUJU2svIr5Y/wUWGM3lhkytWz5UJxQaqJFN5EFSlG693o1t26Lk1265RSKdXi+Nxlpib/eADaSH3+i/n86vynodREpqYriQqkbFToFIXggwrEwdKTdeuUcnjoKvgqmXNkvMNII9DgawrJP80hA6n2xyAKNASKtXeRImRbeHd2Jq8hnzeNMRTjqinVdQcGDcY7JscCx7ourUkZx/dRYrYQTUEVypdlqlLyOkg5bHdH2Vx+eVMTZBA5WLcGDWy5FMM0h1aDw4peQ30Vf6vBPzsKrwFnCdCeKOVl/KcjWKs72BbQbWYryBanga3eW1xTltAuD6nmYm81PPvwEGs0Xfc9KaeJegOGgJujir4fwtsDyt/dk+E0xcfGBsplO2wOHXU9M8O+j4obLNLLh/djV19E77OBglp5NFTEhReRrUnqqZELyGB8qrZI4YlCTBw2oYQMCuY6ZuOxKX2Tj3BNjnGEdoy1hdPNniSv+ijQRHIk0wTLm5RvcjW9pM0FYS5iWCyPATcixx31Q9h+AljbS9r0zGUwabjwoedGg5UCil2UNGzdyqfwjqOutg9oHsjJBKTPXdlno7ejs5ea6QLU5GrabRWatFV9HQkG+oSuPVGggSq04mPC6v3BIVXWPnKF7ijfX0b4x1rsd/v/XXq4SzudMP3kcV2iTQuThrLt5L6AodyXGgofWRzbraT5Fsq2FfNjQ0FEu9TwhMHinUhosWx1rzDR8wNtZP5GGhE9YdnshHpy24rO9+v3+XwObfsb30Z/0Q== +api: eJztVE1v2zAM/SsCL7sISbajTwuwYg06LEWbYYc0GFibidXakivKbT3D/32gYidxtvWy63JoUvLx6/FRLQTcMSRrWPodWvMTg3EWNhoy4tSbKv6bwA2F2ltWqArDQbmtcid4VsjsUoOBMvViQq5CTqpm8u9YMTEbZyd39s72aZI7q5SKqdandTeJmv9jATRMQ/7L1er64jWlOESiFluJ8qQMK7SKvHdeeQre0LOxu5hyXHTrXRnNGQa8R6YJaHAV+ehfZJCAdPtjFAUaPHHlLBND0sKH2Uy+xnze1mlKzNu6UDc9GDSkzgayQeBYVYVJY8bpA0tMC5zmVKL8MoHKmLzy0k4w+1Imk7+hqQgS4OCN3YGGYEIhhkUGnQaLJb2F+ir+ToN7seTfAi4joDtTyt/xn05gne5hLaBtlltI1ueBnT5YbF0U0G2OqVZi7zS8OP/IFab99AMp54kGA3qPzUlH34/h3RHl7h8oDXGLT7XxlMl1mAx66gZmxnOfNDc6pL8XH9auvojelyMFdfLRUFLInYhsR9JPhSGHBKbnamPyz+Q5clj7AhLIQ6g4mU7TwtXZBHdkA07QTLEykUemtPYmNDFkfr24ouaSMJN9rzengFtR3J7dMexAMlbmipqBnATmdcidH8bXYETt+T5KZjJ262J4T8M8Nqfm1wvQIGPs72M2eT+ZwfkrNALLsWAaj2WoHd2gz1g4zA8aqEQjvkBYfjw6pLPKcSjRnuT7w2Z+U/vhZP8/kccnstdGoNcwrQo08Q7iUtpexWsYq3ijIXccxNG2kuabL7pOzE81eRHqRsMzeoP3Ipv1ptODqkTDj9TI/lMZRHSERb0X59kjKto+XNXnixV03S/QHnFC sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Returns a list of organizations associated with the user's session. Returns: -list[Organization]: A list of organizations associated with the user's session. + list[Organization]: A list of organizations associated with the user's session. Raises: -HTTPException: If there is an error retrieving the organizations from the database. + HTTPException: If there is an error retrieving the organizations from the database. + + + + + + + + + + + + + -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - - - - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/list-secrets.api.mdx b/docs/docs/reference/api/list-secrets.api.mdx index f9a8b93c12..e9ca7faa8d 100644 --- a/docs/docs/reference/api/list-secrets.api.mdx +++ b/docs/docs/reference/api/list-secrets.api.mdx @@ -5,617 +5,59 @@ description: "List Secrets" sidebar_label: "List Secrets" hide_title: true hide_table_of_contents: true -api: eJydVE1v2zAM/SsBz0Kc7ujTsnbYghZrsXS7BEGhykyiVpZUiQqWBf7vA2UncT5WYPPFhkU+Pr5HagsklxHKGfyUyRDMBTiPQZJ2dlJBCUZHeoqoAlIEAQGjdzZihHILH0YjflUYVdCeU6CEaVIKY1wkM/jeBYMA5SyhJQ6X3hutcoXiJXLOFqJaYS35SxPWGdwHJkK6LfWqbcVv2niEEiIFbZcgAG2qmb0Pbq0rDE+vuOFyKZKrn3Z/uS3SZDh1mnu5ZbxGQCUpl5V2c7+Acrav4J5fUFHu+C3pgBVXySwEXIQlaSsZqofu7ObxHhrxb3ACalehiX3c69zJEWrv9IbpNwJ0dbGJvUwLF2pJUEJKuurzssmYI8RJlmWFkgmd2WBlje9Veg/5G+ey5P1x+T+omx5E04gzkXdxX9s2GgFGL1BtlLnM/izxbhd+YmPH5FLNC8bm4dqLeTaDu/Voa+wAZQhy06Oyixrc6UiDabeJDT8nWsJRhIAaaeV4h5fIBL2kFZRQrHnRi/VVcdjqiGGNIWZJUjBQworIx7IolHGpGsolWpJDqQvpNZyWHefTwTWHZpsiqhQ0bTLe+GFyi5vOiXI27wdMee3byToO2wsuvb7NG91OHowTrVzQv/P1AQI0E+gEZkG0Xbic3qnXcfsk1StmT7jPlvZoeDUc/a2ZLmEwfph0t5dUdNiALgzEiVx7ofhqqqXmM0JZfzwcMEvvItXS9vBOrDvZkU4Mwl9UeCO15XnJlbedrTPItnKDV9nQFmkuYOUi8fl2+ywj/gimafj3W8LABs0FrGXQ8pnlms17uz/bAl+mJYyVQp+hpUmtKSc3OHu6n7Yvnx+haf4AofknIQ== +api: eJzNV01v20gM/SsGz0Kc7FGn9TZFN3C6DdbNXozAoCXammakmcxQRtRA/33BkeRISlabuIfWF0nz8cj3yOHQT8C49xCvYUWJI/ZwF4Gx5JCVKa5SiEErzxvfzkbgyFtTePIQP8Fv5+fySMknTlnZAjGsyiQh73elnv3dLoYIElMwFSzL0VqtkmBh/s3LnifwSUY5yptiygO4deIIq8bUvSpSeXJlCWLw7FSxhwioKHPx3zpzUCm5zT1VYq70bPJNNyq0WLGWrQ3TpeDVEaTIwSwW1ZcdxOv32jWWClSBYEZOmGJR+QS1vKZEVhU7hzKsyWaobSYfe2ceIIJceXaow34sOHPGqgQisOSspkfFVZhisyfOyG3Cl1h0pmRyAkS5KtSAHmORoktvWuod0aMUL6Wl6jWGHeCSKqjrqJs322+UcMiEh1I5SkUFgZjwYUXMqtj7y69f/h9K/O25OwEb4KL3RqxJDVH8exkCtqXUmeQeIvC4pxzvg7IHckyPz5L/UkH+EDi8PcSl08MkH4ojIrYjRak11D1Tt04L9oGcV81ZPQXln3Z7HXXpdgpKSMUI6JEd+iEIpqmSioL6psecXUnjdJsy8LFBfi1HX5d+kNkR5CYl7SfKmNflfuqwrWT+Z1HsH8Pg6IuM+yz8RpxbFHQOqx6Tz40UvbTcdORPCX0n+KxTKEgt1X6k0lH4MfbQ0SlbwfXZUqDfW62OKfCfhzWo1pu9lAuojkClU9JEsDMuR4YYylKlk+5fhWKQEb5aCgrM6dQg/CV75dLsX/inQV32IKaO258NjToCrXaUVImmqes6cYRM6Qb5VMc+NAizhRwjKG36g3i3DcIIb1ttpgP+Fsg/qlkT62fUH4ecjMY17TGprrtIdBfwEPWNZyZ0Xsc8fdGgdb3jdJXpVs2uledZ18TW8hulKQxWRJATZ0Ya3D2JgxY5gxjmByw1zw8X87blnUtbQE6uvyBpuEkhY7Y+ns8Tbcr0DPdUMJ6hmqNVQVZPSekUV2HL4uZqSVWbyPH6rr9gJX1vk7rDZUdR0aplaGmbgwuLkjPj1PfQP0MESri1IgppVexM2N4qtAjOzRY3V9C7xeH87OLsHMYaDRZLy44JPxeNdhqikQpH/tJl5ahkjgnz358nxDNrPOdY9PBGIRmVlVYApkeeW40qdA9tJ9OEaw0hXELsIsSpQ5J0yoxnWfL0tEVPt07XtQw/lOQkLncRHNAp3IpK67texVy3LTEskoRsQEddNrEY/XORUB4T6dPHr1DX/wLHrYz1 sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - List Secrets -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
  • -
    - Array [ -
    -
  • - - -
    - - data - object - - required - - -
    -
    - anyOf - - - - -
    - - - provider - object - - required - - -
    - -
    -
    -
    -
    - - - -
    - - - provider - object - - required - - -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - key - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    - -
    - - - models - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - provider_slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - model_keys - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - header - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/list-testsets.api.mdx b/docs/docs/reference/api/list-testsets.api.mdx deleted file mode 100644 index 78e47f32ba..0000000000 --- a/docs/docs/reference/api/list-testsets.api.mdx +++ /dev/null @@ -1,1124 +0,0 @@ ---- -id: list-testsets -title: "Query Testsets" -description: "Query Testsets" -sidebar_label: "Query Testsets" -hide_title: true -hide_table_of_contents: true -api: eJydlU1P20AQhv9KNGc3pqgnnxooKohWpZD2EkXVxB7sBdu77I4pruX/Xs2u4zik0Ko55MP7ztczM5sOGHMHyQqW5NgRO1hHoA1ZZKXriwwSKJXjH7w9jsDSQ0OOT3TWQtJBqmummuUrGlOq1FvGd07X8sylBVXoT+v2yy0kqw64NQQJ6M0dpTx4VJYyyaMixgwZJQ9WXIpwibm7DlGhj0b7uilL6Ce6z4PtbBT3fS/undG1IydZHB8dyUdGLrXKSKqQwE2TpuTcbVPOrgcxRP9embFCjFWIkOomGA1pqpopJwu7PE+9oo9goPo6nZHCID4kIEW+xjRktD5wNdYaOL07Pj5E8x1LlfnCZ2fWavv/XDJiVKV8U0yVOxSUOt07PUDi2Ko6nwLYsu3XOwRoLbYTbp90SFCAVy6fdGbwNx0g5zAnGJ29LPUwZks5/Rt+qSuEHnSTTuzwBrovl/Eh4PtTsK3kfLm8OnAYervf1K8N2Xa23O10RVxoWfacxKFBLiCB2Fh6VPQz3m5/DBE4so9kne9LY0tIoGA2LonjtNRNNsecasY5qhiNgueRF/50dipSv7uO0sYqbr2/xdXFJbXnhBlZSFbrqeBGxioMyr5s7BEadUmCrMZKfi8aLrRVv0L3I1CSQBGshIkM7PXuMjt7wsqUvunjJZR0IlT1rfZxBs5DESeY3lOdQQQCJNR3NH87P3qp6sFgtri6GNYIU79G24S9DKJnXEeiEAFVfoeACav3uwPJ0mjHFdYTfwdt3stq5Mb0xLEpUfkV8bG7YQRWMIwAjJeV+JEJLrRjEXTdBh19s2Xfy+MHiSm9i+ARrcKNEFvJehbbtnZwT62/Bv098sYvkcjLJrTx2Z0i+x4sFmlKhl/VrifD/PFsCRFshj+qSmdiYlGKkfcEQP7rxNiPlX/WQYl13sgtkEBwKa/fmrJ0fQ== -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Query Testsets - - - - - -
- -

Body

-
-
-
    -
    - anyOf - - - -
    - - - metadata - object - - required - - -
    - -
    - - - property name* - FullJson-Input - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/list-workflow-revisions.api.mdx b/docs/docs/reference/api/list-workflow-revisions.api.mdx deleted file mode 100644 index 967aecd1bc..0000000000 --- a/docs/docs/reference/api/list-workflow-revisions.api.mdx +++ /dev/null @@ -1,2062 +0,0 @@ ---- -id: list-workflow-revisions -title: "Query Workflow Revisions" -description: "Query Workflow Revisions" -sidebar_label: "Query Workflow Revisions" -hide_title: true -hide_table_of_contents: true -api: eJzNWE1z2zYQ/SucPbUziOR6euKpip00TprYtR334Hg0ELmUEIMEA4ByVQ3/ewdfNCVRlOzITU8ei9i3b98uFgssQdOpgvgW/hLyPuPiQcEdAVGipJqJ4iyFGDhTevzgv48lzpliolBAoKSS5qhRGoglFDRHiGFOJaOFHkvMgAArIIZvFcoFEJD4rWISU4gzyhUSUMkMcwrxEmixOM8sjF6UBkZpyYop1KT5pag4h/qOQIoqkaw0DCGG91fnnyK3OhJZJDEjEQ6mg2j5Be5x8QXiaE55hTUQ0ExzA3XjOEaXmEH9fEBDzkcddPlfh33pSb5E3DlqmlJNf0TwwfcTFPgY6O6SYRd2lxYZN9vqBwhhHT9BhbeW6C4JelFb8bMi4VWKYyqTGZtj+j0KTITgSItOCUIYZ85fNAr+avNVoipFoVAZ3OOjI/NnNbyrKklQqazi0aVfDAQSUWgstGVTlpwltgUOvypjs2xxLaVpkJo5D4monJFnyQqNU5QttU/siprAY++Ml8A05moTjlZ6JmRfURDIhMyphhiqiqW9Co0cmkkw1bgnqln6SrMce6FPDWBNIEel6LQXuw/mozevia+i58F8opbuaqKfB3XagqgJJBKpxnRM9UHlO3Gw0chWRlWmL+Hks4P1TlLk+AJOTh2sdxLkmizGLD1UGQexXi+is7St10G9BLUaL0Gwg3oJcjVe5ijVd5TrjTevCSheTZ8Lc2VsawKHC9RF547CLkgx+YqJbvXJMIOGQ2kd2jYbf2qvANI0ZWa7Un6x2kt36xC69Yq3fLL6S/ss6vYFCZNJxan86W3F+XslilfnlS4r/bOJbyVeA+J7/z5WVEq66NV5zdaIvulxe/ttjUEbwu7K1Kmz7EgUlZplNNEH3DgjD+m3TfCwH+Ng3M02XFkORzZcMPwWd/89TVwP0cV4I8Wb1mHEa5WDK6XNKdBMqilmtOIa4ttO9MfJ7dYPPHfbXapmqKprA/br8fHmDHZDOUvthBW9kVLI5w9gKWrKeM9IxUWy8vUpbeFuu3x/CEfQDkFq2hoBm3rpGHLcku1LrRjRtfm6KxEmLufar1upvyCvU3d7GKdOvr6aend9fbEB6HK7mtQ/zaAfhXqI2gWWo54J85wwRW2fDvQMYhiWZibGh+GEKhyGRwY1bCblIRBQKOfhjaGSHGKYaV2qeDhMuKjSAZ1ioemAsiEtGaxzGtmv0YlZareowqSSTC8s3uji7AMu3iFNUdriby24MgXnSmh1WZM9WrIPaMT0FyA3brN/XF3428/MWRm1WJEJax66kuP2mib3WJjrUjMLwNHgl8HRtmC8QTS6OPP7xjfCwMMuA7ImVyMUEMDcbhrQSPPfHj8YlqVQOqdFC68nr2sDtxdG4996WHLK7O6wLJY+57fgcw4ETNaBQJN3aN+RCJiCnglluhIsl2bxZ8nr2vzsrpQmgylTdMJbl8o1Rk1XedqLSVcc97jYeN+yFhCD7R7/OZe1V6fDkNnjNWUPRq33oMPQ2vW2sQen8C7TT8gZdTxmPJrd+TN9YrbxrTkkZqGFLL39KEmw1C2rjTPNoDRt8fc311DX/wJDY1ap -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Query Workflow Revisions - - - -
- -

Query Parameters

-
-
-
    - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - revisions - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/list-workflow-variants.api.mdx b/docs/docs/reference/api/list-workflow-variants.api.mdx deleted file mode 100644 index 4470841c06..0000000000 --- a/docs/docs/reference/api/list-workflow-variants.api.mdx +++ /dev/null @@ -1,1092 +0,0 @@ ---- -id: list-workflow-variants -title: "Query Workflow Variants" -description: "Query Workflow Variants" -sidebar_label: "Query Workflow Variants" -hide_title: true -hide_table_of_contents: true -api: eJzVWNty2zYQ/RXOPrUzjOR6+sSnKnbSKGljN3bSB0ejgcClhBgkGFzsqhr+ewc3mrrLjjyePmlGwJ49e7DYxXIBmkwVZDfwt5C3BRf3CkYpiBol0UxUwxwy4Ezp8X1YH98RyUilFaRQE0lK1CgtwgIqUiJk0O6UWEAKrIIMvhuUc0hB4nfDJOaQFYQrTEHRGZYEsgWQan5ROBw9ry2O0pJVU2jS9p/KcA7NKIUcFZWstgwhg/dXFx8TvzsRRSKxQIkVxTTB3rSXLL7CLc6/QpbcEW6wgRQ009wCxqCTT1hA86O4lmnQIIj0P5Dgi2f6bAqUqElONHkJGaLvw1X4M7LdJ8U+6A1KFNxetReQwTk+XIO3juc+AXaCdqJnFeUmxzGRdMbuMP8RASZCcCTVRgViFEPvLxlEf41dlahqUSlUFvf05MT+LId3ZShFpQrDk09hM6RARaWx0o5NXXNGXVXsf1PWZtHhWktbMzXzHqgw3iiwZJXGKcqO2GduR5NCW06zBTCNpVpH80o+LiGin4/WdvUsnwZ13oFoUqASicZ8TPQuwBQKIUu7B3Ki8ZVmjs92L2ceNhk4dUydP4eTzx42OMmR4zM4OfewwUmUazIfs/xAP8aw/CCxXs+TYd7V66heolqtlyjYUb1EuVovipvpU3P1yto2KRyPnufka/gmSDH5hlRveFvEcroK3aTQ9sYlQJLnzF4ywi+XysABOsQ6s+StnCz/062im30BZZIaTuRPbw3n75WoXl0YXRv9s41vKV4LEsrWIVZESjLfqfOKrRV93eM24277JlKzglB9xBQdBMiQoNHD4/IhgmxKibVg181Dl+7o4jVd6+P2qZFjQQzXkN1sxH7ovTehZY22OlRtV2wai/Xr6el6E/1COMtdi0zeSCnk0ztojpowvqMpckGXVh9zO0bbxftDeIJW31JNOz28zZeHZFOKTPHhJLZvdWIk13Z13znYuLzrsG/UPdkor1d3exjnXr5dCfXu+vpyDdCf7fKh/mVfakk7KnXSq0Q9E3ZCnKJ246CeQQb9WuIdw/v+hCjsx2lQ9eNLpw8pKJR3cWw0kkMGM61rlfX7lAuT98gUK016hPVJzWCV0cCtJmd2q7ugCqmRTM8d3uBy+AHn75DkKF3mdzZc2XTzCbS8rT07UrMPaKUM79eB0TMh2b8+K8LjdeatrFasKoQzjzXCc3tN6C1W9rVr4/S0T3q/9E62BRMMksHlMNyaUFkiD7cN0hW5WqEgBSzdlQGNpPztYcGyrIXSJak6eNtPdeWpGHTR+I/u15wwdzUciUU48RsIJw4p2DOHtP0GYPE6HwxsMs+EsgUJFgu797PkTWP/9vOAPb+cKTLhnYlghVBbUZ4y9W4K5hbn658tnAlk4ArIC1Fa/opwHEYHzMT7CXWG+uOw2jei7qcUp+vdfLzNhpn0wWwUMnZir/ONbRWzWEoWwX5AKda6Y7XW2SxKWx1/f3MNTfMfDcGeBg== -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Query Workflow Variants - - - -
- -

Query Parameters

-
-
-
    - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - variants - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/list-workflows.api.mdx b/docs/docs/reference/api/list-workflows.api.mdx deleted file mode 100644 index a54fd1239f..0000000000 --- a/docs/docs/reference/api/list-workflows.api.mdx +++ /dev/null @@ -1,668 +0,0 @@ ---- -id: list-workflows -title: "Query Workflows" -description: "Query Workflows" -sidebar_label: "Query Workflows" -hide_title: true -hide_table_of_contents: true -api: eJzFV9ty2zYQ/RXOPjUziOR6+sSnKnYuTtrYjZ32wdF4IGIpIQYJBhc7qob/3lmApKirZdeZPGlE7J49exbYBRbg+NRCeg3/aHObK31vYcxAV2i4k7o8E5CCktbd3HfrDCpueIEODXkuoOQFQgqtxY3BHBjIElL45tHMgYHBb14aFJDmXFlkYLMZFhzSBfByfp4HHDevCMc6I8sp1Kz7UnqloB4zEGgzIytiBim8vzz/mETrROeJwZwlOJgOksUXuMX5F0iTO6481sDASacIqk0z+YQ51E9HJHbreeeKtPwJmYfAj8j9TSD6UPZ7UbflX6Djgjv+MyRoYz9ChT9bug8J8RB2TwtZZsoLvOEmm8k7FP9HionWCnm5VYs2mbMYLxm18WpaNWgrXVq0hHt8dEQ/qxle+ixDa3Ovkk+NMTDIdOmwdIFNVSmZhR4w/GrJZ9HjWhnqEE7GCJn20alhKUuHUzQ9zU+CRc1g2UXSBUiHhd2Ei1I+bm+0gT6S73o9nwZ12oOoGWQGuUNxw90+QAa5NgXZgOAOXzoZ+OyOchJhk1GQx1fiRwT5HGGbIAIV/oAgpxG2CdLKNZnfSHFgHO+lOEisV/PkTPT1etYorVpdlFawZ43SytVFscpPn7pXL8m3ZvB89CKnONG2QerJV8zclrbazpZ16JpBNx9WALkQkg4ZVxcrbeAAHdpGsxKtmKx+6bfR7bEgkybziptf3nil3ltdvjz3rvLuBeW3ki+BNG3rEC9uDJ/v1XnNl0TfjLjLeTnBNtw2CzMyTuY864eI9DZN6RIjMOdeOUivx9vQl4Psuun/4y043WypawL57fh4cxT9zZUUYdAkr43R5ulzSKDjUu2ZLEpnK6uP2WLj3bL9oSNBUraw094k7A7esmLW8ikua7DbNIiRXNHqQwWgvGLoxq5Xi6W8Ud3daZxG+fbtpXdXVxcbgLG2q0X9i+47SX8/Fehmml4TU3ThCeFmkMKwMngn8X444RaH3e1gCAwsmrv2heGNghRmzlU2HQ4zpb0Y8CmWjg+4HPJKwjqBUVhNTsg0nBmLmTfSzQPe6OLsA87fIRdowg7vGVzS7or7ZdWsKxWv5Ack5ZpL38i7mTby37gJmhvfLHqRNLLMdXBvVGy4veLZLZZ0RaQ8I+2jwa+Do13JNA7J6OKsOSR0nLsbU2MGbE2uTihggEU4IeCQF78vF4hlpa0reNnD2yzi2rWq0cPhdzesFJfhBITgi6bA19AUGBhQiaF/BWRAG3WmLXUZWCzI4LNRdU2f442ZiiWk5RPVuzOvsei6xeMehNu43+J88yEbXCCF0BaeTOahN9oBdNr35fMQOuDFdACn3ptvP63ot+V9tHQb0x8jyS8cStYeItoF0X+UZVi5ntfGfCCUrte8fX0Fdf0fACLBAw== -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Query Workflows - - - -
- -

Query Parameters

-
-
-
    - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - workflows - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/log-evaluator-revisions.api.mdx b/docs/docs/reference/api/log-evaluator-revisions.api.mdx new file mode 100644 index 0000000000..b4ff537bc8 --- /dev/null +++ b/docs/docs/reference/api/log-evaluator-revisions.api.mdx @@ -0,0 +1,71 @@ +--- +id: log-evaluator-revisions +title: "Log Evaluator Revisions" +description: "Log Evaluator Revisions" +sidebar_label: "Log Evaluator Revisions" +hide_title: true +hide_table_of_contents: true +api: eJztWd9v2zYQ/leMe9oAOU7TNt38tDRp0axpGyRp92AYwVmibLaUqJJUWs/Q/z4cKcmSbKu2agMZtjwkjsT7zvfdL/K4AINTDcMRvHpAkaKRSsPYA5kwhYbL+DKAIQg5vWfF+3vFHrjmMtbggWJfU6bNSxnMYbgAX8aGxYY+YpII7luMwWctY3qm/RmLkD4lijQYzjT9V2K3vCrV3vPA4sfzDyEMRwsw84TBELRRPJ6CB6FUERoYQpryADKvXBGnQkA29sBwI+hBaXPvJgfvXZIEfJPqSyjkt0Mo/SvHbupcWvqAimNsDmLoJ4fdtHP/Kksz6xqXVh7CuoZVB7DGaThAWDSiYf8OqfsBleEh+vtUcJZD5hoClpjZWmweGzZlqhXswkpnmVeskJPPzDewxusFc/pKTtdKUJHiigVU5palZl0AVaFuXGmDLMuqEEalzD7QiYy1K1Inx8f0J2DaVzyhkgdDuE19n2kdpqJ3ky8Gr2uF9GXqhBoULm04tyuI9hBTYWB4XMu2ZdEeLoAbFum2Wvt/BXrsFejfXx8wNTPX8fcC7tCo7qBhW6LS0r7hEWsvRQSYeRAxrXHait0G8y4XzzwIhd10VXHqmcj1vZ9qI6O1yiZSCoZxq7ZL3Tt3CJlHcLUtVlfEMsxz0FkaYfwzgG8swFZV/rXlbBXPOsZg/VtgEHCqqyiua7xu4be1zSma1J9UzVuvC3yu/FSg+uV1KsSfWsb9D6lJUvMrNI0lkLwibyOFSuG8ldiGLKzQ2x6mBq3ESog+JlLfyyuuzQ9p3WTkivhuHN25UIQYo87l4D3aslPfNHSDuqhAZB74iqFhwT2avZbBcwfbO7NkpUlwCCUfHWyuJGCCHUDJhYPNlRR0TeZ77HUFWS/nebcr+NqrloKtUktB2F61FHSVWh6Y0j8Rrp9y8cwDLdJpV5hbkqU+tDdDcw6x2U3qvXl/1qeKd0X5qLhDEN0RBCHMGAZM7VzpD0XJ4wuIlr3JDQuZYrFfqzbFFx3v1FHe5G4gCuwRcFuPPKKe/Cg3Ojv44DYnnnaUmCQ83nYD1KR4l91Wocg6npp45+h30pkHCSqMmOmQ1f/xWNksfL2klBzF1AP32Tbs0rRopxjMoTM7KQr5NHVj+EPoOq8p2GnUdoH2kLByFtsFo+IB5722ubyuTrZGuynS5fgts7O8Zycnq9O6Tyh4YJnovVJKqu6juoAZ5KJlzCakX3u7S/6NN5N2JX0sjgCRnq4WprWjCLdk81JLRu+O3v5otEp2OdX5utpwqaDXsbvZjAtHX5uH39zdXa8AOt/WnXolp731sRQxM5N0tZVITdAJ0qwaBgnNSdm3QTku0YNycjoQkkyj7Le1dbRw+y+YGZPo4WDgC5kGRzhlscEj5ANMuE04zfxUcTO3ImfXl2/Z3PV7G8qVBbYDuSCpLyv9gwl/y4gud/TMx178b+d5DziZ7fZ0lkIK1pvlHd2r7xglgq3cuW24ZYOnIf72PDx91n/+4smL/rPnpyf9ydPQ75/4v58+DU9PMcRT2HRdtq30+rHzzrq7CNdnwTur3EWoEzVdbKpNbrcVyi9rjilmeBxKG3LFaNUGdO/s+hIqZz84PnpydAzNlKstpgqKvq2gRbza1+A1MqfMGfJJZMsnGIbRH8sX9M0oWfOJY463OcMbc5U8fwz7bgaJQB5Xjk8u+UeQJ381LnTFc/SZSsDYgxlVjeEIFosJavZRiSyjx19TpijLx7nnJsTfaFwes2wB+MLmrvlSc+nbykrLReryu9FoqAk4iTPfZ4lpXTuuFLbrD7d34MEkv5mPZEAyCsk8+j0EoGt+U9wJ2WcLEBhPUzvlBodJP/8AqWvzVA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Log Evaluator Revisions + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/log-query-revisions.api.mdx b/docs/docs/reference/api/log-query-revisions.api.mdx new file mode 100644 index 0000000000..48f890fc3b --- /dev/null +++ b/docs/docs/reference/api/log-query-revisions.api.mdx @@ -0,0 +1,71 @@ +--- +id: log-query-revisions +title: "Log Query Revisions" +description: "Log Query Revisions" +sidebar_label: "Log Query Revisions" +hide_title: true +hide_table_of_contents: true +api: eJztWV9T2zgQ/yqZfbrOGEJpS+/ydLTQKXcUOKDcA5NhFHuTqJUlI8lALuPvfrOSbezYcUIuvXs5HoKjaH/7R7ur3fUcLJsYGNzCHylqjgaGAagENbNcyZMIBiDU5O4+RT270/jADVfSQAAa71M09oOKZjCYQ6ikRWnpkSWJ4KGj738zStKaCacYM3pKNKFb4jSYwyLuig13PHIc5Ox8DIPbOdhZgjAAYzWXEwhgrHTMLAwgTXkEWVDukKkQkA0DsNwKWiB1Z73LHLh3QrvhB/BZ4OD1eWCaM2m3rs6Nx815bZ9LHd/rsm0dPDbTlo9ZuE3hD3PInEOEiZ22YnNpcYK6E+zIUWdZUOxQo28YWljQpjh9c6omrbspjLjGiCJwMRgWTVMFu/ThB1mWVUGsTtEtmERJ40Nof2+P/kVoQs0TCksYwFUahmjMOBW9y3wzBJtGcahST7RgwGf5P7odZPQxS4WFwV7pP7Xg5xbjpVng/6j576OGpXaq9NbAPRpFI7O4Jipt3bE8xu4AJcAsgBiNYZNO7C6YLzl5FsBYuJuyisOiiFOEMHFR89cGp5FSApmssiqYDxtZoUueT04Ip5dlGwrTVLs148Wj+kpVh3ZeEHIdpoLpnz6lQvxmlNw5T22S2lfQpmMe7OtQMa3ZrNswdVp4kVW/kDGJYvMT/heMeqZOubErzbpMyQb5y2x0nTueZPHG0XTGXNTW76LNoI4qEFkAoUZmMbpjdqtZ5KOH7R06Y6VJ9COYfPWwOZMIBf4AJkceNmdSmGu0zZuoMNaH4joq7LVVLoW1Si6FwbbKpTBXyeUBtfkH7nqTk2cBGJFONoW5ItosgO0pmtuQLd4m9QLskctIPRJ2xyaJj1SSbtNrzzxkFoAS0bbBzz0k5TR8Whd6pUHPCCsLQPCYt4Ou01+cOmrSW0e4ot5CmcbUPzATooz8GmXY/Muw0wYOnjxKWtQPTGws8UkBQP3HsmqueQE2G2ZXuHU0Vn+WvtiEoTKNC4t6hav6CYcvZMueBJiMnm/Upnndr4raGqlIIOlXpNLVVu1UTXjIxHnBIXNtlb/Z6z3OMuHGHEVUaadKScpax23IAviOs00zye84892OSNe9zl9c0BSaZi11XHuxQ/3rS4qSGyd+FtQOdHWkcJpgcXNH51i9wFScMM2NkpXTW46C93T67nNC/iCse0L3SJ8j+yir+GdpjJqHa4Eby7Q1j9xO3WJUPFKLzrgbwcXMhlOkJ8G/Y5XRlUNbiw+X3p/veE1UKhXXop8yEmDKGsY84uF6CPjEjTW5FPmXCs4xraAMsQ2smc+KTZVZAx23c5EyBJdFXsgM3hmUhlv+0B4WLZ1csxBiBntXJUxFlDEThgY0+ERdujvAjbkcE0bvi8NosOjIn9f4ZM9zWxB+3QRMtF8B60h0KMSLJPFO9izJ8kPN96wYoPnEWQvoPPG6LFy2mcUN8QqGi6mphdZUdboddilUIrddTevOCo+Ya0Y3poflOtWH3i9QrD5/LCeGmRs/vt3fbw4Yb5jgkRsf9o61dgG54XQxQsu46JgOChUuuVdXX2UdDnCqvIBu2mImXRdyZUrktyzf6ozRu6ZfV7kz6eVZ5/vqF19uXm/d5WocefN1ne7n6+uLBqA/2/qhnqpJr+lDMdqpojdFiTIEmzAarEM/odEuPvbv/Zulfjnp7QtFOhnU1FW5k0q1gAFMrU3MoN8PhUqjXTZBadku432WcJcQDIap5nbmSA4vTn7H2WdkrkC+HVY3XJEvee+obysPhiWcSqBinpGPIvlf/sipHiZ5PBUZgrz08vmd1/ETixOBS95htby1gjdj9vO78cHbnXfvX7/fefvuYH9n9GYc7uyHvxy8GR8csDE7gIVXUOsSNefj61JuQvM8wV6XojaXXpcof0Gzl7nuZKzc4RU3jXON3uHFCVRac9jbfb27B4teW9vs6qfQJaHi5N3PECz4YOl9VKrELgOBRRb/+vwDSUY+HzNZwWsPkoWRV+6FFp9sPxGMuyzjBJjn8XMLefzkFudoKu7hqj41oZQwpagb3MJ8PmIGv2qRZbTsToniIj/kERnulvLdtAiZuW8g6KqjxLzjslLZEzSTNCVQT3EYhpjYzr3DSmK4OL+6pno4f1kcq4hoNCPd6HMAUKvP3NocBJOT1A3vwWPS399UmGkU +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Log Query Revisions + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/log-testset-revisions.api.mdx b/docs/docs/reference/api/log-testset-revisions.api.mdx new file mode 100644 index 0000000000..96473caed6 --- /dev/null +++ b/docs/docs/reference/api/log-testset-revisions.api.mdx @@ -0,0 +1,71 @@ +--- +id: log-testset-revisions +title: "Log Testset Revisions" +description: "Log Testset Revisions" +sidebar_label: "Log Testset Revisions" +hide_title: true +hide_table_of_contents: true +api: eJztWd9v2zYQ/leMe9oAOXbzq5ueljYtkjVrgsTNi2EEZ4mS2VGiSlJZPUP/+3Ck5NiS7DiuPQxD+tC60t13vI93x9NxBgZjDf4QBkwbzYyGkQcyYwoNl+llCD4IGT8Y9/ZBsUeuuUw1eKDYt5xp806GU/BnEMjUsNTQT8wywQOL0PuqZUrPdDBhCdKvTBG+4UzT/0rklS/mJh94aLHT6XUE/nAGZpox8EEbxdMYPIikStCAD3nOQyi8uUSaCwHFyAPDjaAHpa+d2xK6c0nysAdLNQuVT4+oOKZmDy7dO+TS3u7tLOOjMjzCYJcGzkrI0kLIMjNpxeapYTFTa8HOrXZBzDsJOf7KAgMN3q5k3CpGMc4VCylDqkhtsn4l41uXDFAUxaKWUTmzD3QmU+0C+7Dfp39CpgPFM0oS8OEuDwKmdZSLzm0pDN62ORXI3CnVqHpa+HsrQfRGmAsDfn8hOp+S3J8BNyzRq7Pz/xLJlT+79+PfyhTMzUSqnYE7NMpANGxDVBLtGp6w9UlJgIUHCdMa47XY62D+KNULDyJhD7FFnOVonaC2R1iAZQ42DI6lFAzTtRYvUHcGc5TCc7AKgx/FdBAblKmP1tEmnmXT4PIqMAw5lQsUN0tkbEB2a21NxstPFt1rtwUBV0EuUP30MRfidy3T7nVustz8DHVXCaQsNZtooVI4XUtsTRca5K6PLYNWoxFX/yVSP8srrs2ztK5ysqH+Mo4GLhQhxWTrHP6MtlYsn4XbQZ0vQBQeBIqhYeEDmp3WrvcOtnNmycqzcB9GvjjY0kjIBNuDkXMHWxqp6BpPd3hAVWS9m5ZHVMXXTq1UbM2tVITt1EpF19zKI1P6B8L1vlQvPNAij7eFuSPdwoPdOVpyiPXTpNn+0TH4wMNa+Zv3i88tYfNSXp25nctQV71ay0n+TKe6r85ut9h3c9zXCvZawfZawXZdM1q68I27pZZWuap+oxd1JVWH/Nq6bdC6vX4z7OGboXl0vpK6NannROZzH8bUC2zVUGz0zV2NcN1Smp/emyM01rh6Iq0XZ3PDlxjR8/FhYWeRx4eHzWnjPQoe2lli54NSUm0/agyZQS7WDAqFDJbeviToR6sJu5JugbaM6bit4WwZFDmR1aKWjM6A3j43DSa/nOlSbmm0WNHr2F3txrmjb93+XgwGNw1At7fLm3ol405bHCXMTCRd5GRSE3CGNFGHXkZzXvZXr2yQdW8+9+0JSW5ppugrx25WrgT4MDEm036vFwiZhwcYs9TgAfIeZtwmmGZBrriZWpWzm8tPbHrBMGTKBvGCwB2FkwuQZbH53mDGPzGiys0XyoEk/9vtugecXJ44LeKCAvX26Ubqw3dMMsFqN0ytd0pwFOEvJ9Hpcffk7Zu33eOT08Pu+CgKuofBr6dH0ekpRngKteuhTZXa5uSb6m6jszRn3lSpvGTpE488jaSlqhoE203unN1cwsJHL/QP3hz0oR6CS8JUUTCwvFd7aF+DV4umeRyBByyx5QQMw+S3pxe0MgrfBNMFvFURXxsnlRFl2HfTywRyWzTsEmZlMgyhTIanHdMLO06/KSVGHkwoh/whzGZj1OyLEkVBj7/lTFHUj8pdGxN3Q6pfkyr+Z/Anm9qrF1tou7bKkLjIXbzXii4VRKdxFgQsM2tlRwtpfnN9NwAPxuW9bCJD0lFIztHfPgBd8Zrqhsc+m4HANM7tPB4cJv35B+MYQPk= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Log Testset Revisions + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/log-workflow-revisions.api.mdx b/docs/docs/reference/api/log-workflow-revisions.api.mdx index 2d29bca338..600c4f676d 100644 --- a/docs/docs/reference/api/log-workflow-revisions.api.mdx +++ b/docs/docs/reference/api/log-workflow-revisions.api.mdx @@ -5,2214 +5,67 @@ description: "Log Workflow Revisions" sidebar_label: "Log Workflow Revisions" hide_title: true hide_table_of_contents: true -api: eJy1WFFv2zYQ/ivGPW2AHKdp6256mpu0aNZuCZK0ezAC4yydbLaUqJJUUs/Qfx+OpGzZkd00c/OQIBTvu+N3H49HLsHizEA8hn+U/pJJdW/gNgJVkkYrVHGeQgxSzSb34fNE050wQhUGIihRY06WNCMsocCcIIaUSjuHCEQBMXytSC8gAk1fK6EphThDaSgCk8wpR4iXgMXiInMAdlEygCgszUhDHa2GikpKqG8jsMJKHjhzTmoeYmgy9rVKFwyXqMJSYR1yWUqRuIUMPhtV8Njab6l5mVaQ4f/uUAss7ERT1hmUmn6mxMI6givKSFORUEecNUfleToQYB3ttOOFT3bkqK5rF4spVWH8Qk+Oj/lPSibRomRuIIbrKknImKySvaswGaKnUpmoyhtt5XMd8qmb0WLJ2QlLuXkIh5WdK93JobFaFDOIIFM6RwsxVJVI9wpn5NHqCFK09EhUntq3Iu9KTUuTDFhHkJMxONuLvQ/mr2BeR2FHPQ3mb3Thbib6aVBnLYg6gkQTWkonaA9K36mH7Y2cMqoy/RlOPnrY4CQlST/ByZmHDU4auqaLiUgPJeOGrNeL3nna5uugXhq2Vl4awg7qpaFr5eWOtPkfcv0UzOsIjKxmT4W5Zts6gsMt1K8uk+7IfcyR0BzKb51J5zmTk8UU7dZJimkqeLuivNyspd/nofP0zaebI1OlJGHhhrp9QSJ0UknUv7ytpPzTqKJ/Udmysr/C9lHGIKH2P8YKtcbFXp63bOHB4bm//AZC/RHR3aLszNSZt+xIFGorMkzsATfOKECGbdN4eFzEjXF3tE07dLhgP3nEZov7/36M3ADxg/1RY30Veo2WHLyU2i3YurlNKcNKWojHnejrhnYcGp7b3S7NqqnyDdmLk5OHPdgnlCJ1HVbvjdZKP70BS8mikHtaKqmSja8/UhZud9P3QfkAXRNkZq0WcKWXjibHT9k91ZHRu+Gv30sEr8u7DvM29NfQ69ndvYwzT98+Tb27ubl8AOhzu5nUD2rWa9TQa8srJztXfLsqlbHuLmXnEMOg5JaY7gdTNDRoOnozWDXKA6l4dYb0XXPvqrSEGObWliYeDBKpqvQIZ1RYPEIxwFLAdlQj97V3ylPdJjWUVFrYhcMbXZ6/p8U7wpS0k39rwjVLzotoc9oqf1iK98R0huugb7jFv14Z4Vo491bMF4v5an2Fe/MN81JSx5WMSxE8z/C3l9nwRf/lq2ev+i9eDk/60+dZ0j9Jfh8+z4ZDzHAIzbm/1tKqo1gPobVaTCvrFlN33Nh+rj9uLIpMOeKaiuyz8hqTL1SkGyjHR8+OjnelMRj0RpfnoWaEQ6DJgJsG0ZZQVhKBCCh3BQMsYf7H+gNHyfrMsWjh7dT01lUjCMLSNzsoJQpXF1wMyyD3MQS5QwQseIhgJXlo3w4jfoTg3Tzn3RKPYbnk+R+1rGse9s8MLN5UGJzK1kPDF1q0HiXuUFYclFO9E9iUuR9zVZs3il8Go1Nffvuu9qxtH5RiLpPeYpQkVNq9c29be//y4vqGlx6eLnKVso1G5oN/xwD8GGObG7IbW4LEYla5GyZ4TP75D6h2D5I= +api: eJztWW1P20gQ/ivRfLqTHEKhpXf5dBRalSvXIqDchyhCE3udbLv2uvsCzUX+76fZtY2dFzdJEwnpjg8Q7JlnMs+87O7sDAyONfQH8LdUX2MhHzUMA5AZU2i4TC8i6IOQ4/vH4vW9Yg9cc5lqCECxb5Zp80ZGU+jPIJSpYamhj5hlgocOovdFy5Se6XDCEqRPmSIDhjNN/5XQq99URu955NDT6acY+oMZmGnGoA/aKJ6OIYBYqgQN9MFaHkEeVBKpFQLyYQCGG0EPSn871wV254IUYA+m5ixUXj2g4piafTh156ELi7s31MSvPNqDJ94CKsNjDHfpwmkBWViIWGYmS7F5atiYqVawc6ed50EpIUdfWGhg0aEyGfSlHC9VoKLiikVUlFVpLGGmDnTtCxHyPK8DGGWZe6AzmWpfU0eHh/QnYjpUPKMChT7c2DBkWsdWdK4LYQi2redQWq80x9+TC2dOgjiP0QoD/cN6Ej11mP4MuGGJbukM/9fQM6ohtGYi1c7APRrVJhq2JiqJdg1PWHu5EmAeQMK0xnErdhvMX4V6HkAs3Dpax2lmLNf3odVGJkuNjaQUDNNWaxe6c+YR8oDg2AMKi2YF4Wsivq1APOjEJpj+DOB7B7BOJ3znKFuEc3Ex2PwSGEWcug+Kqwata4Rtaf9ORs0nde+W24KQq9AKVL+8s0L8qWXa/WRNZs2vMO8rgRSNax0tVAqnrbzO6cICu+1ZatBpLGTocyL1o7zk2vyQ1lVOLqhvxtGtT0VIMdm6G3xE13WaS+t2UOc1iDyAUDE0LLpHs9MueOZhO6eOLJtF+zDy2cMWRiIm2B6MnHvYwkhJ12i6w6WuJOvNtFjsSr52aqVkq7JSErZTKyVdlZUHpvRPpOtdoZ4HoIUdbwtzQ7q0DO3M0YJDnF9Nmkvz7ry3im+L8llxjyC2RxCEMGEYMbVxp98XJc8vIVq2JtcsZoqlYaPblF90uNGK8r4IA1HgDkrrRuQZrcnPcqOzQQxuCuJpR4lZxtN1N0DzFG+y2yoNucDTIr519nvtPIAMFSbMbFHV//FcWa189UQpBYqpBx6yddilmcpGOVhA526eEvOx9ZPVfdg6axjYZBp1ju6MsHAU2wCixr+PXcusVdeHP4ONzOhqQJW7adfLo6PFedYdCh45FjpvlZJq+2FWxAxy0TKJEjJsvN2k9oarKbuUIZbb/0SPF5vS0imEF1kt6sjo3NLbH40eyS9vupBrTK5Kej27q9049/S1Bfj97e3VAqCPbTOol3LcWZpJCTMTSRcVmdSEnCFNcqGX0SSRPfbK0ZruVaPFnpDkGNW966qDmd95wcSYTPd7vVBIGx3gmKUGD5D3MOOu1DQLreJm6lROry4+sKlf6V0e1wTc2uNTpClWRQcz/oERWf7QWcy7+D8+7gFwctrv5hyBlKrXTzcub79jkgk2f4Oy/M4EjmP87VV88rL76vWL192Xr06OuqPjOOwehb+fHMcnJxjjCczdfqyrtHQYu67yNjqNWem6So3x57pKxa3AIfHP01i68JXzSZccndOrC6idoODw4MXBIcwnb0OYehGGrheVsXevIZjLwir/IACWuEYEhmHyx9ML+maU98XYrsBbWStzw4kiFQ37bnqZQJ7WziC+jAZQlFGNd13LFPpMxTQMYELl1x/AbDZCzT4rkef0+JtliuplWAR7ROwNhtVRxZXSVzb1Cxg16a7rUCQurK+UuYZNzdRrnIYhy0yr7LDWIa4+3dxCAKPixjKREekoJO/odx+Abj9Nef3gns1AYDq2blAMHpN+/gVvRfqO sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Log Workflow Revisions - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - -
-
-
- - -
- -

Body

-
-
-
    - -
    - - variant_ref - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - revision_ref - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - revisions - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/mark-variant-as-hidden.api.mdx b/docs/docs/reference/api/mark-variant-as-hidden.api.mdx index 8611cbb5db..d097a92669 100644 --- a/docs/docs/reference/api/mark-variant-as-hidden.api.mdx +++ b/docs/docs/reference/api/mark-variant-as-hidden.api.mdx @@ -5,298 +5,73 @@ description: "Mark a variant as hidden from the UI." sidebar_label: "Remove Variant" hide_title: true hide_table_of_contents: true -api: eJzVVE1v00AQ/SurOYG0JKXi5BMBIhHRiqotvaRRNbUn8VJ7d9kdVw2W/zuatZ0PSpE4coqz+958vH0zLTBuImRLuMFg0HKElYaCYh6MZ+MsZHCO4UGheuwBCqMqTVGQVevgasUlqW+Lya29tbOwaWqyHLNbq5RS6P3dyHrzRs28H5IodipQ7R5JaJdoIo2cz9fXF/OnnFLyTC3WkiCQMlGh8sHdV1T3XGM3KTl6P9YGGpyngMJdFJBBjeFhLOEO411fOGjwGLAmpiC9t2CxJshgRJoCNBjp3SOXoCHQj8YEKiDj0JCGmJdUI2Qt8NYLM3IwdgMa2HAlB2OniwK6biURonc2UhTS6cmJ/BzLfNXkOcW4bip1OYBBQ+4sk2WBo/eVyVNz0+9ROO2+kK7rOg3vTk+fB77ByhSJpuYhuPAPUcEHEZRNX3dBjKaSL8NUx+eAyuVHt2i3X9dJ4WOdOr07MZZpQwG6VafHMwwBtwdinrm+QOg01HHzN93PKUbcEOyCvQxNYqhrue32ud39d8r56M2Xqa8+9YBbHb70KG+v7sttfOrl+1OyESL2fxawf9uauHRi6oIqYkom5hIymA62jdN2b+AONEQKj6PDm1BBBiWzj9l0mleuKSa4Ics4QTNFb+D3sZ+lW/VRoCAWjpQ3wfA2xZtdLL7Q9jNhQQGy5eoQcCX26Q1xDNu9BXrzhUSaYfBmDZcumJ/9Kw+zV/Ys6d3YtUv0Qaahtg+YP5CVYZU++7JPJm8nJy81MxDU7GIxTAHmaQrGOhIM9G9y7YQCDVSnEQAmrN/vL6RK7yLXaA/iXaYlp2526+moqnY/h//Xkh1ekemJp75CkwYzSdYOplyOuzSChuxgr640lC6yINr2HiN9C1XXyfGPhoJ4a6V77r289LKFwkT5LiBbYxXpLxq+uhxG9rV6qcjRf1bM94hVI/9AwwNtj/d/WkflaO92AMxyEe2A+mx7yhzsJvXT/Gx+PYeu+wWvvYlP +api: eJzVVMtu2zAQ/BViTy3A2mnQk041UAM1kqBBkubiGMFGWltMJJIlV0FcQf9eLCX50TQFeuzJMjmzj9nhtsC4iZAt4RaDQcsRVhoKinkwno2zkMEFhieF6rkHKIyqNEVBVq2DqxWXpL4vJnf2zs7CpqnJcszurFJKoff3I+vDBzXzfkii2KlAtXsmoV2hiTRyvt7cXM5fckrJM7VYS4JAykSFygf3UFHdc43dpOTo/VgbaHCeAgp3UUAGNYansYR7jPd94aDBY8CamIL03oLFmiCDEWkK0GCkd49cgoZAPxoTqICMQ0MaYl5SjZC1wFsvzMjB2A1oYMOVHIydLgroupVEiN7ZSFFIpycn8nMs83WT5xTjuqnU1QAGDbmzTJYFjt5XJk/NTR+jcNp9IV3XdRo+nZ6+DnyLlSkSTc1DcOEfooIPIiibvu6CGE0lX4apjq8BlcuPbtFuv62Twsc6dXp3YizThgJ0q06PZxgCbg/EPHd9gdBpqOPmb7pfUIy4IdgFexuaxFA3ctvtc7uHR8r5aObL1FefesCtDic9ytur+3YbX3r5/pRshIj9XwXsZ1sTl05MXVBFTMnEXEIG08G2cdruDdyBhkjheXR4EyrIoGT2MZtO88o1xQQ3ZBknaKboDYhLI+VNMLxNlNnl4oy2XwkLCpAtV4eAa3FIP/Nj2E5u9OaMpPvhbc0aLl0wP/tBDs+r7FnSnrFrl+iDErNUnJpdLkCDtNGb+WTycXICv6+oI7CYG/Nk7jF3ugb9mwq7/kED1cnZwIT15/2FVOZd5BrtQbyrtLvU7W7rHFXT7p/X/7U7h8kxvfDUV2jSe0uStYPXluOKjKAhO1iXKw2liyyItn3ASN9D1XVy/KOhIH5a6Z77INNdtlCYKN8FZGusIv1Fw3dXw0t8r94qcvScFcM9Y9XIP9DwRNvjtZ62TDlauh0As1xEO6C+Wori/d0D/DI/n9/Moet+AfNTesA= sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Mark a variant as hidden from the UI. Arguments: -app_variant -- AppVariant to remove + app_variant -- AppVariant to remove Raises: -HTTPException: If there is a problem removing the app variant + HTTPException: If there is a problem removing the app variant +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/mark-variant-revision-as-hidden.api.mdx b/docs/docs/reference/api/mark-variant-revision-as-hidden.api.mdx index db85bb0196..f213a24683 100644 --- a/docs/docs/reference/api/mark-variant-revision-as-hidden.api.mdx +++ b/docs/docs/reference/api/mark-variant-revision-as-hidden.api.mdx @@ -5,308 +5,74 @@ description: "Mark a variant revision as hidden from the UI." sidebar_label: "Remove Variant Revision" hide_title: true hide_table_of_contents: true -api: eJzdVU1v2zgQ/SvEnLoAa6XBnnRad2OgRlts4Ka9OEYwkcYWG4lkScqoV9B/L4YSbTnZBCgK7KEny+Sbrzfzhh0E3HnI1/AFnUIdPGwklOQLp2xQRkMOH9E9CBT7ASAc7ZVXRgv0olJlSVpsnWlEqEh8Xs5u9a2eu13bkA4+v9VCCIHW3iXz16/F3NoxmghGOGrMngZg8n2nSgauUqjl1RR5q1eoPCXv725urhffC4r55mK55VQcCeUFCuvMfU3NYKv0LqaJ1qZyQIKx5JBtlyXk0KB7SMneHfNBfzfUChIsOmwokGPeOtDYEOSQTFQJEhTzZjFUIMHRt1Y5KiEPriUJvqioQcg7CAfLlj44pXcgIahQ80EiZ1lC38tjhAk5vxzixCzH2LALb4325Nnq8uKCf87H4FNbFOT9tq3FagSDhMLoQDowHK2tVRGZzL56tulOmfR930v48/LyqeMvWKsymomFc8b9hFewjrsX1JB3SQFVzV8qUOOfAmpTnN2iPvyzjV08J4pZH0+UDrQjB/2ml+kMncPDhM0PZkgQegmN371E/EfyHncER2fPQyMZ4oZv+1Nsc/+VinDW9HWsawg94jbTaUr0Duw+X8bVQN9/BUsQ1toTh0NvGwqVYQWVVFOgKJRQQQ7ZKA2fdSeR9FkaZ591k8nuQYInt0/qal0NOVQhWJ9nWVGbtpzhjnTAGaoMrYLH62oeb8XfDAUebU9F61Q4RH/z6+V7OrwjLMlBvt5MAZ94rIZBOYcde4RWvSembJTkvA2VcerfofujKKvBijlRemui+UjfmNtbLB5Is4q5ziHti9mb2cVzxYwGYn69HNWBRVRHyiPCQD6i60gUSKAmSgMCYfPX6YKztMaHBvXE3ypuWpEWUdoWj9PrTkL97V+JcQICfQ+ZrVFFsUe6u3HQ1+kN8CAhP3sPjrPON9M9vpFQGR/YuOvu0dNnV/c9H39ryfHIbuTg9p4HaN1BqTx/l5Bvsfb0QkdercYN8Yd4Lv801ppneo91y/9AwgMdzp80Xoj/Y+QpRXHxVkmw3YiYF9zKie2Td4KVfdxJV4sPi5sF9P0PWesSWw== +api: eJzdVU1v2zgQ/SvEnHYB1soGe9KpBmIgRlNs4Ka9OEYwkcYWE4lkScqoK+i/L4YSbTlpCiwW6KEn2+SbD755b9xBwJ2HfA1f0CnUwcNGQkm+cMoGZTTk8BHds0CxHwDC0V55ZbRALypVlqTF1plGhIrE5+XsXt/rudu1Deng83sthBBo7UMKf/dOzK0dq4lghKPG7GkAptwPqmTgKpVaXk2R93qFylPKfn13d7v4VlDsNxfLLbfiSCgvUFhnHmtqhlild7FNtDY9ByQYSw45dllCDg2659Tsw7Ef9A/DW0GCRYcNBXLMWwcaG4IcUogqQYJi3iyGCiQ4+toqRyXkwbUkwRcVNQh5B+FgOdIHp/QOJAQVaj5I5CxL6Ht5rDAh53+XODHLNTacwlujPXmOury44I9zGXxqi4K837a1WI1gkFAYHUgHhqO1tSoik9mT55ju1Enf972Evy8vXyf+grUqY5hYOGfcf8gK1vH0ghr6LimgqvmbCtT414DaFGe3qA//bOMUz4li1scTpQPtyEG/6WU6Q+fwMGHzxgwNQi+h8bufEf+RvMcdwTHZ29BIhrjj2/5U2zw+URHOhr6O7xpKj7jNVE2J3oHdt59xNdD3o2IJwl57lXCYbUOhMuygkmoKFI0SKsghG63hs+5kkj5LcvZZN1F2DxI8uX1yV+tqyKEKwfo8y4ratOUMd6QDzlBlaBWwej0VrVPhEEPmt8sPdLgmLMlBvt5MAZ9YOYMWzmHHMaBVH4hZGV03b0NlnPo+DHj0XTVE8bOV3poYPjI0j82J+e0SJPAzBpFfzP6aXcDL1XoGZtFjEUWfasdrkC9YOL4fJFATFQ+BsHl/uuDOrPGhQT3Jt4oLVKT9kpbAy7a6k/9+++U/Tj3Qt5DZGlX0cKS7G/W7Tqvdg4T8bM0fJcw30/W8kVAZHzi46x7R02dX9z0ff23JsUw3ckj7yKJZd1Aqz99LyLdYe/rJRP5Yjcb/U7zVf5KyZh3vsW75F0h4psP5PxXvuV9YeUpR3KdVMmk3IuYFj3IS+2r9s5uPq+ZqcbO4W0Df/ws+jAPM sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Mark a variant revision as hidden from the UI. Arguments: -app_variant -- AppVariant to remove -revision_id -- Revision ID to remove + app_variant -- AppVariant to remove + revision_id -- Revision ID to remove Raises: -HTTPException: If there is a problem removing the app variant + HTTPException: If there is a problem removing the app variant +> + -
- -

- Path Parameters -

-
-
-
    - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/observability.tag.mdx b/docs/docs/reference/api/observability.tag.mdx index e8ac404fae..12136b8216 100644 --- a/docs/docs/reference/api/observability.tag.mdx +++ b/docs/docs/reference/api/observability.tag.mdx @@ -5,9 +5,16 @@ description: "Observability" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/open-evaluation-preview-simple-evaluations-evaluation-id-open-post.api.mdx b/docs/docs/reference/api/open-evaluation-preview-simple-evaluations-evaluation-id-open-post.api.mdx new file mode 100644 index 0000000000..e9be541d06 --- /dev/null +++ b/docs/docs/reference/api/open-evaluation-preview-simple-evaluations-evaluation-id-open-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: open-evaluation-preview-simple-evaluations-evaluation-id-open-post +title: "Open Evaluation" +description: "Open Evaluation" +sidebar_label: "Open Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJzlWN1v20YM/1cMPrWAGmfBnvQ0L0nRrNmSxW5fDMM4S7R93elOvQ9vnqH/feCdPi3bTZoUGJCnxBL5I/kjxeNxB5atDMRTuN4w4ZjlShqYRaBy1P7XTQox/ZJzrCXmucYNx7/nhme5wNYbM2+L8XQ+96q5MhYiyJlmGVrUZHEHkmUIMXQUIAIuIYac2TVEoPGr4xpTiK12GIFJ1pgxiHdgtzkpG6u5XEEES6UzZiEG5zyK5VaQQBPX4CaFopgRqMmVNGgI5+L8nP6kaBLNc5KDGMYuSdCYpRODh1IYIkiUtCgtibM8FzzxsMMvhnR2Ld9yTfRZHiwkygWl0mUuLa5Qt3y89BIRpLhkTliIz4uoRYs3KLd3S89aF3wpfP6OC3AzT4QyRGFbqPRloZRAJqGI6kfSCQFEU+XdjRlcBoQiIjjBN/gcsFvSD1Assc8EGwWEoogqKbX4gok9WAEPTr73fPVBiwgytKzrCktTTnpM3Hc47TlbVmELtkpyx1K26D5px3jYFiRcJ04w/ea9E+I3o+S7O2dzZ9/CfsAEwi1mj9RiWrPtSXb3dKFH8Snl34lM0uiV5/+J1D/ULTf2m7QeC7Kn/jSOJqEUyz74KAb6LpBuEXX71/dBXbUgiggSjcxiOmf2FGCr8abM4jvLvT/HrVwG2MHIk+Xy9EcY+RRgSyMpCvwBRq4CbGmkomuxpVPscXb8UfUYsn7d+sOr4etFrVRs1VYqwl7USkVXbeXloAPeBrV5Rvl/LtUpfrZ/EnTPVGOZdSebVgQoXUZzVY4yDU++OnRIo4l2UoZHJswZFCzjwmmaMlBrpelRwmSCQmAKs0OH2Tg4cfAo++pQb+fGYr7nZXlAfJvs/jFxrG8fCzxxxqoMIli7jEmIgDmrgLwrydxS7wpDzBHjj+ihf1Kkg7GPlBTRWIP2VYQ+CbE2wbeG0ldBwKiJtyGhHJuVfhUUXFfRNgRozJHZw93p4AC1B/lQ6p8aqcf+3tf0oivmp71eJ3oCxDPV62taUZDazxcX/VvdZyZ4Gsrlmprs91/pUrSMC3+9qiqqKyBU0nn7lOF2tl9+TdS3KqnIgsysDtVfM4Abw1bYlNNxUU/GYEJvD1He3MGnPq5gupRrH6A1vYHd42FcBfpO5ffDZHLfAwy57Sb1Lkc5aJWRv8etFW0t6q2DXUMMw3JpMQxLi2FraTHcdXYQxZCWFnQ8o95UywqnBcSwtjY38XCYCOXSM7ZCadkZ40OWc/8RGUyc5nbrVUb3Nx9x+wFZihri6awtMKbKCrXSFavTxHL+EYm1ck0ycnatNP+3CtOvSdZBi2jhcqm8etUdvXOD0f0NtGYjOD/76ewc9lnsCNNHwRL/UVS2/WuI9lio46e+l/kvAiyy7JfmBXlGeaAe2OD1k7Z3fyk5sPiPHeaCcV/x3viuzOcUynxSnnxGob0zoQEq3t8s+bTOIlhTYcRT2O0WzOAnLYqCHvupiRIVwYZpzhbE43QHKTf0fwrxkgmDPWfrJgJvHspv5e2guUh2g6iyKym15B/9ggj+wm1vF+Zbwbqqn10pM0oSzG1Lu9e5qNDqr+D+bjyBovgP3CPYNA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Open Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/open-run-preview-evaluations-runs-run-id-open-post.api.mdx b/docs/docs/reference/api/open-run-preview-evaluations-runs-run-id-open-post.api.mdx new file mode 100644 index 0000000000..b6fa8715db --- /dev/null +++ b/docs/docs/reference/api/open-run-preview-evaluations-runs-run-id-open-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: open-run-preview-evaluations-runs-run-id-open-post +title: "Open Run" +description: "Open Run" +sidebar_label: "Open Run" +hide_title: true +hide_table_of_contents: true +api: eJzNWEtv2zgQ/ivGnFpAjdNgTzqtN2lRb5JNYKe9GIbBSGObXYpi+fCu19B/L4aUZMkPxXkU2JMtaeabmW+GnCE3YNnCQDyBTysmHLM8lwamEeQKtX8aphDTk5xpJ2dK44rjPzPcStN7M/NfeTqbeVGVGwsRKKZZhhY1WdiAZBlCDEESIuASYlDMLiECjT8c15hCbLXDCEyyxIxBvAG7VqRlrOZyARHMc50xCzE451Est4IERk72hikUxZTQjMqlQUMAF+fn9JOiSTRX5DPEMHZJgsbMneiNSmGIIMmlRWlJnCkleOJD7H83pLNpOKU0EWR5sJDkLiiVvnJpcYG64dyll4ggxTlzwkJ8XkREhLck13dzT1AbdS58ao4LcDNLRG6ItKZQ6cRjngtkEoqofiWdEED8VG4NTe8yIBQRwQm+wteA3ZB+gGKJfSXYICAURVRJ5Y/fMbENWrdFO3Lys+drH7SIIEPL2q6wNOWkx8R9i9M9Z8u6a8BW2W1Zyh7bb5oxHrYFCdeJE0y/++yE+NPk8sOds8rZ97AbMIFwi9mJWkxrtu5kd0cX9ijuUr4lMkljrzz/T6T+ld9wY5+k9ViQe+rP4+ghlGK55Z3EwL4LpFtE7Y3rZVBXDYgigkQjs5jOmO0CbGy1KbP4wXLvz3ErlwG2N/BkOZX+CiNfA2xpJEWBv8DIVYAtjVR0Pa6pb51mxzenU8j6Y+271pavN7VSsVVbqQh7UysVXbWVt4MOeCvU5hXl/61ULyIwllnXuSlFgNJlNBIplGl488OhQxo2tJMyvDJhgKBgGBdO0/iAWueaXiVMJigEpjA91KzGwYlDLtcDQm2dksZ221d7EDAW1U5MZbvYlfwb14dmqsrFa1xv97njxHBJGyINcKs8jEgQAZMyt+GhuRESRBFBrvmCyy7QxBmbZxDB0mXMAzqbN6HuAgQNTjhHjTIpu8uRrtOO/A1LSLjFS2HGpPvmC6RjQhpVVO33rwNCvmf57L5dOR2wux32Jx7i4CIZOXnFLBtbVEPZbsBPDzjDEMMpxkuJukRb5fWUZ89yauyXqa9fhWyX4q5BaAdoVOo3touPNOUypbjcHcqOpC7JhcvkgZRymXbmlL43JptjcmF6eYp/Aiuxuqi+DZFdBp/9No7qpbubP3F2iN3T99Mqx0Od4HgolScgy4yUwZ2A+qziu62K4+TzFFk6dJw6Vf81uvWZvChI57eLi/0j/DcmeOoVep+o8b78/J6iZVz4I/XhxSLypPX1OQea6W6WtiHfVN2TFq9ZdBXlLRrDFtjVnWsiiYxeaLxPlBzFFUyXcs2OV9Mb2D0exlWgryu5Xx4e7vcAQ27bSb1TKHtUPP7Qvszp9qm+TaJ1C/3yDqrfuIPq0x1UfxNuloo+3UHROkK9qu6enBYQw9JaZeJ+PxG5S8/YAqVlZ4z3meJ+sRhMnOZ27VUG98NrXH9BlqKGeDJtCoypkkJttMXqtDDFr/0eUd56DZxd5pr/V41L/vJrGbQK33XnuVcvGRt453qD+yE05l84P/t4dg67rLWEaRGwxC+Cyrb/DNEOC3X8NIVlfgWARZb9vv1AnhH9NJFt8RpJ2jmclsFb/Nf2lWBhXPNWN2X+JlDmj4w27hz9bE0/cX0/6NM4jWBJ+Y8nsNk8MoNftSgKev3DoaZMTSNYMc3ZI/E22UDKDf1PIZ4zYXDPx3qTgHejci28720vB9q+V9mUlEpyl54gCq2musr0a3xZFUrZh2CQJKhsQ21vS6KKqqv8/m78AEXxE3eXXHU= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Open Run + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/open-runs-preview-evaluations-runs-open-post.api.mdx b/docs/docs/reference/api/open-runs-preview-evaluations-runs-open-post.api.mdx new file mode 100644 index 0000000000..aaadb1457e --- /dev/null +++ b/docs/docs/reference/api/open-runs-preview-evaluations-runs-open-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: open-runs-preview-evaluations-runs-open-post +title: "Open Runs" +description: "Open Runs" +sidebar_label: "Open Runs" +hide_title: true +hide_table_of_contents: true +api: eJzNWG1v2zYQ/ivGfdoAOU6TNt38aW6Sol6bJbDTfjECg5bONjuKVPmS1TP034cjJVvyi+ykKbB8cCTq7jnec0fekUuwbGagO4LrRyYcs1xJAw8RqAy1f+sn0KU3OdZOmnGm8ZHjP2Nci4cPXiRTxkIEGr85NPadShbQXUKspEVp6ZFlmeCx1+t8NUrSmInnmDJ6yjSZtRwNvWknxzzxj9xi6h/sIkPogrGayxlEMFU6ZRa64BxPII9KAaY1W0AElltB7wMnW/3EQL4WUZOvGJez5RoTYqG0+bBWXRMzcLKfmEFwDnLCWuta7dAPmExJEzw4Oz2lfwmaWPOMIKALQxfHaMzUidagEIbouRzFygWlwikuLc5QVzy/9BIRJDhlTljontIsnazzWkedCp8US2BycTuF7mhTgJtxLJQhv6tCxSQmSglkEvJoNSSdEJBXWO2b1mVAyCOCE/wRfwTsE+kHKBbbHwTrBYRdybIzK957vrZB8whStKw+FZYknPSYuKtxujXZIskrsGV0a5bSSX2k6uNuWxBzHTvB9C/vnRB/GiXbt85mzv4Kmw4TSJEkx2iFZdfE7oYubFHcpHxDZJLGVnr+n0j9S33ixh6kdZ+TW+pP4+g+pCJIlu5eA9sMbE+BdPOovnE9D+qqApFHEGtkFpMxs02AlX09YRbblvv57LdyGWBbPU+Wy5KfYeRzgC2MJCjwJxi5CrCFkZKuyWLMd++1eyvhYbLeLVr9pMrXi1op2VpZKQl7USslXSsrLwcd8B5Rmx9I/y+Feh6Bscy6xk0pApQupTYkQ5mEkW8OHSbgS7YMQyY0EOQM48Jpah9Qa6VpKGYyRiEw2d3CDMMkdk151SCsrFPQ2Gb5qjcCxmK24dOenuJvXOxq4MopfsTFep/bTwyXtCFGwOWjCi0SRMCkVDa8VDdCgsgjUJrPuGwCjZ2xKoUI5i5lHtBZVYW6DRC+vZuiRhkX1WVP1al7/oIpJNzsuTBD0n3xBdLQIQ1Kqrbr1w4hX7N8dF8unQ70+gSxr8+/YpYNLWZ9WS/AhxucfvDhGOOFxCpFa+l1aGZPmtTQL1OfvxmyTYqbGqENoEGhX9kuXlGXy7KMy82mbE/oYiVcKneElMukMab0vdLZ7JML3csh/gmswGqi+iZ4dhnm7LdxzJ67u2XMzpvE7uj7cZnjoY6YeEiVA5BFRArnjkB9UvLdlMlx9HmKLO06Th2r33wRUMve0fGoZnVcz/3Z//XZ2fbp/gsTPPEarWuqyc8/2idoGRcNp3Sh4trXp5x1HvYz9KksrLSuzawpX2/QGDbDpsK9YpLIaIWafCAbya9gupCrFsMVvYHd/W5cBfqaovvh/v5uCzDEth7U2wxlq8icFO1c0Z1YcdcV1jR0iouxTuVirEPXLB26GKOlhZoaAR8fpwV0YW5tZrqdTiyUS07YDKVlJ4x3WMb9+jEYO83twqv07vofcfEBWYLaZ21FYEgZFHKiLrYKB8v4R79thL0Tes7Oleb/lh0U9UcwD1rkPuXmYH2Jd/2dpZnA2qXcCM6n7Lc304vX7TdvX71tv35zcdaenE/j9ln8+8X59OKCTdkFPPiyPlV+MgXvPe9qq3fXh0qDDacnr05OYZP7mjAtJRb7pVR64j9DtMHpik1q81K/jsAiS/9YfyA/KYbU8q3xqqHeOP4WXFr8bjuZYKEh9GaXRRaMoMgCslq5Ty0u3Pytqu9R55Q73REslxNm8LMWeU7D3xxqCvdDBI9MczYhukZE4bwMfFFq4DJsKu370EGQsRDojQ2GFn/Q6MUxZrZR9qGS3ne3w3uIYFLc4aYqIR3NyDf67YL3JzhIiUFjSxBMzhztCV0ImPT3H+UgpYA= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Open Runs + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/otlp-receiver.api.mdx b/docs/docs/reference/api/otlp-receiver.api.mdx index 9298c31e2e..9351223d39 100644 --- a/docs/docs/reference/api/otlp-receiver.api.mdx +++ b/docs/docs/reference/api/otlp-receiver.api.mdx @@ -5,100 +5,59 @@ description: "Receive traces via OTLP." sidebar_label: "Receive traces via OTLP" hide_title: true hide_table_of_contents: true -api: eJx9U01vozAQ/SvRnK2Q9Mhps71s1JUSNd29ILSamGlwa7BrD2iziP++GiCfUssFsN+8Gb/33AHjIUKawWYfKbS4N9bwEXIFBUUdjGfjakjhmTSZlmYcUFOctQZnm5ef2zkocJ4CCmxdQAqOrf8TRnQABYGid3WkCGkHD4sHed1S7xqtKcbXxs6eJzAo0K5mqlng6L01emiRvEWp6SDqkiqULx9kADZjh5ZCNCOEj54ghcjB1AdQwIatLPyeIL2CyMhN/Aq8GxF9r04Qt38jzcPJPhoTqBD1Tm3PlPmF4tFZS5pHpvMJe3kUVMSlE928i0LqkUtIIXHXdiTtMhFdk1F96UJBWkKaddAECymUzD6mSaKta4o5HqhmnKNJ0Bu4N3M17M4eBQp9LnS6CeK78K226yc6/iAsKECa5deAncg+Kn0LOyuI3jzRERTUWMn/quHSBfNvsA8UGBmgHKtEAFO/uqF8Umua7Tvqd6oLUBdHYTFfzhefHWYqmK226yk9qIf0nOYYYKDu5DoLBQqoQiN7TFh9u2zIlOJOhfUV3ycX4n687hLkr+7QJB7TX068RTOkc5i0myKRwU0kRJilXD62XurHYOQKSslRmkHX7THSr2D7XpY/Ggpib66gxWBwL2Jnea9OXojz73QUpbQmL1ls0TajpXf3TxJxDu52s3uBvv8PXy53Zw== +api: eJx9U0Fu2zAQ/IoxZ8JyetSpRi8NUsBGnJ4MoVjTm4gpJTLkyqgr6O/FSo4dG2h0kUTOLHdnhj2EXjLKLVa7zOlAO+edHFEZ7Dnb5KK40KLEI1t2B55JIst5dnA0Wz39WM9hECInUtj9HiWC+PgrTegEg8Q5hjZzRtnjy2Khr+vSm85azvm587PHExgGNrTCrSicYvTOjkcUr1k5PbKtuSH9ikkbEDedkIWkG7/kGBklsiTXvsBAnHhd2EyIYTDvkLB7ZStjr2+dS7xXPU6FqgvxW/CerUz8c6eDPgYNSx10/hiylookNUoU4aOsxeGuUH2KSUUY6CYnNaBHlzxK1CIxl0Vhfej2c3rhVmhOrqDoMFTKsF1Si5SyXN8/8PE7054Tym31EbBRhSZRrmFnaSi6Bz7CoKVG/5ed1CG5v6PSMHDqTj2xdEbXPoeRfhJkOTY3W67vYaBjTH4u5nfzBW4DdAVWc8mO5r6fPW7D3Khwnh8G3JDTPWFqvl42tDMVvaH2Q73/5PW2rf6Ss88ifhJM+I8U0ZNrMZw67U9Ob3HltApyp3dDfFT+5HdlUGs8yi36fkeZfyY/DLr81nFSSyuDAyVHOxV4Ww3mXX91+zcfVSlrOWrEDuS7ycab66EpOOdxvdo8YRj+ARPcVac= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Receive traces via OTLP. -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/otlp-status.api.mdx b/docs/docs/reference/api/otlp-status.api.mdx index dcd34b614a..7f0e8e8a05 100644 --- a/docs/docs/reference/api/otlp-status.api.mdx +++ b/docs/docs/reference/api/otlp-status.api.mdx @@ -5,100 +5,59 @@ description: "Status of OTLP endpoint." sidebar_label: "Status of OTLP endpoint" hide_title: true hide_table_of_contents: true -api: eJx9U8tu2zAQ/BVhz4Rl96hT3aBojRSI0aS9GEKxptYWE4pkyJVRV9C/FyvJjxhIdJFEzr5mZjtg3CcoNvCwTRQPuDXW8BFKBRUlHU1g4x0U8MjIbcr8Lnt4+rHOyFXBG8czUOADRRTYqoICPNvwJw1oUBApBe8SJSg6+DSfy+smcas1pbRrbfZzAoMC7R2TY4FjCNbooUD+nCSmg6RralC+QpTybMYKB4rJjBA+BoICEkfj9qCADVs5+D1BegVTlx+Ax6mh79UJ4rfPpHmY7LU1kSrh7lT2nLK8pLjz1pLmMdN5wl4eBQ1x7YW1PUnOgFxDAbm/1iI/LHIhNeeImoRUuaQoqnXQRgsF1MwhFXmurW+rGe7JMc7Q5BgM3Cq5HG6zO4FCX0o63UYRXfIt16t7On4nrChCsSmvAY/C+kj0W9iZQAzmno6gwGEj/8uWax/Nv0E9UGCkgXqMkvmN2/khfCJr6u0L6hdyFaiLoDCfLWbz94aZArLlejWZB/VgnlMfAwzUDV1nokABNWjkjgmbz5cL6TL4xA26q3zvbMNte93Fxx8t0EQe01/Og0UzmHPotJsssYE3lhBiFrJ5bIPEj8YoFdQ+saC7bouJfkXb93L82lIUeUsFB4wGt0L2puzVSQtR/oWOwpTWFGSQA9p2lPRm/cQRZ99++/oEff8fFdF2Zw== +api: eJx9k1uL2zAQhf9KOM8iTvrop4ZS2rCFDd3tUzBFkSextrKllcahqfF/L2M7V2j94ovO3L4z7sD6kJBv8bxLFI96Z53lEwqFkpKJNrD1DXK8sOY2zfx+9vz6bTOjpgzeNjyHgg8UtcjWJXJ4duFnGtRQiJSCbxIl5B0+LBZye0jcGkMp7Vs3+z6JoWB8w9SwyHUIzpqhQPaWJKZDMhXVWp5ClPJsxwpT3bwDnwIhR+JomwMU2LKjyxzoe3WW+N0bGR56fW9tpFJoTImKa+An7xwZHuMvnfZyKdTElZfpDySZguYKOTJ/yzQ7LjOBk3HUhgSOHFIU+h3a6JCjYg4pzzLjfFvO9YEa1nNtMx0s+kIiTBvFHwlZbdZPdPpKuqSIfFvcCl4E0MjkXnYho4N9ohMUGl3L+6rlykf7ZwANBSvmVGOUjGibvR/CJx6robnZarOGgowx2rmYL+cLPG7PnVi81Wbw9lx7OIZ6oHCZHwpUaytnTLr+eD2QzoJPXOvmJt8/lvWxre66Zv/b7wkY02/OgtO2QT912k1Ob3HntABZyo/BLkj86HehUPnEou66nU70I7q+l8/vLUWxtFA46mj1TgBvi16d+Yvbv+gkpIyhIIMctWtHGx/+DtmCyzp++fyKvv8LS5BUqQ== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Status of OTLP endpoint. -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/otlp-v-1-traces.api.mdx b/docs/docs/reference/api/otlp-v-1-traces.api.mdx index 36f4319cdd..2319544567 100644 --- a/docs/docs/reference/api/otlp-v-1-traces.api.mdx +++ b/docs/docs/reference/api/otlp-v-1-traces.api.mdx @@ -5,97 +5,59 @@ description: "Receive traces via OTLP." sidebar_label: "Receive /v1/traces via OTLP" hide_title: true hide_table_of_contents: true -api: eJx9U8FuozAQ/RU0ZyskPXLabC8bdaVETXcvEaomZhrcGuzaA9os4t9XA4S0kbZcAPvN8/i9Nx0wniJkB9geI4UWj8YaPkOuoKCog/FsXA0ZPJIm01LCATXFpDWYbJ9+7hagwHkKKLBNARk4tv65XT2PQFAQKHpXR4qQdXC3vJPXZ+59ozXF+NLY5HECgwLtaqaaBY7eW6OHM9LXKDUdRF1ShfLlg3TAZjyhpRDNCOGzJ8ggcjD1CRSwYSsLvydIryAychO/Au9HRN+rC8QdX0nzcLP3xgQqRL7LsTNlfqW4d9aS5pFpvmEvj4KKuHQinHdRSD1yCRmkomPartJZR7GHgnjVQRMsZFAy+5ilqbauKRZ4oppxgSZFb+DWv/Wwm9wLFPpc6HQTxGrhW+82D3T+QVhQgOyQfwTsRehR28+wWTP05oHOoKDGSv7XDZcumL+DYaDASAPlWCVXNvWLG8onfabevqN+o7oAdfUQlovVYvm/y0wFyXq3mfKCesjLpY8BBupGrlkoUEAVGtljwurbdUO6FD8qrD/wXWbgass8B7ctdtf4fjU6k4BMfzj1Fs2QyaHbbgrCYRgo0WQl+DEMuYJS0pIdoOuOGOlXsH0vy+8NBbE0V9BiMHgUgQ95ry76i9tvdBZ1tCYviWvRNqONN1MmKZjjudvun6Dv/wFsAm0C +api: eJx9k0GPmzAQhf9KNGcLkh45Neql0VZKtNmeEFpNzGzw1mCvPaCmiP9eDRCyyWG5YOw39vh7jx4YzxGyHPanSKHDk7GGL1AoKCnqYDwb10AGz6TJdLTigJriqjO42r/8OiSgwHkKKLJdCRk4tv6127xOQlAQKHrXRIqQ9fBtvZbX/d7HVmuK8a21q+dZDAq0a5gaFjl6b40ez0jfo9T0EHVFNcrIB+mAzXRCZOR2HPHFE2QQOZjmDArYsJWJ46QYBnWVuNM7aR57/WhNoFKAzBsVt8IfzlrSPNUvnQ7yKKiJKycAvIuylUeuIINUeKTdJl14CGYKwryHNljIoGL2MUtTbV1bJnimhjFBk6I3MBRSodsgrkjJ9rB7ostPwpICZHnxWXAUJhOGe9kCA715ogsoaLCW723LlQvm38gWFBjxo5qq5FameXNj+YxgOza32h52oECuMTm4TjbJGh4zcycWO1GPdl7PHpdBPVBY7g8KqEYja0xYf78tSGeCucbm037XiN5oLzF9bK2/peurZM/QmP5y6i2aBoa52372Nx/zLiw2op88LhRUEoIsh74/YaTfwQ6DTH+0FMTGQkGHweBJoObFoK7MxeE/dBE6WpOXIHVo28m6h59AnF9Sd9gfX2AY/gOYFktC sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Receive traces via OTLP. -
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-analytics.api.mdx b/docs/docs/reference/api/query-analytics.api.mdx index fe11dd9a78..fe2cd56fdf 100644 --- a/docs/docs/reference/api/query-analytics.api.mdx +++ b/docs/docs/reference/api/query-analytics.api.mdx @@ -5,36 +5,36 @@ description: "Query analytics, with optional grouping, windowing, filtering." sidebar_label: "Query analytics, with optional grouping, windowing, filtering." hide_title: true hide_table_of_contents: true -api: eJy1Vt9v2zYQ/leEexbsJOiTnuZt2Rq0W7I26x4MIzhLZ5kNRbIk5cwz9L8PR0oK1SSF08JPlnkf77tfvLsDeKwdFEu4XjuyO1wLKfweVjloQxa90OqqggK+tGT3d6hQ7r0oHeRg0GJDnixfP4DChqCAjbYNeshBqOEW5GDpSyssVVBsUDrKwZVbahCKA5BqG+aXVGPJWKxJeWQL/N6wSuetUDXkUNEGW+mhGDA5eOElY36LtF2XJ5aUrXuFIaj215vgypSXVfYnqpUSulVKyxwpq5YVudf4/z2015Ek5VX0cHrePyNJyvsgVKUffoRXKE812W8S/xNZJukV0lNfGCdN8ciTsnvR0AdUNZ2Y/VY0ZANPyo7G3InqxNQLY7KrasJLaiesVg2pU1faZcKUWrBDK/Dk7J96lo4PLTmjlSPH2i7OzvinIldaYbg7QgEf27Ik5zatzD70YMih1Mqz+WyDMVKUoZnOPzu+c/iWhXr9mUo/cWsJXnuUd6Vug/cbFLK1dGfRM9cgDB0Ad3X6KdGTCp01ory+J+V64finwr7n9iF4H9rxYuj3o19J2J41c0fWcVRyWLflPXmXKn1GXSIdDrO/OKvZCIau67oc3lxcPA39J5SiCoHNLq3V9jVxN5ZHnBcxsxV5FJK/hKfGPQVIXU6kRxTW2NpW3TjN0FrcJ5PrvY4GQpdD42rW/PXcG6B/kHPIrWBQ9jI0BCO7ZWn3yP1sxtivSN3jJg9hCG+M7stu/BrD9xzZAHl7e3vzRGHM7TSpMf/jrpFnD8JvMx3EKLPa6tYIVfM5j4XwOY6DGTtDfqt5a6nJh03Fb6GAuU5XnPnufJ6uMywadpnWSihg671xxXxeSt1Ws7hyzFDM0Qj42uRFkGa/MDQUtaOytbxJsb7FzdU72r8lrMhCsVylgI9cj7HCprAxuWjEO+JY9z1w0fqttuK/WDZ9J9zGWxxMoTY6XB9eXbTtZyzvSfHUGN5oAWez89nZS870F7LFzVX/rLAMz2qwY1jCpuEaAwU5UBPeFHjC5qdHAVtptPMNqkTfD6d94sUYPk//+rmRKMITC7Ye+pJYwqQkODTn3BjHsljlsOVOWizhcFijo7+t7Do+jpOHk1sJh2uZzJ572qeL8A5ly3aExvAiOO6qx2DHDfMY8LgWHgMed7mjTE72r2Pw6cZ0DH7ccY4BTxeTY248LhKP6FUej9f8bJbcs7fDkz301xZlSSa99WTEsJax//x+eQtd9z8ojo6j +api: eJztWFFv4zYM/iuBnr2mLfbkp+WuvV1x3dr1snsJgkKxGUdXWfJJcros8H8fKNmKlKSJ2y7AHvaUwCb5UfxIiuaaGFpokk7I3UyDWtIZ48ysyDQhsgJFDZPiJicp+VGDWj1SQfnKsEyThFRU0RIMKFRfE0FLICmZS1VSQxLCRKdFEqLgR80U5CSdU64hITpbQElJuiYg6hLxORQ0Q1lagDAUPTCrCk1qo5goSEJymNOaG5J2MgkxzHCU+eRgmyYJPMlq/QpHqFjdze1RYlw02T4RNeekmYawiBGiSp6Dfs353wJ750BCXAHPp8f93YGEuEwYTBv+HmS0UYA6CH3T4UQUM26gTY6T0uxxQnTDSnigooATo49ZCcrihOi0qh5ZfmLoUVUNbvIIF8SSKSlKEKfOtusAKfRgSRWjJ0f/1qI0+FCBrqTQoNHa5fk5/uSgM8Uq7JAkJV/rLAOt5zUfPLTCJCGZFAbdRx+qirPMNtThd406670eVgobr2EOy0hD+WMma2dkq2CCHEG5wUcr1yRkThmvFTwqaiDQE3U5i9Q+ObnBA8o1iYfT5pBWB6YtFl0WRzVGyyKS59SAyFbHVG5bMe+ZkU8gdI9IjJ1gC7ejthdto5NTY1lhBkqrtkUKK0EbWlaBRX9JtRdgikbgJxQlcSk7zSYh2qVMD3bb5Nrl97hqx7BXPUZVR1MPit5PT+MveTn7DpmJyngSBHo7WtshaM+1cXvLpaCwb+2gcUUNvZfMxaT1gSpFV4GvKHPcx6BCtwovqqegUOIa2PI0ytg2FXe8H3VzmO812MriLPW58ab71ufLrM6ewOjTl4OfJA6lz2YMaMO2686/ce5g1jzHflC7SXiv1bYsDhm96vS37Ha1+BabH10mRfY29fems4990m2M7sn+Tvw3MIpl+mp8h2yAUlL9z8Z/go1XtNVgfnf11DEZePLBtoCW5xd65Ye2TRzD7tpJ/DWzp58FAt3DwR846g28MGkahPv58nJ3HvtGOcstzYNre55XDGNxBudgKOMH+h+XWfS2x7Tp+Z++HNFb6RzEoJe62NdcN9xrTQvY0POyqA3GYIxvj1GF53LQrVw0HXfhddE9cIm68B1K3c/j8f2OQcdtTKrj3y8hksEzM4uBtK8pHxRK1hUTBT4XuXy2f/034hkeBsxC4jqjAGNXGGZBUjKU4e5juLwYhnsOfNUtOWrFSUoWxlQ6HQ4zLuv8zO0izigb0orZvNWQ1Qq3KKgyur/5AqvPQHNQJJ1MQ4GvmHIuiWIxzx+t2BfAcLbfPqPaLKRif3cNzH4BLZxWYy/RuXR3cjvXWucGo/sbkhA8hgvk+dnF2TnZDm8kjNVCM1stHXa3dImj4M+PraO0pUIM0PKXzQv0rJLalFQE9t7NZuS9D5mBv8yw4pTZyrG+rlumJyRiGkNygQOXZ3uakIW9BSZkvZ5RDX8q3jT42H1lIqE503TGg+/MJ1iFi68l5TX6Yev9RWG3m+oj6zdKfYT9GqiPcND7ezkdbFv6yIf7kT7yfqPRRzheQ/TR2KwNNtLTxD2eYbFMsBkvukJdt2qjLIMq1Nq5O9CKbyy/Xo9J0/wDE1VCpA== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Query analytics, with optional grouping, windowing, filtering. @@ -43,1123 +43,29 @@ Query analytics, with optional grouping, windowing, filtering. as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - - - - - - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
    - anyOf - - - - - - - - - - -
    - - - - data - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    - - - -
    - - count - object - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - - - buckets - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • - - - -
    - - - - total - - - object - - - - required - - - -
    - -
    - - count - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - duration - - object - - -
    -
    - - anyOf - - - -
    - number -
    -
    -
    -
    -
    -
    - -
    - - cost - - object - - -
    -
    - - anyOf - - - -
    - number -
    -
    -
    -
    -
    -
    - -
    - - tokens - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - - error - - - object - - - - required - - - -
    - -
    - - count - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - duration - - object - - -
    -
    - - anyOf - - - -
    - number -
    -
    -
    -
    -
    -
    - -
    - - cost - - object - - -
    -
    - - anyOf - - - -
    - number -
    -
    -
    -
    -
    -
    - -
    - - tokens - - object - - -
    -
    - - anyOf - - - -
    - integer -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-annotations.api.mdx b/docs/docs/reference/api/query-annotations.api.mdx index 7df55fa1c1..9d4d5b6c21 100644 --- a/docs/docs/reference/api/query-annotations.api.mdx +++ b/docs/docs/reference/api/query-annotations.api.mdx @@ -5,1639 +5,67 @@ description: "Query Annotations" sidebar_label: "Query Annotations" hide_title: true hide_table_of_contents: true -api: eJzVWG1PHDcQ/iun+dRKexzhLe1+KkmoQkMEBZIvJ4R83rk7B6+98QvJ5bT/vRp7X2E5aASVyodA7JlnxjPjZ8a7BscWFtIpHN0yaeEqAV2gYU5odZxBCl89mtU1U0q7sGghAYNfPVr3RmcrSNfAtXKoHP3JikIKHgQnX6xWtGb5EnMWdtXqdA7pdA1uVSCkoGdfkDtIwAknaeGwsfM32T2PhqBMGhXlpYTyqlUJgqNGsixLctAWWlm0ZHVne5t+ZWi5EQVhQwoXnnO0du7l6LwShuTpJykMRcmJaIFrH5UqH4VyuEDTOdfbIFEmoGVGbg4Fwzoj1AISmGuTMwcpZMzh2IkcNwbgNEKWCUiRi2Hs2qNNOCdBu0ygm+x0DcJhbgcObZA5zK7Z857mbYQdHQZXfJG9hJFPEbYykqHEFzDyLsJWRupwzVbXInuiHe9F9qRgvVmNjrNuvJ7VSh2txkodsGe1UoersWILpir8u6i1zkXBVCXtDOP4iPglyVTyN0JlkRbmzEvykHvrdE7id9RR+ZwYshFY+pwpSIB5p+FqiL0+EDqdQXvDsW+HFWKDkW84gwRsdkP4hRiGv4iwlArmIrVmmaAdJs96t/ShzHQyMcgN+ay/MtNaIlNhadgWcGG4l8z88qeX8i+r1fjUu8K7X9vTVnzfwWXGsNXGuriDFnL9QPd4R8EoE8jRsSYwTQD+dyGqiPcpWs8Qxk3KH+uAht46R4OK40BPwFsmPXPa3N96PqKo2EH6xROzdw/hgnTLBG7RWBFb+8/AfK7Uyw0l2d7Z8zpuIfRoncXhfvNEjLt+VaicWXxW2IHD0fwnDGbEV23KB5nqvK2WMKCoG7uJrvo185Id4JFj1aY7sIPnOxHqZhMlnYQT/4S1itp7960O4KAnHS8iGwwJEUbTiaaPJjcOtoPmbDM2x5F7b2fn/pT9mUmRBfHRkTHa/PyInaFjQm4YR6Xmvd1/w+pXD4fuRPMmurldbKqtj2gtW2Cbh4dFQzBGl7T7WAroXNF0JdcloCa8MboPH+NdDN8mpnp/eXl2DzDmtp/U+ODq11SObqnpuVhoS6AFc0tIYVIYvBX4bdJ5UkzCi5JmHDREwCFH3khIYelcYdPJhEvtsy22QOXYFhOTODH1vTgMu6O3JBpY2SL3RrhVwDs8O/6Aq/fIMjSh0DsCF1RisWj6Yu1QUogPSC4qloeq926pjfgRKyEBQQ4soxbFh4r3vH0TH31neSErFm6uJ8E3DNWWRMNx7VIcTdtxsx4iq9mwM93ca8e9BhxQd+fst/35wd54//Wr1+O9/YOd8Wx3zsc7/PeD3fnBAZuzA6jbaetD0xrbJeacETPvgqWy38T+C1N1Z3tZW50uFf4j1FyH3NUMGOvuDeM3qLIe5PbWq63thwq1Uhgdnh1XLMh4CF1dY0EMkjtXobkE9ETIAwWCQ5b/0W6Ql3Tt6E3S4g3d0p5jTbU7/O4mhWQikFwwv64u8BSqCwz9rwJJ/CxEXLSkC59OYb2eMYufjCxLWo776fQqgVtmBJtR8KZEtMv6Uq7hBlfh20joCONAhyQufbyEd7oDMXfUOOQcC7dR9qrDSWenF5eQwKz6XJXrjHQMo1PRvykAffVqPniEtTVIphaeCD2FiEk//wAhqYii +api: eJztXG1v2zYQ/ivGfdoAOXbcvLT6tPRlaNasyZK0A2YYAS3RNhtJVEkqiRfovw9H6tWW5Xcg7ZQPiSXx7siH5N3pHjrPoMhYgt2HsyDgiijGAwkDC3hIhb46d8GG7xEV0ztSaGKBoN8jKtVb7k7BfgaHB4oGCj+SMPSYoxt2vkke4D3pTKhP8FMoULdiVOq2mU5zNb0cgd2fbcUFG7OZFmoaUrBBKsGCMVhAg8jHgTiRVNwHCyaRTwKwgESK45AUUx5K3DA/9OitIA69NHpjK1MXRJ4H8SC24J4F7moWiTvhDl4/EA8sCD0yXWDvE+qstOZMSBBQbzWDXHkhWPBIh2CBdO9xkCFbYPNdornSrJn9ok3iugyng3hXMxNV3auCWhYoOqaibMkflu8MOfcoMZhX2wKHCSfyiPjlM79gUv0hedA+D8JI/QpWqoYPv1FHVQwqx2BWGuJ1pG8RmdgCnyrychH6PfK8ZfgwRf3VhIgQZFqLSll0PUT/RCRjdBwjKmjgzKJW3vLa5dQ1eKBCzrmNhcjP9eZrIh5bIL1ovKmaG5SNLWBLfMWIC58osCGKWJULyDWeuxDP4Zo/vk7Rq97QxlM/EMFI4owb+NaGT9AHNg9Og99y/BSVStJm4W0KXLNztwWw2bubIlhI2xvwtgCv2cO7ALHZx5uiiK+hEVFcNNBtDF2zh7eHsNnB2+QyDpG0QW495GrkCgWx67z+UIm+x4L7FYti5SmRIQnu6pGoxTIkQQuHb4HCfm6hSo+ztQTKCxbcV1dwkorRzzW+5cWtCz3xdSrzIvlfujxVncVkje4qltL/FNscuVYCswWPLHD5I/anxs8F9JFKtaJ3cYmibcX8Ku9QKAwblbEF3HN3rfzSqIwtCOjTqqqXesXPqEv7Jp9VK60sLc8tcJTGcQuXivq+ZeSGdGjgmnsuzS4GtRho9RgWAkUFsiKb9vg8VYB1Y6JopaL5EvqcnmuUrVvQf2drcb24MuMRrg0pBnEcG4aMCeqCrURE9Q0Z8kCahd3rdvEPYipYaN664SZyHCrlKPJa10ljsDbl1hweGaEZwPPev9MtcGJHJPIU2N2S/9JaFjgsR1CiqHtHdrt93hm1rTO9TqPQ3YeRL0ZtYsSlHt2DkfdGbWIkhWs4XeKa1/EKKVhvp4nvT/HaqZUUrcxKCthOraRwZVZeYkS0Ckz0Ioe5Af9c2ICpeIGAXuiZ16Odi0aMaJl2XmRmI7K5ZCxk8CNRzZeR2oZrNuI/Ndlch9BitnlOag26eRNQU77ZJQmoDZR1UBZcMaki6ht6vqHnXwZ8TWFxm8JiQ8839HxDz/94CDb0fEPPvxwQm328KYoNPd/Q8y8BwmYHb5PLNPT8+shtQM83ZPxPTRivRL7nNFrf1PJKlal0iVRyzXMWqxrJYrW6vyLbJzN6LtZc31GvN8/mfSUecw3p/UEILjan8lyqCPNq6DiPO6Wn6xQ1B4tRuuBOBqQvx1U8QV5ulZKMaQ754qYajNYtPl024Z6mONB00q7oJDN4DbqLh/HewFc3tR9vb6/mFJq5LU+q5nlb5eXjUzXh+EXJkEtUGhI1ARs6IQZZ+tgpUKodUzm1QFKBQULPUSQ8sGGiVCjtTsfxeOQekDENFDkgrKMJlAFKOJFgaqpFzq7OP9HpR0o0k98fFBvc4Coy66LcLJsSErJPFHsREF8v7EhNuGD/mslG4h77Y6QQAlyf1/kXPj88EfTXZqEVv8CZ0mM5C2ZYrIysyginlFdKaKGc/JgrPGel5iym5ivKBMf8Gr0YvBqR18ejk6P28enhafvo+KTXHr4aOe2e8+bk1ejkhIzICVQVY/djoJho7dpCoaC3J9X7xKeqKLRrGzNlkz2q3ydSi169d22n9HK6N+X7RKr6BWcfKzd9Bdit7kLOG1ceJuwXcr9CaM2SuCzSD2ZO2KUn6aDX7R21u6ft3pvbw2P7+NDuvT7onh7+A/mBuLo25lzbasPJTqx1s0NnpRNl+QGxbnrAqxvrg2MjrsNVmnjpYNg6uzoHqwB49+DwoAuzEbrUGBMu4uillsY6/RismaibxVs8++DrbAsUJf5v+QPsGUZ4PNeR66tKCEodyqKuok+qE3pE/8sBY/45yRX6kOQKUD6AlQQRTHsmmFvYfXh+HhJJvwgvjvF2Eh77Awv0thoiYH3M6SZpcvAM93Sqj3vp5LOtMy9s7kUmGZhJRDFJNBJnjkNDVdt2UEh/ri5vbsGCYfI/IXzuoowgOCr8bQOusTA7W6bvPYNHgnGEuaMNRif+/AfFZnTo sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Query Annotations - + + + + + + + + + + + + + + + - - -
- -

Body

-
-
-
    -
    - anyOf - - - -
    - - annotation - object - -
    -
    - anyOf - - - -
    - - trace_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - span_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - kind - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`custom`, `human`, `auto`] -
    -
    -
    -
    -
    -
    -
    - -
    - - source - object - -
    -
    - anyOf - - -
    - string -
    **Possible values:** [`web`, `sdk`, `api`]
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - references - object - -
    -
    - anyOf - - - -
    - - - evaluator - object - - required - - -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - attributes - object - - -
    - -
    -
    -
    -
    -
    -
    - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - attributes - object - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - testcase - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - attributes - object - - -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - oldest - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - limit - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - - annotations - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - - - -
    - - - data - object - - required - - -
    - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - - references - object - - required - - -
    - -
    - - - evaluator - object - - required - - -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - testcase - object - -
    -
    - anyOf - - - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - links - object - - required - - -
    - -
    - - - property name* - AnnotationLink - - -
    - - -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/query-evaluations-preview-simple-evaluations-query-post.api.mdx b/docs/docs/reference/api/query-evaluations-preview-simple-evaluations-query-post.api.mdx new file mode 100644 index 0000000000..0fc53cf099 --- /dev/null +++ b/docs/docs/reference/api/query-evaluations-preview-simple-evaluations-query-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-evaluations-preview-simple-evaluations-query-post +title: "Query Evaluations" +description: "Query Evaluations" +sidebar_label: "Query Evaluations" +hide_title: true +hide_table_of_contents: true +api: eJztWVlvGzcQ/ivGPLXAypIVH8k+1YkdRI1bu7aTAhUEg9odWUy5R3jYVoX978WQe2qlja8AQV0/2F7uzEfOx+FwZnYJml0r8MdwfMOEYZonsYKJB0mK0j6NQvDhq0G5uMJK5CqVeMPx9krxKBXYeOWE00Rp8EDiV4NKv03CBfhLCJJYY6zpX5amggdWp/9FJTGNqWCOEaP/Ukkr0BwVPVXwVjNenM7AH69KzYS1ZbMAV1eBSBSGTSG9SBF8mCaJQBZD5pVDsRECsokHmmtBAyO19c4hZB7BCX6DTwE7IX0HxQL9RLBDh5BlXiGVTL9gQNtQSFW7fG7i95avNmjmQYSaNZfCwpCTHhNnDU5bi1Va8vi6DstjjdcomzNF0+ZI3cb1c0HAZWAEkz+9N0L8qpK4N4pTo3+GVXsJg2uM7qfEpGSLTm6bqtDit0v3N2KSNFq++SMx+ntywpX+FqebbFzVfhhDl84LIWbRevdv299eAelmHoSoAsnTdqS4P9RRDYJOZriyKbljrUJ6MEtkxDT4YAwPaxR8279Goeo8tRc2yFZn9w+KsOsP7i2Pw+SWFtQRB2O8RaW7CKpZEzKNPc0tvx0b4CAzDxIRPjf4qYMkH8G7+0Lnu9C15DuLKXjE14OuPWYrKCdWm+yWIcrutWFsIrprmQowDt0YeWz+MOnkwMKTQ8Ya5Q0Tj17xqADIPJBMrz9z7XDSwjkn3S63/bP0xTWu+lB3P3eJBGSkSVkFl3SPa2nQDqg0iZVz7+FgQH8asQAuTBCgUjMjts5zYfAem48EiXFKK7RXNryzErS9M2aEBn+QebU0xqUjRST5P4152WnMqdGPyGNaWg9IZJzufzyT6aL1HqnMYzj6sXOZQCLTGF6x572e3znYrUNLlknD7zHJJwebTxKiwO8wyZGDzScp6Jourvj6WPuIrKMg6+1iaxTW+XrWWQq2ylkKwp51loKucpbng3Z4NyjVE9z/c65O9rPVm6B5pyrNtOkMWlX6lpbJ21eDBkNqc5g4dkPK5RlkLOPCSMoyUMpE0lDA4gCFwBAm6y6zC7eItVeZ66oojenz1SOb4vYmwwOjdBKBB3MTsRg8YEYnlLYWZC4odrkkZsPk94ihNt3burCWkiIqrVC/CNMvna2V8bWk9EUQcFjZW5GQp82JfBEUHBfWVgRITJHp9dHpPhXfea7/kKLriNls7yl1W4v0dTFP1Yuk8YPwVVnIZbYq3B0O23XfZyZ46BzqmMLw44u+EDXjoqNwE0nQePuQ9HeymauTJCjpjNT1Og+tUnSl2DVWxG8WtWRsXdLbdZxXFfbY2uWmzuXqV2xJr2N3sxlHjr6uDf5weXnWAnR729xUd0U0nShCPU/oY0X+5SFleg4+9PMvFX33paJfq8H79k6lOxslZRp2q4wU4MNc61T5/X4gEhNus2uMNdtmvM9Sbk+WwsBIrhdW5fBs9BEXH5DZBtB4Uhe4IGdy7tEUK3eGpfwj0ipczQCHRs8Tyf9xe079HlqP0yImyE3Pq68qx3eM7Gp/JSnbCLV2AXVLagV/+VgU7Xk3JS+bq1qvrGgqP2puSDls26VjeDVjr/dm+7u9vYOdg97u3v6wN301C3rD4M3+q9n+PpuxfWj1K4u+JAwHw93e4KA3fHO5s+fv7fjD19uDg52/oGovdsm4LuH9FlH2/wZlC6/Rn6vabYOiXTbIbBtulthdLG4u6yNbh2cjqOWtMNje2R606GoIUzhigQ1HhQvY1+CtOGPphnQnRTYWgUYW/VK9oJWR/9P9VOGtOy4r1WXujBrvdD8VjNtoY6df5idpDPlJogNjzxI0O1p5jkrRYU5H0B/DcjllCj9JkWU07N7744kHN0xyNiXmxuQG8+LwLOFvXNj+mY3RPRugSFwYd1hW4jXFUqdxGASY6k7ZSS1KnJ1eXIIH0/zDZJSEpCMZmUe/fSBnS8tmnR1bgmDxtaEQ64PDpJ9/AST1AHA= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Evaluations + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-evaluator-revisions.api.mdx b/docs/docs/reference/api/query-evaluator-revisions.api.mdx new file mode 100644 index 0000000000..2c263e1794 --- /dev/null +++ b/docs/docs/reference/api/query-evaluator-revisions.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-evaluator-revisions +title: "Query Evaluator Revisions" +description: "Query Evaluator Revisions" +sidebar_label: "Query Evaluator Revisions" +hide_title: true +hide_table_of_contents: true +api: eJztWttu2zgQ/RVjnnYBOXbcXFo/rZu0qLdtkk3SFljDCGiJstnqVpJy6g3074shKVkXW5FdGwja5CGJafIMeTiaGR7qASSZCuiP4M2ceDGRIRcwtiCMKCeShcHQgT58jylf3NG0xx2ncyZYGAiwgNPvMRXydegsoP8AdhhIGkj8l0SRx2yF0vkqwgDbhD2jPsH/Io42JKMCP1WxFUKwuHShPyr3dj016fUdmLizYyFDv9hJLiIKfZiEoUdJAImVNQWx50EytkAy6WHDULTONEJiIVw2wZ9BzDg2oLPYJ8HPAL5TAElipZ3CyVdqS1h2yky+VZxV8RILfCpJcRbEcRjuG/GuCrxW5ikkZ8E0D8sCSaeUFy35k2JLfnmrbYHNuB17hP/xNva8v0UYtIdBFMs/obxWxGCS+s0GEc7JopbW4lCocFs39iMyiSMq/vmUGL0IPzAhH+N03RrLozdj6FZ7IQTEpw3XX50Bjk0scKiwOYtkJVo0hzrPQSQWkFjO1jziBswCN+Q+kdCHOGZOLfhAo2W4pQ03Tvu4hea+OzB2kBwiawnOmcGubckUqTVUIaAB3ngleRPNl3OuTKkIJQSZbu0wH83wRoHy2iSgfzDprQ6Y+WzlruOimJHmlFezWvMVfDbDEwuEF0+3hbnBsZh7nF35+NCpZfWaupTTwN5s37O9aF0jvwXG54QzEshn5vfM/GfN84odSCu05y3Yu/NrorM9YIHtxQ69I9yesTldvY5GpaMGag1SoMSCexY44T1SUFNYB/SeCrnTvHKhIRMLQs/ZNfilhsSCg/5oCv3ovl8gVmKBx3y2GnRlzVZC+aBG47q5Qx8pOmgQ+3hKI8KmgaPbsPwxH8a1HCh45T6S8jnxtp7xMAVILODr6otqbVrBuValRM2T8yXzxRX5d+Mkfq2PqJDgUDyvMo7PjuQxVQ0iCgOh/bvX7eKfQmUJN7FtUyHc2Gtdm85gbXvStcNYDyrxvlzEmeqB++uS2JPQ764Mv/qguzrgVtPl7oJeNUUMdfwI+TfXC+/3YPKLgS5ZXK5yH6srrWoPq9EWdk9XkSXCJXOJvUsDAwOZWtjTqWlvR5hdHSesZyXqt1SiLmO5hRRVGbWBFqXH/uJiVB2tDdSobTh62nKUzSmR1Lkjuy2KzzRsa6DIiiNnH0Y+aVhjxKEe3YORcw1rjKR0TRY7zHUpWa8XJtulfO3USspWZiUlbKdWUroyK7/ywVzVD6QuN+9u9TFn26J84kwjrD6WNUJQB7IZJQ4ta8yPR/pnpaak1FQmOt4oo7wz24AUqCNg0x15Qjn5SRY6G+zBjSEeK0oSRSxoWgCVKd6k2koNqY3HJL619+vRiQUR4cSncoun+jf3lfWDr5aU4kZRPmc2bcIuqkUb+aCBTpRS5LJprF+o2Iets4KBjQSyc6IOCT8lslXk7ToxW+SVrdFmhkQmvyVKyzvq9apq3WfiMUcx0XrDeci3l+ocKgnzamQ2L7QL327y/I3Xk/YhtEl6BPDFdNXF6gopQndZ31WR0brFb1eRvtRFR2pd2rTpVxCXUno1u+uXca7pq9vhd7e3VxVAvbfFTVU6bmu1N/lUzkJ8TSkKBYJHRM6gD50IlVJ638kEE9HJtNOOeqUJdARQ8XX0oGswmEkZiX6nY3th7ByQKQ0kOSCsQyKmHjpB7ZgzuVBDBlfD93Shc75y51wHlYW0oxS7ZXtEIvae4iz08dNIX+w/vfso2ON89CjkBB32evm+1ZsfxI88uv79qUydyqlQOrYUdaSszchARhk3asxSQsgOykvvKm5T1pxKgvDCJS+P3ZOj9vHp4Wn76Pik1568cO12z3518sI9OSEuOYHcCxKjZiPGqToIvW7vqN09bfde3R4e948P+72XB93Tw38he1NhtL7POKcF5rJ++X5/lCuMl2vUFe7yM1arzWaPXrLuRnu/tkp3t/swVr2k1O5VuF9M7xHrti+9Dqzro2/1mnqZua/rZlduhfu05fVYN73e6ibq2swN1UObCtQqJLQGV0PInaChe3B40K08EYXOmIeIrfJQ+sSrr8EqxZ4s6uDVn6+SEEhK/L+WX+DMMOAZ3dbg1cXJkj5lYpCkP2Qn8ggLcsdQHUJHYEIo5FxIv/O5RNWBdGzBDKNvfwQPDxMi6CfuJQk26+/7o7G56Zggh6NxdmBVTviNLnQZg2m6rXIUdvdiHSVLKRvTqR4xsG0aydq+41yCuLq8uQULJuZdVT90cAwnuED83Qd0O8WQCpuq7QE8EkxjHSM0Jv78D6HRs+o= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Evaluator Revisions + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-evaluator-variants.api.mdx b/docs/docs/reference/api/query-evaluator-variants.api.mdx new file mode 100644 index 0000000000..fa126ea748 --- /dev/null +++ b/docs/docs/reference/api/query-evaluator-variants.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-evaluator-variants +title: "Query Evaluator Variants" +description: "Query Evaluator Variants" +sidebar_label: "Query Evaluator Variants" +hide_title: true +hide_table_of_contents: true +api: eJzNWdty2zYQ/RXNPrUzjOV6+qSnqnYyduPGbu2kDxqNByJXEhKQYHCxo2j4750FQIrUzbQuiZ88lnb3HBwssIvVHAybaOgN4O0jE5YZqTQMI5A5Kma4zK4S6MFXi2r2gKXFwyNTnGVGQwQ5UyxFg4qCzCFjKUIPFqY8gQh4VgaBCBR+tVxhAr0xExoj0PEUUwa9ObBsdjN2ccwspzjaKJ5NIIKxVCkz0ANreQJFVFlkVggohhEYbgR9UK2jc5VAQZZrOOl9SDGlGPlwg6kmi2fItmWrN9DVwk4OIGI7GncEtpnHMYVrKdSdo7GeYkjMn5l1nzyFzdm34PgKs3DB/jmJf2hWlrS2ZGed1yvI0jrjppTuz3GF+0AQdcwEdax4Thf6kaEvakh1BmPB9tuWFtjvHEYd1Rwf9H4ZM0XDjoz5N0HUMXkWC5vgA1PxlD/iXrffSEqBLNtK4MrjdfolXiPB8Zv5wdfvB4JscnhCfWAWCTP4xnA6WlupOOQ6GSmSn0TmxiPXyQie8r248MzgBNVW3GsH0tBAJah2gsXMptSgMh1jlngZ6D4L/xBq64Nz41gU9JFCnctMo7viz05P6U/9muzBnY1j1HpsReffYAwRxDIzmBnHMc8Fj12b3P2syWdeW0GuqIk23CPE0nqnJRUX3M6dBa1tzKww0DstotX65oJVpamJ0ei6j9JOR/Ak1ZexkE8HhPgvhAwITBk+ZrE5IEI/hAwIvhY1YjeF5PohttrIdPcLUnfOfYQionDV1uwTsdqLEHRqU5btE/DSBSiK6gjJ0WeMDazZ/lBbV+IVkS94DRYsSTidCiZuG7q2qHVrb5d01Pykvrz1WBBzFVvB1C/vrBB/aZm9ubEmt+ZXWF4sBQkHqo2Xbw+3tiFNX1iR9/nSHoVn+WsV9YO85to8K+vGGrns/jKNfMsVhdKyT4scNa/8A7S8EcQKmcHkgZmDlvJzH7bTd2LZPDkGyEcfNoAkKPAIIBc+bAAp5RrNDnjhl2L9OQtXfqnXQVFKtSqUUrCDopRyVSju5b1jrvoHdASHo+fnHM8XkPAgrp308qG98fGs693QYPgSGF11bEVBfr+fna02eJ+Y4Ilr3zpvlZJq9+4uQcO42NKaCRk3vn3JpT3cLNm19ARJ1VRP1o2BFoVFazbBhf6bTZ0YnXv6dp3mi6594NbloYNdLTMW8np1Ny/jwsu3bYMv7+9vVwL6vW1u6j/0tuiszaUUzVTSPDuX7jmWMzOFHnRzhY8cn7pVk6a7ZbfdLZ8qGtVjOeS2SkAPpsbkutftxkLa5IRNMDPshPEuy7k7IBpjq7iZOZf+7dV7nF0io/cH5XLN4I6SyqdJ02wxksr5eyQW4THVt2YqFf/O6gOdqfciRXg2ls697H8duU7/9goioGV4qU5Pfjs5hWUBG8Z0HljszkOJ7b6GaEmFav0QAabuMIBBlv6x+IKYkfKhaQ3xtuzXUm0OYhj8Zrq5YNxlvWMxD1s5gLCVUHs5UaTaDxZ+Q4cRTCkJegOYz0dM40clioI+9t/TniVcs5GovU6/4Gz1tw36j2i5o9vCRb/YJ0xaX+70cqjG/HxX191hd1rp8uC3jXeYwbYxbY5O23iUo842tqa9aZgrtjFdMw5spYof3LUzDfO1NsbV/KuNcTmfahU4DJUWtsNw1kd07w2ock7LO3cenPpxjHkdYaXQU5SqVtze3N1DUfwPi8PuoA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Evaluator Variants + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-evaluators.api.mdx b/docs/docs/reference/api/query-evaluators.api.mdx index 88812c32e9..1f5d39761c 100644 --- a/docs/docs/reference/api/query-evaluators.api.mdx +++ b/docs/docs/reference/api/query-evaluators.api.mdx @@ -5,1036 +5,67 @@ description: "Query Evaluators" sidebar_label: "Query Evaluators" hide_title: true hide_table_of_contents: true -api: eJy1V0tv20YQ/ivCnFqAtlyjJ54q2wripq1V22kPgmCMuCNp4yWX2YcTReB/L2aXoki9ohqOD7a8OzPf7DdPrcDh3EI6huELKguTBHRJBp3Uxa2AFD57MssnekHl0WljIQFDnz1Zd6XFEtIVZLpwVDj+iGWpZBaU+5+sLvjMZgvKMdwWy7sZpOMVuGVJkIKefqLM1RalIcF+5ORQoEN2xUmnWHC4hv+bvbmP+FAljaXCKwXVPo1eUOk1OlVVMZ4tdWHJsluXFxf8R5DNjCzZd0jhwWcZWTvzqndfC0Ny+lNLwyw6GREy7aNS7a0sHM3JwMbd6yBRJdAQzeLSUW53zRWY014+rTOymB/l5S/WrZLua19n6qZlokogM4SOxBO6YwYTmGmTswwIdHTmZPDnMMp1NNsbBHp8KX4EyMdotgYRpOgHgNxEszXImq7p8kmKE3G8l+Iksq6WvVvR5utNUdZsNShrwt4UZU1Xg2KVn782Vx9Yt0rg7dyLPs1U6J7Hetta4V9tnmdKf3kXVHZNV8mm9XUMohCSiwzVqNMGTuBh3Wg6aPm0ezLVWhEW4Wg/FmTSZF6h+emdV+p3q4uzO+9K737m93Xey0bqtnWKFhqDy6M8b+ky6buIh5T/XBPKSbpD7PcidRM1dwK148KesdPyM75xnwxXzgy9cpCO95ptz8U4RPaNONtMqDjdfr283B1o/6CSIoyr3tCYAP7KaSbIoVRH5pPSWef2/yTq5DBvf+joIFOb23lrnjblu4m7tTinTRAOiwYyeo98+70I8LsidC3XCsaG3sju4WfcRPqOZdH7x8fRjsEY225Q424zbC9nObmF5sWt1JZtlugWkEK/NPQi6Ut/s8n1w2oHCVgyL2RsiJA3ClJYOFfatN/PlPbiHOdUODxH2cdSwrYPg3Dbu2bRUHyWMm+kWwZ7g9HtB1q+JxRkQpa3BB44wWLKdMWaaGEpPxC7GFceGHi30EZ+i3mQgGQHFlGL2eHUvd9sp8OvmJcqhL9p1NI+Zd46nUPqjKeED1pLV3O28DkW8f9uZ2YcWcx0cLMOWM3BFWbPVAhIgPmM9Fyc/3J+cYi0WqE3GN3W9YiZ26x4tRgkW2FpAgIJUB6KERxh/tvmgr3kDAiPaOztyZetRbAm3tFX1y8VylBtAX1Vp9IY6lSC1rbKlmI6TRJYcOalY1itpmjpo1FVxcfxPh1PEnhBI3HK1I254Bfr9FjBMy3DOhw601koSxZXPqbDVpfiDhI1BllGpTsqO2kVx+ju4RESmNZfYXItWMcgP4p/pwD8RYi1Q9aEsxUoLOaeG0sK0Sb//Ae6wotj +api: eJztWVlv2zgQ/ivGPO0Ccuy4OVo9rXuh3h7JJmkXWMMIaGlss0sd5ZHEa+i/L4aUdViO6rgp0D3ykNjUzMfhx+HwG2UFms0V+GN4dcOEYTqRCiYeJClKpnkSj0Lw4YtBubzG0sIDiV8MKv08CZfgryBIYo2xpo8sTQUPrHPvs0piGlPBAiNGn1JJ0Jqjom8FpHWMl2cz8MebRjNhQ7zfgKvrwCidRHUjvUwRfJgmiUAWQ+YVQ7ERArKJB5prQQMj1XnhEDKP4O6J62GIBaM56MJELP4WwDcWIMu8tVEy/YyBhtKomPK15ayJl3kQoWb1KFgYctouJs5rvDbiVFryeF6F5bHGOcr6TNG0PlJd3va5IOAyMILJn14bIX5VSdwdxanRP8PmWgmDa4x2c2JSsmUrrXVXaHDb5vuemCSPRn7+SIx+SN5xpb/G6X1r3PR+GENXLgshZhHuuP5mBOSbeRCiCiRPaan7Qr2sQOx0jH6jwrf9GBUl4lribGNz8wTdrFM3KNU3RP8pd888UMLM94W5JF+qSGEbggezREZMgw/G8LC9NIWtbF7gDCXGAVZy5+sHs9iDzgXxSwHHgTAhXjMZLPgNbg9/p1LqgDrDNVDmwS2Pw+SWVt5y0cR4i0rvSFvINHY1t8nbkt0OMvMgEeFjg585SDqAeLcr9Fe3+wNhZR4IHvHtoFtr2AbKO+tN65Yhbr9ni9gwNhFpFKYCjEM3RuUg/zJp5cDC2/TRKG+Y2Dvi0Rog80Ayvb2gNWt1A+eCfNsOzO9FLm6pPDuXrQun0CAjF5JrXNKZ0dKgHVBpEiuX14N+n/7UKixcmiBApWZGdC5yY/D2FXpBYpzTBt9l8C+sBe3rjBmhwe9Xi6zTedvL6v/68L+oD8+M3kMgNrweoBCd779cIrbRuoNG3IejH1kkehBIZBrDa/a4V/MLB9sZWrJMGn6PST462HySEAV+h0leOth8kjVd0+X14wnMNVnPl51RWOXrUWdZs1XMsibsUWdZ01XM8o/S8rU7q1ZCt9io6nU+3k26qEJrZFa4HA0GTWnyiQkeWuHReSVlIvfXJSFqxkWLuBBJUHv6kPI8uZ+jd4kLkGiM1LyijIo9K68Qpdi80jzdb2rJ6FzR021klyJwbNflps7tqo1mQa9j9/5lvHT0te3sm6ur8wag29v6plrR2qklT4R6kdALyDRRhJkyvQAfeqnEG463vVIe9uwrSvBAoaQ22+6QkQJ8WGidKr/XC0RiwgM2x1izA8Z7LOU28xUGRnK9tC7D89FbXL5BZnuS8aRqcEk55LKiblZsCEv5W6Qo3FUGQ6MXieR/ua2mFoTicV5EAGXnRfki9dUdi1KBjRejhcCtCFmS8ZtStBjLlWQu9XNBV6qQ4q4tM6i+FUVON95yjCtvMUpvV8LK71SO4MmMPT2enRx1j08PT7tHxyeD7vTJLOgOgmcnT2YnJ2zGTuwGNPt6t5BaS75uvWHQHxx1+6fdwbOrw2P/+NAfPD3onx7+AWUH3WbjGuHdgita3H7RpdZa0LKj7K87wn5mO81ZYrMiPwJDm3Od4fkIvAp9/YPDg36D+5oxVTUW2Kq2Tin7GLyN5C7SmrrlyJY00MiiX8oHFBmdo7zJyPG2nLoNDZXntsY73UsF47Zm2dlX+YEcQ34godaxee7/BlRZFnR+/TGsVlOm8KMUWUbD7rk/nnhwwyRnU6JrTGVzsT6BK/gTl7Y9tPW9a4sbmQvjTtxGrac67DyGQYCpbrWdVErM+dnlFXgwzf+hESUh+UhGi6LfPlCGWVbsWbRjKxAsnhsqzz44TPr5G1xdoH4= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Query Evaluators - + + + + + + + + + + + + + + + - - -
- -

Body

-
-
-
    -
    - anyOf - - - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - metadata - object - - required - - -
    - -
    - - - property name* - FullJson-Input - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - evaluator - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/query-invocations.api.mdx b/docs/docs/reference/api/query-invocations.api.mdx new file mode 100644 index 0000000000..d146ff7bf0 --- /dev/null +++ b/docs/docs/reference/api/query-invocations.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-invocations +title: "Query Invocations" +description: "Query Invocations" +sidebar_label: "Query Invocations" +hide_title: true +hide_table_of_contents: true +api: eJztXFlv2zgQ/ivGPO0Ccuy4OVo9bXosmm3aZJO0C6xhBLRE22yooySV1Bvovy+G1GnL8g2krfKQWBJnhvxIzozmo/MEiowl2H049x8ChygW+BIGFgQhFfrq3AUbvkVUTO9YoYkFgn6LqFSvA3cK9hM4ga+or/AjCUPOTMPOVxn4eE86E+oR/BQK1K0YlXiV69SS/vRyBHZ/tlUg2JjNtFDTkIINUgnmj8EC6kceDsSJpAo8sGASecQHC0ikAhySYoqjxA3zQk5vBXHopdEbW5k6P+Ic4kFswT3z3dUsEncSOHj9QDhYEHIyXWDvA+qstOZMiO9TvprBQPEQLHikQ7BAuvc4yJAtsPkm0Vxp1sx+0SZxXYbTQfhVaQoW9aqglvmKjqkoW/KG5TvDIOCUGMyrbYHDhBNxIn77FFwwqf6Sgd8+98NI/Q5WqiYYfqWOqhhUjsGsNMTrSN8iMrEFHlXk+SL0Z8T5MnyYot5qQkQIMq1FpSy6HqIfEckYHceICuo7s6iVt7x2OXUNHqiQc25jIfJzvfmSiMcWSB6NN1Vzg7KxBWyJrxgFwiMKbIgiVuUCco3nLsRzuOaPr1P0qje08dQPRDCSOOMGvrXhE/SBzYPT4LccP0WlkrRZeJsC1+zcbQFs9u6mCBbS9ga8LcBr9vAuQGz28aYo4mtoRFQgGug2hq7Zw9tD2OzgbXIZh0jaILcecjVyhYLYdV5/qESfM/9+xaJYeUpkSPy7eiRqsQyJ38LhW6Cwn1uo0uNsLYHygvn31RWcpGL0c41veXHrQk98ncq8SP63Lk9Vrp+8pH1XsZR+UWxz5FoJzBY8Mt8NHrE/NX7Op49UqhW9i0sUbSvmVXmHQmHYqIwtCLi7a+WXRmVsgU+/r6p6qVf8hLq0b/JYtdLK0vLcAkdpHLdwqajvW0ZuSIf6rrnn0uxiUIuBVq+3gqICWZFNe3yeKsC6MVG0UtF8CX1OzzXK1i3of7K1uF5cmfEI14YUgziODUPGBHXBViKi+oYMA1+ahd3rdvEPYipYaN664SZyHCrlKOKt66QxWJtya04QGaEZwPPev9EtcGJHJOIK7G7JfxmGrtphOYISRd07stvt88aobZ3pdRqF7j6MfDZqEyMu5XQPRt4atYmRFK7hdIlrXscrpGC9nia+P8Vrp1ZStDIrKWA7tZLClVl5jhHRKjDR2Z7JGedFPnQjSjojoHNDKdG80FevS0QXaeeCmZDVGNmQfP5xqObLSG3DNRvxn5psrkNoMds8J7UG3bwJqCnf7JIE1AbKOigLrphUEfUNPd/Q888DvqawuE1hsaHnG3q+oed/PAQber6h558PiM0+3hTFhp5v6PnnAGGzg7fJZRp6fn3kNqDnGzL+VyWMF5PxOa3WN7W9UqUqXTKV3PNcD6oaySIh1l+R/ZMZXRdr7u+o15tn974QzlxDgr8TIhCbU3suVYTxGnqOB07p6TpFzsFilC4KQHpyXCAXM1+Sl1+lJGOaQ764qQajdYtPl0041wQHmk7aFZ1mBq9Bd/Ew3hr46qb2/e3t1ZxCM7flSdW8b6u8fDyqJgF+cTIMJCoNiZqADZ0Qgy597BQo1o6ppFogqcCgoecoEhxsmCgVSrvTcXgQuQdkTH1FDgjrIN2CW0VSJxJMTbXI2dX5Bzp9T4lm9vuDYoMbXEVmXZSbZVNCQvaBYi984uH1WaQmgWD/mclGThj7Y6QQAlyf1/kXQN99J+i/Ye4LnSldllNghtXKqKqMgEp5pYQmysmQuUJ0VnrOYmy+okywzK/Rq8GLEXl5PDo5ah+fHp62j45Peu3hi5HT7jmvTl6MTk7IiJxAVXF2PwaKideuLRQKfHtSvU98qopEu7YxU0bZo/p9IrXoVXzXdkovq3tTvk+kql949rFy01eC3eou5MBx5eHCfiEXLITWLKnLIv1g5sRderIOet3eUbt72u69uj08to8P7d7Lg+7p4b+QH5Cra2POua02nOwEWzc7hFY6YZYfGOumB766ZtijQIerJDqf6WDYOrs6B6sAePfg8KALsxG61BgTLuLopZbGOv0YrJmom8VbPPvg6WwLFCXeH/kD7BlGeDzUkeurSghKHcqirqLfVSfkxJz30OafklyhD0muAOUDWUkQwbRngrmF3YenpyGR9LPgcYy3k/DYH1igt9UQAetjTjdJk4MnuKdTffxLJ59tnXlhcx6ZZGAmEcUk0UicOQ4NVW3bQSH9ubq8uQULhsn/iPACF2UEwVHhbxtwjYXZWTN97wk48ccR5o42GJ348z/dWHo6 +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Invocations + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-metrics-preview-evaluations-metrics-query-post.api.mdx b/docs/docs/reference/api/query-metrics-preview-evaluations-metrics-query-post.api.mdx new file mode 100644 index 0000000000..f0d8b16d60 --- /dev/null +++ b/docs/docs/reference/api/query-metrics-preview-evaluations-metrics-query-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-metrics-preview-evaluations-metrics-query-post +title: "Query Metrics" +description: "Query Metrics" +sidebar_label: "Query Metrics" +hide_title: true +hide_table_of_contents: true +api: eJztGWlv2zb0rxjv0wbIsePmaPVp6YV6bZMscTtghhHQ0rPNjjpKkUk9Q/99eKRO21HkzOmGof3Q1tS7+W6uQLF5Au4Y3twyoZniUZjAxIEoRml+DX1w4atGubwJUEnuJTexxFuOdzdYohTfLGQcJQockPhVY6JeRv4S3BV4UagwVPRfFseCewa39yWJQjpLvAUGjP4XS2KvOCb0KyNt0MLlxQzc8TrITBgtqgDM9zmRZ+KyBlpCqGWM4MI0igSyEFKnOEqU5OEc0knq5EfR9At6qgoUaiEgnTiguBJ08NYIkTokMHukMDnnkg0PFc5R1jkH0/pJVYftvMDj0tOCyZ/eaiF+TaKwOwxjrX6GbSpyhUE7JCYlWzabpYYKO5n0I1mSMB5/vd/BoufRB56oh2x6n47r2LtZaJT5XKKY0o0WcABDHVCoxxj69uSrRo0+RaoOQ3uUaM/DJAEHZowLLZEQpYwkHXks9FAI9KEiQpk5rq0Qm/IWAq5fUuZo/6as7T35OlchdYwTyVsmtlp8q4etERvmBCrEHjBOSba9zMOCNGHxABPFgrjZT2aRDJgCF3ymsEtIzS5YUK2yaHvRW5m1129U8iMn8zBkkkc33G+potbcb770jGRn6K9x2FnDjNcODlfyNupJHe5RsysdZkpZuk+vj+Vo4+c7sDOsNrLptmTw0bYYv1Hzsj193fHQj+5IooY2JMQ7TNReg+vckkwdiIS/b+IXlmTqQIjf2pJ+0K/OiVbqgOAB3060TX78YLBJb+mjbFfYGEVnVi58LH5MGm1gyO87o0umcCuhzU5jM0oIt8lvfy98cYur7uzvV7ZJh5RQqWPnEn1wldRoDpI4CrO6Pej36R8yreQxEaIkZYvwTIvOVQZM1fdxvb4XaYu0ZvdSiVcGgu53xrRQ4PZtx52PCEUe+TEh/OMJ4UKrR4wIG1g7zAgW938+JDSZtcWU8Bgb5WOCJ5Ep9G/YfgvJK0u2c2bE0rH/FEw+WbIZEx8FPgGT15ZsxiQ313S5x74rN9bLZdZ+5fbaK5fcWgWX3GB75ZKbq+CyP9KW3i3KhNua0SJqN4h8ztD/8xNypaAV3OnS2I9CsbdC8ZrZQrHXTu87zNRPP9WWg2Uzyc3hcUu7WfaQ45zw1ljImtCNka5W2Q1EJTjGu3W4RUeamvb2aDDYbGA/M8F9g9R5Q2H8+O7VR8W4aOhCReTVvu4StJP77fQhsgKa1jKZb7vH0qRJwuaVHcv9oMYYnRF9feiaSS/LOoOrpuDCvNa696vx2pqv6YLfjUaXGwTt3dYv1Yw2ndKBAlSLiJ4ysqeJmKkFuNDL3jJ6lbeMXjZN9MxbBiV8lFSGzD1pKcCFhVJx4vZ6noi0f8DmGCp2wHiPxdyEWYKellwtDcrZ5fA9Lt8hM3PseFIFuCZPsr5RByuuhcX8PZIUIQvo95lWi0jyv+yFUzIjeSwWmYF89Kp8d3nzjQWxwLV3lHwaKkeRsn+ulMpKHSzXt2V1nFRTab+2xhz3J7XUCIP+4KjbP+0OXowOj93jQ3fw/KB/evgH1FeG4/sBJ2uJEJ7N2PPj2clR9/j08LR7dHwy6E6fzbzuwHtx8mx2csJm7ATWN3bjdmiTMie25VMs0dqz2Al8fQmVL5uaTJvvjJpg7OqnrZbZUqdf7GVqS5eaO9gdSD81FXcWGZ/OwvjMREzn7HIIlRYP+geHB31YD+UaMGVm5pnMnAeE+QzOWmgWQUndWWDSMihkwS/lB5KM0kHAwgq99cxRE6YIS4XfVC8WjJuka1ivsqQyhiypEOfKq2q5pnDsgyq5wILSkTuG1WrKEvwkRZrSsf3ujicO3DLJ2ZTMNiYfWOR5ZAV/4tIsREyt6ppETeBC27yxVreopliMM8/DWDXCTioZ8/LiegQOTLNX3CDyCUcy0o/+doE8LbZKuit7tgLBwrmmUuOCpUl//gbwBUqP +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Metrics + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-queries.api.mdx b/docs/docs/reference/api/query-queries.api.mdx new file mode 100644 index 0000000000..dad87d2f4e --- /dev/null +++ b/docs/docs/reference/api/query-queries.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-queries +title: "Query Queries" +description: "Query Queries" +sidebar_label: "Query Queries" +hide_title: true +hide_table_of_contents: true +api: eJzNWE1zIjcQ/StUn5IqrSGunOYUss7WknVsJ7C5UJRLzDSgjebD+vAuoea/p1rSMDMY47GBJCeKUbfe01Or1a0NGL7UEE3hd4tKoIYZg7xAxY3Is1ECETxYVOv7hzDMoOCKp2hQkdsGMp7i1kokwEBk1X9goPDBCoUJRAsuNTLQ8QpTDtEGeLa+Xbg5zLqgObRRIlsCg0WuUm4gAmtFAiXbWmRWSihnDIwwkj4Q63VvlEBJVjtc9DFkuFKcfITBVJPFCyS7sNR7aGpplycQ7WX4MQHtxz+nUB2EGTsKTWru57yi3BBEEzNBHStRUNyfGfqqgdRksJD8uK3ogP3BYTRRzflBJ7uYKRp+ZszfCKKJKbJY2gTvuYpX4hGPylTzPJfIs4MERh6vN6zwWgGO38y/nCpvCLLN4SvqE7NIuMF3RtDROkjFITfJ5DL5j8jceuQmGSlScRQXkRlcojqIe+1AWhqoBNWbYDGzKV3iXMeYJV4GymfhD6F2Pji3jkVJnxTqIs80urR+ORjQTzNNRjC2cYxaL6zs/RGMgUGcZwYz4zgWhRSxqyb6XzT5bBorKBTVGkZ4hDi33mlHxZrbe2dBa1twKw1Eg5JBVZpEm/oOak/sE2tLMZ4kgkhxedcy7XLUKxFn5VbXfP4FY9Ml8zKf/N5G5un27Y20dN7+0lzDfiyIhYqt5Oq7D1bKX3Wevbu1prDme9i3xqBzFy9fHhwUpu0Lr1LVp3kWytj/q6g3+bXQ5kVZn82Xu+6v02gSAs+nmWPKJdY+/icofxjECrnB5J6bk6b1937a3tCJZYvkHCCf/bQBJEGJZwC58tMGkEquueu2TlQbVGL97HupWq+TolRqbVEqwU6KUsm1RXEd1htj1TdNDE5Hz/eqO6d3pyNqHO+qu2qO+z58ewdOZy9NKFBvb+eyJOsfLy+fXuZ/cikSd1X3flEqV2+/yRM0XMgDN7LM49boa5Ly7Hl1rnNP0F2zermvba8vDq35Emupnzd1YvQmNLpP6bpCm7p1eehg19j5Wl6v7vPLuPLyHdrWj5PJ3ZMJ/d62N9W32HXYpGhWOb3rFLmrtwtuVhBBv1D4KPBrP1RT/ar+1Kgeq7ceqyREsDKm0FG/H8vcJhd8iZnhF1z0eSFcpGuMrRJm7VyGd6NPuP6InIpKCtWGwZiix8dD26x+WyjEJyQWoUIeWrPKlfibN7v0lfeipYtskTv3oNLQkesN70bAgJbhNRlc/HAxgF2lWsYU+Dx2gV9hu2FgOyps1w8MMHVRDwZ5+lM9QMxI7ZRnjfl2N2bnZg0KGPxm+oXkwsW0g96EPZtC2DOoa2AW+oYZgxXtbzSFzWbONX5Wsizpsx+nrUmE5nPZ6Cz+wnX7Je+RS0sk3DF8wVy/yj68er3OoStEeD3qYtp+9OniUT3SdLE13U3Di0gX0z0PGZ1U8U8O3UzDy0AX423n3sW46qw7TRza4dp2Rn+UIGOXS1h19imcvdMwjrFoIjy5tmiWbRK8ux1PoCz/AWwoyVw= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Queries + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-query-revisions.api.mdx b/docs/docs/reference/api/query-query-revisions.api.mdx new file mode 100644 index 0000000000..f97fc8e282 --- /dev/null +++ b/docs/docs/reference/api/query-query-revisions.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-query-revisions +title: "Query Query Revisions" +description: "Query Query Revisions" +sidebar_label: "Query Query Revisions" +hide_title: true +hide_table_of_contents: true +api: eJztWltv2zYU/isGn1ZAjh03l9ZPc5sUzdomWZJmwAwjoKVjmy11KUkl8Qz99+GQulqyLHv2sBXpg2sz5HcOPx6em7Qgik4l6Q/J7yEIBpKMLOIHIKhivnfhkD75EYKYP5hPAY9MMt+TxCICfoQg1TvfmZP+gti+p8BT+JUGAWe2Ruh8k76HY9KegUvxWyAQX6Gs/oIUcfVqb341If3h8swJ15rmJ1DHYSiF8uvC1GyGmgdA+mTs+xyoRyIrHZJKMG9KolFkJUP++BvYKj/JCzkn0cgiiimOAx+0EpFFXFB0S2USyZkY5imYgihKdsfFkfweqmURmwk75FT88iHk/Dfpe+0LLwjVK1K1RabAbbaICkHn9bQUlpKNKP2CTOKK7Y/3X2D00v/MpFrH6ao9Lq/ejKG72OY86kLD/Zc1wLWRRRyQtmCBKl225lBnOYjIIjRUM1/UgVlk4guXKtInYcicWvCBQUtxlw48Ntr1Eprb7iCWg+RQVUtwTgxObSumSa2hCgFj4I13khfRfDtnWpT2UFLS6dYG8yVeHpVMNZuDMWN+E/tu/aMCMrJSJz9ZxUHR0z+CKAeD5prfx8sji0geTreFucW1kUWYsyvbvnBq2byBCQjw7M3OW9PeukFuU6YfqWDUUy+M75Hxe8PxEvNJIvNC/V6N3ZCccs88m4cOPFBhz9gjVO+hIgcsK22AWoMEKLLIE/Mc/wm3X5OcevAEUu00dlwayMgiPnd2DX5lIDGpgOem0GvP/BKxIotw5rJq0Mq8bAnls16N+xYOrEkswAtdrF6otMFzzBimOPGPUS0HGl6bjwLxSPnWGl8kAJFFxKocopx/lnBudLpQc2v+SG2xIs5uFKhvTPVGIlyGpRwTeG+UCEEPyMD3pLHtXreL/xUyR3Ib2jZIOQl56yaeTKxti0DbD82iJc6zDbzXM/BsJzTkivS7JZerkVY42WJY3J2TK4aCC+0vdi+liG/2sus9GGwqFJtQe5fKD2LIRMKeqoW9pe67SqOtlwbGNg2Mq1Bt0cEordqghWHW/uQ9jDpaGzQxtuHov93FsAVQBc4D3W2e9d7AtgaarDBw9iHkq4GNhTjAYQ9CzgxsLCSha7zLSJSQ9S4JRwlfO5WSsJVKSQjbqZSErlTKz1zn6fC7FE2KCdhLEfVSRP0viiiLTBhXINaYqnlEZhLZtCYh1HOyiFqmV//Vx7LG81Ehz4x4viD5k/OnzKb8KpEQ6bLKRPZijbPySRkD7lS1ltNcR0+ILPId5tt6kk8wN9UOD5uG840TmmSnVS2i6mQH69dNkpJ7rX5kFQ50/U1h+ACUyQc8x3wA892ACiZ9L3d6q1HgB56+/pyiPXClv4H+ip9j9eTl8S9DFwSzG4FLRYWST0zN9KCTfMUSnTL9BNelyp4BfuPsO+QF3Wq0RnKYZ+z5gRVUxVSx0foZRQVmtETmGbObIcAzk0rGWsQ/cjjnOIKdxiqwsj9LJuV6DXjc2kTSK7jq5tlUwoMETzLFHquvRZM25HsqoXWbwuRUmVAusUEDz1il6wPcWso5YrS+aIySiBr/eQfP6irmAvGLFFBeHQKaaDTgfCNNjJFlmqw+1HhOBVbW+xrGjrNwoWPHq71wWmYmEeIVGS27poq1Mr+nYW2fLkX+J/29M6qL0a3Xlzryq/rvG2ysIECmHcNItx+Per1yg/Gecubo9mHrXAh9IbfsLjqgKOM13UHu2yvi6vpQVmMAn32joO62yGldQM51icyU1VM1Ga07/Os6c8Z9GdHxvGLgi+k17K7expmhr+50P97dXZcAzdkWD9XYT9mKXFAzH182CnyJwAFVM9InnQCbu/DU+WFeTuqkvV49glpKEFhZ6dMKBSd9MlMqkP1Ox+Z+6BzQKXiKHlDWoQHTTkGCHQqm5nrJ4PriE8w/AtVJ8nCUn3CL9mQspDgtPRwaMEyDkp5G3I5kf5ljx5wY9TGrkAy01JvstanzZ+oGHKpfg0q6hVmrLusvpV2UzDyKPKfDSbuVvJ7QN8eTk6P28enhafvo+KTXHr+e2O2e/fbk9eTkhE7oCcm9dDFstmKUdF5Jr9s7andP2723d4fH/ePDfu/NQff08E+Svv0wXD1nlOuzZret8N7AMPeoNNufqYWz31jXNtMcT7rqafn+5Cw9G96HoPKDUJMQF8rvpMyuO7KkWq6bY4reppYVl7PdtCItlJtZ9dhNqr9upKvKia8vXJIh6OvcGlxfkFxLhXQPDg+6pVtQmKzzXlsHj+S26j8Ta8lvpB4DU0xXRw6igLq/Zn9AzdBTudTL4a1ybkvNyth3KHhWnYBTpuODVmER+70hif0eMabDwLxvmUEa7zeyyAz9ZX9IFosxlfBV8CgiicGhP4sfR42RvCHGqlni6ham+MM0BYNqW0eUtJ4rB1gMfmbFwLYhULVzRzmXfn11e4e1TPyeqOs7uEZQ3B1+9gkp5NZ6bEE49aahcQgGE//9DZL6bwk= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Query Revisions + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-queues-preview-evaluations-queues-query-post.api.mdx b/docs/docs/reference/api/query-queues-preview-evaluations-queues-query-post.api.mdx new file mode 100644 index 0000000000..5b9847c957 --- /dev/null +++ b/docs/docs/reference/api/query-queues-preview-evaluations-queues-query-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-queues-preview-evaluations-queues-query-post +title: "Query Queues" +description: "Query Queues" +sidebar_label: "Query Queues" +hide_title: true +hide_table_of_contents: true +api: eJztWetvGkcQ/1fQfGqlw2DiR3Kf6sSJ4iaNHdtJpSKElrvB3mTvkX3Yoej+92p27wn4DBRHUVV/wLA3752Z/e3cHDS7UeAP4fUdE4ZpnsQKRh4kKUr76ywEH74ZlLPxN4MG1TiVeMfxfowVR/HI0aWJ0uCBxG8GlX6ZhDPw5xAkscZY01eWpoIHlrX3RSUxrangFiNG31JJyjVHRb+sZMsUz86n4A8XCabCevAwAVdjRabEmjNBC3qWIvgwSRKBLAYPNNeCVs5U56qi9CDEKTNCgz9lQmGWeQVrMvmCga5xVtH7SPa+sTZlXqkrNkJANso8iFCzprUsDDlxMnHRsLuiyIUoLXl8UxfLY403KJuaoklzpfCTllbrgoDLwAgmf3ljhPhdJXH3LE6N/hUWPSYZXGO0HhOTks1WhKGKW5MVliLcxvsHRZI4lvb/Z4roh+Q9V/qxmD7k4yL3ZhG6dlkIMYtwTf+XLSDejGpBBZKn5Oq2ok5rIjIPjEI55mGbNA+miYyYBh+M4WGr9E8KZecsrEle2PM8bx/XsX765jptkKWJd+jNpYlzZ5zcp/fFabSu/Ah1VtX6HfUjnSyrO+o9j8PknuxpOQRivEel19ydkGnsam4Tv6UynMjMg0SEuxZ+7kRS8eL3dUU/mlUfSFbmgeARXy10Zf9bkPLecpPfMkTZbhvGJiJ4wVSAcejWqJXkP0atMbDiKR9jjfLOHd5bWXxWCKB6Ynp1M1zu88s1QrxtWftnmYsrUnXDbL90+AkyYiQwxSWG4Gtp0C6oNImVy+5Bv0//Gj0arkwQoFJTIzqXOTF428KwIDGOaSHqlQuvLEUNNPUzz6E3h8KKFvI/ent69HZu9BbwbYlrA/zmeP/jAK4trGsguG1i9HNDuEAi0xiO2W4Pv1dObOfEBsuk4VMo+eTE5kpCFPgESk6d2FxJEa7JbIdIsQjWy1mBfvN47VRLEa1SSxGwnWopwlVq2Z1oJ+8OpfoX6f85Z888UJpp09qUKvCTltDHnochWFQfuyXljmlyhnFhJB3SKGUiaSlgcYBCYAijVcfVlTNilcnl6Vdqp01ji8dX87B95OK09TVguxsVoUQmefJDrj9XubJSucZ0/BVn62neSJPGtPOOJG+ASU6ZPStXQJLq3tkejOW75QrtFcwcFoJXJp61acnrivKjw321NBxugn9VCVgzi34PBoNlfPuZCR5ans5rqpftwW2ImnHRglJFEjSeboJDRg9H6X3iDKRARupm1R5WWEkpdlML+cOkNhida3r62BaTX051TlfvdWV4XXQfduPUha9tf99eX18sCXR729xUe/PplOkTob5NaAKdz5RTpm/Bh14+g+7VZtA9d9fo2Rk09VWU1O3tLhkpwIdbrVPl93qBSEy4x24w1myP8R5LuS1QhYGRXM8sy8nF2TucvUVmr7jDUZ3givLIZUaTrNwUlvJ3SFY43AYnRt8mkv/ttptutGSP46IgUIZeVvPy199ZlApszL/Lm9LCjcjdbsqrSYWnS9RYpUgz1uVyOYmDZ1P2/HB6dNA9PN4/7h4cHg26k2fToDsIXhw9mx4dsSk7gvqAbbgey6jqU+vqKOde66vYiHxxclRMiGDQHxx0+8fdwYvr/UP/cN8fPN/rH+//BdWgp43GzWvW9TKfxPTLYUpjUlINPvrF4KKf2YHINLHZlpfXic3lzsnFGdQwDvT39vf6S9veIKaOyQLbMYtUtY9pkxtFU5YLwZPItkvQyKLfqgdkGdVpxOKavIWKXriE5PWi8bvupYJxNxmWthm7Yh9CXuykuPaSqhwueO71FCXALXUJfwjz+YQp/CRFltGye+4PRx7cMcnZhII2pAy4Lep7Dl9xZqcY9gTp2vZJ5MK4el44TajTO46TIMBUt9KOao3s4vzqGjyY5G/FoiQkHsnIPfr0gfIsdT76c7c2B8HiG0MHgA9OJv39A8wEYu0= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Queues + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-results-preview-evaluations-results-query-post.api.mdx b/docs/docs/reference/api/query-results-preview-evaluations-results-query-post.api.mdx new file mode 100644 index 0000000000..8c9a18cdcd --- /dev/null +++ b/docs/docs/reference/api/query-results-preview-evaluations-results-query-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-results-preview-evaluations-results-query-post +title: "Query Results" +description: "Query Results" +sidebar_label: "Query Results" +hide_title: true +hide_table_of_contents: true +api: eJztWllvIkcQ/iuonxJpMJj1sTtP8V5asocdm91IQQg1MwV00nNsH7YJmv8eVffc4PFA8GYTxQ+26en66uiq6qoa1kTRhSTumLy5pVxTxaJQkolDohiE+TT0iUu+ahCrqQCpuZLTWMAtg7spFCT5M7szjqQiDhHwVYNULyN/Rdw18aJQQajwXxrHnHmGtve7jEJck94SAor/xQLZKwYSP1loQxWuLufEHdd3zLlRoryB+j5DdMqvKluLHWoVA3HJLIo40JAkTr4klWDhgiSTxMmWotnv4KnyplBzTpKJQxRTHBfeGiEShwSg6J7CZJwLNixUsABR5RzMqitlHbbzIh4TnuZU/PBWc/6zjMLuMIy1+pFsU5EpCNoRUSHoqtksFVKyk0k/oiWRYv/j/QYW/RR9YFI9ZtOHdKxT72ahUepzUlGlGy3gEAh1gJEeQ+jbla8aNPgYqDoM7ZLUngdSEofMKeNaABIKEQlc8mjoAefgk5IIReK4sUJsypsLWD+k1NH+SVnbe/JNpkLiGCcSt5RvtfhWD6uBDTOAEtgjxilg28s8zKGRigUgFQ3iZj+ZRyKgirjEpwq6SNTsgjlqmUXbg97KrL1+o4JfgvdNDFRNmX+/97lcG4jO0L+vAj7B2RSs0hCGePoHrFqmsS3uCXHnPazKWO1OYbcgsFysyB6EVLBoyvyWLqU185vxU8jO0K9x2NmjUl476Fbwtu6kwwNqdq3DVCmL+/T6WI42X30DdobVxu21Lflem4ruFywVt98Wdyz0ozsUqKHqC+EOpDpoLvtkIROHRNw/NPilhUwcEsJ9W+hH3eoTYiUO4Sxg20HbpL0Phhr1Fj6IdnUExeBMb2cf8g+TRhsY+ENfoIIq2Aq0WdhtBgnSNrntr7kvbnHVXd392nZEJEkS2x4xAT5xldBgFmQchWmVNOj38Q9aVrAYcTBF2ZJnrnnnOt2Mtc5+jZUXaUtUM3uhwyuzA493Tk0P1rdSYquHhHkW+b8f+9v92KVWezRkG1Q7dGSW9j/ekjWZtUVPto+NsqbME0AV+FN62HvklYXtXBixdOw/BZPPFjZl4gOHJ2Dy2sKmTDJzzVYHrLoyY71cpcVXZq+DcsmslXPJDHZQLpm5ci6Hg7Z4tyAks3fGPh3Il5Q8cciSyuUBNX9H5TLVWQnqwSPQjcGJ9BkWSOVR+RjcLpKOUsiUgxlHfL958l92+bwx1vzux12leinnfuiS9xvMcg47TakVkeVpR13orRON6qihOUAfHCcUHX1bgKxr31LoF+X7uFCnKmnOcasD2b5go8cum89W2iXbjXfqOWTeJCSm4zgZDDZ7ii+UM98QdWyA7d1Q+KAo4w2NAY+8ytNdct7kYTt9iKyAptqXiyaf+ghS0kVpyPjwVmOMzgifPnb8qJdlne4r34q5efP09YAar635mg743Wh0tQFoz7Z6qKbb7BQOFIBaRvgqL301F1O1JC7ppe/yeqV3eb20weuZd3no0SCwMjDnpAUnLlkqFUu31/N4pP0juoBQ0SPKejRmJv4leFowtTIkF1fD97B6B9RMFsaT8oYb9CTrG9Vt+bHQmL03cRXSAD9faLWMBPvTHjhmVZTHUqEZ0Eevi/eOb+5pEHOovkfM+tOiOSw6mtLtUro6itcXxYUyKaf0fmWMP+5PKimaDPqDk27/vDt4MTo+dU+P3cHzo/758W+kOjIfP7xxUk3I/dpw2nAskmrhzaVR8DhbndTyKXk2p89P52cn3dPz4/PuyenZoDt7Nve6A+/F2bP52Rmd0zNSn8aO25FNirTblk8+IG3PYqft9QljNklsOqZsINi0x8712mqZTuz6+dCtMlGruJYdcPUTU0XMIxMeaUa4MMHXubgaklIBT/pHx0d9Us8Klc2Y5KlnAiKLLfOYOLUoz+Mbi6PAZHiigAY/FQ9QMswsAQ1LePUkVBEmj3AF96oXc8pM/jas12l+GpM0PyHn0hcUiiGUY7+bgC6wxMzmjsl6PaMSPgueJLhsn7vjiUNuqWB0hmYbow8ss5S0JjZoXtlrr2tyPm7n2qag2hWI15OluPA8iFXj3kkp+V5d3oyIQ2bpFyKCyEcaQVE//O0S9LTYKokpC9fWhNNwofHWconFxJ+/ABAHaJk= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Results + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-runs-preview-evaluations-runs-query-post.api.mdx b/docs/docs/reference/api/query-runs-preview-evaluations-runs-query-post.api.mdx new file mode 100644 index 0000000000..c631a39f63 --- /dev/null +++ b/docs/docs/reference/api/query-runs-preview-evaluations-runs-query-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-runs-preview-evaluations-runs-query-post +title: "Query Runs" +description: "Query Runs" +sidebar_label: "Query Runs" +hide_title: true +hide_table_of_contents: true +api: eJztWltv2zYU/isGnzZAjh03l9ZPS5MW9Zo0mZN2wAwjoKVjmx1FqbwkdQP99+GQkizZsqI4LlZszUMSU+dCnhu/c+QHoulMkf6IvLmj3FDNIqHI2CNRDNJ+GgSkT74YkItbaYS6jSXcMbi/hSW9e+Bo4khp4hEJXwwo/ToKFqT/QPxIaBAa/6VxzJlvGTufVSRwTflzCCn+F0tUrBko/CSNfUzF4nJK+qPVx1Nu976ZgKlbn0cKgjKRXsRA+mQSRRyoIImXLwnDOUnGHtFMc1wYqNapk5B4KI6zO3iOsHPkd6Kor58p7MRJSBIvo4omn8FH+2dUS68OjXhr7bUuNPFICJqWt0KDgCEf5Vclm65tVmnJxKwolgkNM5BlTeGkvFI8Y7Uu4jPpG07lL28N57+rSLQHIjb6V7J6XpTBNITNmKiUdFFr2zIrWbNvHe8FWhI51mLzR7Loh+icKf2YTTedcZX7aRa6cVFIBA2rw3/9/Os7QN7EIwEoX7IYj7qtqLOCiMQjSlNtav3iERAmxJoZgwjcyhcDBgIsfEYIt6SM74NSxCNTyriRgIxSRhKXfCp84BwCMq5K1mu3icpUdRtcDZ00/P/NvTbPr+vsCAneFFOQIPyNB9qUNuVSfwdSPSMIPqXsaF9uZtuKuUZeLO/VN07ulGkkQ6pJnxjDgvoyH9TW92FmvaoUbO6Q4dIJdvdNg2v1HM01DgLV/OL6A6FFdTbcMxFE97ibGhwg4B6UbuiSgGpoa2brS00BciITj0Q82LXwSycSayR8bSr60VD6gLISj3AWsmqhldfMipRzy43nlgHIZnWSKj+vPlix0w/jWhtY8RiNQoO8o3zrHQ8yAVhtqK6+c9av0/UkQd66mP0zj8WKUH1SrA8dfCZJkjgszSSCWC0N2AUVRyK9AnrdLv4pXYTk2tXzqeGtYUqMhXw7FO5HxjGt2Hx5gFNLgb6dUsM16XcTe7s4EJ4Vj5/g/f8N3i+N3gK9r3E9Ab473v84fq8zawMAv42NfmwE70ugGoJbuttL+dSJbZ1YY5k4+B5KPjqxqZIAOHwHJWdObKokM9dkcbs72JoZ6/WiNQiK9tqplsxauZbMYDvVkpkr17JbdO/tsnf5oZvXAkDItaPT6Or1VQYCSkO8qSEpU/4Ni6ouJdvie1gs69xmwzA70kDgeRc5iEQ8QoWItPtQLIQowmJhNmOiTqhvlI5C4pG5CakVaHRESnjXiljviH+2v1u1vxubW/Tu7sKpQu8Sr4+siMokGRpxRjW91hCvjtAaNM/uDE2UpxR5iJbC67GdPXGog2lq4zcGumriJ/Rrw5S/UC72EeXSOGZiFZRtcJ0fcROKCpcyEdT6FJ8XkM0mOodeHrM/Cktl1Zn6wp3s1O3ZlnGIt61uMdXzOrIrfN4scqyoBht3ofKIyNQj6eEaSH1S8F1kwdG4n0JNz+nT17ZXCGDsfAvRO2ouVeXtemJ7/4Neb727/0Q5CyxH6w3eydu39gFoynhNl84jv/T0Kb3OeLOFzrOLFfNazeri9QKUojOou7hzS6IxWu5OfiQa8VxOdUpXvAxz8zrrbj7GmTNfnXff3dxcrQl0vi071c59WmnohKDnEb54TV+nuqQmnfTla6fw8rWDc5aOffmKyQUSoYD1kJGc9Mlc61j1Ox2fRybYozMQmu5R1qExsxmkwDeS6YVlObkavIfFO6B2tDcaFwmuMYZcVJTJcofQmL23hcNVT3Ji9DyS7FuGoRAhkbnjQgNgdA6XL4rffKVhzKHw4jefERVmQTgDK0xz8o/ZRCadkaUzkWUjnxf1ZdyUHZAvZyC6gJCX71yWuHlcRmqjBzSWHZ2PyIspfXk4PTpoHx7vH7cPDo967cmLqd/u+a+OXkyPjuiUHpG18XU2pia9bu+g3T1u917d7B/2D/f7vZd73eP9v8hy2lxH44bGzTaRj4O7+US3NK5dTl+72fS0m1gYNY2s69M4P7GB1Tq5GpBCQ0O6e/t73TVTl4ixdFHflq4sbuxj4q1EcB67CKtDW7eIBhr+tnyAO8OUQYi9lFdKrZV5Qxq6Gr7qTsypQ+BW70OadSOSZh2qLXxJIp1weu7LERgOc0zW/og8PEyogo+SJwkuu+f90dgjd1QyOkGDjdD78yzR0sudnLoy3r5xmA21ucRaKelYbh3Hie9DrGtpx4V6cnV5fUM8Mkm/lxFGAfJIiofD332CMRa7E2Ii4toD4VTMDFbhPnEy8ecfkXCm1w== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Runs + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-scenarios-preview-evaluations-scenarios-query-post.api.mdx b/docs/docs/reference/api/query-scenarios-preview-evaluations-scenarios-query-post.api.mdx new file mode 100644 index 0000000000..25cb45417d --- /dev/null +++ b/docs/docs/reference/api/query-scenarios-preview-evaluations-scenarios-query-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-scenarios-preview-evaluations-scenarios-query-post +title: "Query Scenarios" +description: "Query Scenarios" +sidebar_label: "Query Scenarios" +hide_title: true +hide_table_of_contents: true +api: eJztGdtuGkf0V9B5aqXFYHxL9qlO4ig0qe3aJJWKkDXsHmDS2UtmZ+xQtP9enZm9Al4vLkmrqn7AMHvuc+67AsXmCbhjuLhnQjPFozCBiQNRjNL8GvrgwheNcnmXeBgyyaPkLpZ4z/HhDkukylMLHUeJAgckftGYqFeRvwR3BV4UKgwVfWVxLLhnsHufkyiks8RbYMDoWyxJBMUxseeWuMELl1czcMfrMDNhVKkCMN/nRJ+J6xpoCaGWMYIL0ygSyEJIneIoUZKHc0gnqZMfRdPP6KkqUKiFgHTigOJK0MFbI0TqQICKPVOYnHPJhocK5yjrnINp/aSqw3Ze4HHpacHkD2+1ED8nUdgdhrFWP8I2FbnCoB0Sk5Itm81SQ4WdTPoLWZIwnn+938Gil9EHnqinbPqYjuvYu1lolPlcopjSjRZwAEMdULzHGPr25ItGjT6Fqg5De5Roz8MkAQdmjAstkRCljCQdeSz0UAj0oSJCmT5urRCb8hYCrl9S5mj/pKztPfk2VyF1jBPJeya2Wnyrh60RG+YEKsSeME5Jtr3Mw4I0YfEAE8WCuNlPZpEMmAIXfKawS0jNLlhQrbJoe9FbmbXXb1TyS41r3HG/pXZac7+R9o0OO0O/pLuzShmH9tpYjtbBvgM7w2oj3WyNlqwI/0r1fXuAP/DQjx5IpIZCHeIDJmqv7ndpSaYORMLfN/ErSzJ1IMSvbUk/6ViXRCt1QPCAbyfaJoN8MNikt/RRtkv9jLqpLKH6WPyYNNrAkN93zpNM4VZCm7V4M0wIt8lxfyt8cYur7u7wN7aRhZRwqavlEn1wldRoDpI4CrPSNuj36R/ZVvKYKFHhsHVqpkXnJgOmAvW8ftiLtEVaM3ypxWsDQRc8Y1oocPtUf/MenVCLXPJ/G/232+grrZ7RR29g7dBIW9z/eCfdZNYWrfRzbJT30p5EptC/Y/utJa8t2c65EUvH/rdg8tGSzZj4KPAbMHljyWZMcnNNl3vsvXJjvVpmLVhur71yya1VcMkNtlcuubkKLvsjbendo0y4rRotonaDyKcM/V8/RlZKWsF9333Jd5iRyiml+eI3J5EtrUvZjoxzwtuNmq/R1geEynxbtAgVQ493bJiSosNJTbt0PBhsNkSfmOC+QetckFM8vxvyUTEuGnoaEXm1p7uUtcnjtvoQWQFNo5LMt11mWXqThM0rY+3joMYYnRE9fequSS/LOoOrBnRhXmvdx9V4Y83XdMXvRqPrDYL2buuXalrlTtWJAlSLiJbI2UI4ZmoBLvSyHXKvskPuFf1pz+yQKYWgpMRm7kpLAS4slIoTt9fzRKT9AzbHULEDxnss5ibaEvS05GppUM6vh+9x+Q6ZGY7GkyrALXmT9Y86WHE1LObvkaQIWUC/z7VaRJL/aS+dcg7JY7HIFOSnN+W+++IrC2KB6/vrvMEuu9uyJatk30pqLddmZcKdVFNev7Y+GvcntRQGg/7guNs/6w5ejg5P3JNDd/DioH92+DvUVzXjxwEnZcKCoxl7cTI7Pe6enB2edY9PTgfd6dHM6w68l6dHs9NTNmOnUFmXjNthTLJ1R1vw9W1DvlVo0jZfDjTB2Bm/rZbZ9N4vBvDadF27ITvs9lNTrGbGFfLwOjde3Dm/HkKlkEP/4PCgD+shVgOmjMk8kzFzJzWPwVkLlyJQqAYHJl2CQhb8VD4gyShIAxZW6G1GdE2cIlgUflW9WDBu0qFhvsqCfQxZsBPvynum6kDq2JdM5AYLShTuGFarKUvwoxRpSsf2uTueOHDPJGdTMt2Y/GCRx/cK/sClGX5NHemaJErgQtt4XqsplO8txrnnYawaYSeVXHZ9dTsCB6bZW60g8glHMtKQPl0gb4utmu7Knq1AsHCuqQy4YGnS31+kXlIP +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Scenarios + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-simple-evaluators.api.mdx b/docs/docs/reference/api/query-simple-evaluators.api.mdx new file mode 100644 index 0000000000..5995694a63 --- /dev/null +++ b/docs/docs/reference/api/query-simple-evaluators.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-simple-evaluators +title: "Query Simple Evaluators" +description: "Query Simple Evaluators" +sidebar_label: "Query Simple Evaluators" +hide_title: true +hide_table_of_contents: true +api: eJztWW1v2zYQ/ivGfdoAOXbcvLT6NDdp0axdkyVpB8wwAlo62eyol5KUUy/Qfx+OlGXJklXbTYFgbT4kMc17SD73wrvjA2g2VeCO4NWciZTpWCoYOxAnKJnmcXThgwufU5SLO8XDROAdriY6IPFzikq/jP0FuA/gxZHGSNO/LEkE9wxG75OKIxpT3gxDRv8lklbQHBV9KiCNYLS4DMAdrU8KhNnp5glc3Xmp0nFYnaQXCYILkzgWyCLInGIoSoWAbOyA5lrQwIXqnFmEzCG4DfvaDbEgNgedpSGLvgXwjQHIMmc5KZ58Qk/DatKN0VSx8GvDXB01cyBEzap7Yb7PSWlMXFXYre1WacmjaRmWRxqnKKsrhZPqSPmQzWuBx6WXCiZ/eZ0K8buKo+5FlKT6V1g/MWFwjeF2QkxKtmgltyoKNYbbZP8gJkmiZqVPidH38Tuu9Nc43XTGdendGLo1Vri92f5JUafZbAvHvJMYrJGZG8R6dJijVDxudrw68bXNf8zFMweUSKf7wtyQLMUBvw3BgSCWIdPgQppyvz0g+K2cXmOAEiMPS7r6uiMUOuhcE7+04cgTqY93THozPsfm7W8VwCxQZ7gEcsDHgKVCgxswoTBz4J5HfnxPTLSE+wjvUektafSZxq7mIbbbt4XMHIiF/9jglxYycyDCL9tCf1X97wkrc0DwkDeDNsaQNZR3RprOLX1svu2KvWGUhpQwMOVh5NsxH4sP41YODLwxJ41yzsTeO75YAmQOSKaxEageK2s41yTb5kB/FbbYEIl2DGbXNluCjAQpdeKSPEnLFM2ASuJIWese9Pv0h4iVPNEmcsFN6nmoVJCKznU+GZx9ky4vTq3QGuurI5yZGSX/7JdDr825moPtz1ztx83VLlO9R7JWk9ohW7Oy//N0rY3WLfK1fTiyCZsDEQub4+sWCc97Zq7FaiDbD+q8BJE54ElkGv079rjX9JmF7QwNWWnif49FPljYfBEfBX6HRc4tbL7Ikq7J4u7xks8lWS8XHcpDV3w96ipLtopVloQ96ipLuopVnl6e75DmWdu9+nhVTir5vigfJLcIzendVggmsZsh81HuHJ9/Fn5rhV9to+Od7oE3uRqIApNMbquRJ3STPsn0ZAcd3OTEUx7IkoRH26Yt6xTvkiMtFzKKp6t3b+u30pkDCZMsRL2HV//gtrJZ+GpFKSkK5Zx7uA27VHfuZIM5dGZqzoBPU/tG8D3WOqsssEMBdc5MYv8NpXqtU9bQF1Plsni0C7oqKvfMtAGOBoN6of+RCe6bo3deSRnL/at8HzXjoqVUF7FX+XYXhxtvZupd7LFlph6qaT0SlUsxpdi01KDcPNWQ0bmlb5soX7VURuZcdul8XvlOL+i17G4+xrmlr02/b25vr2qAVrdVpZoWUMeaQ6diSSHqWUwPbUmsCDphegYu9BKJc473Pfvy1lu1XnrmRQ6st5tYOnqw+RbMtE6U2+t5Ik79AzbFSLMDxnss4cbBFHqp5HphRIZXF29xYe93Y8elCebGsTZSnVaohyX8LdIubIEIw1TPYsn/tYqnJh/tx0oRHWSr16sHw1dfGB2r9gBYNI9KTSIbPqptnmIs79LkbbS8TbKq7bOGB4NRKS9cmZlN8FafKVmDZwF7fhycHHWPTw9Pu0fHJ4Pu5FngdQfei5NnwckJC9iJYbbeIrc7rHSzl11rGPQHR93+aXfw4vbw2D0+dAfPD/qnh3/DqvncNsf2kLfbXNEd7hcN3kr3dtWM7S+bqf3MNGmD2Kg7t/ShMabO8OoCnBJ9/YPDgz6sW3tlMgUv5pngtbQV8zU4a1Zb2Cs1mkMTuUAjC39bfUE7Iz/JO3M53mbnWus85Lar8YvuJYLxqFSqWL8bQe53ZBEGECptT8e+h1NAmZG/uiN4eJgwhR+kyDIatt+7o7EDcyY5mxB9o3FR0Rj7+wcX9p6jsN41MY2mi9S61lqIp/BrJYaeh4lunTsuhZSry5tbcGCSv9CHsU8yktHp6LcLZHGGHuN0ZuwBBIumKUVlFywm/fwHRdQDEQ== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Simple Evaluators + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-simple-queries.api.mdx b/docs/docs/reference/api/query-simple-queries.api.mdx new file mode 100644 index 0000000000..5d2a99d4fb --- /dev/null +++ b/docs/docs/reference/api/query-simple-queries.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-simple-queries +title: "Query Simple Queries" +description: "Query Simple Queries" +sidebar_label: "Query Simple Queries" +hide_title: true +hide_table_of_contents: true +api: eJztWm1v2zYQ/isGP62AHDtuXlp9WtqkaNY2yZK0A2YYBi2dbLYUpZBUEtfQfx+O1KstK7aXAt3QfnBl+u7h8d54d8qCaDpVxB2SPxOQDBQZOSSKQVLNInHuE5fcJSDnY8XCmMP4LqNyiIS7BJR+E/lz4i6IFwkNQuMjjWPOPAPQ+6oigWvKm0FI8SmWCK8RxF1YcMMk5pcBcYfLBAE38lUJqO8zBKf8qkZaUuh5DMQlkyjiQAVJnWJJacnElKSj1MmXoslX8HSVSCSck3TkEM00x4V3Rghk2V2YfOdyGyY0TEHWdw4n9ZXqGZr3Ih6TXsKp/O0i+siU/kNFonsu4kS/INsccpmbbKWi20xDIWj682roXcL5U/phGsLNmKiUdN7uODXW7TT6CTWZrrCUBDcmJDFu5+ajAS11svCVECwpPTvmcrzdg1TMxuwGBloR+kvGnjpE8WS6K8wN8qYOYX4bgkOCSIZUE5ckCfNbEc/9Vl1eQwAShAcVGz1tXqP2zjXqFoUVHk98GFPpzdg9NIvekJNWZbVAnZMcyCE+BDThmrgB5QpShzww4UcPqIWW5CngAZTeUIU+1dDVLIT2LGEhU4dE3H9u8EsLmTpEwOOm0E+a/gKxUodwFrJm0MY8s4Ty0XDjuaUPsl02EEmIdypVHgjfrvlQfBm16sDAG3fSIO8p31ni8xwgdYikGhqBVvPpCs418rYFz1+FLzZkoC0S2LUtKUiKTFhfMIlRpGUCZkHFkVDWswf9Pv6HSpUs1iZjkZvE80CpIOGd64yYOLtWJl6UWKYljZfivzUUldjsZ+k2Q1iTYQUNm02xQV68oCaC6ufeDeq0ApE6xJNANfhj+rwR/dbCdk5M6CSx/yM2+Wxhs0184PADNjm1sNkmubom8/Hz3VG5st7MO3hdlfp61l1ybRW75Ap71l1ydRW7/HzlgPOruditubhM9L/pLiz7/7q9aNPQ+v5ihWuLBmMXpdoOw8EEuKTU+o31q9b8VWv+J2pNhwSMa5BPuKqdb0XSVpBZ8Uao8MvIW1Wv+TXC+k9EKJCwKyKSpGq5aMo8yi/zHVJTf9qsUS8K1w68GHC/UncWkhQhbwhSh3yD+a4X6gfAtELuKU82rUW3Tpb5SZsa6uZEioX+NvnrixE/dWoGfTpSGI4vmRqjHavVVxTGVDIViYr11qPAHVrffE7RH7g2T2Ae8XOiH0QV/yIJQTJvI3ClqdTqgemZWfTzR+xlKBN4gJBqb2YmsZx9g+pGNwZto32YsP48ZjVR8areiH9GUYAZXVHmKfM2Q4BHprTKpMi+VHDOcAXnMk1gq/ksJ6o0ZWhu4yJFCK6LPI8qGCsQiml23xwWm0xv3lIFnZsCpmF2A4/U02NjwJ13OUOMzieDsbJFS/68hUd9mekC8esqoLz5CthEohPOt5LEOlkpyXqjZjQNWOWQYJglzlpAZ4nXZOGi2spviBdktJyaGnhV9UzD1nFGgbzlGCSbfdwznJyeUlOT7ThGWZle1nexb242PE4Jy0AV85TUDGcOBoPV8csXyplvhiudMylNFO44e/FBU8ZbZig88tZcpk/fXy1W/xhZAU2noaZtt/AnUIpOK+Pi9aRGGZ1b/PUpH8Zz2a0zuvptl6nXanf9MU6t+tqM+/729moF0Nq2blQ74ra+0Cl9KAQ9i/DtYBwpxI2pnhGX9GIJ9wweevZ1YS+bhvXsaz6HKJD4gsFYKpGcuGSmdazcXs/jUeLv0SkITfco69GYmSygwEsk03PDcnJ1/gHm74Gaqng4qhLcoC9Z76iTFYahMcO6x8kmcOQk0bNIsu/W5FgEozyWCxWBXnpdvuU8e6R4ptpby3yAUHbvZY+aLr18GVZerpROYsci5XcccZCXAX11GBwddA+P94+7B4dHg+7kZeB1B97ro5fB0REN6JHRzuorB1tD1Tq2vDMjg/7goNs/7g5e3+4fuof77uDVXv94/29SNlhtNLZP2ky4ogPqF01MrUMpG45+3jD0U9OIBJExWX6pGIfonFydE6eivv7e/l6fLPtqjdiUSp4uJ67Zz8RZ8rzC57AqCU3eIRpo+Hv5A0qGjh5SUcFbExpLs9nM+TQ86l7MKTPJxUiwyKJmSLKoQXcwaKScI2c+hIlghqHmDsliMaEKPkuepricOeNwhPW8ZHSCihtilpvlgbKwvQLeapiOuyYXFeX/amrGtGk5TjwPYt1KO6pkg6vLm1ssfbM/CggjH3kkxaPhp0tIrRQzawvCqZgmmE1dYjHx3z+bzxVa +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Simple Queries + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-simple-testsets.api.mdx b/docs/docs/reference/api/query-simple-testsets.api.mdx new file mode 100644 index 0000000000..5be2e2df34 --- /dev/null +++ b/docs/docs/reference/api/query-simple-testsets.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-simple-testsets +title: "Query Simple Testsets" +description: "Query Simple Testsets" +sidebar_label: "Query Simple Testsets" +hide_title: true +hide_table_of_contents: true +api: eJztWm1v2zYQ/ivGfdoAOXbcvLT6NLdpUa9dkzluB8wwDFo62+yol5JUUs/Qfx+OlGxZshXHc4BuSD4kNsV7eHx4PJ4eZgmazRS4Qxig0gq1gpEDUYySaR6FPR9c+JagXIwVD2KBY513c0DitwSVfh35C3CX4EWhxlDTRxbHgnsGofVVRSG1KW+OAaNPsSR8zVHRtwzQmIWL6ym4w3KXqTA+7u4wZ8o45jGFpY56ESO4MIkigSyE1Fk1hYkQkI4c0FwLanjPVGOwQkkdCyuZ928xLUSaOnm3aPIVPQ3rbhn578xEq3ipAwFqtukF831ODDNxs0FGxU+lJQ9nRVgeapyh3BwpmGy2FKe3fSzwuPQSweRP7xIhflVR2OyFcaJ/hvJMCYNrDPYzYlKyRS2tm6ZQYbbO9jdikiwqQfUjMfop+siVfojTXXMsWz+OoYGJwppwvTW5IAva3yk9bA/abG+PJU5LRGbBUN7IdygVt/liD9Irjn/JzFMHlEhmh8Lckm3qAPfrEByYRjJgGlxIEu7XIvb8Wj77OEWJoYeFdXp4E2T8N/rELrkbeiLxccykN+d3uN35fZJWzwI1ujlQ6sA9D/3onuZdk4dDvEel9yTNZxqbmgdYH8kWMnUgEv6xwa8tZOpAiN/3hX5wsT8RVuqA4AHfDro1W5RQPhprmrf0Udb7hmES0BnOlIehb9t8XH0Z1XJg4E34aJR3TBzscS8HSB2QTONWoGpWrOD0ybZuu/yxisUtWedRaatvSxhIyYzqGS5p32iZoGlQcRRmJUWn3aY/RKvksTZZCm4Tz0Olpolo9LPO4BxaCXlRYo1KnK8n8Mb0oLWdskRocNvrJGsgdqTV5wLqP1NAXSf6gAqqYvWIEsra/s9rqDpa9yiiDuHIVlEOhCzYngr3qEQ+MXOCbWadw6CuChCpA55EptEfs+OeqG8sbKNryEpi/ykG+Wxhs0F8FPgEg1xZ2GyQnK7JYny8qjAn6/Wi0fOLfB11lJyt1Sg5YUcdJadrNcqPV4A7tPKs7hjMj8Ax93e9rzzkwuPKdxqs0fNNnthx/u440vNXq+NRlL9OZMt3VOzbFe5z3nnOO0+ad46dM7bUznvXOFsK3Dz7jR5VS+R17XPBtUfB9VzpP0GlXz06n0k9mNQrIvOh11mqBQ4qKPZ6U+7jHSet1LpyuIxS8bAykioKFsP9kdVKUUmNPHPW6VQFmC9McN/IK423UkbycPXFR824qBFRRORtPH1MnI92s/Qxsg6azKVm22rM9V5Uis0KQbG7qyGjMaCn2whfS11DMy87dNavKKiv6LXs7p7GlaWvbnXfDwY3FUC7tpuLaqS5hg2GRiGKAtTziG4k40gRcMz0HFxoxRLvON637BVlKxfEWubiEqiWlXSxYNYqkQJcmGsdK7fV8kSU+CdshqFmJ4y3WMzNllLoJZLrhTHp3vQ+4OI9MqPDDkfFDrcUTTY+NrutlobF/AOSF1YHgG6i55Hkf9tFJ9mV/LFWRAXFaX99s/r2O6NJlW5KV0VJSbgj4XJTdsukzOxMXFcQaeV6Zli4flkHlH2NW3+n8gpeTNnL8+nFWfP88vSyeXZ+0WlOXky9Zsd7dfFienHBpuzC8Fi9krAebtwm5LcG0Gl3zprty2bn1eD03D0/dTsvT9qXp3/CWvyv62M1/P2cW6nz7ZXAvqGer8Xwdi5mt1Mjkk8jsxZZTHdN6DS6Nz1wCvS1T05P2lCO643OlKaYZ1YzjwzzGJxSjK6ik4T+wOQo0MiCX9YPyDPaEwELC3i7tlFJTMriVON33YoF4yYTGReW2Q4bQrbDKB4MHBRkZ8f+gwCljTntS3cIy+WEKfwsRZpSs33uDkcO3DHJ2YSoG1JOnOebagl/4cIo3CZ5N03mou4isZuolMgpyVqLrudhrGv7jgqp4+b6dgAOTLJ/Wggin2wko7nRbxco2gw5ZoOZtiUIFs4Syr0uWEz6+Qc2A1Yx +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Simple Testsets + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-spans-rpc.api.mdx b/docs/docs/reference/api/query-spans-rpc.api.mdx index 149afa5841..ef0a0cb22e 100644 --- a/docs/docs/reference/api/query-spans-rpc.api.mdx +++ b/docs/docs/reference/api/query-spans-rpc.api.mdx @@ -5,964 +5,67 @@ description: "Query Spans" sidebar_label: "Query Spans" hide_title: true hide_table_of_contents: true -api: eJztWt1v2zYQ/1eMe9oANc6KPflprqOiXlLbs5W+BIFBS5eYDUWpJJXONfS/DyQlmZa/E2fdAD0loe7ud7z7HT/CW4IijxI6dxAIElL+CPceJCkKomjC+xF04FuGYjGVKeFyKtIQPEiJIDEqFFpxCZzECB14SMJMggeUl0rggcBvGRUYQeeBMIkeyHCOMYHOEghfDB+MAbVItQGphHbAA+RZrF1SgoQIHmhs7ZeiimnBjwYp9ypNnjEG+aaEFqm8EzFRZ3WPPCJXBEy8uEKGMSqxWHfUgO731Io4riYsQnkOVx1cyhU+otjrytDiuq5w/P5TXBlYXNcVRmP6Kk+Owb0xIGu8oUyhOAG3SqxVzLV5gTJNuESpBd5fXuofEcpQ0FSXGXRgkoUhSvmQsda4EAYPwoQr5MpMJ00ZDU1Vtr9KrbN0QFOha1ZRi/CMQlIrUudu6d2XQiTXIJmFqMVpJdwzErlXMnNvdRSF1oGIKHynaIxHkc4ruXZO4yWN7BIit9omQpDFXisTo5t7dj2qWSFRRHVSCBut5WA9I1vgdymuJF5tAkIqwowR8cswQKan8St4S6AKYwmdrV9rUbnPq5Fk9hXD/WtZFahQIFEYTcl509mzZltdk9Isjd4C5NaaLUAiZPgGIFfWbAFShmu2mNLoSJwso9FRwfqwaPUjN15nRSmjVaGUATsrShmuCsVUYgGwa4nTBxos5HXxHBDX5C2kUyKQqwP+7/N3ZAy42E+UH4hGeaqYjLqD6XV/cDW9HUxGfq//se9fgeeM9weBPx50b9YGJ/74iz9eG+rd9P1BsDY0Gg+vbnt1ueFgcvvZH7snl3JJuNZ+b061nJbdJF8WJBPwATGVAlIRoaambl5RZ8ds8RON1AqsJiCP/hVUn0cVplREZXIaJtEB2IoSQTe4nUx7wytfk8I3OXXGhte1AX88Hm6m08D2NOr2hFq3YpSSPL48q8ZK63NhJfeAKCXoLFPH7pwvPULGs/WRWZIwJNwMbcda7YAfM8b+lAl/N8xUmilnI3S2vY19c7fW4UNFTRdO2mi7q5BqDj8jV7XQFb7WDxFlve5aBMty1BSXisTpWerC8TyoDDfMeGtmbCi695Y7ywU31bX1wte0ctAPe+5bIuYeMMqfjmPkaTvzqft+w7CfybAyt07eahy7ofzpJIrdGGIdAq7gVie/LWcbN7DNbau5bTW3rea21dy2mttWc9tqTjzNbathRnPbam5b/yOG/fdvW+e47mzxpY4kA4F4WpgD+7J3aKblw2r5aFqbZtFCUT3g5rk2+Pv795vvvV8Io5F5zW35QiTi5Y+9ESpCmf5tR82zJFz7ekrV3deT5nAjsQ7qQMfycd8a4RxPrMhuUROMVqC/HkqGnpeFLuScbKzCa6O7expXNnz7ePUpCEYbBm1u15P6l+4OaFmiehCjmie6gSZNTAtFStQcOtBOBT5T/N5Wli1t86+GdtlZIFE8l401mWDQgblSqey02yFLsujCNp1cENomKYW6B13ztdXToobgEsNMULUw9rqj/jUuPiGJUEDn7t4VmGh6WcKsi60eylN6jdrFojOim6l5IugPy4KiQWJutXRsKH9I3IaIwrcPJHxCrheLqk0BLi9+u7jcNZlCodUd9YsqIaFaHa8KMfBq4aoCpY/2sSkRUEjiP1YftJc6OTHhjr31LK65VMVC4d+qnTJCDf0N8LJI8B0UCS4WYstvWZizab73YK5J0bmD5XJGJN4Klud62H7XyYqoJDPmtJg84cLpsnomLNOemLLdKVv0PB0jXHUdHSNc9QUdI1x27hzlctlusxK+138IqqUNab2SZDpKVqsbhpi6EBsLqLZSFeRoOAkgz/8BwdA2uw== +api: eJztXFFv4jgQ/ivIT7dSdumt7omn49pU5doFDui+VBUyyVC8OE7Wdtrjqvz309hJSKCF0NLdruSnVcOMv/HMl/Hk08qPRNM7RTo3ZCJpwMQdufVInICkmsWiF5IO+Z6CXE1VQoWayiQgHkmopBFokOj4SASNgHTIPA5SRTzCROFEPCLhe8okhKQzp1yBR1SwgIiSziOhYjWYmwX0KsEFlJYYgEdApBGGpCUNgHgEsTEuzTRHw3ODlHmlp0g5J9m2BZqU0cmI6qOGR+9AaEpMvoQGDhFouaoHakB3R2pNKqHGPAR1jFAruExouAO5M5SBxa2GIuDhp4TSt7jVUDiL2KsiaYJ7ZUCqsOgl7yl/a+RegVMFl1TDa4BFGs324I4QovaiMK5BHoBaMtk6Zri6BJXEQoFCg88nJ/hPCCqQLMG+QjpknAYBKDVPeWuUGxOPBLHQILTZTJJwFpg21P6m0OexAppIbFKaWYQgTq3TRsLX2zw1Fh4JYU5TrknnJLN9RdUTxzRE6gkACVRDOKV6d2vIu0yHhFTDR80i2Jn8U7tsq4s9gqRJ+BYg13bZHCQEDm8AcmaXzUGKdM1WUxY2xElTFjZK1l+rVi+s5uuoKEW2SpQiYUdFKdJVopijLgfYXLZwwhMacnuk7h7zcUJFbp1QCULviX9XvEOzQC1Wa9rknGTiPrYvMvEIFSLWxR+pWIr4oXa2m01OcKXteIp9N4c2RzT2lQVlCPgQy+Wcxw+YJqqW+E8cY2+HaAZhaJ2Lnsd5ZFpSlHDIAw4WZoaQIKlYPr0BTPue+JdM7GFSEf942O1PL3v9s+l1fzz0T3vnPf+MeJXnvf7EH/W7V7WHY3/01R/VHp1e9fz+pPZoOBqcXZ9u2g364+sv/qi6pcEEOG7rEuN+flv2AHkZwQxZ+9R0GaI0lXpqes4relSTU3eMSK2J9SQgwh+C6ouwxFSa6lRNgzhsSOnxpDu5Hk9PB2c+ksI3Na08G1xuPPBHo8F2OQ3sKaI+XVAbVgRK0buXV9Ws0vqSr5J5hGot2SzVsHHu0jBk+I5RPqwdvC+dJzfnnlkcc6DCPHoaiwRMBimn8rfzlPO/VSw+DlKdpPoDdgm7Sjz7BoGd5/NBoYkXlZKudn8E1H1Nk91CfM65u05phq1pDhJEsJm+Zwabe5CK2eHqJQX+mrsjY3h692KeoG/mkeMdsPakcmx7U7ZtOdZ7zKigYgVhf3SjNYEzj3Amls2YfNhEdOi85Zj0o5m0/uK8KWtbqdvGeXbFxPIgml0ZYmUeWVC1aNgsXXv61UlVpcwFVYuDKHNhmYKD4r8B5EKGq9tR6uaXGcX03oPQzV7J4pvjuR5efFLgmK40jZKjzPbV79VyYfdC/+RTwnChWuqNM8JHWh30xvuWiPuAy0NprctsQJ9zqnH6OAh9bOTJYlhpSKntoehgLr56iTVtCuXgA3mKVJVfN7JyexBHykQ5mdbJtE6mdTKtk2mdTOtkWifTvtdB1sm0Tgd5NzqIk2kdk5xM69rTOyKVk2nfad2cTOuI8dpT4h3LtLlEu3N4cVqo00KdFuq0UKeFOi3UaaFOC3XTotNCndjwq7DNaaGOSU4Lde3p1yGV00Lfad2cFuqI8dpT4v1roccQI/d0NWM1kQCHpXli/1fsvtXze03KSwayDD3++PyZbN1J8JVyFhqhp+VLGcuXX0gQgqaMmwP46SbA46D26yGv1e1mVSojQqFaZR6J1N2uNlP5wi3EqedMTTJaViHawyvcl4XO7apfXmV6bXaf38aZTd+u0l5MJsOtBW1t60X9B6WxlmWiRyLQixhvtUlic69JQvWCdEg7kXDP4KGtLVvaRulvF7KaAnlf3HaTSk46ZKF1ojrtdsDjNPxkb4L5RFmbJsyQVEGQSqZXxqU77F3C6gJoCJJ0bm6rBmNkkOVE3awsB03YJWAU+QUd3VQvYsn+KxRJc0/Hwnrh9pmYx6RyL0fXBNfqDnvEW388k5NPv386IZvZqhkj+Wmg14dW/jOqiLUslPs3sqRhPtFAoz/XP2BkmPOIisp69eLUQin3r+Ff3U44qqFZDvyY1+2G5HXLx2xLW5UvZ6t365EF1rpzQx4fZ1TBteRZho/t71igkCk645XbTZawqtxodE95ipGYt/FZ2/x+oSbG5Q0/TYzLO3iaGBe35DSxrVxt08Q8v4ymUTKKO2TWxrf4h2RobV4Br6As5t96dQMcqCpeWx0XVynf4OFgPCFZ9j8n5HMi sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Query Spans - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - oldest - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - newest - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - spans - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - parent_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - span_kind - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`SPAN_KIND_UNSPECIFIED`, `SPAN_KIND_INTERNAL`, - `SPAN_KIND_SERVER`, `SPAN_KIND_CLIENT`, `SPAN_KIND_PRODUCER`, - `SPAN_KIND_CONSUMER`] -
    -
    -
    -
    -
    -
    -
    - -
    - - span_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - start_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - end_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - status_code - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`STATUS_CODE_UNSET`, `STATUS_CODE_OK`, - `STATUS_CODE_ERROR`] -
    -
    -
    -
    -
    -
    -
    - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
    - - timestamp - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - traces - object - -
    -
    - anyOf -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/query-spans.api.mdx b/docs/docs/reference/api/query-spans.api.mdx deleted file mode 100644 index daa98f8ff2..0000000000 --- a/docs/docs/reference/api/query-spans.api.mdx +++ /dev/null @@ -1,968 +0,0 @@ ---- -id: query-spans -title: "Query Spans" -description: "Query Spans" -sidebar_label: "Query Spans" -hide_title: true -hide_table_of_contents: true -api: eJztWktz2zYQ/isanNoZxnIzPelURWYa1Y6kSnQuHo8GItcSYhBkANCpquF/7yxAUhD1dpSmneHJNri732L3WzyMXRFN54p0HkggacjEnDx6JElBUs0S0Y9Ih3zJQC6nKqVCEY+kVNIYNEhUWhFBYyAd8pSEGX5lolQgHpHwJWMSItJ5olyBR1S4gJiSzopQsRw+GQN6maIBpSWCewREFqM7WtIQiEcQF33STHMUfG+Qcq/SFBnnJN+WQJHKOxlTfVH36ByEpsTESmjgEIOWy01HDehhT62I42rCI1CXcNXBZULDHORBV4YW13VFwNcf4srA4rqucBazb/LkFNw7A7LBG8Y1yDNwq8RaxRzNS1BpIhQoFHh7fY0/IlChZCmWGOmQSRaGoNRTxlvjQph4JEyEBqHNdNKUs9BUZPuzQp2VA5pKrFfNLMILSMWsSJ27pXefCpEcQTILUYvTWrhnJHKvZObB6igKrUMiquGNZjGcRDqv5NoljZc0skuI2mmbSkmXB61MjG7u2fWoZoVGEcOkUD7ayMFmRnbA71NcS3yzCRIyGWacyp+GAXCcxs/EWxGmIVaks/NrLSqPeTWSzD5DeHgtqwIVSqAaoim9bDp71myra1KapdH3ALm3ZguQCDh8B5Aba7YAKcM1W05ZdCJOlrHopGC9W7b6kRuvi6KU0apQyoBdFKUMV4ViKrEA2LfE4WEGCnksniPiSN5COqUShD7i/yF/R8aAi/3MxJFolKeKyag7mN72BzfT+8Fk5Pf67/v+DfGc8f4g8MeD7t3G4MQff/LHG0O9u74/CDaGRuPhzX2vLjccTO4/+mP35FIuCbfo9/ZUy2nZTfJ1QTIBH1BTKURpKvXU1M031NkpW/wEkVqB1SQgon8F1RdRhak01Zmahkl0BLaiRNAN7ifT3vDGR1L4JqfO2PC2NuCPx8PtdBrYHqLuTqh1Kwal6Pz1WTVWWh8LK7lHqNaSzTJ96s752iNkPNscmSUJByrM0G6s9Q74PuP8D5WIN8NMp5l2NkJn29vaN/drHT9U1HTJWRttdx1S5PALCF0LXeFr/RBR1uu+RbAsR6S40jROL1IXjudBZbhhxvdmxpaie295sFxwU11bL3yklYN+3HPfEjH3CGfi+TRGnrczn7vvNwz7kQwrc+vkrcaxOyaez6LYnSHWMeAKbn3y23G2cQPb3Laa21Zz22puW81tq7ltNbet5sTT3LYaZjS3rea29T9i2H//tnWJ684OX+pIKpAA54U5sC97x2ZaPqyWj6a1aRbtE9UDbp6jwV/fvt1+7/1EOYvMa27LlzKRr3/sjUBTxvG3PTXPk3Dj6zlV91hPmsONxDqIgY7V/NAa4RxPrMh+UROMVoBfjyUD52WhCzknG+vw2ujun8aNDd8hXn0IgtGWQZvbzaT+id0BrUnRJRODXiTYPDMHbZpm9IJ0SDuV8MLga1tbsrTNfxraWDsgX8qWmkxy0iELrVPVabdDnmTRlW03uaKsTVNG6thd87XVQ1FDbQVhJpleGnvdUf8Wlh+ARiBJ5+HRFZggsSxVNsXWT+QpuwUMWtET0c30IpHsb5v/ojViYbUwKkw8JW4rROHbOxo+g8BlompQINdXv1xd75tModDqjvpFfdBQrw9WhRjxauGqAoWH+tgUB9FA49/WH9DLNFE6psKxt5m/DZeqWGj4S7dTTpkhvgFeFbl9IEVuiyXYMrtsmkJ6LhJscHggq9WMKriXPM9x2HaVYJ4ipuiMO30lz7B0WqteKM/QCVOre2WLRqdThKtWo1OEq2agU4TLdp2TXC57bNbCj/iHZCht+OqV/MIoWa1uGELqQmytmmilqsLf/YDk+T8MzC+/ -sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Query Spans - - - -
- -

Query Parameters

-
-
-
    - - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - oldest - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - newest - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - spans - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - - -
    - - parent_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - span_kind - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`SPAN_KIND_UNSPECIFIED`, `SPAN_KIND_INTERNAL`, - `SPAN_KIND_SERVER`, `SPAN_KIND_CLIENT`, `SPAN_KIND_PRODUCER`, - `SPAN_KIND_CONSUMER`] -
    -
    -
    -
    -
    -
    -
    - -
    - - span_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - start_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - end_time - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - status_code - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`STATUS_CODE_UNSET`, `STATUS_CODE_OK`, - `STATUS_CODE_ERROR`] -
    -
    -
    -
    -
    -
    -
    - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
    - - timestamp - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - traces - object - -
    -
    - anyOf -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/query-testcases-preview-testcases-query-post.api.mdx b/docs/docs/reference/api/query-testcases-preview-testcases-query-post.api.mdx new file mode 100644 index 0000000000..5a5da5ab27 --- /dev/null +++ b/docs/docs/reference/api/query-testcases-preview-testcases-query-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-testcases-preview-testcases-query-post +title: "Query Testcases" +description: "Query Testcases" +sidebar_label: "Query Testcases" +hide_title: true +hide_table_of_contents: true +api: eJztWG1v4kYQ/itoPrWSCYQk5M6fyl3udPTShCZcKxWhaLEH2Ova69tdJ6HI/72aXduYlzgkIlI/NB8IXs88M/vMi2ZYgmEzDf4IhqhNwDRqGHsgE1TMcBn3Q/DhR4pqcWcKgbtE4T3Hh8qJk0ikNuCBwh8pavNBhgvwlxDI2GBs6CtLEsEDC9z6rmVMZzqYY8ToW6LIrOGo6akAv+OhfWbx4noK/mgJ3GDkRBYJgg/aKB7PwIOpVBEz4EOa8hAyrxBgSrEFZF6pEadCQDb2wHAj6KC4fKMfaquI2mg0dzxcN/2cxXoLGk2jbx174HEoHwhjDX6dgRgfUJs9HQiZwabhEdZ6ceUgMw+kCA8Nfu0gMw9ifNwX+lnirggr80DwiO8G5bHBGapalEurTfdWIap63zBOI6oIpgOMQ3cWYvkwruXAwmeedUrdM/Fqj/sFQOaBYgZ3AsVpNHkG54Z0s1UxyMl3DKhMC4E/y1zchqnTKxvG71T8N67oISMV6gBcYQi+USnaA53IWLu87rTb9I8oVTyhZgA+3KZBgFpPU9G4yYXBe23vCGTqlDb4Xjn/0UpQXKcsFQb8dl71rgX6lS6z3ZbesjMcFvu2xA0UMoPhHTtszX90sI2eLa40Cd/CyDcHmxsJUeAbGLlwsLmRgq7J4oDRKMj6sMiDUvB1UCsFW6WVgrCDWinoKq0cDtrhTYUdTKqQLAw51T8Tg7Wa3DI6kVIgi6tWcj+y8VZHq3Pls3WCVF7vTGHZq2//m428eofdtiDgKkgFUz9dyUuuza9axs3r1CSp+RlecsstdXgRScOcowgN++9y9DkV4lmG8qa/j9bzQ+WG7stI/Y3IpOJl/5N6MFIviMx9Zpqt5WHH2FOdHkb7TUrlZJPZMem009kehP5ggod2zGl8Ukqq109BIRrGRc0sI2Sw9vYlGTR+mqFL6Ry0PUHPdm1qqyzXms0qdD8tasloDOntLq5XI+fI3suZzuUqKbCi17H79DUuHH11gf0yHA62AF1s14NqR+RGNXUiNHNJy3W+NCfMzMGHVr5bt8pZtGV3a6DJUN2j0jY+qRLgw9yYRPutViBkGh6xGcaGHTHeYgm3aa8xSBU3C6vSG/S/4uILMrv/jMZVgVvKIJcT62JlOFjCvyJ5EbOInnupmUvF/3GBpnWH/HFadH3KzZvV7wCfHlmUCNze60dwMmXvzqbd0+bZ+fF58/Ss22lOTqZBsxO8755Mu102ZV0bwMrgvZ/SxppdrNPQaXdOm+3zZuf98PjMPzv2O++O2ufHf8FqK66Tccvtvi7ka2u73DzX1srVltgutrx2ZrfHqbRk5YnWs7Ft9AZ98ICywKVV++j4qA2bybYmTL2DBbZ3FKGzr8HbSKIyfWgDjmzjAIMs+mX1gjyjdI1YXMHbzu01d8oUMvhoWolg3DYGa3yZp/0I8rSH6hLmuR+eKPhzKhJ/BMvlhGn8pkSW0bF774/GHtwzxdmEyBpRa5oXeb6Ev3FhFz7bQ5u2gZC4SF1eb/RT6nVOoxcEmJha2XGljgfXt0PwYJL/6hXJkHQUozvRpw+UX5YUW2j2bAmCxbOUWqAPDpP+/gXMYKJ0 +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Testcases + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-testset-revisions.api.mdx b/docs/docs/reference/api/query-testset-revisions.api.mdx new file mode 100644 index 0000000000..e0d4b1c337 --- /dev/null +++ b/docs/docs/reference/api/query-testset-revisions.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-testset-revisions +title: "Query Testset Revisions" +description: "Query Testset Revisions" +sidebar_label: "Query Testset Revisions" +hide_title: true +hide_table_of_contents: true +api: eJztWttu2zgQ/RVjnnYBOXbcXFo9rdu0qLeXZBO3C6xhBLRE2ezqVpJK6hr698WQkqybFdm1gW7hPqSJxDlDHg5nhjNagSRzAeYExlRIQaWAqQFBSDmRLPBHNpjwNaJ8eS/1+3tOH5hggS/AAE6/RlTIl4G9BHMFVuBL6kv8lYShyyyF0fsiAh+fCWtBPYK/hRw1SEYF/lVGVvL+8toBc1Ie67hqupsHLIhQU7WIoKWBchlSMGEWBC4lPsRG9siPXBfiqQGSSRcfvCWiM85QYkPDcmL9KKaGiGMjHRbMvlBLwnpYsg9v1EKreLEBHpWkOAti2wypJu5NgYzKPIXkzJ/nYZkv6ZzyoiZvVnySX169LrAYtyKX8N/eRK77pwj87sgPI/k7lFeKGExSr50Q4ZwsG2ktikKF2SbZD8gkSlSM6mdi9GPwngn5FKeb1liW3o6hsbZC8IlHW66/OgOUjQ2wqbA4C2XliLeHuspBxAaQSC4C3gRmgBNwj0gwIYqY3Qg+1GgZbmnDE6N9WkN72x0mepAcIhsJzqnBoV3JFKkNVCFgArz1SvIq2i/nSqlSHkoIMt/ZYD4k4i3c5G0SM/7CGFXvLtfhxdnEQzGEPFBeDUPtZ/85EY8NEG403xXmDmVjA5i9L/se2Y2M3lKHcupb2+15sg+dW2Q3x/YD4Yz4R9YPy/pnzXKF/TSVOtJ/YKPXNGf8M99yI5veE24t2AOtX0WbZHGkgTrDFCg24JH5dvCIBDTkvz59pELuNZJ81JCxAYFr7xv8WkNiikG/tYV+ctc/IlZsgMs8Vg9am6WVUN4raVw3t+kTaQb1Iw+vUURY1Lf1M0x4kj+mjRwoeGU+kvIH4u4841EKEBvAN2UU1Wy0gnOrkoeGc/N3Zos1MXfLsH2rb5EQoyBeKRnHkyN5RNUDEQZ+cpkb9Pv4XyGThLvIsqgQTuR2bpPBYOx6GbWCSAuVWF8v4ZUagbvrkMiVYPZrHK/C2uBqyyFyf86uHBZGym/sX08RP13P/teh8QmXzCHWPhUME8hUw4HuEQdL6veVYBvHgsr/p6ByHckdKioVqS1KKlr2F6+pNNHaoqiyC0c/d1XF4pRIat+T/WZ6rzRsZ6jIikL7EEo+adhEiU1degAlVxo2UZLSNVvuMUClZL1cJiEq5WuvWlK2Mi0pYXvVktKVafmV75oq6JOmgJoG03tmH77CmMbczsjOCgQ1kfyJTPVQmd1+se8y3KMHO3qwg3qwffuMmiy8dbZUkyqn3m+6VVaSZsjH1K1F6na8MxzgzlANnUdSdyb1Csl86mKMucBOCUWrO3da5tNT+ZFCYWWOm4vxIl+bm2yjRGTlw1jVIs8Gg2q18TNxma1qiZ3XnAd891KjTSVhbkOh0A2swtttjH66mbD3gZ6gcmNiXpdw1hSK9JDNQxUZnTG+raN8XdedqHVp1cm4QmkxpVezu3kZV5q+pv19Ox7fVAD13hY3VdWhO3WW5FG5CPArqDAQCB0SuQATeiFWeuljL0mRRS+r/PbU91KA2S3Hm47asIi7YMJCylCYvZ7lBpF9QubUl+SEsB4JmTpkgloRZ3KpRIY3o3d0+ZYS1XuYTPMD7tCktJEUh2X7Q0L2juIsdI0hKUqy73rnsdWA89FSyAca6+36c67X34gXunTT51lZvlKqDmLNvljbS6r4SbhcJxdZ9WNtScUtyR6nxVl45pDn587FWff88vSye3Z+MejOnjlWd2C9uHjmXFwQh1xA7uONSTuJaVqnhUF/cNbtX3YHL8an5+b5qTl4ftK/PP0Hsq8oJpvHTHNV2fXBLH19MMk1Wtcr1LfY9d+YXbabu/LMtR33Q2oqdZcPoaraSNWmVeiBpr3Opo1LW5ZNY3Tnsa19JT3FftYWLPT81i28ftqC68eqtecE6jSlTQJ1+DvDmxHkCiLQPzk96VfOQmEwRhtiqWiTnm31GoySl8n8C7YnPRVqQFLi/bF+gTNDx+YRP4e32RuWio2Jr5H0m+yFLmEqpKhJrBJHOYHEUUJmPvrD0TWmdpdTAxboYc0JrFYzIugn7sYxPtbvzck06WTNkL8JxrdF6htX8C9dqtacCsRdFYVwuBtpX1gKyhgwtcTQsmgoG8dOc0Hg5vpuDAbMkg9evcBGGU5wefjTBDQ5xY9yj+rZClzizyPtGTQm/vsPc2O/1A== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Testset Revisions + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-testset-variants.api.mdx b/docs/docs/reference/api/query-testset-variants.api.mdx new file mode 100644 index 0000000000..68ee55a161 --- /dev/null +++ b/docs/docs/reference/api/query-testset-variants.api.mdx @@ -0,0 +1,71 @@ +--- +id: query-testset-variants +title: "Query Testset Variants" +description: "Query Testset Variants" +sidebar_label: "Query Testset Variants" +hide_title: true +hide_table_of_contents: true +api: eJztWW1v2zYQ/ivGfdoAOXbcvLT6NPcN9do1WeJ2wAwjoKWzzY56KUkl9Qz99+FISdaLrTqpA7RD88GxqLvnyId3xzt6DZotFLgTGKPSCrWCqQNRjJJpHoUjH1z4nKBc3Wj7/uaWSc5CrcABiZ8TVPp55K/AXYMXhRpDTV9ZHAvuGYjeJxWFNKa8JQaMvsWSDGiOip5qwEY9XF3MwZ3URefCTHa3wJIpM1GPKawJ6lWM4MIsigSyEFKnGAoTISCdOqC5FjTwhqnOuEBJHQsrmfetmBYiTZ1cLJp9Qk/DRizbhddmoU281IEANavOgvk+J6aZuKyQ0Zin0pKHizIsDzUuUFYtBbPqSHl5222Bx6WXCCZ/eZ0I8buKwu4ojBP9K9RXShhcY7CfEpOSrVpprapCg9k23T+ISdJoONX3xOj76B1X+muc7lpjXft+DI2tF0LIAtxz/c0ZkG7qgI/KkzympT4U6mUJYo8g+mgTyp+UvrbHUp56JM5r+5v5aD2/3KJU37CAj5l66oASyeKhMNekmzrA/TYEB+aRDJgGF5KE+62II7+V0Cuco8TQw5L7fD02s23oXBG7JbazRP+T9UdlPfP+gn0eeiLx8YZJb8lvcfsi9jnJRhaoM8yBUgfueOhHd7T+lsM5xDtUek/yfKaxq7nJHS3JxUKmDkTCPzT4hYWk/Idf9oX+6qa/J6zUAcEDvh106xFSQ3lntGnd0kfZPjcMk4AqPKY8DH07Rtk4e5i2cmDgjftolLdMPHjGoxwgdUAyvf08aR6VDZwr0m0Lm78KX9yS8+93alzZAhdS0qNql0sKHC0TNAMqjsKs0Bz0+/SvcsrBdeJ5qNQ8EZ2rTBich9bJXpRYpRrpmxW8MBK0uXOWCA1uv5l1DdSOPJuLHi7D5cloZLIEk5rPmXdIA8MMMrPws0H4YRqEi0Q/oENoaN2jRbC6//MeoY3WPZqEh3D0PXcJDngSmUb/hh22OHhhYTtDQ1YS+49h5IOFzYz4KPARjLy0sJmRnK7Z6oBZOifr+SrL0zlfB7WSs1VYyQk7qJWcrsLKD9VTVIucRmOxs41Q5bJico86ShWFT2qqqJPBoFknfWSC+6YK6rySMpIPL5J81IyLlhpHRF7l7X3S9XQ3Xe8iO0FiNFCLUplW7OHmSFGKLUpN3W5RQ0ZnTG+3Mb6pSCdmXdZ0JldugAt6Lbu7l/HS0te2vW/G48sGoN3b6qaaCrqzxY8C1MuILpbjSBFyzPQSXOjFEm853vWyMlT18pK1Z26gwQGFku4CzHYlUoALS61j5fZ6nogS/4gtMNTsiPEei7kJC4VeIrleGZXh5egtrt4gMy3TZFoWuCaHsi5SFSt2h8X8LdIs7DkHw0QvI8n/tftOHRLNx2oRG+SqV5sb8ldfWBAL3HHjXRSutQKVWo1qeZk1H1mVtylNigN440bV/Sgcu3btNSldsGx0bVbbPFOGgidz9vR0fnbSPT0/Pu+enJ4NurMnc6878J6dPZmfnbE5O7PZaOtVz2NYal5rWMoqNxL5zQMM+oOTbv+8O3g2Pj51T4/dwdOj/vnx37C5QGiTsfcA+02u6PD7RZNe6cA3DXU/b4j7qWm055FxkrzDMT7dGV6OwCnR1z86Puo39rgiTCmUeca9cpc1r8GpBU8RNnRZEJj8CRpZ8NvmBc2MwjVgYQlvZ4jXyrgsgjR+0b1YMG7SpJnDOov+CWTRD4XzEE7pxyabA6YOLClruBNYr2dM4Qcp0pSG7Xt3Ms20ZsTehFL2Mg/4NfyDK9Mnm7OlaxIriYvEBnjtnKEzwGoMPQ9j3So7LSW2y4vrMTgwy34YCyKfdCSj1dGnC+Rwhh4T9GZsDYKFi4SOBhcsJv39B0VPaYA= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Query Testset Variants + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/query-testsets.api.mdx b/docs/docs/reference/api/query-testsets.api.mdx index 58dae98d3e..a2ff7c8ccc 100644 --- a/docs/docs/reference/api/query-testsets.api.mdx +++ b/docs/docs/reference/api/query-testsets.api.mdx @@ -5,1141 +5,67 @@ description: "Query Testsets" sidebar_label: "Query Testsets" hide_title: true hide_table_of_contents: true -api: eJy1V0tv20YQ/ivCnFqAtlyjJ54q2wnipq1VW+lFEIwRdyRtsuQy+3DDEvzvxexSEilZsmI4OljG7sw3s988VYPDpYV0ChOyzpKzMEtAl2TQSV3cCkjhqydTPbr1fQKGvnqy7kqLCtIaMl04Khz/i2WpZBZUh5+tLvjMZivKMdwW1d0C0mkNrioJUtDzz5S5FlEaEuxITg4FOmRHnHSKBSe4tPfRKjTJRr/wSkHTkfuz1R1shJumYXhb6sKSZS8uLy74S5DNjCzZVUjhwWcZWbvwanDfCkNy+stKw5Q5GS1k2kel1k1ZOFqSga2f10GiSWDDalqDdJTbfbQCc3qWPeuMLJZH+fiLdZuk/9jXQd10IJoEMkPoSDyiOwaYwEKbnGVAoKMzJ4M/h61cR9jBKLDjS/EjjHyKsK0RQYp+gJGbCNsaWdM1rx6lONGO91KcRNZVNbgVXb7e1MqarY2VNWFvamVN18aKVX752lx9YN0mgbdzL/rE1Zph20f2YNEYrI6iTDb6TbLtcz0sFEJyjaEa97rACTSs20zPg3zeP5lrrQiLcPS8LcikybxC89N7r9TvVhdnd96V3v3MDazXuBmk7VqnaL1M0I5u4HzP4kvNH5o9tX4ILHWRo1d7EjzoBC3QKwfpdPYcZndqxZ4/24fZjJM4in69vNyfPv+gkiLMlsE7Y7R5/egR5FCqI9NE6ax3+z15NTtM2h86OhgS2y47w29TbNswWYtL2kbgsGggYzDh25f453dF061cJxRbeiO7h59xE+k7lkAfJpPxHmCMbT+of/PaNOhkU05upXmhKrVlxBLdClIYloaeJP07XO8Cw7BwQQKWzBMZG6LjjYIUVs6VNh0OM6W9OMclFQ7PUQ6xlLBrfxRuB9csGurEUuaNdFXAG41vP1L1gVCQCfndEXjg5Irp0hfbtrpSfiR2MS4nMPJupY38L+ZAApIdWEUtZobT9n67Nb77hnmpQug7XZAFZbHQwU7LdvuIK8y+UCEgASYkvu/i/Jfzi0OvbhUGo/FtW0yYue021YpBssPrhlFIgPJQSeAI89+2F+wlBzDHooO3F+ydjavlzdE3NywVylAowXbd5sEU2jyAzlaYxOWbk3nFSZNOoa7naOmTUU3Dx/E+nc4SeEIjcc60TblSV+vY1vCFqrB0hpZyFuqJxZWPsdxpL1z6UWOUZVS6o7KzTl6P7x4mkMC8/V2Qa8E6BvlJ/DcF4N8WrB2SK5zVoLBYeu4IKURM/vwPtqVO2g== +api: eJztWdtuGzcQ/RVhnlpgZcmKL8k+Vbkhai52bSUFKggGtTuSmHIvIbl2VGH/vRhy7ytvFMUBkqJ+sCXuzOHwcDg8s96CZisF7gymqLRCrWDuQBSjZJpH4cQHFz4lKDc3On/ugMRPCSr9NPI34G7Bi0KNoaaPLI4F94zr4KOKQhpT3hoDRp9iScCao6JvGaBxCzcXS3BnTZOlMMHdb7BmygTmMYUNQ72JEVxYRJFAFkLqFENhIgSkcwc014IGXjHVmxYoqWNhJfO+FdNCpKmTm0WLj+hpKM0y1l+ahbbxUgcC1KweBfN9TgwzcVkjoxWn0pKHqyosDzWuUNZnChb1keryds8FHpdeIpj85WUixO8qCvuTME70r9BcKWFwjcF+TkxKtumkte4KLWa7fN8Sk+TRSqofidF30Ruu9Jc4vW+NTe+vY2hqsxBCFuCe629HQL6pAz4qT/KYlnoo1PMKxB6H6A+qU7sPUVZrbiQuGxubJWezsNyiVN8Q+YfMPXVAiWR1KMw1+aYOcL8LwYFlJAOmwYUk4X4n4sTvZPIKlygx9LCSN18+lBn/vStil8INPZH4eMOkt+a3uDv4fYroxAL1xjlQ6sAdD/3ojtbdcS+EeIdK70mazzT2NTdp25HXFjJ1IBL+Q4NfWEg6evh5X+gvbvY7wkodEDzgu0F3Vq8GyhvjTeuWPsru2DBMAhITTHkY+naMCkH2Zd7JgYE36aNR3jJxcMSTHCB1QDK9u5S1q3QL54p8u47Ln0Uu7qg6exasKyumICUHUlZc0onRMkEzoOIozMTNaDikP7XKCteJ56FSy0T0rjJjcA7VZF6UWKcG22Xoz4wF7eqSJUKDOyzLq4G4p6D+L+V+Gil3kegDtFzL6yvEnPX9j6u5Llr3kHOHcPQj6zkHPIlMo3/DHvYufWZhe2NDVhL732OS9xY2m8RHgd9hkucWNpskp2uxuXk4PZiT9XTTm/hVvh50lpytYpacsAedJaermOWnkt7Z9dES3i0LVb19Z/voDFUIg9SojJPRqK0jPjDBfaMSei+kjOThIsJHzbjo0AIi8mpPv6Ywz+/n501kAyQKA7WqyJhit8rLQym2qnQ595saMnpTerqL6lKxzcy67NSZXbUjLOi17N6/jOeWvq59fTWdXrYA7d7WN9UozF4lcQLU64he6sWRIsSY6TW4MIgl3nK8G+RKbmBe+oEDCiX1wmZ3EinAhbXWsXIHA09EiX/EVhhqdsT4gMXc5LtCL5Fcb4zL+HLyGjevkJnWYTavGlxT/tiMqJsVm8Fi/hopCnuBwTjR60jyf+w2U6dA8VgvWjxl5lX5cvLFZxbEAhsvGwsl2lCcpLjrejHT4JlsK7VGcaOW2VKnvcjfxouHWeXFQulry1T5nUoOPFqyx6fLs5P+6fnxef/k9GzUXzxaev2R9+Ts0fLsjC3ZmaG73WzbhdT65LwfhtFwdNIfnvdHT6bHp+7psTt6fDQ8P/4Lyra2y8Z2p/sFV/Sdw6J1rPWFZZs3zNu0YWrav2VktixL9rHJsN74cgJOhb7h0fHRsMV8zZjqF/PMpucJZB6D00jlIomphQ1M8QKNLPitfECR0ZkJWFjBa52vhkrK8ljjZz2IBeOmNpm5t9nRm0F29KDSRjn2nTvVjzWdU3cG2+2CKXwvRZrSsH3uzuYO3DLJ2YKomlFxXOdnbQt/48Z0bKaK900JI3OR2LPVqOhUba3H2PMw1p2280opuby4noIDi+zfAUHkk49ktCT67QJll+HEnDsztgXBwlVCRdgFi0k//wLGTFuQ sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Query Testsets - + + + + + + + + + + + + + + + - - -
- -

Body

-
-
-
    -
    - anyOf - - - -
    - - - metadata - object - - required - - -
    - -
    - - - property name* - FullJson-Input - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - testsets - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/query-traces.api.mdx b/docs/docs/reference/api/query-traces.api.mdx index 35bbbcb465..1b01a4e2f1 100644 --- a/docs/docs/reference/api/query-traces.api.mdx +++ b/docs/docs/reference/api/query-traces.api.mdx @@ -5,4415 +5,67 @@ description: "Query traces, with optional grouping, windowing, filtering, and pa sidebar_label: "Query traces, with optional grouping, windowing, filtering, and pagination." hide_title: true hide_table_of_contents: true -api: eJy1Vk1z2zYQ/SucPXMk29MTT1XbtPGkjd1Y7cWj6UDkikICAgiwtK1o+N8zC5AUGMceubFOooC3+/YTu3sgUXsobuFq7dHdibVUknawyqFCXzppSRoNBfzdottl5ESJPs/uJW0zE+6EympnWit1zee6MvfhcyMVoQufQleZFbXUggVmkIOx6MKfywoK+My6/4u6IQcrnGiQ0LFde9CiQShgY1wjCHKQehCBHBx+bqXDCoqNUB5z8OUWGwHFHlC3DTtmLGpChQ1SEBE1ahLsIe0sa/bEZgJ7vBGtIigGTA4kSTHm98jedXliUNn6F9gj9O5qEzya8rLK/kS3SkG3SmmZI2U1qkL/kjD8H9qrSJLyarw/Pe/7SDKJ8lBGp470yJOyW1HjjxBLTVije5b5mjlSUi+/nJz0hjmm+X04fXYfprn1ZOyJOW+YouMTh94a7dGzqouzM/6ZPnE3bVmi95tWZR96MORQGk2oKRhgrZJleLfmHz3L7J8zz6w/YkkTn27hDp1nuhy8FdpD2nVLVEsnSqnrkT/x7Vl1iZpFeLvemwr9j6tZOnwNNR+MoURNcj8cZnHALOMQ6Lquy+Gni4vHWfpXKFmFHGRvnDPuJSmyjgcPyVgEFZKQir8kYeMfA5QpJ7dHFODYe6tunC/CObFLZsmfJhoIXQ6Nr1nzt5NogP6F3ofnYVD2NDQEI1vybXfg/m6a2K9I3eOSfBzCG6P7tBu/xfB9j2yAvF0urx8pjLltkLaGh3+NFGY+baGAuUm3kPnd+XzcCvh8WAlap6CALZH1xXxeKtNWsziyZ0LOhZXw7foSyzD7laGh/jyWreNNh/Utri/f4e4tigodFLerFHDD1RPrYQobUyGsfIccmf5ZW7S0NU5+iUnu37dtlGLXpd6YID5pkewXUX5CXUE+tlEBZ7Pz2dlTzvQC2eL6sm8CUYYmGOwYlphpuMZAQQ7YhA4AQtH8fLhgK63x1Aid6HvdFXDi0v7Qw69M0+eI8IHmVgkZui4EZN8X3S1Mio7jf86CsfBWOWyNJ4bt92vh8R+nuo6P48Ti8qmkF2uVzKxPuEs31juhWjYiPBRPguM2eQx23AGPAY+L21FWJNvWMfh+PzoG2m81x5n8cKzB/QpxgK74j5OMDZ2cD53HiYoyi7JEmxI8GhqsZXyg/nizhK77Ctk5eac= +api: eJztnFFz4jgSgP8Kpae7Kl8yM3VPPB2XsLepZEgWyL5MpVLCbkATI3klORmG4r9vtWSDbcA4YbhkMv0UsOVudavV6v4KZ8EsnxjW/sKuRwb0Ix+JWNg5uwtYBCbUIrFCSdZmf6Sg5y2reQgmaD0JO20pd4/HrYlWaSLkBK/LSD25j2MRW9DuI5dRK+ETITk+cMICphLQ7stFxNrsL5R972WzgCVc8xlY0DivBZN8BqzNxkrPuGUBEzJ/hAVMw1+p0BCx9pjHBgJmwinMOGsvGMh0hoapBKSFGGZg3SN8AtJytNDOE5RsLE6TocVjnsaWtfMxAbPCxjjmN699uQwKEwpT84z5cDm/HjuLynpRZHZFpnHMlndFtaijqFXFEZjnuOElaq+9kqJeCU/H19vzSkpezsPo2J5e6SlqT/gEDlEspIUJ6FrNN6ijqNSI70dXOkAd5fX9dvzV/VZeW2NVcmSdA1SxxCsaTKKkAYOiPn34gH/KKW6QhiEYM07jVj8bzAIWKmlBWjeBJIlF6PLW6VeDzyy2Ti/RmN+s8LpClWaPv2ShztzTy4CZhEsnT1iYuQ9VNdKigzduuLx6LyL3uZLxci1DHNO6iHJFe4YPEi7d6OUqiarRVwhtaQG/rFWvpRazzBDiMz/r8+E1qvZxsVtvD+8vA/YgZOTXL0/Yg5tO7/7yond+f9sb3HTPLn676J6zzRSfHwq7xq+vX/SG3X6vc1W6OOj2/+z2S5fOri66vWHp0k3/+vz2rDruuje4/dztVz2AvrxEe9D1lmt7b8V2L2QnYJtF3MK/3KhioHNtW0PhHQQyepmYroxWQozlNjX3oYqg4uxhZ3g7uD+7Pu+i+7rDOkcXxl5fokcKF7r9/nW/cs0LrDrJTeUMZ7Ke2AyMwdz54tSAUlqfMynLgHFrtRil1u+btUweRcKXOjeFnWV1CtXwr9PXWUvHFXoEaSt6duzsprsCl9JYPktqd/pq0P/V4D2JwplYtKCy/l30VpYkMjlcaz6v1d/1Ll66ihKqOfhnTZJVe5cBi4V8aBZK7+GQeDNBmzuzMtsrIR+eG6pXbgWbKgzy/VI4Lwo5f8sBs20+5ZXar90XIBXhGBNCTs655auaCQ2tZDAVVVdrR4AeMw5xo4whnIcx1KWCUAO3EN3z7UVbg5PlzEtodVzhlibRgfJuvYSKvNE8M/wQkf+dZ65ZSz1c5NZQWoU6THg4v8pXYmdS00ptyVPbl3pV0qSpyyO5rgbZp5xt+kqtjhkN8CP05+p3O3VdLAn5qHx/gZxCSmXzL6l8kOpJFuc61ABDFLTFfc8yGgXlBXhW6x1udOOipbFzHJNhAXtS+mEcqyfszaZcoHcsNw/4R6kYH5iNIIr8w3lbGapZEkPmzHDKvUc0lw9FT/RUdIBLM6Mr8jLP7i9BjhzaN24CO7db3i2U5+QOmJf1Ilkb8pIOZP9R5BR4+cVAFrPc3b5F2FYARVvDMg+yvJ1xrYpvTzZahrwNObD/WDUee0/9CDYnkdkJ30LI+EVNcVvXGNQuRqlbyLfqznPZ75wf5he3iuGDKwkOaPJyCW+pdFyvSDau2LbkS7pzr0bc8mMYgFWcX0CrRXgUH33ORHstR7HiM3grNIyPYkIf5T6r69q1cQ499l9WjWiAPYVjVUSdN3A6jbo8vBdUzqQDWqWAKQtxXdbLIeFL0kYO5IgIvVMiRMjk/SKTUph8s5rvPEi3cIntLnkdcEjAgoAFAQsCFgQsCFgQsCBgQcCCgAUBCwIWBCwIWBCwIGDRCFiwUOgwjbn+R/ZDkH+yYBU7225WLLrbmHDtb3zdBF8QDln/nLWxWWOXVfmr6viuHHm5m+i3JIRmCM0QmiE0Q2iG0AyhGUIzhGYIzRCaITRDaIbQDKEZQjPwOmjm55hvx/2zh0J/1Thu/BQL/zjiC5r4Q174ronF9XxNzTtXaHzTd65+UTpR9zo9wUOChwQPCR4SPCR4SPCQ4CHBQ4KHBA8JHhI8JHhI8JDg4avDQwIWBCwIWBCwIGBBwIKABQELAhYELAhYELAgYEHAgoAFAYs3Byze/a+d6LckhGYIzRCaITRDaIbQDKEZQjOEZgjNEJohNENohtAMoRlCM6+GZn6O+da/iPb8Ca2UbtFS6I8bR+fQvVL2Oq+7Od01r7uhp5vlvrfAYOrfPPtFGQ29jkcIlRDqm92ehFAJoRJCJYS60V4TQiWESgiVECohVEKohFAJof6SCJWABQELAhYELAhYELAgYEHAgoAFAQsCFgQsCFgQsCBgQcDizQGLd/+bL/otCaEZQjOEZgjNEJohNENohtAMoRlCM4RmCM0QmiE0Q2iG0MyroZmfY75v4XW88iG4X0vBwi1aiuih6R7ouxfrXuelP6d7/dJfqUDyF1t/YPPdcjkQvYMy//3pE84sAhNqkTUu7E8ei8iVPK2u1kq7fl3avF9Oklj48uj0q/GdjgmnMOObOTkCy4WrCnZk81iFpbsNioOV0+52B8BVXr9hXWsmdTm+0N7sa6icM1q+2NsTW2iXV73ZUKzd672724xz7766xf99OLzZEOjXdgZ2qiLWZhPAJxJup6zNTtXIgH7kIxELOz99/HhqfUAEDK+DNs79qY5Zm02tTUz79DSMVRqdOOLDT7g45YlwIWYgTLWwc/dI5+biEua/A49Au9AvDBhggPglLw9beZsn4hLmObRps05qp0qL73npLTAyp/4ptE7IsfLNdHEXtDo3FyxgaIaP5Q8nH08+uC1ZjPDSYIxtHtp1IZfdxnq/5IWV/Q5qucBmFvjsP+sbOLNEGTvjsiDPbzzv56D1JOy0pRJ/qrUmWqWJkBO8LiP15D6ORWxBu49cRq2ET4R0jjipmrJYb80frCZbF6wPTpMYwd4yc8gii6UvrBRL6PePLqG6eLoL2FQZTIJssRhxA7c6Xi7xsoeAGDKRMHwU45YZ89hAwB5gztp5uxOwRx6nOAm3/3cODlPTcKyKIzBNBUt4aj545cqG4xPMOc2GGvG96VCJxVxDqVYlpaF3+EULHJsdXNN8Ky+yZzohopDCUxtnAUpZ5Z3/dYdsufwb7dKbEg== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Query traces, with optional grouping, windowing, filtering, and pagination. - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - - - - - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    -
    - anyOf - - - - -
    - - count - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - - spans - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - context - object - - required - - -
    - - -
    -
    -
    - - - - - - -
    - - status_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    - -
    - - events - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - parent - object - -
    -
    - anyOf - - - - - - -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - context - object - - required - - -
    - - -
    -
    -
    - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    - - -
    - - nodes - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - root - object - - required - - -
    - -
    -
    -
    - -
    - - - tree - object - - required - - -
    - - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - node - object - - required - - -
    - - - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`agent`, `workflow`, `chain`, `task`, - `tool`, `embedding`, `query`, `completion`, `chat`, `rerank`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - parent - object - -
    -
    - anyOf - - - - - -
    -
    -
    - -
    - - - time - object - - required - - -
    - - -
    -
    -
    - -
    - - - status - object - - required - - -
    - - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - exception - object - -
    -
    - anyOf - - - - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - stacktrace - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metrics - object - -
    -
    - anyOf -
    -
    -
    - -
    - - meta - object - -
    -
    - anyOf -
    -
    -
    - -
    - - refs - object - -
    -
    - anyOf -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - tree_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - otel - object - -
    -
    - anyOf - - - -
    - - kind - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - events - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - - context - - object - - - required - - - -
    - - -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - nodes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - - -
    - - count - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    -
    - - -
    - - trees - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - tree - object - - required - - -
    - - -
    - - type - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - nodes - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - - -
    - - lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - root - object - - required - - -
    - -
    -
    -
    - -
    - - - tree - object - - required - - -
    - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - node - object - - required - - -
    - - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`agent`, `workflow`, `chain`, - `task`, `tool`, `embedding`, `query`, `completion`, - `chat`, `rerank`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - parent - object - -
    -
    - anyOf - - - - - -
    -
    -
    - -
    - - - time - object - - required - - -
    - - -
    -
    -
    - -
    - - - status - object - - required - - -
    - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - exception - object - -
    -
    - anyOf - - - - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - stacktrace - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metrics - object - -
    -
    - anyOf -
    -
    -
    - -
    - - meta - object - -
    -
    - anyOf -
    -
    -
    - -
    - - refs - object - -
    -
    - anyOf -
    -
    -
    - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - tree_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - otel - object - -
    -
    - anyOf - - - -
    - - kind - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - events - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - - context - - - object - - - - required - - - -
    - - -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - nodes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - - -
    - - count - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    -
    - - -
    - - roots - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - root - object - - required - - -
    - -
    -
    -
    - -
    - - - trees - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - tree - object - - required - - -
    - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - nodes - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - - -
    - - lifecycle - - object - - -
    -
    - anyOf - - - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - root - object - - required - - -
    - -
    -
    -
    - -
    - - - tree - object - - required - - -
    - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`invocation`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - - node - object - - required - - -
    - - - -
    - - type - - object - - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`agent`, `workflow`, - `chain`, `task`, `tool`, `embedding`, `query`, - `completion`, `chat`, `rerank`] -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - parent - - object - - -
    -
    - anyOf - - - - - -
    -
    -
    - -
    - - - time - object - - required - - -
    - - -
    -
    -
    - -
    - - - status - object - - required - - -
    - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - exception - - object - - -
    -
    - anyOf - - - - - -
    - - message - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - stacktrace - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - data - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - metrics - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - meta - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - refs - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - links - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - tree_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - otel - - object - - -
    -
    - anyOf - - - -
    - - kind - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - anyOf -
    -
    -
    - -
    - - events - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - - object - - -
    -
    - - anyOf - -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - links - - object - - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - - context - - - object - - - - required - - - -
    - - -
    -
    -
    - -
    - - attributes - - object - - -
    -
    - - anyOf - -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - nodes - - object - - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - - -
    - - count - object - -
    -
    - anyOf - - -
    - integer -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/query-workflow-revisions.api.mdx b/docs/docs/reference/api/query-workflow-revisions.api.mdx index 574fa117d8..b49fecf28e 100644 --- a/docs/docs/reference/api/query-workflow-revisions.api.mdx +++ b/docs/docs/reference/api/query-workflow-revisions.api.mdx @@ -5,2058 +5,67 @@ description: "Query Workflow Revisions" sidebar_label: "Query Workflow Revisions" hide_title: true hide_table_of_contents: true -api: eJzNWNty2zYQ/RXOPrUziOV6+sSnKnYzcdLEbuy4D4pGsyKXEmLwEgCUq2r47x3caOouO3LTJ49F7NmzZxeLBRagcaIgHsBfpbzPRPmgYMigrEii5mVxmUIM32qS89GDXzCSNOOKl4UCBhVKzEmTNBgLKDAniGGGkmOhR5IyYMCLgAEMJH2ruaQU4gyFIgYqmVKOEC8Ai/lVZmH0vDIwSkteTKBh7S9FLQQ0QwYpqUTyylCEGN7dXH2M3OqozCJJGYvoZHISLb7APc2/QBzNUNTUAAPNtTBQd45j9IkyaJ4PaMj5qIMu/+uwP3mSLxF3ThpT1Pgjgg++n6DAh0B3nwz7sDdpkQmzr36AENbxE1R4Y4nuk2Anaid+XiSiTmmEMpnyGaXfo8C4LAVhsVGCEMal8xf1g7/GfJWkqrJQpAzu2emp+bMc3k2dJKRUVovok18MDJKy0FRoy6aqBE9sD+x9VcZm0eFaSdMhNXcekrJ2Rp4lLzRNSHbUPrcrGgaPvTNeANeUq3U4rPW0lLuKgkFWyhw1xFDXPN2pUN+hmQSjpgNRzdJXmue0E/rCADYMclIKJzuxd8F88OYN81X0PJiPaOkuJ/p5UBcdiIZBIgk1pSPUR5Xv3MFGfVsZdZW+hJPPDtY7SUnQCzi5cLDeSZBrPB/x9FhlHMR6PY8u065eR/US1Gq9BMGO6iXI1XqZkVTfUa533rxhoEQ9eS7MjbFtGBwvUBedOwo3QZbjr5ToTp8MQ2g4lFahbbPxp/YSIKYpN9sVxfVyL92vQ+jWS97y8fIv3bNosy9IuExqgfKnN7UQ71RZvLqqdVXrn018S/EaEN/7D7FCKXG+U+cVWyP6usft7bczBq0Juy9TF85yQ6JQap5hoo+4cfoe0m+b4OEwxsF4M9twZTke2XDB8Fvc/fc0cT3EJsZrKV63DiNepxxcKa1PgWZSTSnDWmiIBxvRHye3gR94httdqnaoahoD9uvZ2foMdoeCp3bCin6XspTPH8BS0sjFjpFKlMnS16e0heF2+f4oHUE7BKlJZwRs62XDkOOWbF9qxYhuzdd9iTBxOdd+3VL9BXmdutvDuHDy7aqpt7e312uALrfLSf3TDPpRqIeoW2A56Wlp3hOqUmn7dqCnEEOvMkMxPfTGqKgXXhlUrx2Ve+HyoEjOwktDLQXEMNW6UnGvl4iyTk9wQoXGE+Q9rDisMuvbr9G5WWo3qqKkllzPLV7/+vI9zd8SpiTtFugsuDFl5wppeVmbQ6z4ezIU/TXIDd38H1cd/g40dVZGM15kpTUPvclxe43JPRXm0tROBHB68svJ6bZgvEHUv770u8e3w8DDLgO2IlcrFDCg3G4d0IT5b48fDEuTpxyLDt6O7K6M3V4YTX/rXiWQ2z1iWSx84gfgEw8MTOqBQZt86N6UmL89DhlMTeXEA1gsjMVnKZrG/Oy+mzSmXOFYdO6XK7TaBvO0x5NNwdzTfO2py1pADLaR/OdcVh6gjkPmgIeVAxh1noaOQ2vfM8cBnMITzW5CzmjDu8aj2dAf72OzlwfmvJiGPrLw9v0koUp3rNaON4PSdsjrq5tbaJp/Ac1vXHs= +api: eJzNWtty2zYQ/RXNPrUzjOVm+qSnunYycZPGbuy4Dx6NByJXEhLwElzsqB7+ewc3ipREiaQoW08ei7t7Dg6WWGDBZ5BkJmB0D/+m/PuUpU8CxgGkGXIiaZpcRjCCHwr54uHJGTxwfKSCpomAADLCSYwSuY7xDAmJEUZQmNIIAqCJjwEBcPyhKMcIRlPCBAYgwjnGBEbPQJLF1dSEkYtMhxGS02QGAUxTHhMJI1CKRpAHhUWiGIN8HICkkukf/CgGlxHk2nCdkdiHEuGcaB8qMRbaYgfVhlzFZrKCqVkPAjYicaOxalkcUrRmIt0YFhsJPhJOSSJfMdvuLIParFsyPL7sW3LfIe9LZqMnVZ+VZVavn51lvjUy+mXzFdP0i6NQm6cljseXqCX2uyR+yVQtaNXnaoXX6ydrhfEuKR+R678vruadw23E7og0vfOMysTNn8Mq+FlDlDEjFCGnmTz85F2UkMoMpozsl+0NsN8bjDKqPDzo7SpmjJIcGPNvDVHGpEnIVIQPhIdz+oh7FZVJmjIkyVYClxZvcObxKgmOP+ULV7XPGrLK4QlFzywiIvGNpPrV2krFIJfJpCx6JTJXFrlMhtGY7sWFJhJnyLfifjIgFQ14hLwTLCYq1odSIkJMIiuDXs/cPxq18YtzZVjk+ieOIksTgWaVf3t6qv+Ul8kR3KgwRCGmig2+OGMIIEwTiYk0HLOM0dCcjYffhPZ5Lo0g4/rkLKlFCFNlnVZUXHI7NxZ6bFOimITRaR6sVzkTrKhOVYxNh6BDnm4C6B+oGr/cPDhEVyAAwiWdkrDPIZy5kB5ByXnKewtuo+WBWQF6XSwudMA8gBiFILOtsbcXJ+ueB67oV+JUM5aKh1AJmcbdK5EYnNsIeaDD4SNhisgawRtGfFcEsUHnKibJPgE/mAB5XqxV6eQbhhLW09LtYdbCmXmRK0sjiSKqVx/CriuyNpi2jat4PKn+Uh7dZiwIKQ8VI/yX94qxv0SavLlSMlPyV1gdqw7iFq4mXnYnvnW7V/WFNXV3b6EC1/I8VlE/p5+okDtlrd2LrLq308hubQNXwvc5igTV0trD0SKAkCORGD0Q2esqeG7DDs6MWCqLDgHy1YZ1IBEyPADIhQ3rQLxck0WPpc6L9efCFTuvV68oXq0CxQvWK4qXq0Dx3Y6O6Vo0LQIwLaiOYWwnKYD+Buo0JKvVpFqa+xu94rRrlK+c2gisewSmI8yRROZiqt1KfyhJji8htmxNvuAUOSZhZbXxRMetKsoHNw25P+o1nZEjqslHudFpMQc3Tni9oyRZRpOmG6BVidvstjyQmXhdxDtnv/XOq9fNx7p/O8pcqXe+XkqqJwr5Iw2xibqSK2yVgy50bvopUzpT9hODQ2CdVwCanMF8//6CmDPC2lGsRYiS/v5qofa6QJSbP/etYETRoMpz7ff727fr/aw7wmhkVBi84zzl3ZtZEUpC2ZZOFEvDytM27964XrJPaUj89j8Ws02XiRu6ENak3tSIMbjVTzdpvmxS3ptxWWhnV+lceXmtuvXDuLDybZvgD7e312sB7dxWJ/Uf3UodbMylGOU81d/sZKnpPmdEzmEEw0z3EvFp6JtrYlg0F4e+M6vfff8hj9l9wVzKTIyGw5ClKjohM0wkOSF0SDJqXjeBoeJULozL2fXlR1zYam9yuWRg6o9Nk6rZ8hIuox9Rs3C9Y9vzov+R8v2V3dEZEWkyTY2775EZcoOz60so7eLh9OS3k1NYFbBirN8HEpr3wWObxxCsqFCMHwLA2LwMIJHEfywfaGZaedc6cvG2zNfKEdmJIfGnHGaM0KS0E7ZTeQ9uKmHZKRUmY5dB7YSOA5jrJBjdw/PzhAj8ylme65/tcz1nERVkwkrN+O+4WPt+SzfGNCvz5u72EG1d3GV9a5/WQJXvhDp6dgbtMsrVb1xaOVe/N+nq2h22y4DXPpTo5r38ZmEv/6YE3O1+E9PqpXwTD3+J3sRWNjd1N9ZNTDdcNDdSxV4JNzN1N7dNjIub1SbG/uazUWB3Xbm0HbvbrokuMffjoqdg1k7rdBaGmJUR1vZUOkpRlq+vbm4hz/8HL//mnw== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Query Workflow Revisions - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - revisions - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/query-workflow-variants.api.mdx b/docs/docs/reference/api/query-workflow-variants.api.mdx index 37d8f158a6..5a4cebfa85 100644 --- a/docs/docs/reference/api/query-workflow-variants.api.mdx +++ b/docs/docs/reference/api/query-workflow-variants.api.mdx @@ -5,1088 +5,67 @@ description: "Query Workflow Variants" sidebar_label: "Query Workflow Variants" hide_title: true hide_table_of_contents: true -api: eJzVWE1vGzcQ/SuLOTXARnKNnvZUxU4QJ23sRk56UASDImclxtzlhuTaVYX97wW/1qtv2ZFh9CRA5Lx582Y4Q+4CDJlqyEbwt1S3uZD3GsYpyAoVMVyWFwwy+FGjmt/chw03d0RxUhoNKVREkQINKguxgJIUCBm0OxXmkAIvIwakoPBHzRUyyHIiNKag6QwLAtkCSDm/zB2OmVcWRxvFyyk0aftPWQsBzTgFhpoqXlmKkMGH4eWnxO9OZJ4ozFFhSTFNsDftJYtvcIvzb5Ald0TU2EAKhhthAWPUyWfMoflZXMs0aBBE+h9I8NUzfTYFCjSEEUNeQobo+3AV/oxs90mxD3qDErmwZ+0FZHCOD9fgneO5T4CdoJ3oeUlFzfCGKDrjd8h+RoCJlAJJuVGBGMWF95cMor/GrirUlSw1aot7enJif5bDG9aUotZ5LZLPYTOkQGVpsDSOTVUJTl1b7H/X1mbR4Vop2zQN9x6orL1RYMlLg1NUHbHP3I4mhbadZgvgBgu9juaVfFxBRD+frO1qLp8Gdd6BaFKgColBdkPMLsAUcqkKuwcYMfjacMdnu5czD5sMnDp1xZ7DyRcPG5wwFPgMTs49bHAS5ZrMbzg70E9dc3aQWG/myQXr6nVUL1Gt1ksU7KheolytFy3q6VNrdWhtmxSOR89z8j18E6ScfEdqNtwtYjtdhW5SaGfjEiBhjNtDRsTVUhs4QIfYZ5a8FZPlf7pddLMvoFzRWhD1y7taiA9alq8va1PV5pWNbyleCxLa1iFWRCky36nziq0Vfd3jNuPu+CbK8JxQc8QSHQTIUKDRw+PqIYJsKom1YNfNw5Tu6OI1XZvj9qrBMCe1MJCNNmI/zN5RGFnjrQ51OxWbxmL9dnq6PkS/EsGZG5HJW6WkevoEZWgIFzuGopB0afUxp2O8Xbw/pCdo9S30tDPD23p5KDatyRQfMrF9qxMjubar+/Jg4/Kuw75xN7NRXq/u9jDOvXy7Cur99fXVGqDP7XJS/7I3taR9KnXKq0Azk/aJWElt3HvQzCCDfqXwjuN9f0I09uNzUPfjVacf734a1V18PNZKQAYzYyqd9ftUyJr1yBRLQ3qE90nFYZXXwK0mZ3arO6Yaaa24mTu8wdXFR5y/R8JQufrvbBjaovNltLytzSCp+Ee0FMMtdlCbmVT8X18b4Qo781ZWMV7m0pnHTuG5vSH0Fkt757VxetonvV97J9uCCQbJ4OoinJ3QXyIPtw3SFblaoSAFLNzBAYOk+P1hwbK0aSpI2cHbntuVC2PQxeA/pl8Jwt0BcSQWIe0jCGmHFGziIW2/BFi8zmcDn/5xCjNbNtkIFgtr8EWJprF/+3WbRMY1mYjO42CFVdtcnvIA3hTRLc7Xv2A4E8jA9ZIXorT8QeE4jA54Hu8n1HnfH4fVvtfqfkrxob2bj7fZ8Dx9MBuHsp3YMz2yU2MW+8ki2A8oxcp0rNaGnEVpG+XV5fAamuY/7/+j2A== +api: eJzNWdty2zYQ/RXNPrUzjOV6+qSnqnYyduPGbu2kDxqNByJXEhKQYHCxo2j4750FQInUlbrFefJY2t1zcLDALlZTMGykodOD/6T6MhTyRUM/ApmjYobL7CaBDny1qCZPL8Hg6ZkpzjKjIYKcKZaiQUUhppCxFKEDM0ueQAQ8K0NABAq/Wq4wgc6QCY0R6HiMKYPOFFg2uRu6MGaSUxhtFM9GEMFQqpQZ6IC1PIEimllkVggo+hEYbgR9UC6idZNAQYbLjPQhlJhSjHy4wVSTxRaqDbnq1WS1sKMjCNiIxANhrWVxStGaifTgWKwkGPLxFbPtk2ewNuvmDH++7Jtz3yLvj8zGktT6rKyyev3srPKty+j+nFa1DwRRxUxQx4rndH+fGPqqglRlMBTssF1pgP3OYVRRzelBHxcxUzTsxJh/E0QVk2exsAk+MRWP+TMedO0NpBTIso0Ebjxeq1vi1RIcv5kffO9+IMg6hxfUR2aRMINvDKejtZGKQ66SkSJ5JTJ3HrlKRvCUH8SFZwZHqDbi3jqQmgYqQbUXLGY2pXaU6RizxMtA91n4h1AbH5w7x6KgjxTqXGYa3Q1/cX5Of6rXZAcebByj1kMrWv8GY4gglpnBzDiOeS547Lri9mdNPtPKCnJFPbPhHiGW1jstqDjnduksaG1DZoWBznkRLVU3F2tWmOoQ1Sb7FN1zBEwZPmSxOSJCN4QMCL5M1GLXF8n1U2y1ken+d5duXfoIRUTh8JkJy4xUh0R8Owvig45tyrJDAl67AEUxy245+IyxgeW9CVVvKVwR+VJUI8GShFO+MnFfk7VBFVp57tNB/ZPq6lZjQcxVbAVTv7yzQvylZfbmzprcml9hca0UJOR6Ey/ft21sEOq+sKTu9qIbhefxzyrqB3nLtdkq69rqtei+m0a+GYrCpX9I8xrVL+MjNKMRxAqZweSJmaMW2UsfttV1Ytk8OQXIRx82gCQo8AQgVz5sACnlGkyOeN+XYv05CTd+qddRUUq1ZiilYEdFKeWaobgH8Z656h+2ERyPnp89bK0f4aVaOejlA3jdo1ZXu5RefwcQPWukioLcfr+4WO67PjHBE9dVtd4qJdX+TVeChnGxoWUSMq59u8uN3V8v2K30BEnTVI9WDWbmVUVrNsK5+utNnRitR/p2leTzZrrn1uWhg10lLebyenXXL+PKy7dpf68fH++XAvq9rW/qP9Tyt1ZlUopmLGmonEv3SMqZGUMH2rnCZ44v7bKt1e2yB26X7weN6rmcNFsloANjY3LdabdjIW1yxkaYGXbGeJvl3J0NjbFV3EycS/f+5j1OrpHRo4ASuWLwQCnlk6RuNh8T5fw9EovwwulaM5aKf2fVKcvYe5EePBtK5152vo5cq3t/AxHQMrxQ52e/nZ3Donw1YzoNLHanocR2X0O0oMJs/RABpu4ogEGW/jH/gpiR8KFdDfHW79ZCVQ5aGPxm2rlg3KW8IzENG9mDsJEwf81QoMpvBn47+xGMKQM6PZhOB0zjRyWKgj7239OOJVyzgag8GL/gZOnnBWrFiZQ7tds99K4uYey5s8/OQLUx9p6ee4Pus8rFEWwT5zAObWJan2I28Sinjk1sTXPTMOJrYrpiMtdIFT9Da2YaRl1NjGejqCbG5aioUeAw35nb9sMZH9Bt16NqOS5v2mlw6sYx5lWEpeJOUWYF4v7u4RGK4n/c98CQ sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Query Workflow Variants - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - variants - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/query-workflows.api.mdx b/docs/docs/reference/api/query-workflows.api.mdx index 0e7e52b155..bdde9cac84 100644 --- a/docs/docs/reference/api/query-workflows.api.mdx +++ b/docs/docs/reference/api/query-workflows.api.mdx @@ -5,664 +5,67 @@ description: "Query Workflows" sidebar_label: "Query Workflows" hide_title: true hide_table_of_contents: true -api: eJzFV01z2zYQ/SucPbUziOR6euKpit1MnLSxGzntwdF4IGIpIQYJBh92VA3/e2cBkqI+LbvO5OSxuPv27Vtgd7EEx2cW0hv4R5u7XOkHCxMGukLDndTlhYAUvno0i9uHzoBBxQ0v0KEh1yWUvEBIobW4NZgDA1m2vsDA4FcvDQpIc64sMrDZHAsO6RJ4ubjMA45bVIRjnZHlDGrW/VJ6paCeMBBoMyMrogYpvBtffkiidaLzxGDOEhzMBsnyM9zh4jOkyT1XHmtg4KRTBNXmmXzEHOrnIxK7zbxzRWL+gMxD4Cfk/iYQfSz7g6i78i/QccEd/xEStLGfoMKfLd3HhHgMu6eFLDPlBd5yk83lPYr/I8VUa4W83KlFm8xFjJeM2ng1fTVoK11atIR7enJCf9YzHPssQ2tzr5KPjTEwyHTpsHSBTVUpmYUmMPxiyWfZ41oZahFOxgiZ9tGpYSlLhzM0Pc3PgkXNYNVF0iVIh4XdhotSPu1stIE+kO9mPZ8Hdd6DqBlkBrlDccvdIUAGuTYF2YDgDl85Gfjsj3IWYZNRkMdX4nsE+RRhmyACFX6HIOcRtgnSyjVd3EpxZBzvpThKrNeL5EL09XrRKK1aXZRWsBeN0srVRbHKz557VsfkWzN4OXqRU5xouyD19AtmbkdbbWfLJnTNoJsPa4BcCEmXjKurtTZwhA5to1mLVkzXf+m30d2xIJMm84qbn954pd5ZXb669K7y7mfKby1fAmna1jFe3Bi+OKjzhi+Jvh1xn/Nqgm25bRdmZJzMedYPEeltm9ISIzDnXjlIbya70FeD7Kbp/5MdON1sqWsC+fX0dHsU/c2VFGHQJL8bo83z55BAx6U6MFmUzta+PuWITfbL9oeOBEnZws56k7C7eKuKWctnuKrBftMgRnJNXx8rAOUVQzd2vVqs5I3q7k/jPMp36Cy9vb6+2gKMtV0v6l+07yT981Sgm2t6TlTauvCGcHNIYVgZvJf4MJxyi8NuPRi2C5NFc9++M7xRkMLcucqmw2GmtBcDPsPS8QGXQ15J2KQxCl+TMzINN8di5o10i4A3urp4j4u3yAWacM57BmM6Y/HUrJt1BeOVfI9EsVn9Rt7NtZH/xqPQ7H3z6EUCyTLXwb3RsuH2mmd3WNKiSHlG2ieDXwYn+5JpHJLR1UVzVehSd3tTYwZsQ65OKGCARbgn4JAXv60+EEuqTsHLHt52KTeWq0YPh9/csFJchnsQgi+bKt9AU2VgQHWG/iLImuV4wmBORyO9geWSrD4ZVdf0c/xOFRPS8qnqrc8bVLrG8bS34a4E7nCx/aYNLpBC6BDPJvPYc+0IOu1T82UIHfF4OoJT7/l3mFb02/FUWrlN6B8jyS/cTNbeJDoF0X+UZVi5ntfWqCCUru1cXY6voa7/A4+BxtU= +api: eJzNWE1v4zYQ/SvGnFqAG6dBTzrVTXaRdNMkbbLtITACWhrb3KVELT+S9Rr678WQ+rQdR4nttifD0sy8x8fRcDhLsHxmILqHv5X+MpXqycCYgcpRcytUdpFABF8d6sXDU23AIOeap2hRk+sSMp4iRFBZPIgEGIiscgUGGr86oTGBaMqlQQYmnmPKIVoCzxbXUx/GLnIKY6wW2QwYTJVOuYUInBMJFKy2yJyUUIwZWGElPajIDy4SKMhwnZHZhRLXmpOPsJgasniBak+uZjNZI91sDwL2InFLWM+yOKRo/US69SzaBP3PYdW5Iog2ZoIm1iKnL+LA0GctpDaDqeS77UYP7A8eo41qDw96t4qZouUHxvydINqYIoulS/CB63guHnGn8jVRSiLPthK4CHiDUYXXSXD8Zv/l+nlFkF0OT2j2zCLhFt9ZQZ/WVioeuU1GyeQ/InMdkNtkpEjFTlxEZnGGeivupQfpaKAT1G+CxcyldMBzE2OWBBmonpV/CLX3h3PtWRT0SKPJVWbQV/aT42P6aZfJCG5dHKMxUycHf5bGwCBWmcXMeo55LkXs+4zhZ0M+y9YKck1diBUBIVYuOK2o2HA79Ra0til30kJ0XDBompZo2RxE3dChtHY06xoI8xA7Y1X69u/dDE5DhIJROHzk0nGr9C4R39dBQtC5S3m2S8BzH6Ao6oxQk88YW1g/lsuTYi1cwUL57pDgSSJoj7m86cjao3Jv/FbSSfdJe3WbsSAWOnaS6x8+OCl/Myp7d+1s7uyPsLpWClLmSR+v0ONsPVS7vrCm7ssHFSub9P+rqFfqUhj7oqzPVvxV99dpFBoIVhbKXRo+1i1ge2jgGMQaucXkgdu9HkynIexg5MVyeXIIkE8hbAmSoMQDgJyFsCVIJddkQZfIPXU3lVi/Lvz9sNFrryiVWjVKJdheUSq5ahR/WXxjrobLH4P90Qv37xfPj9YXXt0SV01M+yi/H/eJauo2oyjI/ueTk/Wu5C8uReJ7jsF7rZV+e0uSoOVCbmkspIo7b19Tm8fPK3SpAkESMTWzTeOI5vwwhs+wkft5Uy/G4I7ebtK6aTXv/boCdGnXSoBG3qDu88s4C/Jt29jzu7ubtYBhb7ub+gc1xIN26qRo54qGV7nyV4ec2zlEMMw1Pgp8GtaN4bBqpg3qx2qg5bSECObW5iYaDmOpXHLEZ5hZfsTFkOfCJ73B2GlhF95ldHPxERfnyKlDpoRtGdxSBoWc6Jo1s5JcfERiUbb7I2fnSovvvD1ymAcvWr7Ipsq7l0qNPLnB6OYCGNAygi7HRz8dHcOqWh1jSn4e++SvsP1rYCsq1OsHBpj6zAeLPP2leUHMSO+yDy3jrW/OyjFbamDxmx3mkguf2R58We7bPZT7Bu2WnpUXoTGDOe1ydA/L5YQb/KRlUdDj8J62JxGGT2TrqvQFF2sjS2qoiYn/Il/2MK91KQd7r/bpC1SOxvqYdidafTyqCVQfW9vftBz39DHdMKXppUqYp/QzLccefYzrsUQf42ps0CtweddvbMf0Rwsy9rWFVbWAUjs4jeIY8zbC2lFGUeqyeHN9ewdF8Q9NJSOj sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Query Workflows - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - - workflows - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/read-secret.api.mdx b/docs/docs/reference/api/read-secret.api.mdx index c9b0d6e884..211f3d0419 100644 --- a/docs/docs/reference/api/read-secret.api.mdx +++ b/docs/docs/reference/api/read-secret.api.mdx @@ -5,761 +5,67 @@ description: "Read Secret" sidebar_label: "Read Secret" hide_title: true hide_table_of_contents: true -api: eJydVk1v20YQ/SvCnFpgYdpGTjxVjYNUcNMYtpqLIBhj7kjaeMlldodCVYL/vZjlSqJM2UlzEsWdjzfvzcyyBcZ1gHwBX7CxDEsFriaPbFw105CDJ9SPgQpPDApq9FgSkxeXFiosCXLojx+NBgWmghxq5A0o8PStMZ405OwbUhCKDZUIeQu8q6Mje1OtQQEbtvLiIUaazDR03VIChNpVgYL4XF9eyo+mUHhTC0BxaIqCQlg1dnKfjEFB4SqmisUc69qaItaTfQ3i0w5w1F6qZdNneDaVPoeOqqYUimrvtkaTf3ymnWRpArvycf9WuDut41bidQo0csyG1e7zKhKXMrinr1TwCVOLHoWCs2EZK41e36Wzm/ln6NT/C6egdJpsGMZ9Hys5iTo4vRH4nQKjzxZxoGnlfIkMOTSN0UNcVWPtScRZpGVDKIBGMvRd9XqmtyL/Jb5C+bBLfi7UzSBE16kRyXu7P/oyOgXWrKjYFfY8+pHjn3vzFzImJOdynhE2NteBzFEP7qci5ugk5rvr6/EcfUFrdJySyQfvnf/5IdLEaKw8GaYyjA2sK05Of0AbUzGthePlkRP0HndDNl0PUIQow/qtLfOJQsB17JPe5HXTSMZkLqff00Pq6lMnu4EWR3p7dl8v46an782Gm8/vRgF7bU9FvSfUk4f97i6JN05W+jqtct5ADtlW9n62vcr6LR6y9rDOO1AQyG/3677xFnLYMNchz7LCukZf4Joqxgs0GdYGXiKYxtPJezGNwxWoaLzhXYw3vZvd0i7NT75YDg0epL36hjk1O2iFtbmNezjdQtOGN86bf/suSDdRGgvhxlQrF90TjQnb71g8U5wkqbOHfXlxdXH5WjHJYTK9m6UpwYKPeyuZgXpB14EouVDKOCLAhOVvxwNBWbvAJVaDeKcqvlhsiQumfzirLZrY/jFxmxReQFRY6ruKekaVQUF+vLaXCjYusBi37RMG+tvbrpPX3xryItZSwRa9wSehbtGCNkGeNeQrtIFGuA7LA365TzPy6wTUebx7QStRc4u2kX+gQK7Z4ddFHP/9rbFo0/m0KKjmgedoW0lfHbr/44c5dN1/GvQKkw== +api: eJzNV01P40gQ/StRnXYliwDaU07LDmgWATsImLlEUVS4K3EP7Q+6yxGeyP99Vd12Yifggcxh95S4P15XvVddXbUGxqWDyRTuKbbEDmYR5AVZZJ1nlwomYAnV3PlZiKBAiykxWdm0hgxTggmE6blWEIHOYAIFcgIRWHoutSUFE7YlReDihFKEyRq4KvxGtjpbQgSs2chAMGN0qaCuZwLgijxz5GTP6fGx/ChysdWFGCgbyjgm5xalGd01iyGCOM+YMpblWBRGx96f8Xcne9YdOwor3rIOJzzpTL1mHWVlKiQVNl9pRXb+RJWcUjrO03k7Ktz1/bgSvDoChexPw6z6svDEfezcvKAMtfcrISsOYla5GI38VUSFzhYWZdhQkaApEvlY2vwZIki1Y4vG78eME5sXOhYpyRaGXjRXforzJXFCdu6/5ESbl0xWgCjVme65x5gptOq2cb11dEPFPrVUDel+RRXUddTO54/fKeZeBE09xIAN98Sss6U7f/jycyixt2PuAKyHiz6qWAgNYfxH6QV7JGXz+AkicLikFJ88syuyTC9byv9XIn/yPrxf4tKafpD3yRESm5GsNAbqzlFfrRHsFVmnwxU9BOVbs72O2nA7BMWHYgT0whZdHwSV0pJI0Nx2PA+5rR9uQwdcBOTXYvR16nuRHUGaKzLeMs2Uun0hnCmXg0lW5v8rF7vX0Bu6F3E34t+Ozw0KWotVx5ObQEUnLOet84dI3xI+ahnyVEu232FpQ/wudt/QobO86aMrgf5ottqEwJuX1bPWmT2XB6iOQKshaiJY5DZFhgmUpVaD5l/6ZJAQvpoKQl1wmAj/yF55NLvv/GFQ5x2Ioev2d3CjjsDoBcVVbGjouY4tIZOaIx9q2KeAMDqTawRloX4R72tA2MF7rObDgr8H8q9qFLTeov465KAa17TEuLpulWgf4D7qO++Mr7w2cbpXoLUlY6gZBPOP09P9IvMbGq18CTm6sDa3h1eYihi1GcjdJo97s+/gWWdMSwnf2duJ8joPBvqk5gZfhxtyUqJsk9nbSz0ZoweZ/Zke4lc4ulnXfbc39AZ233bjPNA3eJcfHm73AIO2fVHvCNXovm1sUuIkl35n2fQ5nMAExissDY9XJ+PQ4rjxetPr1FLLkV21vZAvfyBhLtxkPI5NXqojXFLGeIR6jIX2d8FRXFrNld9ydnt5RVWTfSbTWXfBvURQiIn+so0cWOgr34c0XdhZyUlu9Y8gdNOJNZEv7utskfvtDVNn3rjR2e0ldEovOD46OTqGXbZ6iyX4MeZtpm+mIdphYeO/lMapj3xgwvTP7YRYVuSOU8w6eH1xdp6Cxn+mFx4XBrWP6qb6DMJNwQsnfp14mUJzG8Fk26rOIkhyx7J4vX5ER1+tqWsZfi7JikCzCFZoNT4KXdM1KO3kv4LJAo2jPbs2OQF+u2tC//cRRK/b24qYiYIrNKV8QVO5djpqf6vbd3baNFJwFsdUcGfnXhKSWNoE9eeLB6jrfwEzb2/I sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Read Secret - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - data - object - - required - - -
    -
    - anyOf - - - - -
    - - - provider - object - - required - - -
    - -
    -
    -
    -
    - - - -
    - - - provider - object - - required - - -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - key - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    - -
    - - - models - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - provider_slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - model_keys - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - header - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/refresh-metrics-preview-evaluations-metrics-refresh-post.api.mdx b/docs/docs/reference/api/refresh-metrics-preview-evaluations-metrics-refresh-post.api.mdx new file mode 100644 index 0000000000..62e5c3cd78 --- /dev/null +++ b/docs/docs/reference/api/refresh-metrics-preview-evaluations-metrics-refresh-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: refresh-metrics-preview-evaluations-metrics-refresh-post +title: "Refresh Metrics" +description: "Refresh Metrics" +sidebar_label: "Refresh Metrics" +hide_title: true +hide_table_of_contents: true +api: eJztWEtz20YM/isanJIZxlI9PfFUNU4mapLaYyu5aDQeiISkTZdLeh9uVQ3/ewa7fEqyYjtyTz1ptATwYT8ABMAtWFwZiGfw7h6lQytyZWAeQV6Q9v8mKcSgaanJrG8zslok5rbQdC/o71tqlZpntWyRGwsRFKgxI0uaUbagMCM26NStSCECoSCGO0d6AxFounNCUwqx1Y4iMMmaMoR4C3ZTsJqxWqgVRLDMdYYWYnDOm7HCSha4dmowSaEsowbKJKRQi/wo3hKl6QGi2lwuvcfHoRmoklBOSijnrTM3FfKuR1ZkZCxmxWn9SdHSG7Z91KlpA951SShL+h7lz3jENlakj6JPapySTzWZIleGDNs7H434JyWTaFFwTjGFLknImKWTg+tKGCJIcmVJWe9FUUiR+BQcfjOss+34WGjOYysCQpK7oLTjcOveWy8RQUpLdNJCPCojqBKbFYWlzOwbXkpfRF1OME0FO4Xyqie6x9oizyWh6rJWhbacl1F9lC++UWKPUvveOxH8xWc6UyNHx4OaLfon3TscxoJE6MRJ1K/eOyn/MLl6c+ls4exrOHTHiufHaKHWuDlOTF8XnsTqZyaTNZ4f4f+A1D/zT8LYH9L60CX31J/G0bRKvEQTWkpv0Z70jfU2mB2MvVuuSF8C5EswW4GkJOkFQC6C2Qqkpmux4dZ0op5Tk/X7xnedlq+TotRsNSg1YSdFqelqUE5nOti7J21E6BmPqNo9I18r9TICY9G6o+UfASmX8aRVkErDyZ0jRzyVaKdUODKh4fFlUEinud2R1rnmowRVQlJSCh0v2sHtJjhxyOWmoTXoHDT8v1GcrFFcYGgUzST18yNS1JkUX2gEjHrj8UvMvVE96z9rit8JQHcgndWGD9bC52poK3fi3+vsXqJTHLP5IcgHjTcTaVmy3q/n5/sD7FeUIvVKg3dcxs+fXlOyKOSRKVTmSe/pU4p2/jBPn/LgoB8tzepQHFtKjcEVtaQ/LOrJGEz56Y/CzPcK0JVc9xXc0BvYffgaF4G+YwH+MJ1e7RkMse0H9TqsuIM2hTKy65w35WbrtWuIYVgtysPOojys9olhtSjzS5/0fb0gOy0hhrW1hYmHw0TmLj3DFSmLZyiGWAhfaoYSp4XdeJXx1eQjbT4QpqR9EncEbjibQn70xZrQYCE+EjNVrYJjZ9e5Fv+GoFf74Dpolf4Ft8y9esXa2Ds3GF9NoNNRYXT2y9kIdpnrCXMhYOILocb2jyHaYaG5PzfDzFcBWMLst/YBe8bcZ6g69vYD1XOn4cDSP3ZYSBQ+yz34torhDKoYMnbnG0m7F0b15xFOzDXHP57BdrtAQ1+0LEs+Dvs0BysVBheys1HveNS8HeDVdVUErwdtF+t7+hdtuh9T2D0W8iW+BxSE+59DHqPR/VzxGPnOt4RWfM5/tGB5n6JRnVLMSdAbJwkVtqO193ZkK02lXV3eTKEsvwPl8Gne +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Refresh Metrics + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/refresh-runs-admin-evaluations-runs-refresh-post.api.mdx b/docs/docs/reference/api/refresh-runs-admin-evaluations-runs-refresh-post.api.mdx new file mode 100644 index 0000000000..a8c9e1b29c --- /dev/null +++ b/docs/docs/reference/api/refresh-runs-admin-evaluations-runs-refresh-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: refresh-runs-admin-evaluations-runs-refresh-post +title: "Refresh Runs" +description: "Refresh Runs" +sidebar_label: "Refresh Runs" +hide_title: true +hide_table_of_contents: true +api: eJylVMtu2zAQ/BVjz6zlBEUPOtVAAsRIixiJ24thBBtpLTElKYWkgrgG/71YUvIzQVH0ZIvcx3BmZ7fgsXKQL+H6FVWHXjbGgYBpqaWBlYCmJRtPZyXkYGltydWPtjPuETnmkfZ56XiIaRvnQUCLFjV5stxlCwY1QQ7eyqoi+yiNJ/uKCgRIAzm8dGQ3IMDSSyctlZCvUTkS4IqaNEK+BTSbu3Ws5Tct1+IaFVkQoPFN6k5D/mUiQEuTPi6C2MWaTikIKwElrbFTHvILAV56xZeLBGo0G0AFzjxBXKInLzX9D2LnrTQVCFg3VqOHHLjqp1j2PbCnAK8GDIFvLbm2MY4c97qcTPinJFdY2bIskMNDVxTk3LpTo/s+GAQUjfFkfETYtkoWUcXs2XHOdo8/hBAEfL68PC/8E5UsY9ro2trG/kNVaC3PlpcJd0kepeJ/0pN25wGqKY5uPyL1gL9hMMIqiOEMrUWWa6D0W5MAQhCgXcWVT0UaQr+Tc1ixQn3Ix6GRjNGCb8O+d/P0TIU/mpVlfFdq3ccd6L2nN7H78TOuEn3vNRtCbhaL+VnBpO2xqPfJwKP7Lq4CTb5u2Pw7Q/sacsii/bMD+2ds/6y3PwhwZF8H23dWQQ61963Ls6xQTVeOsSLjcYwyw1bGOXdUdFb6TUyZzme3tLkhLMlCvlwdBjzwFKW5OA7bSYKtvCVmqLfvtPN1Y+XvJHbv3TplMQXSrJuY3rM1jeBG0/kMBPAzEjeT8cV4AqeMHQWzAbCIBhh6x2sQJyzs3g8CSMfpB0+ov+4vGBnTrtEc1DsR6AjLjgBPbz5rFco42rHzttduCVE7bnu09G2qNyi4ElCz5PkSttsndPTDqhD4OO08FqmUDp/Uwdb7RZv31zt3YlzRoH9JO9ix+7QVf1jJeXEcxCAf40j506Kg1h9knW0grrIb6PndwwJC+AMBkmey +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Refresh Runs + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/remove-app.api.mdx b/docs/docs/reference/api/remove-app.api.mdx index 3668164323..ee02ea8f79 100644 --- a/docs/docs/reference/api/remove-app.api.mdx +++ b/docs/docs/reference/api/remove-app.api.mdx @@ -5,292 +5,70 @@ description: "Remove app, all its variant." sidebar_label: "Remove App" hide_title: true hide_table_of_contents: true -api: eJytVE1v2zAM/SsCTxugJlmxk0/z1gIN2mFF1+2SBgVrM7FaW1Ylulhm+L8PlJ2vZikwYKc44iP1+PTIFhiXAZIZpM4FmGvIKWTeODa1hQRuqKpfSKFzWmFZKsNBvaA3aHl0Z+9s6pdNRZZDcmeVUgJUJycqdU5xrXzMBg21I49ScppDAv3xPToHGhx6rIjJC4sWLFYECaBz9yYHDUZYOOQCNHh6boynHBL2DWkIWUEVQtICr5xkBfbGLkEDGy7lQHhMc+i6uWQHV9tAQRJOJxP52W/2e5NlFMKiKdXNAAYNWW2ZLAscnStNFhsZPwbJabckuq7rNHw8PT0s/BNLk8c0de597f+hKjgv4rHpeefEaEr5MkxVOASUdbYXRbv6tojK7mvU6c2JsUxL8tDNO70+Q+9xtSPkVd0ThE5DFZZvaf6VQsAlwabYcWgUQ91KtNveXT88UsZ77z2LffVXD7j5tsxW3l7d422c9fL97bI15OL29vqgYP+2FXFRi4FzKokpmpcLSGCMzoVx25u2Aw2B/Mva0Y0vIYGC2YVkPM7KuslHuCTLOEIzRmfg9dClMaq+CBTEuoGyxhtexXrp9fSSVheEOXlIZvNdwHexTW+EfdjmDdCZSxJJhkFLGy5qb373rzvMW9FnSc/GLuqYvp6onttnzJ7IyoBKnz3tyejDaHKsmSFBpdfTwf2YRfeveUQY6FdybYQCDVRF6wMTVp+2AWHp6sAV2p16w+JK447ZY9RuZ+9/rbdBW6ZfPHYlmjgmsZF2sMhMpjyAhmTYbHMNRR1YIm37gIF++LLr5Pi5IS8vPdcQqTyI7rMWchPkO4dkgWWgN7p6dzMMznt1jNzaDVas8IJlI/9AwxOttts3LoRibbR2CKZZRo530g72lzhyMytn51fnt+fQdX8AGEYsLg== +api: eJytVE1v2zAM/SsCTxugJlmxk08z0AAt2mFFm+2SBgVrM7E6W1IlOlhm6L8Pkp2vZi0wYKc4/NLj4yM7YFx5yOaQW+thIaEkXzhlWRkNGdxRY9Yk0FopsK6FYi/W6BRqHj3oB527VduQZp89aCFEDBRnZyK3VrARLmWDBGPJYSx5VUIGvfkRrQUJFh02xOQiig40NgQZoLWPqgQJKqKwyBVIcPTSKkclZOxakuCLihqErAPe2Jjl2Sm9AgmsuI6GiOOqhBAWMdtboz35mHA+mcSf42bv26Ig75dtLe6GYJBQGM2kOYajtbUqUiPjZx9zuj2IEEKQ8Pn8/LTwD6xVmdLE1Dnj/qEqWBfJY9XjLolR1fFLMTX+NKA2xZEX9ebbMjF7zFGQO4vSTCtyEBZBbm3oHG4OiLwxPUAIEhq/eo/zr+Q9rgh2xd4OTWSIWfSG/dvm6ZkKPpr3PPXVPz3ELfZl9vT27L7dxkVP398e24Zczma3JwX72TbElYkCLqkmpiReriCDMVrrx10v2gASPLn1VtGtqyGDitn6bDwuatOWI1yRZhyhGqNVENXpqWid4k1KyW+vrmlzSViSg2y+OAy4j8roZ30ctqMZrbqm2PWwS3nLlXHqdz/AYaWqPiu2pfTSpPTt0iRwIr+9AgmxjV7Ek9Gn0QReH4ij4ChqLJKot28nN8hXLOz6BwnUJEUDEzZf9o6IzBrPDeqDesM9ytPpOELS7Vfqf12tgU+mXzy2Naqk/tRIN0x+HpfXg4RsOFgLCZXxHD1d94Sevrs6hGh+acnF6S4kJChPket5B6Xy8buEbIm1p3e6+nA37MNH8Ra4rQJ0HP8a6zb+Awk/abM/qmnPq624usGZFwVZPkg7OUtRhbsVuJjeTGdTCOEPDUkdnw== sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Remove app, all its variant. Arguments: -app -- App to remove + app -- App to remove +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/remove-trace.api.mdx b/docs/docs/reference/api/remove-trace.api.mdx deleted file mode 100644 index 09926b99b6..0000000000 --- a/docs/docs/reference/api/remove-trace.api.mdx +++ /dev/null @@ -1,324 +0,0 @@ ---- -id: remove-trace -title: "Remove Trace" -description: "Remove Trace" -sidebar_label: "Remove Trace" -hide_title: true -hide_table_of_contents: true -api: eJydVU1v2zAM/SsGTxsgJF2xk0/L2gAN2qFFm/USBIUqM7FaWVYlOVtm+L8PlGXH+eiG7WRbfCSfHj9cg+drB+kC5pYLqdewZFAatNzLUs8ySMFiUW7wyVsuEBgYbnmBHi151aB5gZBCsD7JDBhIDSkY7nNgYPGtkhYzSL2tkIETORYc0hq43t6uQgS/NRTBeUvpG9afSO1xjRaaJQMvvaIzYonJLIOGTi06U2qHjiKen53TI0MnrDREH1J4qIRA51aVSu4jGBiIUnvUPvAwRkkRbjt+ceRTD1gaS1p42WbYoHWyheyT3vF7jJCGklRtioPr7MAXAdEwUFK/upOqcGv5diiKrpTaU+Qm+DYN6xDl8wsKvyf+oqfe0RoEuJ2jCkF6gZqGwn0+P6HnI1cyC2olU2tL+/9iZui5VPQmPRbuGKBKsWf9p47ZydEqONCrbAmS7oVb/6mY39A5vkbog70PDWIkc7L+rRR0rzZ1xA1qsZO3Vff9a1y28p1K1kGu5vO7o4BtbfeLeh8mPJnHCS/Q5yVNfoYKfTvzPocUxsbiRuKPsW93RXiiG9fd9DfAwKHddMuhsgpSyL03Lh2PhSqrbMTXqD0fcTnmRsIhlUmwJhcEDW3uUFRW+m2IN7mbXeP2CnmGFtLFcgh4oD5rO2cftpslI6+RNIw7a1L5vLTyV9sOcXHlrReJJPWqDO5Rz8jtKxevqGnT9fsAzkafRmfvXSY6JJO7WRwXLsK4dDwCDNiBXL1QwACLMCvgkRdfdgZiaUrnC64H8Q7KucepF8PjTz82isswCCFzHeu8gFhn6qX4V2jf0AGjVR53/ZJBXjpPHnX9zB1+t6pp6PitQkslWzLYcCv5Mwm4qCGTjt4zSFdcOTwi1+8S+HAfR+ZjAuw06a6smmq64aqiL2DwitvhHyksg7zrmTqaJ0Kg8QPHo91FzdWPwuX0ZjqfQtP8BqNPclE= -sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Remove Trace - - - -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
    - - links - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - - -
    - - attributes - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/remove-user-from-workspace.api.mdx b/docs/docs/reference/api/remove-user-from-workspace.api.mdx index 80fad58a99..fb62afac86 100644 --- a/docs/docs/reference/api/remove-user-from-workspace.api.mdx +++ b/docs/docs/reference/api/remove-user-from-workspace.api.mdx @@ -5,321 +5,71 @@ description: "Remove a user from a workspace." sidebar_label: "Remove User From Workspace" hide_title: true hide_table_of_contents: true -api: eJzNVE1P20AQ/SurOYFkJSnqyaemJRURVEUQygEiNNiTeMH2mt1x2tTa/16Nv+JAQWrVQ0+W1m/ezLyZNxUwrh2EN3Bt7KMrMCJYBhCTi6wuWJscQrigzGxIoSodWbWyJlOovnf40W1+m0/t2oW3uVJKUYY6VQeO7WGoFgm1DxjHlpxTZqU4oYaKjbonZWv6uInuae90PCSZH3eRu8QQgCnIopQ5jyGEhulOuO+kzLseCwEUaDEjJivtVpBjRhDCMB8EoKXfAjmBACw9ldpSDCHbkgJwUUIZQlgBbwuJdWx1voYAWHMqD72Gah6D90GfpZago38qyW7/in9W03i/lGBXmNyRE/zRZCKf/aldllFEzq3KVF20YAggMjlTzgLHokh1VKs3fnASU+1q8N77AN4fHb0k/oapjuswNbPW2D9ghcLKxFg3dcfE0lBYgWbK3EtAaqK9v5hvv67q8e1LJFK3LzpnWpMFv/RB94bW4nag45lpCgQfQObWb0n+hZzDNUFP9sZ0RAy1kL9+l9vcP1DEe+O+qftqUre45Y5mJ2+j7uttHDfy/S5ZBzlZLM5fEDazzYgTI66JKSVuHMIJhDDuPeHG1dAffizOchCAI7vpjFTaFEJImAsXjsdRasp4hGvKGUeox1hoeH5PpvVf9UmgIMvsKCqt5m3NNz2fn9L2hDAmC+HNcgi4lEVqVmMf1k8FC31KIlLrvGnJibH6ZzPv1oFJEyUq6Hxl6vBWsLa2jxg9Ui4XQfpsyp6M3o0mrzXTBqjp+bz1A0a1H7o6ahgEz+TqhYKgPRIhMGH2YfdDqiyM4wzzAV97k6/kjH6Wi3w9OHV7FVY7d/7Pl7ydH9MPHhcp6tqctVhVu5g3u2MtOxg+O93Nbi4DSIxjQVfVPTq6sqn38tycXdmwWDu8T8WJK0wdvaHXwUVr2kP1WomPtB0c+A2mpWDqtd6g1ZLo3yftlj3fDnN2xewJU9/BpHNT1UKmUUQFD4JfnG1poD8Rx7Oz2WIG3v8CS2nLSw== +api: eJzNVE1v00AQ/SurOYG0SkrFySciNagRRVQlwKGNook9ibfYXrM7DgRr/zsaf8VpaSUQB06W1m/ezLyZNzUw7jxEt/DFuq++xJhgpSEhHztTsrEFRHBDud2TQlV5cmrrbK5Qfe/xk7virpi5nY/uCqWUohxNpl54di8jtUype8AkceS9slvFKbVUbNWGlGvokzZ6oF2bZEyyuOgjj4lBgy3JoZS5SCCClmkt3Gspcz1gQUOJDnNictJuDQXmBBGM84EGI/2WyClocPStMo4SiNhVpMHHKeUIUQ18KCXWszPFDjSw4UweBg3VIoEQ9JClkaCn/1aRO/wV/7yhCWElwb60hScv+POzM/mcTu1jFcfk/bbK1E0HBg2xLZgKFjiWZWbiRr3pvZeY+lhDCCFoeH1+/pj4M2YmacLU3Dnr/oAVSicTY9PWnRBLQ1ENhin3jwGZjU/+YnH4sG3GdyqRSN29mIJpRw7CKuj+DZ3Dw0jHK9sWCEFD7nfPSf6evMcdwUD2zHREDLWUv+GY227uKeaTcd82fbWpO9zqSHOUt1X36TYuWvl+l6yHXC6X148I29nmxKkV1ySUEbcO4RQimA6e8NN67I8wFWd50ODJ7XsjVS6DCFLm0kfTaZzZKpngjgrGCZoplgZkXz3FlTN8aEJm14t3dLgkTMhBdLsaAz7KrrTTP4UNwmNp3pHo0JlrVnFqnfnZjrQzWdpGSaOm2NomvNNk1hSnZtcL0CBttGt9Nnk1OYOHt+8ELGuOcbPmfe7mN+gHKgz9g+68HwET5m+OP6Sy0nrOsRjxdaf2k1zHt3Jov4wu2Ell9dF0//OB7mbG9IOnZYam8VwjVt3t2+3xBstqRQ8ucrtyKw2p9Szout6gp08uC0Ge22sqW5UYj5tMDLbFzNMzer246bz4Uj1V4lc6jO72HrNKMM0q79EZSfTvk/YLXhzGOftiToRpzlvaO6juILM4ppJHwY+usTQwOP9ifjVfziGEX3c8vLw= sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Remove a user from a workspace. Args: -email (str): The email address of the user to be removed -workspace_id (str): The ID of the workspace. + email (str): The email address of the user to be removed + workspace_id (str): The ID of the workspace. +> + + + + + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
+ + - -

- Query Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/resend-invitation.api.mdx b/docs/docs/reference/api/resend-invitation.api.mdx index cc807e625a..7d07068c69 100644 --- a/docs/docs/reference/api/resend-invitation.api.mdx +++ b/docs/docs/reference/api/resend-invitation.api.mdx @@ -5,337 +5,75 @@ description: "Resend an invitation to a user to an Organization." sidebar_label: "Resend User Invitation To Organization" hide_title: true hide_table_of_contents: true -api: eJztVlFv40QQ/iureQLJ1KE6XswLvaPSlQNSpTkQSqNoYk/tvdq7vt1122D5v6PZtWMnbQNIwBN5itcz3+x8M9+MW3CYW0hWMDc5Kvk7OqkVrCPIyKZG1v4xgQVZUplAJaR6kM5bCacFisaS8f+UmEKc3apbtUBpySa3Sggh3i+X15dPKXnIRGwmATbfCuvQNXaT6owS8c1s9qLP1RhbaSfudKMyoY0o0Ap6qqWh7AjpzStIv+lGYGkIs53YUqlVzjm4QlqhJ1m8hHarFuQao4a8friZ/7wgW2tlKRGeKHfEEnN0BHU+m0EEuibjra4ySMB4kjejL0RQo8GKHBkuUgsKK4IEtMk3MoMIJBenRldABIY+N0wBJM40FIFNC6oQkhbcrmYv64xUOUTgpCv5YG5ycZVB10V75Edt7m2NKf0T+L8OYCHKOmCQdW91tmPHY8hUK0fK8Sus61Kmnob4k+UmbCcRa8PUOUmWn6hCWZ66yKU36LposNDbT5S6g6RWPcx6dAtd77uOFuHm0HUMY/qC+/Bcy6Q9UsxNk6Zk7V1TiqE74K8nGKK8OT9/DvwLljILrXVpjDZ/A/WItoxcz5t0VNnnBqVOD96i2s3vfB8eEs39059I5SgnA916JBuNwd2kGj/qcEHoIqhsfqpwP5G1mBPswU7UmMkQS377Z4XmvELo3m5S85HewO7raXwf6Hsp2GDCU+cZYKhtRa7QrPpaW+eF7gpIIJ6OHxu3QeldvNeljdupRrvYjwuKw/CACCyZh2FcNKaEBArnapvEcVrqJjvDnJTDM5Qx1hKOB/2FfyvesSmwYi2ljZFu5/Eurq8+0O49YUYGktV6anDDXRb65tBsXzKs5QdiBvtZc9G4Qpth5/TDpgheTBH372IcGJdPWNUlTQQ/9h9Idad9qJ75Po+3mN4HWpiTkOLs7Ouz2WuJ9w7i4vqqFxamXljDnb0ZREfU7kmFaH85R1h9N77gjLjWFaoJXr9YP/IWnay3pT7Ypse3bUfJ/7+a/53V3PesoycX1yVKP6180dteqys40CpEkOz38ihXPn62VFmxfiZ5za4jKHgIJCto2y1a+mjKruPjzw0ZVt46ggc0Erfc26sWMmn5fwbJHZaWTnTHF4t+7n0pXktqUKdiaT5g2fATRHBPu/FTg0f8fxj1gDG/S4ph6LS9ybsQ7Ss/8UeIZwuQbx48LlJuspO268lgvp7fLCGCbf+tUumMfQw+cuXwMVxX16H4/DHDZy2UqPKGd1YCAZN/fwBwe++q +api: eJztVlFv40QQ/iureQLJ1KE6XswLASpdOKBVmgOhNIom9iTeO3vXt7tuGyz/dzS7duwkbQAJeCJPsXf2m5lv5ptxAw53FpIl3JodKvk7OqkVrCLIyKZGVv4xgTlZUplAJaR6lM5bCacFitqS8f+UGENcPagHNUdpySYPSggh3i4WdzfPKXnIRKxHDtZfC+vQ1Xad6owS8dVk8uKd2eBbaSe2ulaZ0EbkaAU9V9JQdoL05hWk33QtsDCE2V5sqNBqxzm4XFqhR1m8hPag5uRqo/q8fri//XlOttLKUiI8Ue6EJeboBOp6MoEIdEXGW80ySMB4ktfDXYigQoMlOTJcpAYUlgQJjGNcywwikFylCl0OERj6VDMXkDhTUwQ2zalESBpw+4qvW2ek2kEETrqCX4wrJ2YZtG108PWkzUdbYUr/hKNfe7DgZRUwyLpvdbbni6eQqVaOlOMjrKpCpj7G+IPltmxGHivDZDpJlp+oRFlcCuTGG7Rt1FvozQdK3VFSyw5mNVwLOvB9SPMQObQtw5iuBbx7rm7SnGjovk5TsnZbF6LvF/jrCQYvb66vz4F/wUJmoXY3xmjzN1BPaMvIdbxJR6U9Nyh0enSKan+79Z15TDT3T/dGKkc7MtCuBrLRGNyPqvGjDgFCG0Fpd5cK9xNZizuCA9iFGjMZYsGnf1Zoziu47uxGNR/oDey+nsb3gb6XnPUmPIfOAENtS3K55jlQaeu89F0OCcRjsdu4OdF+Gx8EauNmLNY29pOE4jBXIAJL5rGfJLUpIIHcucomcZwWus6ucEfK4RXKGCsJrE5LaW2k2/sr07vZO9q/JczIQLJcjQ3uuaNCjxybHcqDlXxHzFY3V6a1y7XpN043WPJwi+ngXp0Pw+HmGcuqoJG4h14Dqbbau+pYnvpExPRuBhFwykEok6svr3jsHsvnyJiFg6kXTh+nP4bohLEDVxAdAnKE5TfDAWfBtSxRjfC6Vfqe9+ZooS300f48jbIZJP3/Mv53lnHXp46eXVwVKP008kVvOi0ujxavhQiS8008yJHPz7YnK9IPH6/JVQQ5qz1ZQtNs0NJ7U7Qtv/5Uk2HZrSJ4RCNxw429bCCTlv9nkGyxsHShTT6bdwPuc/Fadr00FevyEYuanyCCj7R/4SuDh/p/6P6IOr898n70NJ3Jd8HbF37GDxBnK48jDzemKbfdRdvVaBTf3d4vIIJN93VS6ozvGHziEuJTCFdXoR3484XfNVCg2tW8pRIImPz7A8Vm9Bw= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Resend an invitation to a user to an Organization. Raises: -HTTPException: _description_; status_code: 500 -HTTPException: Invitation not found or has expired; status_code: 400 -HTTPException: You already belong to this organization; status_code: 400 + HTTPException: _description_; status_code: 500 + HTTPException: Invitation not found or has expired; status_code: 400 + HTTPException: You already belong to this organization; status_code: 400 Returns: -JSONResponse: Resent invitation to user; status_code: 200 + JSONResponse: Resent invitation to user; status_code: 200 +> + -
- -

- Path Parameters -

-
-
-
    - - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/reset-user-password.api.mdx b/docs/docs/reference/api/reset-user-password.api.mdx index fcf9eaa90c..01ef5973a3 100644 --- a/docs/docs/reference/api/reset-user-password.api.mdx +++ b/docs/docs/reference/api/reset-user-password.api.mdx @@ -5,36 +5,36 @@ description: "Reset User Password" sidebar_label: "Reset User Password" hide_title: true hide_table_of_contents: true -api: eJyVVMFu2zAM/RWDpw3QkqzYyael24AG3dCgTXcJgoK1mVitbKmS3M0z9O8DZceJm3bATjbER+rx8VEtaEMWvdTVIocULDnyd7Uje2fQuV/a5iDAoMWSPFkH6bqFCkuCFCJKclxWkMJTTbYBAZaeamkph9TbmgS4rKASIW3BN4bznLey2oEAL73ig1tHNlnkEMKG053RlSPHGWezGX9ycpmVhllCCjd1lpFz21ol1z0YBGS68lR5hqMxSmaxqemD45z2wCKEEAR8Ojs7LfwTlcxjWvLNWm3/oyoYy0J62fHOyaNU/Cc9le4UoHQ2imLVXG2juGORghhOZOVpRxbCJoj9GVqLzZGS33VHEIKA0u3+JfoPcg53BEOxt6FRjGTF0XC4W98/UOZHA1/Hvrqre9zmUOYgb6fu22187eR77bI95GK1Wp4U7GY7Huo1OzqJFlseHF2SLzQb3mjno8N9ASlMjdVbqWga9+DD0Qo4ss97/9dWQQqF98al02mmdJ1PcEeVxwnKKRoJL0nMYzT5wlBglzvKait9E+vNl4tLai4Ic7KQrjfHgBt2WOeZMWwYFxp5Saxev5bz2hfayj+dEfrlLLoslkdWWx3TeyV7bueYPVLFrXKfHe3Z5ONk9lYzfUIyXy76RcEsLsqeR4SBeCHXIBQIoDJuCXjC8vMhwCx5LiVWR/VeH+SI2qCJp99+ahTKuAmRQNvPeA39jKNzR1PeCCjYDuka2vYeHd1aFQIfd28bzyqXDu8Vm32LytEJgeHBgHfX/V68T0C8TuyRmtE7+oyqZlS0yDNayVdFR4j9BJlDlzbPMjL+KOvkgeIqg9GXVzcrCOEvvJsH3Q== +api: eJyVVEFu2zAQ/IqwpxZgLTfoSacaaIEYaREjcXoxjGAjrS2mlMiQVFpV4N+LpWTZipMCPUkgZ3eHM0N2oA1Z9FLXywIysOTI3zeO7L1B535pW4AAgxYr8mQdZJsOaqwIMogoyfuyhgyeGrItCLD01EhLBWTeNiTA5SVVCFkHvjVc57yV9R4EeOkVL9w5ssmygBC2XO6Mrh05rriYz/lTkMutNMwSMrht8pyc2zUquRnAICDXtafaMxyNUTKPh0ofHdd0RxYhhCDg08XFeeMfqGQRy5Kv1mr7H13BWBbSy553QR6l4j/pqXLnAKXzyS7W7fUuijsVKYhxRdae9mQhbIM4rKG12J4o+U33BCEIqNz+X6J/J+dwTzA2exsaxUjWvBuOs/XDI+V+YvgmnqsfPeC2xzZHeXt13z7Gl16+14YdIJfr9eqsYe/t1NQbTnQSI7Y6JroiX2oOvNHOx4T7EjJIjdU7qSiN9+DDyRVwZJ8P+W+sggxK743L0jRXuilmuKfa4wxlikYCB9lR3ljp21iyWC2vqL0kLMhCttmeAm45RH0sprDRETTyilig4eYtGl9qK//0Xg/3r+yrWAFZ73QsH8RaRHLJYrUEAXyMXpr57ONsDi8Fm4A5/5jH/B9mx20QL1QYzw8CqIrhB09YfT5uMDOWu8L6pN/r/kwojTp4+u1To1DGgEcC3WDdBgbrYiAn5m0FlOxytoGue0BHd1aFwMv9k8X+FNLhg+IM71A5OiMwvgPw7maI+/sExOvEflI7eR6fUTWMirF4Rit5VEyBOLjGHPqyRZ6T8SdVZ+8Odxnzu7q+XUMIfwEUCfk/ sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Reset User Password @@ -43,254 +43,29 @@ Reset User Password as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/retrieve-application-revision.api.mdx b/docs/docs/reference/api/retrieve-application-revision.api.mdx new file mode 100644 index 0000000000..683793d6bc --- /dev/null +++ b/docs/docs/reference/api/retrieve-application-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: retrieve-application-revision +title: "Retrieve Application Revision" +description: "Retrieve Application Revision" +sidebar_label: "Retrieve Application Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWW1v2zYQ/ivGfdoAOU7TNt30aWnSolm7NnDS7oNhBGfpZLOlRJWk0nqG/vvAF9mSYju2awPB1nxwZOruOfO5F5LHGWgcKwgHcJbnnEWomcgUDAMQOUn77TKGECRpyeiObnEhdivpjikmMghA0teClH4p4imEM4hEpinT5rGm0PusRGbGVDShFM1TLo0dzUi1ZG8lJXYom35IIBy0Re9IWtMNET3NCUJQWrJsDGUwH8kKzqEcBqCZ5mbgk1cvA1C8GO8Kc210ywBYvA4hgETIFDWEUBQsXot4GUNZBtVrMfpMkYbF6z4lJCmLaAlIGTQIvEPJMNM/ifxRIqsw/8nk9kyu0asVnL5nuO+rTN9VEyiNviktTFIMoZYF2QGVi0w50k+Oj82/mFQkWa4t/3BdRBEplRS80/fCEOxalCJROCU/EZZpGpOszeTcSgQQU4IF1xAer4igddGzLHX358Ma2Z1PDr1j/BrANyG/JFx8O4DRvz10y2J9poeZYWtmB5iRs7B/ylpMSc0SjPYaCB6yslDoiZB7A3doZQAxatoQ1Yh2NUuX1Y8F9IUBLANISSkcr8VeB/OXVy8DSLjd+azOSKZuo0JpkS41NhKCE2brK6fqnDsEU5DVLd0hL1CvIHxDxFdzEAc6KVJcvuhsCPjGAmxYql9b1paumSlpbP4OjGNmlJBfNWvdw56rqmzDUjpqjtQnuNwWRExGBUf5y+uC8z+VyLofCp0X+ldoT9eAME3phlooJU7XUtvShXsErw9UjVbjXpA+JlLfi3dM6QdpXTXJe+rbcXTjQhEyTHcuCO/RFp7mBmI3qIsaRBlAJAk1xbeo91oIzx1s58ySVeTxIYx8dLDeSEycDmDkwsF6IxVdo+keV7uKrJdTv95VfO3VSsXW3EpF2F6tVHTNrfyXzxt2B4HrVuf9zb6QbFeUj5I5BL47AjcIE8KY5NaV/ucBdNUBtPqhw61WlDfeDYYCexzc1COPaE1+lBudLXxw7Yk3O0rMc5ZtugFqU7zNbqsyZB1vFvGdo99plwHkKDElvUNW/89jZbXy1YJS4yiSdyyiTdg1naOtYtBDl7ZrlLBx4Xrhh7B13jCwZcfsAu0x4Qf7bvvo3Pk2W2l7ds9OTu535T4hZ7Fr0LySUsjdW3IxaWR2yfWx2RbgImq83Sa3aiuGC+fFxN+JCKvtfarG94vO0kaDE1ktasno3Ji3y1hf9D8Hdl7OtJdrtI4qeh27q6dx4ehb5+I3NzdX9wCdb5tOrVq2nXr/rb+4GEpJT4S5QcqFMgZy1BMIoZebnih963EaYzTt1byvelW71Dw5dHDZbmvpYOb2WzDROldhrxdxUcRHOKZM4xGyHubMJpiiqJBMT63K2dXlW5q69R3CwbAuYFccFzhNsbnPMGdvyVDojpq+0cX+cdEQADNUuD2cpdUEcH9xJfbqO6Y5pxVXXPNt2yI03P5r8d3speBpgr89T06fdZ+/ePKi++z56Ul39DSJuifR76dPk9NTTPC03V9tXQId0lT7mmS/tsyGMkuE9UlVhqzHO2dXl1A7DMHx0ZOjY2jHaUPYlB2MbNmpHGpfQ9AKrXlQQQCU2poDmjD9Y/HC/DIT274J5/EeSotWu8GHmabvupdzZFntVOEyZgA+YyAAlzPQoF/ZSuHzxj77zBkGMDGpFw5gNhuhoo+Sl6UZ/lqQNMkx9I3skWF1MJyfRmzefKGpW6NMne7aImXEeeHSolWzTT11GmdRRLleKzusVYerD9c3EMDI3x+nIjY6Es10zWcIYK6k3UzDmRubAcdsXNh2MDhM8/cvWHmQGA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Retrieve Application Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/retrieve-evaluator-revision.api.mdx b/docs/docs/reference/api/retrieve-evaluator-revision.api.mdx new file mode 100644 index 0000000000..0abb16dbae --- /dev/null +++ b/docs/docs/reference/api/retrieve-evaluator-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: retrieve-evaluator-revision +title: "Retrieve Evaluator Revision" +description: "Retrieve Evaluator Revision" +sidebar_label: "Retrieve Evaluator Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWW1v20YM/isGP22AHKdpm276tDRp0axvgZN2HwwjoCXKvlbSqfeS1DP034d7kWXZjmY7NlBszYfEkciH5nMkj8ebgcKxhHAAr+4w1ai4kDAMgBckUDGeX8YQgiAlGN3RLVVCt4LumGQ8hwAEfdMk1UseTyGcQcRzRbkyH7EoUhZZnN4XyXPzTEYTytB8KoSxohhJ898idGKV8+nHBMLBsuAdCWu4IaKmBUEIUgmWj6EM5k9ynaZQDgNQTKXmwWevXgYgUz3eFeba6JYBsLgNIYCEiwwVhKA1i1sRL2Moy6B6zUdfKFJQv+5TQoLyiNaAlMECfXcoGObqJ42Po7EK8J88bs9ji968zPQ9v31fW/quikBptE1JYYJiCJXQZB/IgufSUX5yfGz+xCQjwQpl2YdrHUUkZaLTTt8LQ7BrMYq4dkreDZYrGpNY8OPcSgQQU4I6VRAer42etshZTdn9rd6c5s5nh90x6xnAPRdfk5TfH8DkXx56yWLt5SG8W/LqAN44C/unq8kSCsUSjPZp4MxDVha0mnCxN3CHVgYQo6INUY1oV7FsXc2ooS8MYBlARlLiuBW7Dea9Vy8DSFLb4zyciUzeRloqnq01NuI8Jczbq6XsnDsEU4Rl3Sg9BnEe5h50ojNcv9FsCPjGAmxUnl9bztbukRkpbH4LjGNm6iqmVw1eN1i3qrI2LGWj5pNF99bbgoiJSKcofnmt0/RPyfPuR60KrX6FZWcNCFOUbaiFQuC0ldglXVihtz1MFVqNlRD9kUj9wN8xqf6V1oecXFHfjqMbF4qQY7ZzOfiAtuw0m4bdoC4WIMoAIkGoKL5FtdcyeO5gO2eWLF3EhzDyycF6IzGldAAjFw7WG6noGk33uNdVZL2c+t2u4muvViq25lYqwvZqpaJrbuW/fMKw/QO27c37814LtivKJ8EcQro7QmoQJoQxia0r/c8j50NHzuqLDrfaUd74ZTAU2CPgpivyA+3JP2Sjs8UaXHviTUeJRcHyTRugZYq36bYqQ3bhzSa+c/Q77TKAAgVmpHbI6v95rDysfFVTahaKxB2LaBN2zbRoqxj00KWdFCVsrN3U+xC2zhsGtpqRXaA9JDxqzvb4OZ0fqpV2Qvfs5GR1BvcZUxZb/zqvhOBi9wFcTAqZ3Wx9VC4LpDxqvN0mqxb2ChfItdvveIRVY5/J8Wq5WTtgcCIPi1oyOjfm7TrO62nnwPrlTHu5xsiootex+7AbF46+tgV+c3NztQLo1ra5qNWAth5HdPr15U9GasLNHVHBpYEvUE0ghF5hJqB035sPQmSvmomaTw4SXHLb0jmYufYKJkoVMuz1opTr+AjHlCs8QtbDgtl8khRpwdTUqpxdXb6lqdvOIRwMFwXsBuOipSk2Xygs2FsyvLmTpZ9qsb9dCATAjP+uZbNcmqjt17ddr75jVqS09vZq3qPV0eCarfp/0zjB0wR/e56cPus+f/HkRffZ89OT7uhpEnVPot9Pnyanp5jgKbTd7xzO0PINyH4tmc4xT7hdjWqoaNe6c3Z1CQunHjg+enJ0DMth2RA2VQYjW2WqpbSvIVgKqnk4QQCU2RIDijD7o35hvpkJZj9r83jtWbA0VfDhpei76hUpsnzh8OASZAA+QWCBcWlrgU8S+9mnyTCAiUmvcACz2QglfRJpWZrH3zQJkwlDP6IeGSIHw/lJwybJV5q6/cdU4q4tQ0Y81S4HlqqyqZhO4yyKqFCtssOFCnD18foGAhj5e+CMx0ZHoPHR/A4BzMWyst6FM/dsBinmY20HveAwzc8/W5R5+Q== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Retrieve Evaluator Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/retrieve-query-revision.api.mdx b/docs/docs/reference/api/retrieve-query-revision.api.mdx new file mode 100644 index 0000000000..ff18235350 --- /dev/null +++ b/docs/docs/reference/api/retrieve-query-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: retrieve-query-revision +title: "Retrieve Query Revision" +description: "Retrieve Query Revision" +sidebar_label: "Retrieve Query Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWV9T2zgQ/yqZfbrOGEJpS+/ydLTQKXctcIFyD5kMo9jrRK0sG0kGchl/95uVbMeOHRPS9B5u2gfqyNJvV/t/1wswbKphMIK/UlQcNYw9iBNUzPBYngUwAIVGcbzH27sU1fxW4T3XPJbggcK7FLV5FwdzGCzAj6VBaeiRJYngvsXof9WxpDXtzzBi9JQoomCI2mABBWxoD8r5RQiD0eqme1SWaG2LmScIA9BGcTmFzCtXZCoEZGMPDDeCFm7y45kHWqTTbWGu6GzmAQ+6EDwIYxUxAwNIUx50Ip4FkGVe8TqefEXfwPL1EENUKH1sAcm8XHT3THEmzU8Rbi/Cwqh/yvD5Muw4RzFlPsxlO8zjyNBFDcjoJIUQrjCAgVEp2gWdxFI7cR8eHNB/AWpf8cRYycNV6vuodZiK3jDfDN62wcePU3covwKXBqeoKnd4b3d4EGDIUmFgcNCwmi6Lqbvo7jRmRdu7cbg90p8Hu6dSx3d32fUdHDZThofM3yXzxzlkQSE1s1jtDNyhZR4EzOCGqLR1z/CozY+W0CcEmHkQodZs2ondBfM5P555EAqb5Ks4LAg4eQgTlzV7bVCaxLFAJqukCuLjhut38fPBMmHvZdiWzDSvXThsjXI0qa9U79BOC3yu/FQw9cuHVIg/dCz3LlKTpOYFtN2RG4w2PMWUYvNuwdTPwrOk+pmESSe21/B/INTz+BPX5kmxrrtk4/jzZHSdG55k0dbedM6s19Zz0XZQJxWIzANfITMY3DKz0yjy3sH2jq2w0iT4EUS+ONicSIACfwCREwebEynENdllJiqE9a5IR4W8dkqlkFZJpRDYTqkU4iqp/J+LVpt+WVcB9sBlED8QdscmiQ9Uku7Sas8dZOZBLIJdg184SIpp+Lgp9JMCPSeszAPBI94O2poYVlA+2dN0bxXgE/UWyjSi4QPTPsrArVGEzX+MO2Vg4cmipEF1z8TWHJ8VANR/rKvmmgmwgTO0hVtHP/R3aYutvWjIhUH1hKm64YwrZMueBJgMlhm1KV77Nqa2RsbEkHQrMlZQ1Vw85T4TFwWFzLZVLrNb2nnZs565kKMIKu1UyUlZ69gNmQffcL5tJPkT567bEemm6fzZBU1x06yljmsvdqh/fU5RcmPZz7yaQp/2FK7BA65vSY/VBBZHCVNcx7KivfUoeEfat3+nZA/C2Ce0j/R3Yh5kFf88jVBxfyNwbZgy+oGbmV0Mikdq0RmXdIGIGX+G9CT4N6wSurJoG9Hh0tnzLa+xSqXiRudnjBiYsYYwT7i/GQI+cm10zkX+o4JzSis0NmkDa8azYlNl1kDqtiZSuuA6z/OZxluNUnPD79vdoqWTaxZCTGPvqoSpsBIyoWlAg4/UpVsFbk3llDB6ny1Gg0RH/LzGR3ORy4Lw6yJgoj0FbMLRsRDP4sQZ2ZKT9UrN97RgLWdfozxw1hw6D7w2CpdtZpEhXsB4NTS1nNXVO406R3Ul8veM+E6YbUa3Pv9948V8FpjZweLrw8Pm6PCGCR7YwWDvVCnralvODQM0jItaTqxvELG/JmM+naQ6VPspdgzaOYqedqXayvzHbVm/1Qqjd01vnzJUupcjne+rp7RcvE66669x4sTXpdyP19eXDUCn27pSi7lyz40Th8vvUxGaWUyfsJJYE3TCzAwG0E9ocIsP/Tv3yatfzHHpyWGBBxoVNU5WZakSMICZMYke9Pu+iNNgn01RGrbPeJ8l3Pq8Rj9V3MztkePLsz9x/hGZrYFH4+qGKzIqZyb1baWGWMKpyilGFvm0kf/jdE8lL/HjTpFEyFyHy69xp48sSgQ2vq6VneDSBFxLt/xN7Rm8Ctmvb8Kj13tv3r58u/f6zdHh3uRV6O8d+r8dvQqPjljIjmDd96cfQ2T1C81uqdguIoytBoqMYPXbO748g0oLDQf7L/cPYNUGa5ttnePbkFKoz74Gb8WQShOikiKy8QQMsuj35QvijKw3YrKCt97kV8ZTuTkZfDT9RDBu44ZlYpF7wwhybwAnaW6rstIj7HPuE2MPZuRIgxEsFhOm8YsSWUbLVkVk5fk3iAlJcERhbFY4wMJV/JSbKN7u2WBTFvHN2Etx0Z049n1MTOfeccXXLy+urqmAzT9KR3FAZxSjC9LfAUCtoLJrCxBMTlM7bQeHSf/+BRfslUw= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Retrieve Query Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/retrieve-testset-revision.api.mdx b/docs/docs/reference/api/retrieve-testset-revision.api.mdx new file mode 100644 index 0000000000..e01acddbdd --- /dev/null +++ b/docs/docs/reference/api/retrieve-testset-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: retrieve-testset-revision +title: "Retrieve Testset Revision" +description: "Retrieve Testset Revision" +sidebar_label: "Retrieve Testset Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWdtu4zYQ/RVjnlpAjrO5baunZje7SLqXBI43L4YRjKWRza1uS1Lpuob+vRiS8lV2HMcGisJ5SBSKc0Y8HB4Oh2PQOFDgd6FDSivSCnoeZDlJ1CJLb0LwQZKWgp7oUdsuj5KehBJZCh5I+lGQ0u+ycAT+GIIs1ZRqfsQ8j0VgUFrfVZZymwqGlCA/5ZJ9aEGK/5sCR8Y0Hd1G4HcXuz2RNG7nuuhRTuCD0lKkAyi9SUtaxDGUPQ+00DE3PDjz0gMVF4NtYe7ZtvRAhOsQPIgymaAGH4pChGsRb0IoS696nfW/U6Bh+rpNEUlKA6oBYTNH3hNKgemBxFeRWIX2gcWXs7jGzolL27HbdorStuoBJduylAhJIfhaFmQaVJ6lyhJ+cnzMf0JSgRS5NtzDfREEpFRUxI226wzetiIUZIU1coMQqaYByZlRvDc9PAgpwiLW4B/XRM66qFlcqrubN0dw48EiN3gePdi9n3n8ajy7H4fFR6lFhMEuHVw6yMpDoYeZ3Bm4RSs9CFHThqjctalFUremptBXDFh6kJBSOFiLvQ7mizMvPYhis/OvjtYhKrPlB+jW4JLDfpbFhOlaj9eoGp0JSulZWInBazEtxAaq89EMtFb2E9I4/xUYhoLlAuO7OTI2ILsSjDlPSX++ZXZ49b4gEDIoYpS/fCzi+E+Vpc3bQueF/hUWh8ogQlOyoRVKiaO1xC7YwhK562NLo7FYiqv/Eqlfs89C6WdpXTXIJfOXcdSxoQgpJluv4a9otGJ+L9wO6moGovQgkISawkfUO9Wu9xa2cWnIKvJwH06+WVjnJKSY9uDkysI6JxVd/dEON6iKrHcjt0VVfO3US8XWxEtF2E69VHRNvPyf02az6eNz6R9vg48iXJA/J+LPf8LmUl7tuY2bUFW5Ws1OPvFcn6nuK7PbLfb9BPegYAcF26uC7VozarLwjbOlmlS5Ur/ei7KSKkM+pG4bpG6HM8MezgzLW+eB1K1JvWIynzsYcy6wVUKx0Zm7qvTZT3lNrfC1lUZXFixNjfHs5GS5iviAsQhNjbDxQcpMbl9CDEmjiPlpRVoVZ8Hc25cEc29xsqaD/pzZDzTypAZ1iWRNAch2Wd3VkNHo8Ns6xqf12q4Zl3Xt+s2VDCt6Lburh3Fl6Vs3vdedzt0SoJ3b+UmtSsyNKu9sTy+tEtLDjG+28kwxeI56CD60cq7h0t8tl/yqVlXT5ScLB5y6Sj7GmFkrZAw+DLXOld9qBXFWhEc4oFTjEYoW5sKsIEVBIYUeGZPLu5tPNLomDEmC3+3NdrjnuLKRMt9tMkmYi0/EnNkCgqs4in/s9HsgeOxDa8WkcMS2p3d0H35iksdUc+c2OZlN48Aesab/c+oDpxH+dh5dnDXP37552zw7vzhp9k+joHkS/H5xGl1cYIQXsPpWal9uFu9tduuH8740ygxtVanXzHLj8u4GZo61cHz05ugYFoNxrjNrCwZGW6pJNK/BWwinSSCBB5QYYQFNmPwxfcFfxkGcYDqDty72F4pGLqw0/dStPEZhJMR8xtgtiy64ZQETtpVZ/W5pmGe3OHoeDHlJ+V0Yj/uo6JuMy5KbfxQkOf577lKizyR2WdKG1UoYw180MrcsRnubRni4e1zYyF/QYdZIa3EZBJTrtX17M6v+7va+Ax703Z11koVsI5FHyL99AL4C12Z0/ti2jSHGdFCY0jtYTP75F1m4qb0= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Retrieve Testset Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/retrieve-workflow-revision.api.mdx b/docs/docs/reference/api/retrieve-workflow-revision.api.mdx new file mode 100644 index 0000000000..cedbe84963 --- /dev/null +++ b/docs/docs/reference/api/retrieve-workflow-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: retrieve-workflow-revision +title: "Retrieve Workflow Revision" +description: "Retrieve Workflow Revision" +sidebar_label: "Retrieve Workflow Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWdtu20YQ/RVhnlqAshwncVo+1bGdxk2aGIrjPgiCMSKH0iZLLrMXJ6rAfy/2Qt3FSrIMBG38IFPLmTOaM7Ozu7MT0DhUEPfgLyE/Z1x8VdCPQJQkUTNRXKUQgyQtGd3T3dcgcyfpnikmCohA0hdDSr8U6RjiCSSi0FRo+4hlyVniYDqflCjsmEpGlKN9KqU1ohkp+20OOXO6xfh9BnFvWe6epLO7IKLHJUEMSktWDKGKpiOF4RyqfgSaaW4HboN6FYHiZrgvzAerW0XA0iaECDIhc9QQgzEsbUS8SqGqovq1GHyiRMPsdZcyklQktAakimbs3aNkWOgfLD6IxTq7f9C4O40NenWF6QZ6u6GsdH0Fgcoq23LCJKUQa2nIDahSFMozfnJ8bP+lpBLJSu3Ihw8mSUipzPBWNwhDtG8hSoTxSsELVmgakpxz49xJRJBShoZriI/X5U5T3qxM18OFrua4deuhWzaWERze0CL+1KNH8MRbQKlZhskhXTgLkLUFo0dCHgzco1URpKhpS1Qr2tYsXzezZtAXFrCKICelcNiI3QTzZ1CvIsi42wRszlim7hKjtMjXGhsIwQmL5pqiWucewZYqdUf3yA3qDYRviXg5BfGgI5Pj+nK8JeBrB7BNEXvlKFu7juSkcfFHYJoyW32QXy/QukXY6vqzYCkfLI7Me7feFiRMJoaj/OmV4fwPJYr2e6NLo3+GZV8tCNOUb6mFUuK4kdclXVhhtzlLNTqNlQz9nkh9J94ypf+V1k1OrqjvxtGNT0UoMN+7GrxDV3UWl9b9oC7mIKoIEkmoKb1DfdAqeO5hW2eOLFOmj2Hko4cNRlLi9AhGLjxsMFLTNRgfcKmryXo5DotdzddBrdRsTa3UhB3USk3X1Mp/eRvutg/YtDQfznsj2b4oHyXzCHx/BG4RRoQpyZ0r/Y9z2aZzWf1D+zutKK9DGCwF7qC0bUS+ozX5u9zo7BCDD4F4u6PEsmTFthugZYp32W3Vhlzg7SK+d/Z77SqCEiXmpPeY1f/zXNmsfD2j1AaK5D1LaBt2bU9lpxwM0JXrp2RsaHxb+DFsnS8Y2KWRdIHujPCQXtSDW1mh71S5Jtazk5PVNtUtcpY651qXUgq5f48qJY3MrbQhJZcFuEgW3u4ypeYWCp/FM6/figTrXX2uhqu1Zm1zwYtsFnVktG7s23WUzxqCPeeXNx3kFhpSNb2e3c1uXHj6muL7+ubmegXQx3YxqHUPszVtV3VnVyM56ZGwFyhDsuAl6hHE0Cltj5C+duqmmerUTUP75PHAT2tXNHsTv7GCkdalijudhAuTHuGQCo1HyDpYMjeTFCVGMj12KmfXV29o7BdyiHv9eQG3tPhUWRSbRglL9oYsaf5MGdpZ7G8f/wiYdd5v1hyRNmW7s5ugy2+Yl5zW3exMN2ezTPC7rNl3u2OCpxn+8jw7fdZ+/uLJi/az56cn7cHTLGmfJL+ePs1OTzHDU2i4+3g0O8u3A4c1ZDeMRSZcKOpWogt06+z6CuYOO3B89OToGJYTckHY1hdMXH2p4+heQ7SUUdNcgggod8UFNGH+2+yF/WWlUDp02AJeY/4v9RJCamn6pjslR1bMHRn83OhBmBsw41u5GhDmh3sOM6QfwUgobbUmkwEq+ih5VdnhL4aknQT90PgeWBp7/enxws2PzzT2i46twG1Xfqw4Nz79l6qxrZRe4yxJqNSNsv25qf/75Q1EMAi3o7lIrYpE66H9jAHsbat2zsUTPzYBjsXQuN4ueEj79w/32iiE +sidebar_class_name: "get api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Retrieve Workflow Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/revert-deployment-revision.api.mdx b/docs/docs/reference/api/revert-deployment-revision.api.mdx index 3f46e90baf..67030f54d3 100644 --- a/docs/docs/reference/api/revert-deployment-revision.api.mdx +++ b/docs/docs/reference/api/revert-deployment-revision.api.mdx @@ -5,36 +5,36 @@ description: "Revert Deployment Revision" sidebar_label: "Revert Deployment Revision" hide_title: true hide_table_of_contents: true -api: eJyVVNFu2jAU/ZXoPm2SRVi1pzyNtZOKuqmIdntBqHKTC3Gb2J59g8Yi//t0nRCgQKU9Eezj43PPvcctkFx7yBZwbfRKrT0sBRiLTpIyelpABg436OipQFuZbY2anhxulFdGgwArnayR0DFHC1rWCBmcwT6pAgQoDRlYSSUIcPi7UQ4LyMg1KMDnJdYSshZoa5nFk1N6DQJIUcULNwNtMu9pk2kBISyZzVujPXomuBqP+adAnztluRLI4KHJc/R+1VTJvAeDgNxoQk0Ml9ZWKo+Fpy+ez7R7USGEIODz1dUp8S9ZqSIeS745Z9x/sIJ1bDapTneBJFXFX4qw9qeAyuRHu1Jv71fR+WPPghhWlCZco4OwDGK3Jp2T2wNjv5tOIAQBtV+/14Mf6L1cIwxkl6HRjOSRd8P+bvP8gjkd9X8R6+qu7nHLPc3e3s7dy2XcdPadu2wHuX18nJ0Qdr09buo8Tn1yZuRYKFJpOBvWeIopoBIySPMuQ+l+/tP2fBZC2sUKBHh0m11+GldBBiWR9Vma5pVpipFcoyY5kiqVVsFbnZO4m1wzFDgIHvPGKdpGvslseofbW5QFOsgWy0PAAw9hN1bHsKGj0qo7ZIP7WE8aKo1Tf7tZ6dNcdqfYQaVXJh7vze61fZX5K2qOP9fZyR6PPo3Gl4rpDyST2bTPksxjlnY6IgzEG7sGo0AA1jFIQCjrL/sNVsk9q6U+4Hu310cKB2sI/1BqK6liZqKOth+DBfRjEA/vKEFAdvFZ7GdhKaDkgcoW0LbP0uNPV4XAy78bdNzRpYCNdEo+s7+LFgrl+buAbCUrjydqh3cIPsz7uH1MQJyvYtd1zS3fyKrhfyDgFbeX3/T4rJS7AWt78CTP0dIBzckryJM4xGh2//AIIfwDxTZD1g== +api: eJyVVMGO2jAQ/ZXonVrJInTVU05F3UqLttUilvaC0MqbDMTbxPbaDiqN/O+VnRBggZV6ItgzzzPvzZsWjm8ssiW+KrkWG4sVg9JkuBNKTgtkMLQl454K0pXa1STdk6GtsEJJMGhueE2OTMBoIXlNyHAh9kkUYBASGTR3JRgMvTbCUIHMmYYYbF5SzZG1cDsdUKwzQm7A4ISrwsHtAJvMe9hkWsD7VUCzWklLNgDcjMfhpyCbG6FDJ8jw2OQ5WbtuqmTeB4MhV9KRdCGca12JPDaevtiQ0x6K8t57hs83N+fAv3glipiWfDNGmf9AhTaBbCe6ugtyXFThSziq7XlApfKTWy53D+vI/Clnng0nQjrakIFfebY/48bw3RGx31VXIDxDbTfvafCDrOUbwgB2PTSSkSzCrT+8rZ5fKHcn+i9jX93TfdzqAHOgt2P3ehu3HX2XHtuH3C0WszPATttTUedx6pMLIxcKJVeq4A2trIsucCUypHnnofQw/2l72Qs+7WwFBktmu/dPYypkKJ3TNkvTvFJNMeIbko6PuEi5FgizbilvjHC7mDKZTe9pd0e8IINsuToOeAxz1k3OadggGtfingKHvXMnjSuVEX+7cegNW3ZZgSQh1yqm93xOYnHJZDYFQ2ijY288+jQa4y2nJ8HBIjyPFtm/Ha/B3rAw9A8GqqM/4IjXXw4XobIgRc3lEd67Ep5UNtDh6I9LdcVFtEKso+3VXaJXNybvIcGQXd12vcQrhjLMSbZE2z5zSz9N5X04fm3IBBVXDFtuBH8OnC5bFMKG7wLZmleWzqod1gs+zHsXfUzALnexV1oGmbe8asI/MPym3fVVHbdFuR+qtg+e5DlpdwRzttzC9A3umD08LuD9P7GdNUc= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Revert Deployment Revision @@ -43,254 +43,29 @@ Revert Deployment Revision as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/sidebar.ts b/docs/docs/reference/api/sidebar.ts index 7e7a7c372e..81c2a464b9 100644 --- a/docs/docs/reference/api/sidebar.ts +++ b/docs/docs/reference/api/sidebar.ts @@ -4,7 +4,7 @@ const sidebar: SidebarsConfig = { apisidebar: [ { type: "doc", - id: "reference/api/agenta-backend", + id: "reference/api/agenta-api", }, { type: "category", @@ -128,52 +128,340 @@ const sidebar: SidebarsConfig = { }, { type: "doc", - id: "reference/api/create-evaluation", - label: "Create Evaluation", - className: "api-method post", + id: "reference/api/fetch-evaluation-status", + label: "Fetch Evaluation Status", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/fetch-legacy-evaluation-results", + label: "Fetch Evaluation Results", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/fetch-legacy-evaluation-scenarios", + label: "Fetch Evaluation Scenarios", + className: "api-method get", }, { type: "doc", - id: "reference/api/fetch-list-evaluations-evaluations-get", + id: "reference/api/fetch-legacy-evaluations", label: "Fetch List Evaluations", className: "api-method get", }, { type: "doc", - id: "reference/api/delete-evaluations", + id: "reference/api/delete-legacy-evaluations", label: "Delete Evaluations", className: "api-method delete", }, { type: "doc", - id: "reference/api/fetch-evaluation-status", - label: "Fetch Evaluation Status", + id: "reference/api/fetch-legacy-evaluation", + label: "Fetch Evaluation", className: "api-method get", }, { type: "doc", - id: "reference/api/fetch-evaluation-results", - label: "Fetch Evaluation Results", + id: "reference/api/fetch-legacy-evaluation-scenarios-comparison-results", + label: "Fetch Evaluation Scenarios Comparison Results", className: "api-method get", }, { type: "doc", - id: "reference/api/fetch-evaluation-scenarios", - label: "Fetch Evaluation Scenarios", + id: "reference/api/start-evaluation", + label: "Start Evaluation", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/refresh-runs-admin-evaluations-runs-refresh-post", + label: "Refresh Runs", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-runs-preview-evaluations-runs-post", + label: "Create Runs", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/delete-runs-preview-evaluations-runs-delete", + label: "Delete Runs", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/edit-runs-preview-evaluations-runs-patch", + label: "Edit Runs", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/query-runs-preview-evaluations-runs-query-post", + label: "Query Runs", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/close-runs-preview-evaluations-runs-close-post", + label: "Close Runs", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/open-runs-preview-evaluations-runs-open-post", + label: "Open Runs", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-run-preview-evaluations-runs-run-id-get", + label: "Fetch Run", className: "api-method get", }, { type: "doc", - id: "reference/api/fetch-evaluation", - label: "Fetch Evaluation", + id: "reference/api/edit-run-preview-evaluations-runs-run-id-patch", + label: "Edit Run", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/delete-run-preview-evaluations-runs-run-id-delete", + label: "Delete Run", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/close-run-preview-evaluations-runs-run-id-close-post", + label: "Close Run", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/open-run-preview-evaluations-runs-run-id-open-post", + label: "Open Run", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-scenarios-preview-evaluations-scenarios-post", + label: "Create Scenarios", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/delete-scenarios-preview-evaluations-scenarios-delete", + label: "Delete Scenarios", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/edit-scenarios-preview-evaluations-scenarios-patch", + label: "Edit Scenarios", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/query-scenarios-preview-evaluations-scenarios-query-post", + label: "Query Scenarios", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-scenario-preview-evaluations-scenarios-scenario-id-get", + label: "Fetch Scenario", className: "api-method get", }, { type: "doc", - id: "reference/api/fetch-evaluation-scenarios-evaluations-evaluation-scenarios-comparison-results-get", - label: "Fetch Evaluation Scenarios", + id: "reference/api/edit-scenario-preview-evaluations-scenarios-scenario-id-patch", + label: "Edit Scenario", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/delete-scenario-preview-evaluations-scenarios-scenario-id-delete", + label: "Delete Scenario", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/create-results-preview-evaluations-results-post", + label: "Create Results", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/delete-results-preview-evaluations-results-delete", + label: "Delete Results", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/edit-results-preview-evaluations-results-patch", + label: "Edit Results", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/query-results-preview-evaluations-results-query-post", + label: "Query Results", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-result-preview-evaluations-results-result-id-get", + label: "Fetch Result", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-result-preview-evaluations-results-result-id-patch", + label: "Edit Result", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/delete-result-preview-evaluations-results-result-id-delete", + label: "Delete Result", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/refresh-metrics-preview-evaluations-metrics-refresh-post", + label: "Refresh Metrics", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-metrics-preview-evaluations-metrics-post", + label: "Create Metrics", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/delete-metrics-preview-evaluations-metrics-delete", + label: "Delete Metrics", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/edit-metrics-preview-evaluations-metrics-patch", + label: "Edit Metrics", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/query-metrics-preview-evaluations-metrics-query-post", + label: "Query Metrics", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-queues-preview-evaluations-queues-post", + label: "Create Queues", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/delete-queues-preview-evaluations-queues-delete", + label: "Delete Queues", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/edit-queues-preview-evaluations-queues-patch", + label: "Edit Queues", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/query-queues-preview-evaluations-queues-query-post", + label: "Query Queues", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-queue-preview-evaluations-queues-queue-id-get", + label: "Fetch Queue", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-queue-preview-evaluations-queues-queue-id-patch", + label: "Edit Queue", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/delete-queue-preview-evaluations-queues-queue-id-delete", + label: "Delete Queue", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/fetch-queue-scenarios-preview-evaluations-queues-queue-id-scenarios-get", + label: "Fetch Queue Scenarios", className: "api-method get", }, + { + type: "doc", + id: "reference/api/create-evaluation-preview-simple-evaluations-post", + label: "Create Evaluation", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-evaluation-preview-simple-evaluations-evaluation-id-get", + label: "Fetch Evaluation", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-evaluation-preview-simple-evaluations-evaluation-id-patch", + label: "Edit Evaluation", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/delete-evaluation-preview-simple-evaluations-evaluation-id-delete", + label: "Delete Evaluation", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/query-evaluations-preview-simple-evaluations-query-post", + label: "Query Evaluations", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/start-evaluation-preview-simple-evaluations-evaluation-id-start-post", + label: "Start Evaluation", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/stop-evaluation-preview-simple-evaluations-evaluation-id-stop-post", + label: "Stop Evaluation", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/close-evaluation-preview-simple-evaluations-evaluation-id-close-post", + label: "Close Evaluation", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/open-evaluation-preview-simple-evaluations-evaluation-id-open-post", + label: "Open Evaluation", + className: "api-method post", + }, ], }, { @@ -184,6 +472,180 @@ const sidebar: SidebarsConfig = { id: "reference/api/evaluators", }, items: [ + { + type: "doc", + id: "reference/api/create-evaluator", + label: "Create Evaluator", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-evaluator", + label: "Fetch Evaluator", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-evaluator", + label: "Edit Evaluator", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/archive-evaluator", + label: "Archive Evaluator", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/unarchive-evaluator", + label: "Unarchive Evaluator", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/query-evaluators", + label: "Query Evaluators", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-evaluator-variant", + label: "Create Evaluator Variant", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-evaluator-variant", + label: "Fetch Evaluator Variant", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-evaluator-variant", + label: "Edit Evaluator Variant", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/archive-evaluator-variant", + label: "Archive Evaluator Variant", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/unarchive-evaluator-variant", + label: "Unarchive Evaluator Variant", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/query-evaluator-variants", + label: "Query Evaluator Variants", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fork-evaluator-variant", + label: "Fork Evaluator Variant", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/retrieve-evaluator-revision", + label: "Retrieve Evaluator Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-evaluator-revision", + label: "Create Evaluator Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-evaluator-revision", + label: "Fetch Evaluator Revision", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-evaluator-revision", + label: "Edit Evaluator Revision", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/archive-evaluator-revision", + label: "Archive Evaluator Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/unarchive-evaluator-revision", + label: "Unarchive Evaluator Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/query-evaluator-revisions", + label: "Query Evaluator Revisions", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/commit-evaluator-revision", + label: "Commit Evaluator Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/log-evaluator-revisions", + label: "Log Evaluator Revisions", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-simple-evaluator", + label: "Create Simple Evaluator", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-simple-evaluator", + label: "Fetch Simple Evaluator", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-simple-evaluator", + label: "Edit Simple Evaluator", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/archive-simple-evaluator", + label: "Archive Simple Evaluator", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/unarchive-simple-evaluator", + label: "Unarchive Simple Evaluator", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/query-simple-evaluators", + label: "Query Simple Evaluators", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/transfer-simple-evaluator", + label: "Transfer Simple Evaluator", + className: "api-method post", + }, { type: "doc", id: "reference/api/get-evaluators-endpoint-evaluators-get", @@ -266,6 +728,12 @@ const sidebar: SidebarsConfig = { label: "List Apps", className: "api-method get", }, + { + type: "doc", + id: "reference/api/create-app", + label: "Read App", + className: "api-method get", + }, { type: "doc", id: "reference/api/update-app", @@ -384,110 +852,230 @@ const sidebar: SidebarsConfig = { items: [ { type: "doc", - id: "reference/api/upload-file", - label: "Upload File", + id: "reference/api/create-testset", + label: "Create Testset", className: "api-method post", }, { type: "doc", - id: "reference/api/import-testset", - label: "Import Testset", + id: "reference/api/fetch-testset", + label: "Fetch Testset", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-testset", + label: "Edit Testset", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/archive-testset", + label: "Archive Testset", className: "api-method post", }, { type: "doc", - id: "reference/api/get-testsets", - label: "Get Testsets", + id: "reference/api/unarchive-testset", + label: "Unarchive Testset", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/query-testsets", + label: "Query Testsets", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-testset-variant", + label: "Create Testset Variant", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-testset-variant", + label: "Fetch Testset Variant", className: "api-method get", }, { type: "doc", - id: "reference/api/create-testset", - label: "Create Testset", + id: "reference/api/edit-testset-variant", + label: "Edit Testset Variant", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/archive-testset-variant", + label: "Archive Testset Variant", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/unarchive-testset-variant", + label: "Unarchive Testset Variant", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/query-testset-variants", + label: "Query Testset Variants", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/retrieve-testset-revision", + label: "Retrieve Testset Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-testset-revision", + label: "Create Testset Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-testset-revision", + label: "Fetch Testset Revision", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-testset-revision", + label: "Edit Testset Revision", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/archive-testset-revision", + label: "Archive Testset Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/unarchive-testset-revision", + label: "Unarchive Testset Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/query-testset-revisions", + label: "Query Testset Revisions", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/commit-testset-revision", + label: "Commit Testset Revision", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/log-testset-revisions", + label: "Log Testset Revisions", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-simple-testset", + label: "Create Simple Testset", className: "api-method post", }, { type: "doc", - id: "reference/api/delete-testsets", - label: "Delete Testsets", - className: "api-method delete", + id: "reference/api/fetch-simple-testset", + label: "Fetch Simple Testset", + className: "api-method get", }, { type: "doc", - id: "reference/api/update-testset", - label: "Update Testset", + id: "reference/api/edit-simple-testset", + label: "Edit Simple Testset", className: "api-method put", }, { type: "doc", - id: "reference/api/get-single-testset", - label: "Get Single Testset", - className: "api-method get", + id: "reference/api/archive-simple-testset", + label: "Archive Simple Testset", + className: "api-method post", }, { type: "doc", - id: "reference/api/list-testsets", - label: "Query Testsets", - className: "api-method get", + id: "reference/api/unarchive-simple-testset", + label: "Unarchive Simple Testset", + className: "api-method post", }, { type: "doc", - id: "reference/api/create-testset", - label: "Create Testset", + id: "reference/api/query-simple-testsets", + label: "Query Simple Testsets", className: "api-method post", }, { type: "doc", - id: "reference/api/fetch-testset", - label: "Fetch Testset", - className: "api-method get", + id: "reference/api/create-simple-testset-from-file", + label: "Create Simple Testset From File", + className: "api-method post", }, { type: "doc", - id: "reference/api/edit-testset", - label: "Edit Testset", - className: "api-method put", + id: "reference/api/edit-simple-testset-from-file", + label: "Edit Simple Testset From File", + className: "api-method post", }, { type: "doc", - id: "reference/api/archive-testset", - label: "Archive Testset", + id: "reference/api/fetch-simple-testset-to-file", + label: "Fetch Simple Testset To File", className: "api-method post", }, { type: "doc", - id: "reference/api/unarchive-testset", - label: "Unarchive Testset", + id: "reference/api/transfer-simple-testset", + label: "Transfer Simple Testset", className: "api-method post", }, { type: "doc", - id: "reference/api/query-testsets", - label: "Query Testsets", + id: "reference/api/upload-file", + label: "Upload File", className: "api-method post", }, { type: "doc", - id: "reference/api/create-testset-from-file", - label: "Create Testset From File", + id: "reference/api/import-testset", + label: "Import Testset", className: "api-method post", }, { type: "doc", - id: "reference/api/update-testset-from-file", - label: "Update Testset From File", - className: "api-method post", + id: "reference/api/get-testsets", + label: "Get Testsets", + className: "api-method get", }, { type: "doc", - id: "reference/api/fetch-testset-to-file", - label: "Fetch Testset To File", + id: "reference/api/create-testset", + label: "Create Testset", className: "api-method post", }, { type: "doc", - id: "reference/api/fetch-testcase", - label: "Fetch Testcase", + id: "reference/api/delete-testsets", + label: "Delete Testsets", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/update-testset", + label: "Update Testset", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/get-single-testset", + label: "Get Single Testset", className: "api-method get", }, ], @@ -553,8 +1141,7 @@ const sidebar: SidebarsConfig = { { type: "doc", id: "reference/api/query-traces", - label: - "Query traces, with optional grouping, windowing, filtering, and pagination.", + label: "Query traces, with optional grouping, windowing, filtering, and pagination.", className: "api-method get", }, { @@ -566,8 +1153,7 @@ const sidebar: SidebarsConfig = { { type: "doc", id: "reference/api/query-analytics", - label: - "Query analytics, with optional grouping, windowing, filtering.", + label: "Query analytics, with optional grouping, windowing, filtering.", className: "api-method get", }, { @@ -624,20 +1210,92 @@ const sidebar: SidebarsConfig = { }, { type: "category", - label: "Admin", + label: "Billing", items: [ { type: "doc", - id: "reference/api/create-accounts", - label: "Create Accounts", + id: "reference/api/handle-events", + label: "Handle Events", className: "api-method post", }, { type: "doc", - id: "reference/api/create-account", - label: "Create Account", + id: "reference/api/create-portal", + label: "Create Portal User Route", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-checkout", + label: "Create Checkout User Route", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-plans", + label: "Fetch Plan User Route", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/switch-plans", + label: "Switch Plans User Route", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-subscription", + label: "Fetch Subscription User Route", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/cancel-plan", + label: "Cancel Subscription User Route", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-usage", + label: "Fetch Usage User Route", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/admin-create-portal", + label: "Create Portal Admin Route", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/admin-create-checkout", + label: "Create Checkout Admin Route", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/admin-switch-plans", + label: "Switch Plans Admin Route", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/admin-cancel-subscription", + label: "Cancel Subscription Admin Route", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/admin-report-usage", + label: "Report Usage", className: "api-method post", }, + ], + }, + { + type: "category", + label: "Admin", + items: [ { type: "doc", id: "reference/api/admin-create-portal", @@ -668,6 +1326,24 @@ const sidebar: SidebarsConfig = { label: "Report Usage", className: "api-method post", }, + { + type: "doc", + id: "reference/api/refresh-runs-admin-evaluations-runs-refresh-post", + label: "Refresh Runs", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-accounts", + label: "Create Accounts", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/create-account", + label: "Create Account", + className: "api-method post", + }, ], }, { @@ -708,283 +1384,385 @@ const sidebar: SidebarsConfig = { }, { type: "category", - label: "Billing", + label: "Secrets", items: [ { type: "doc", - id: "reference/api/handle-events", - label: "Handle Events", + id: "reference/api/list-secrets", + label: "List Secrets", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/create-secret", + label: "Create Secret", className: "api-method post", }, { type: "doc", - id: "reference/api/create-portal", - label: "Create Portal User Route", + id: "reference/api/read-secret", + label: "Read Secret", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/update-secret", + label: "Update Secret", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/delete-secret", + label: "Delete Secret", + className: "api-method delete", + }, + ], + }, + { + type: "category", + label: "Tracing", + items: [ + { + type: "doc", + id: "reference/api/create-trace", + label: "Create Trace", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-trace", + label: "Fetch Trace", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-trace", + label: "Edit Trace", + className: "api-method put", + }, + { + type: "doc", + id: "reference/api/delete-trace", + label: "Delete Trace", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/ingest-spans", + label: "Ingest Spans", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/ingest-spans-rpc", + label: "Ingest Spans", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/query-spans-rpc", + label: "Query Spans", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-analytics", + label: "Fetch Legacy Analytics", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/fetch-new-analytics", + label: "Fetch Analytics", + className: "api-method post", + }, + ], + }, + { + type: "category", + label: "Invocations", + items: [ + { + type: "doc", + id: "reference/api/create-invocation", + label: "Create Invocation", className: "api-method post", }, { type: "doc", - id: "reference/api/create-checkout", - label: "Create Checkout User Route", - className: "api-method post", + id: "reference/api/fetch-invocation-by-trace-id", + label: "Fetch Invocation", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-invocation-by-trace-id", + label: "Edit Invocation", + className: "api-method patch", + }, + { + type: "doc", + id: "reference/api/delete-invocation-by-trace-id", + label: "Delete Invocation", + className: "api-method delete", + }, + { + type: "doc", + id: "reference/api/fetch-invocation", + label: "Fetch Invocation", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/edit-invocation", + label: "Edit Invocation", + className: "api-method patch", }, { type: "doc", - id: "reference/api/fetch-plans", - label: "Fetch Plan User Route", - className: "api-method get", + id: "reference/api/delete-invocation", + label: "Delete Invocation", + className: "api-method delete", }, { type: "doc", - id: "reference/api/switch-plans", - label: "Switch Plans User Route", + id: "reference/api/query-invocations", + label: "Query Invocations", className: "api-method post", }, + ], + }, + { + type: "category", + label: "Annotations", + items: [ { type: "doc", - id: "reference/api/fetch-subscription", - label: "Fetch Subscription User Route", - className: "api-method get", + id: "reference/api/create-annotation", + label: "Create Annotation", + className: "api-method post", }, { type: "doc", - id: "reference/api/cancel-plan", - label: "Cancel Subscription User Route", - className: "api-method post", + id: "reference/api/fetch-annotation-by-trace-id", + label: "Fetch Annotation", + className: "api-method get", }, { type: "doc", - id: "reference/api/fetch-usage", - label: "Fetch Usage User Route", - className: "api-method get", + id: "reference/api/edit-annotation-by-trace-id", + label: "Edit Annotation", + className: "api-method patch", }, { type: "doc", - id: "reference/api/admin-create-portal", - label: "Create Portal Admin Route", - className: "api-method post", + id: "reference/api/delete-annotation-by-trace-id", + label: "Delete Annotation", + className: "api-method delete", }, { type: "doc", - id: "reference/api/admin-create-checkout", - label: "Create Checkout Admin Route", - className: "api-method post", + id: "reference/api/fetch-annotation", + label: "Fetch Annotation", + className: "api-method get", }, { type: "doc", - id: "reference/api/admin-switch-plans", - label: "Switch Plans Admin Route", - className: "api-method post", + id: "reference/api/edit-annotation", + label: "Edit Annotation", + className: "api-method patch", }, { type: "doc", - id: "reference/api/admin-cancel-subscription", - label: "Cancel Subscription Admin Route", - className: "api-method post", + id: "reference/api/delete-annotation", + label: "Delete Annotation", + className: "api-method delete", }, { type: "doc", - id: "reference/api/admin-report-usage", - label: "Report Usage", + id: "reference/api/query-annotations", + label: "Query Annotations", className: "api-method post", }, ], }, { type: "category", - label: "Access Control", + label: "Testcases", items: [ { type: "doc", - id: "reference/api/verify-permissions", - label: "Verify Permissions", + id: "reference/api/fetch-testcase-preview-testcases-testcase-id-get", + label: "Fetch Testcase", className: "api-method get", }, - ], - }, - { - type: "category", - label: "Scopes", - items: [ { type: "doc", - id: "reference/api/get-projects", - label: "Get Projects", - className: "api-method get", + id: "reference/api/query-testcases-preview-testcases-query-post", + label: "Query Testcases", + className: "api-method post", }, ], }, { type: "category", - label: "Api Keys", + label: "Queries", items: [ { type: "doc", - id: "reference/api/list-api-keys", - label: "List Api Keys", - className: "api-method get", + id: "reference/api/create-query", + label: "Create Query", + className: "api-method post", }, { type: "doc", - id: "reference/api/create-api-key", - label: "Create Api Key", - className: "api-method post", + id: "reference/api/fetch-query", + label: "Fetch Query", + className: "api-method get", }, { type: "doc", - id: "reference/api/delete-api-key", - label: "Delete Api Key", - className: "api-method delete", + id: "reference/api/edit-query", + label: "Edit Query", + className: "api-method put", }, - ], - }, - { - type: "category", - label: "Workspace", - items: [ { type: "doc", - id: "reference/api/get-workspace", - label: "Get Workspace", - className: "api-method get", + id: "reference/api/archive-query", + label: "Archive Query", + className: "api-method post", }, { type: "doc", - id: "reference/api/get-all-workspace-roles", - label: "Get All Workspace Roles", - className: "api-method get", + id: "reference/api/unarchive-query", + label: "Unarchive Query", + className: "api-method post", }, { type: "doc", - id: "reference/api/remove-user-from-workspace", - label: "Remove User From Workspace", - className: "api-method delete", + id: "reference/api/query-queries", + label: "Query Queries", + className: "api-method post", }, - ], - }, - { - type: "category", - label: "Tracing", - items: [ { type: "doc", - id: "reference/api/edit-trace", - label: "Edit Trace", - className: "api-method put", + id: "reference/api/retrieve-query-revision", + label: "Retrieve Query Revision", + className: "api-method post", }, { type: "doc", - id: "reference/api/add-trace", - label: "Add Trace", + id: "reference/api/create-query-revision", + label: "Create Query Revision", className: "api-method post", }, { type: "doc", - id: "reference/api/fetch-trace", - label: "Fetch Trace", + id: "reference/api/fetch-query-revision", + label: "Fetch Query Revision", className: "api-method get", }, { type: "doc", - id: "reference/api/remove-trace", - label: "Remove Trace", - className: "api-method delete", + id: "reference/api/edit-query-revision", + label: "Edit Query Revision", + className: "api-method put", }, { type: "doc", - id: "reference/api/ingest-spans", - label: "Ingest Spans", + id: "reference/api/archive-query-revision", + label: "Archive Query Revision", className: "api-method post", }, { type: "doc", - id: "reference/api/query-spans", - label: "Query Spans", - className: "api-method get", + id: "reference/api/unarchive-query-revision", + label: "Unarchive Query Revision", + className: "api-method post", }, { type: "doc", - id: "reference/api/ingest-spans-rpc", - label: "Ingest Spans", + id: "reference/api/query-query-revisions", + label: "Query Query Revisions", className: "api-method post", }, { type: "doc", - id: "reference/api/query-spans-rpc", - label: "Query Spans", + id: "reference/api/commit-query-revision", + label: "Commit Query Revision", className: "api-method post", }, - ], - }, - { - type: "category", - label: "Evals", - items: [ { type: "doc", - id: "reference/api/list-evaluators", - label: "Query Evaluators", - className: "api-method get", + id: "reference/api/log-query-revisions", + label: "Log Query Revisions", + className: "api-method post", }, { type: "doc", - id: "reference/api/create-evaluator", - label: "Create Evaluator", + id: "reference/api/create-simple-query", + label: "Create Simple Query", className: "api-method post", }, { type: "doc", - id: "reference/api/fetch-evaluator", - label: "Fetch Evaluator", + id: "reference/api/fetch-simple-query", + label: "Fetch Simple Query", className: "api-method get", }, { type: "doc", - id: "reference/api/edit-evaluator", - label: "Edit Evaluator", + id: "reference/api/edit-simple-query", + label: "Edit Simple Query", className: "api-method put", }, { type: "doc", - id: "reference/api/archive-evaluator", - label: "Archive Evaluator", + id: "reference/api/archive-simple-query", + label: "Archive Simple Query", className: "api-method post", }, { type: "doc", - id: "reference/api/unarchive-evaluator", - label: "Unarchive Evaluator", + id: "reference/api/unarchive-simple-query", + label: "Unarchive Simple Query", className: "api-method post", }, { type: "doc", - id: "reference/api/query-evaluators", - label: "Query Evaluators", + id: "reference/api/query-simple-queries", + label: "Query Simple Queries", className: "api-method post", }, + ], + }, + { + type: "category", + label: "Applications", + items: [ { type: "doc", - id: "reference/api/create-annotation", - label: "Create Annotation", + id: "reference/api/retrieve-application-revision", + label: "Retrieve Application Revision", className: "api-method post", }, { type: "doc", - id: "reference/api/fetch-annotation", - label: "Fetch Annotation", - className: "api-method get", + id: "reference/api/create-legacy-application", + label: "Create Application", + className: "api-method post", }, { type: "doc", - id: "reference/api/delete-annotation", - label: "Delete Annotation", - className: "api-method delete", + id: "reference/api/fetch-legacy-application", + label: "Fetch Application", + className: "api-method get", }, { type: "doc", - id: "reference/api/query-annotations", - label: "Query Annotations", - className: "api-method post", + id: "reference/api/edit-legacy-application", + label: "Update Application", + className: "api-method put", }, ], }, @@ -998,12 +1776,6 @@ const sidebar: SidebarsConfig = { label: "Create Workflow", className: "api-method post", }, - { - type: "doc", - id: "reference/api/list-workflows", - label: "Query Workflows", - className: "api-method get", - }, { type: "doc", id: "reference/api/fetch-workflow", @@ -1040,12 +1812,6 @@ const sidebar: SidebarsConfig = { label: "Create Workflow Variant", className: "api-method post", }, - { - type: "doc", - id: "reference/api/list-workflow-variants", - label: "Query Workflow Variants", - className: "api-method get", - }, { type: "doc", id: "reference/api/fetch-workflow-variant", @@ -1078,15 +1844,15 @@ const sidebar: SidebarsConfig = { }, { type: "doc", - id: "reference/api/commit-workflow-revision-by-variant-id", - label: "Commit Workflow Revision", + id: "reference/api/fork-workflow-variant", + label: "Fork Workflow Variant", className: "api-method post", }, { type: "doc", - id: "reference/api/fork-workflow-variant", - label: "Fork Workflow Variant", - className: "api-method post", + id: "reference/api/retrieve-workflow-revision", + label: "Retrieve Workflow Revision", + className: "api-method get", }, { type: "doc", @@ -1094,12 +1860,6 @@ const sidebar: SidebarsConfig = { label: "Create Workflow Revision", className: "api-method post", }, - { - type: "doc", - id: "reference/api/list-workflow-revisions", - label: "Query Workflow Revisions", - className: "api-method get", - }, { type: "doc", id: "reference/api/fetch-workflow-revision", @@ -1130,12 +1890,6 @@ const sidebar: SidebarsConfig = { label: "Query Workflow Revisions", className: "api-method post", }, - { - type: "doc", - id: "reference/api/fork-workflow-variant-by-revision-id", - label: "Fork Workflow Variant", - className: "api-method post", - }, { type: "doc", id: "reference/api/commit-workflow-revision", @@ -1148,40 +1902,88 @@ const sidebar: SidebarsConfig = { label: "Log Workflow Revisions", className: "api-method post", }, + { + type: "doc", + id: "reference/api/invoke-workflow", + label: "Invoke Workflow", + className: "api-method post", + }, + { + type: "doc", + id: "reference/api/inspect-workflow", + label: "Inspect Workflow", + className: "api-method post", + }, ], }, { type: "category", - label: "Vault", + label: "Access Control", items: [ { type: "doc", - id: "reference/api/list-secrets", - label: "List Secrets", + id: "reference/api/verify-permissions", + label: "Verify Permissions", + className: "api-method get", + }, + ], + }, + { + type: "category", + label: "Scopes", + items: [ + { + type: "doc", + id: "reference/api/get-projects", + label: "Get Projects", className: "api-method get", }, + ], + }, + { + type: "category", + label: "Api Keys", + items: [ { type: "doc", - id: "reference/api/create-secret", - label: "Create Secret", + id: "reference/api/list-api-keys", + label: "List Api Keys", + className: "api-method get", + }, + { + type: "doc", + id: "reference/api/create-api-key", + label: "Create Api Key", className: "api-method post", }, { type: "doc", - id: "reference/api/read-secret", - label: "Read Secret", + id: "reference/api/delete-api-key", + label: "Delete Api Key", + className: "api-method delete", + }, + ], + }, + { + type: "category", + label: "Workspace", + items: [ + { + type: "doc", + id: "reference/api/get-workspace", + label: "Get Workspace", className: "api-method get", }, { type: "doc", - id: "reference/api/update-secret", - label: "Update Secret", - className: "api-method put", + id: "reference/api/get-all-workspace-roles", + label: "Get All Workspace Roles", + className: "api-method get", }, { type: "doc", - id: "reference/api/delete-secret", - label: "Delete Secret", + id: "reference/api/remove-user-from-workspace", + label: "Remove User From Workspace", className: "api-method delete", }, ], diff --git a/docs/docs/reference/api/start-evaluation-preview-simple-evaluations-evaluation-id-start-post.api.mdx b/docs/docs/reference/api/start-evaluation-preview-simple-evaluations-evaluation-id-start-post.api.mdx new file mode 100644 index 0000000000..50eb4f7319 --- /dev/null +++ b/docs/docs/reference/api/start-evaluation-preview-simple-evaluations-evaluation-id-start-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: start-evaluation-preview-simple-evaluations-evaluation-id-start-post +title: "Start Evaluation" +description: "Start Evaluation" +sidebar_label: "Start Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJzlWEtvG0cM/isCTwmwsVyjpz1VtR3Ejdu4lpKLIAjULiVNOvvwPNSqwv73gjO72pek2LEDFPDJ1i75kfzI5XC4A4MrDeEUrjcoLRqRpRpmAWQ5KffrJoYQtEFl5rQXmeeKNoL+nmuR5JIab/S8KSbi+dzr5pk2EECOChMypNjmDlJMCEJoaUAAIoUQcjRrCEDRgxWKYgiNshSAjtaUIIQ7MNucnG9KpCsIYJmpBA2EYK1DMcJIFqgjG9zEUBQzBtV5lmrSjHNxfs5/YtKREjnLQQhjG0Wk9dLKwX0pDAFEWWooNSyOeS5F5GCHXzXr7Bq+5YoJNMJbiDLrlUqXRWpoRarh46WTCCCmJVppIDwvggYtzmC6/bR0rLXBl9Jl8LiA0PNIZpopbAqVviyyTBKmUAT7R6mVEpimyrsbPbj0CEXAcFJs6Dlgt6zvoTAyzwQbeYSiCCqpbPGVInOwAu5t+t7x1QctAkjIYNsVjGPBeijvWpz2nC2rsAFbJbllKVm0nzRjPGwLIqEiK1G9eW+l/E1n6btP1uTWvIVuwAwiDCWP1EKlcHuS3Y4u9Cg+pfw7k8kavfL8P5H6R3YrtPkmrceC7Kk/jaOJL8WyDz6Kgb4LrFsE7f71fVBXDYgigEgRGornaE4BNhpvjIbeGeH8OW7l0sMORo4sm8c/wshnD1saiUnSDzBy5WFLIxVdiy2fYo+z446qx5D169YdXjVfL2qlYmtvpSLsRa1UdO2tvBy0x9uQ0s8o/y+lOseP3ZOgfaZqg8aebFoBUGoTnqxySmP/5MGSJR5NlE1T/0j7OYODRSGt4imDlMoUP4owjUhKimF26DAbeycOHmUPltR2rg3lHS/LA+LbZPePiWN9+1jgkdUmSyCAtU0whQDQmgzYu5LMLfcuP8QcMf6IHvonRzoYu0hZkbTRZF5F6BMfax18Yyh9FQSM6nhrEsqxOVOvgoLrKtqaAEU5oTncnQ4OUB3I+1L/1Eg9dhe/uhddoZv2ep3oCRDPVN9f04qC1X6+uOjf6r6gFLEvl2tust9/pYvJoJDuelVVVFtAZlHr7VOG21m3/Oqob7OoIgsSvTpUf/UArjWuqC6n46KOjMGE3x6ivL6DT11c3nQp1zxA9/R6do+HceXpO5XfD5PJXQ/Q57ZzVecFw6BRR+4it854cbFfO5g1hDAs1xZDv7YYNtYWw11rCVEM3dqCD2hSm2pdYZWEENbG5DocDiOZ2fgMV5QaPEMxxFy4z0hTZJUwW6cyurv5SNsPhDEpCKezpsCYa8tXS1tsnyjMxUdi3spFyciadabEv1WcblGy9lpMjEiXmVOv+qNzbjC6u4HGdATnZz+dnUOXx5YwfxYYuc+isu1eQ9BhYR8/d77EfRNgCJNf6hfsGSeCu2CNdyBtnStMSYKhf8wwlyhc0TvruzKjUygzyolyOYXm2oRnqLC7XPKJnQWw5toIp7DbLVDTZyWLgh+7yYlTFcAGlcAFMzndQSw0/x9DuESpqeftvpHAm/vye3k7qC+T7Siq/KacXHaQf0EAf9G2tw9z7WBdVdCulBlFEeWmod3rXlxq+w/h7tN4AkXxH7y/2xw= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Start Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/start-evaluation.api.mdx b/docs/docs/reference/api/start-evaluation.api.mdx new file mode 100644 index 0000000000..a97eeac985 --- /dev/null +++ b/docs/docs/reference/api/start-evaluation.api.mdx @@ -0,0 +1,71 @@ +--- +id: start-evaluation +title: "Start Evaluation" +description: "Start Evaluation" +sidebar_label: "Start Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJzNWUtv2zgQ/isCT7uAGrvBnnxa51HUm6QJ7LQXwxBoaWyzS5EqH0lcQ/99MaRkS7ItO64LbC9NqJlvyJmPw5nJihg616Q3JrcvlFtqmBSaTEIiM1Dut0FCekQbqkwEaxESEgU/LGhzJZMl6a1ILIUBYfBHmmWcxU6u811LgWs6XkBK8adMIbRhoPE3QVNwOmL5OCO98YqYZQbOomJiTvJwvSIs5ySfhMQww3HhC+rmuJMXpnHfEUscKDOQuh+aWOUCVYouyQZpWCIEg0SjXHFSqXQUSzFj89Nwb9cwwXUBg8KgjQYTsWQba6P77KWCQeLOSA1EnKXMbPtwSk28iDT7CRU8JgzMQVUAr1AsGKFYHpKUvkUKjCow9mo90LdgWMg5Xxu1jBLgdNmqhirL4MbJ5SFxCtEUzCuAiNyGD9h1qsGV1wiuCo1842s5/Q6xKYjIFCRI4oor6kes73zfhirkur9/GFoxpAbundfzkMRSKYhNRIV+BRXFkttUnEreaw8W9B1YcO3BDp2vTvWdPK3xq0ac6tWB1819J3meV80YZcEt6EwK7eN02e3ifwnoWLHMafXIyMYxaD2zPBgWwiQ8NRPE0nqlvZS4dhIYuxm13JBeF3dpRf1u1lFnnPq7u4lRXYDpKOZSQ7IzkFMpOVDRGsmBDq49Qh4iHGcvu1PakWD3qO+haGx+EazvEXbxqpGkmBRDKz45f22DYsYAQ+tboUnCUI/yp5pPj7gPZXRrltJpfaV6xt22SMxUbDlVf3yynP+jpfjwaE1mzZ+keWAEKUhyjJZP5W3ebeiSLRe3KT+gM1Fji57/J6d+kfdMm4Nu3ftAN9Xf56NnT8Wz1Ai1xHUa1E0FAl8DBdRAElHTBhiSmVQpypCEGvhgmNtPy7vgYYO+c5bNkt9h5KuHLYwkwOE3GLnxsIWR0l3TZVH3HGHHWpYc5ayrZVEmlf46q5XSW2srpcPOaqV019rK+aA93gso/Qv0/1ao5yF2A8a2JqWQgLApViwZiMSv/LBgwZUkVgi/pH0BgYehjFuF5QMoJRUuxVTEwDkk1cJl81iN/CZ2bXldIKytY9Bo8/mqFwLaQNY4056a4l+o1r5bhfsdLDd5br9jmMCEGBImXmRcNlVUCGn8L9VEiBB5SKRicybaQGOrjUxJSBY2pQ7QGlmFevQQrrybgQIRF6/LnlenfvIzUojb+akwI9Q9+wVpqZCGpau2368dQu7NctE9H50OtAUIsfOSDK24oYaODGQDUX+ADxc4A3+GY4wXEmuK1uh1aGfv2tTIXVPH3wxo08VthVADaFjoV9LFR9cXZxkTzaJsT+g2LWAjpEy09vZ3+L1S2eyT89XLIf8jWIHV5uoHf7Ky0wxdxjs1u2XULNrEnvD7ccxxUEds3FPlAGQRkeJwR6C+i3wPJTmO7qfQ0q526lj9tqEVdr4V9o6PR9Xrdj13vf9fl5fb3f03ylniNIJbfJNPb+0TMJTxli6dy7j29T29zmS/h+7LhxXvtZ638fUBtKZzaHu4155EZwT+TT7ARjyXN13IVR/DtXu9d/cf48a7ry26n5+fn7YAfWwbIxsc5Aa31UFuCmYhccibSW3K+9gjnc20V3cyHDzBa8fNgfF2gcJawIXIKk56ZGFMpnudTsylTS7oHIShF5R1aMbcFdIQW8XM0qn0nwZ3sPwMNAHliFsRGCGJPC3qYuuI0Izduczh0yfpW7OQiv0sD4QlEll4LfQA0nO4mVbfvtE047CZPm9C3Jgkj8svk90T4er36lC3Algb21YHtd3GCLbbmK129w5Nu/tHkZWJNBMz6XxWMKTvIhL0nwak0gqQ7sXHiy5psqQmjJeexqbiL/+ZhI3Qr4OOBWnqbjwxQNO/Nx8wHEgzLE43eDtI2ejXi8gbeDOdjFNfwTrrq4KvY1LhK7LYM9a9BMjZSUgWyO/emKxWU6rhq+J5jss/LCik5SQkL1QxOkV/jTGtLEqCFq8iufb578OzL3bQoCdkIxdinvIa/TiGzLTKTipX8Olx9ExCMi3+qJLKBHUUfXVceiU9gjVW5g/ZW/m1FeFUzC2mrx7xmPjvP3mE4JE= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Start Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/stop-evaluation-preview-simple-evaluations-evaluation-id-stop-post.api.mdx b/docs/docs/reference/api/stop-evaluation-preview-simple-evaluations-evaluation-id-stop-post.api.mdx new file mode 100644 index 0000000000..1769729b39 --- /dev/null +++ b/docs/docs/reference/api/stop-evaluation-preview-simple-evaluations-evaluation-id-stop-post.api.mdx @@ -0,0 +1,71 @@ +--- +id: stop-evaluation-preview-simple-evaluations-evaluation-id-stop-post +title: "Stop Evaluation" +description: "Stop Evaluation" +sidebar_label: "Stop Evaluation" +hide_title: true +hide_table_of_contents: true +api: eJzlWN1v20YM/1cMPrWAGmfBnvQ0L0nRrNmaxW5fDMM4S7R93Ul3uQ9vnqH/feCdZH3ZbtKkwIA8JZbIH8kfKR6PO7BsZSCewvWGCccsl7mBWQRSofa/blKIwVip5riXmCuNG45/zw3PlMDGGzNvivF0PveqShoLESimWYYWNVncQc4yhBhaChABzyEGxewaItD44LjGFGKrHUZgkjVmDOId2K1C75nm+QoiWEqdMQsxOOdRLLeCBOq4BjcpFMWMQI2SuUFDOBfn5/QnRZNorkgOYhi7JEFjlk4M7kthiCCRucXckjhTSvDEww6/GtLZNXxTmuizPFhIpAtKpcs8t7hC3fDx0ktEkOKSOWEhPi+iBi3eYL79tPSstcGXwufvuAA380RIQxQ2hUpfFlIKZDkU0f5R7oQAoqny7sYMLgNCERGc4Bt8Dtgt6Qcolthngo0CQlFElZRcfMXEHqyAe5e/93z1QYsIMrSs7QpLU056TNy1OO05W1ZhA7ZKcstStmg/acZ42BYkXCdOMP3mvRPiNyPzd5+cVc6+hW7ABMItZo/UYlqz7Ul2O7rQo/iU8u9EJmn0yvP/ROof8pYb+01ajwXZU38aR5NQimUffBQDfRdIt4ja/ev7oK4aEEUEiUZmMZ0zewqw0XhTZvGd5d6f41YuA+xg5MlyKv0RRj4H2NJIigJ/gJGrAFsaqehabOkUe5wdf1Q9hqxft/7wqvl6USsVW3srFWEvaqWia2/l5aAD3ga1eUb5fynVKX7WPQnaZ6qxzLqTTSsCzF1Gc5XCPA1PHhw6pNFEuzwPj0yYMyhYxoXTNGWg1lLTo4TlCQqBKcwOHWbj4MTBo+zBod7OjUXV8bI8IL5Ndv+YONa3jwWeOGNlBhGsXcZyiIA5K4G8K8ncUu8KQ8wR44/ooX9SpIOxj5QU0ViD9lWEPgmx1sE3htJXQcCojrcmoRybpX4VFFxX0dYEaFTI7OHudHCA6kDel/qnRuqxv/fVveiK+Wmv14meAPFM9f01rShI7eeLi/6t7gsTPA3lck1N9vuvdClaxoW/XlUV1RYQMmm9fcpwO+uWXx31rUwqsiAzq0P1Vw/gxrAV1uV0XNSTMZjQ20OU13fwqY8rmC7lmgfont7A7vEwrgJ9p/L7YTK56wGG3Hau6laqQaOM/D1uLWlrsd862DXEMCyXFsOwtBg2lhbDXWsHUQxpaUHHM+pNtaxwWkAMa2uViYfDREiXnrEV5padMT5kivuPyGDiNLdbrzK6u/mI2w/IUtQQT2dNgTFVVqiVttg+TUzxj0islWuSkbNrqfm/VZh+TbIOWkQLz5fSq1fd0Ts3GN3dQGM2gvOzn87OoctiS5g+Cpb4j6Ky7V9D1GFhHz/1vcx/EWCRZb/UL8gzygP1wBqvn7TO/aXkwOI/dqgE477ivfFdmc8plPmkPPmMQnNnQgNU3N0s+bTOIlhTYcRT2O0WzOBnLYqCHvupiRIVwYZpzhbE43QHKTf0fwrxkgmDPWf3TQTe3JffyttBfZFsB1FlN6fUkn/0CyL4C7e9XZhvBeuqfnalzChJUNmGdq9zUaHtv4K7T+MJFMV/lc/YrA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Stop Evaluation + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/switch-plans.api.mdx b/docs/docs/reference/api/switch-plans.api.mdx index 53b013edf2..27be9b4a6b 100644 --- a/docs/docs/reference/api/switch-plans.api.mdx +++ b/docs/docs/reference/api/switch-plans.api.mdx @@ -5,33 +5,36 @@ description: "Switch Plans User Route" sidebar_label: "Switch Plans User Route" hide_title: true hide_table_of_contents: true -api: eJyVVE1vGjEQ/SurObWSBTTqaU+lH1KitApKSC8IoWF3YJ147Y3tpaHI/70ae1kghENPLPZ8PM97b3bgce0gn8FXqZTUa5gLMA1Z9NLomxJycH+kL6pFo1A7ENCgxZo8Wc7agcaaIAe+BQFSQw4vLdktCLD00kpLJeTetiTAFRXVCPkO/LbhJOctdxRAuq0ZQ6FMWy42o0Vllksu0R801hz/rdoatfTbhcKlO754PTvBNWmPC5T8Mi+94s4ThhvCnEG6xmhHjnFdjUb8U5IrrGx4ApDDQ1sU5NyqVdl9F8z1jfakPYdj0yhZxIENnxzn7A5vDSEEAZ+vrs4L/0Yly5iW/bDW2P+oCo1lkrxMuEvyKBV/SU+1Ow9Qpji5Rb29W0X+TqkIoj+R2tOaLIR5EPsztBaZlv0Yf5oEEIKA2q3fo3Yf+oucwzVBX+xyaBxGNuXbcOhtlk9U+BNZzeK7Uusu7ojjw3jTdC8/43sa33vN9iHX0+nkrGDi9o1aolsyFpjLHh3Z7N60nhVTk68MG6oxzkcj+QpyGC6T8YbRYMPkNhDgyG72Jmutghwq7xuXD4dR2oOk6wHKITYS3sIYx9vsG4cC69xR0Vrpt7HeeHJzS9trwpIs5LP5ccADayyp5jSsJwwbeUs8v87749ZXxsq/SQrdEqhSFg9I6pWJ6d0sO2xfsXgmXYIAfmeCPRp8GowuPaZLyMaTm84qWESr7HHEMBBvxtUPihdNHX0CnrD+crhglMxKjfqo3mUqT+D1c/H06plFGf0QQew6lmfQscy8d4u0Y3ouoGJB5DPY7Zbo6NGqEPg47VHmq5QOl4olv0Ll6AxAvzbgw33njo8ZiPeBPdP2sLA3qFoOiRrZoJXcJ0pC7ClkAClnXBTU+KOssx3FVXqdT+4ephDCPyc0LeI= +api: eJyVVMFu2zAM/RWDpw0QkqzYyadl2IAW3dCgTXcJgoC2mVidLKmSnDUL9O8DZcdJmvawUxyJpB7fe+QeAm485Av4KpWSegNLAcaSwyCNvqkgB/9HhrJeWYXagwCLDhsK5DhrDxobghz4FgRIDTk8t+R2IMDRcysdVZAH15IAX9bUIOR7CDvLST44flEA6bZhDKUybbXaTla1KQouMRxYZ07/Fq2Xmrw/PavbBrUMu5XC4uzi5eIEN6QDrlByt0EGxWhm3EKMSwburdGePGO9mkz4pyJfOmmZFcjhoS1L8n7dquy+D+b6RgfSgcPRWiXLROL4yXPO/th/jDEK+Hx1dVn4FypZpbTsu3PG/UdVsI6FC7LDXVFAqfhLBmr8ZYAy5dkt6t3dOml6Lk8Uw4nUgTbkIC6jOJyhc8hSHWj8YTqAEAU0fvOW3IfQn+Q9bgiGYu+HJjKyOd/G49umeKIynFltkfrqnu7jTjQ+0tux+34b3zr63nrsEHI9n88uCnbavnJLmqCMDeazR08uuzdtYMc0FGrDQ2aND2m4Qg05jItuGMdp6MbdBIIAT257GLzWKcihDsH6fDxO1h51vh6hHKOVwFb2VLZOhl1Kmc5ubml3TViRg3yxPA14YBt1xjgPGzRBK2+JKepHftqG2jj5t1O7n/26y2IOpF6blN7TNU3gsunsBgRwGx05k9Gn0QReU3YWzBOAZZqAw9vpGsQrFob+eac0yf4QCJsvxwtGxmQ3qE/qva/QGayBi0AvgcWRyeYJxL4XbwG9eCxnvzN7AZcCatY5X8B+X6CnR6di5ONuZbJGlfRYKHbyGpWnCwDDNoAP973pP2Yg3gb2m3bH3bxF1XJI8sUWneR3kg3EQTYG0OVMy5JsOMm6WD1cZbDv7O5hDjH+A+mQJqo= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Switch Plans User Route @@ -40,264 +43,29 @@ Switch Plans User Route as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/testsets.tag.mdx b/docs/docs/reference/api/testsets.tag.mdx index e36855ca64..3d904ab06b 100644 --- a/docs/docs/reference/api/testsets.tag.mdx +++ b/docs/docs/reference/api/testsets.tag.mdx @@ -5,9 +5,16 @@ description: "Testsets" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/transfer-simple-evaluator.api.mdx b/docs/docs/reference/api/transfer-simple-evaluator.api.mdx new file mode 100644 index 0000000000..d10b738e8a --- /dev/null +++ b/docs/docs/reference/api/transfer-simple-evaluator.api.mdx @@ -0,0 +1,71 @@ +--- +id: transfer-simple-evaluator +title: "Transfer Simple Evaluator" +description: "Transfer Simple Evaluator" +sidebar_label: "Transfer Simple Evaluator" +hide_title: true +hide_table_of_contents: true +api: eJzNWEtvGkkQ/iuoTonUMY61pzktayeyk+wa2TgXhKxipoDO9jzSD++yaP571I8ZZhjDArYlTnGYqq+qv6rueqxA41xBNIZPTygM6lwqmDDIC5KoeZ7dJBCBlpipGclHxdNC0CNVssCgQIkpaZIWZQUZpgQR1BKPPAEGPIMICtQLYCDpp+GSEoi0NMRAxQtKEaIV6GVhdZWWPJsDg1kuU9QQgTEORXMtrEDtau8mgbKcWExV5JkiZWEuzs/tPwmpWPLCHgIiuDdxTErNjOjdBWFgEOeZpkxbcSwKwWN35v4PZXVWDdcKaRnR3FuIc+OVgsc80zQn2XDx0kkwSGiGRmiIzku2JsXZy5a3M0dZG3smXEC2C3D1GBul87QtFFyZ5rkgzKBk9U+ZEQIsS5VzN6p36RFKZuG2+HUYYh2UALowKWYvAbx2AGXJKqF8+oNi3SD53mVjbfizY66LWjJISWPbF0wSbmONYthit+NtyMYGbBXtlqV02v6lecjnbUHMZWwEynefjRBfVJ59uDW6MPo9bB7ZgnBN6Z5aKCUud9K7oQsdkncp/2nJtBqdRD0lUv/Kv3Gl/5fWbYfsqB/G0cinYngO92Kg64LVLVn7ITsO6qoBUTKIJaGm5BH1LsDGA5ygpg+aO3+2W7n0sL2BI8sUyVsYefCwwUhCgt7AyJWHDUYquqZLW832s+NK1j5k/bF0VWzN16taqdiqrVSEvaqViq7aihJmfmyu3ltdW0Nezb1wctysAe26+kRSveCKfQ/qNpKSH4vyILlHEMcjCIuwIExcT3bY+/xWlJxeQuzoK+5oRpKyuPVGVI5ODqoD1yEMZdXn7huRE6qkJ9meHBCD+0C87QOxKHi2b9uySfEhPVJlyAXelt6js99rl+1J61S7rpPMle3KwzWlNlAkn3hM+7DrR9cDcjBAl27mnPG58eP1W9i6bBk4YIC6QtfYd+an/RFepl0P5mVptX67uOjO8d9R8MSdrPdJSreBOHKIT0gjd2U25OOmgMjj1tdD7lOjSvgUXh/6Wx5j1Yinav7c4mM9aSmFc1rn9HZRR0ZvZL8+x/h66TJ25/Kmg1yzZNf0ena3H+PK07crvNej0bAD6GPbDuoo7Jd6PiEauwQ3ui9yu4QqcqXdvkkvIIJ+IemJ0z99v5Lq1zsM1V81l09lv1pegb/g1aLKtViw0LpQUb8fi9wkZzinTOMZ8j4W3N0pRbGRXC+dymB485WWvqRDNJ40BVyR8XnTFqtDhgX/SpbBsCIbGL3IJf/PJ0PYkfm2zbHKs1nu1AObA+dcbzC8AbbuzOD87OPZOWwy2hK2FwRjd0Eq2+4zsA0W6vMDA0rd7QBNmP6+/mA9s5EIy52AtyuAG+NrYEPTv7pfCORZo9/1sR1DiK2NmMODxu5MAYNoY71Yh3jCYGHTJBrDajVFRQ9SlKX9+achaaM4YfCEkuPUcjpeQcKV/TuBaIZCUcfd+nGBd3fhDr3vretT+xhVpDMbZuui/R8w+JuWmztR90IsqlRaBZFBHFOhG8qdB83mXH0lhrf3IyjLX5NDe8s= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Transfer Simple Evaluator + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/transfer-simple-testset.api.mdx b/docs/docs/reference/api/transfer-simple-testset.api.mdx new file mode 100644 index 0000000000..e655dac986 --- /dev/null +++ b/docs/docs/reference/api/transfer-simple-testset.api.mdx @@ -0,0 +1,71 @@ +--- +id: transfer-simple-testset +title: "Transfer Simple Testset" +description: "Transfer Simple Testset" +sidebar_label: "Transfer Simple Testset" +hide_title: true +hide_table_of_contents: true +api: eJztWN9v20YM/lcMPrXANc6CPelpXrMiabsliN29GEZAS7R93elH707ZPEP/e8G7kyxZceKkDtCHPMWRyI/kRx6P4gYsLg1EU5iQsYasgZmAvCCNVubZZQIRWI2ZWZC+NTItFN1aLwkCCtSYkiXNCBvIMCWW9+9vZQICZAYRFGhXIEDTt1JqSiCyuiQBJl5RihBtwK4L1jRWy2wJAha5TtFCBGXpUKy0igWCk4PLBKpqxoimyDNDhkHOTk/5T0Im1rJg9yGCcRnHZMyiVIObIAwC4jyzlFkWx6JQMnbRDr8a1tm0HCs0c2GltxDnpVcK/srM0pJ0y8H3TkJAQgsslYXotBI1Ic5atr5aOLK6yAvl0rBfYIXGER9jiHYrGJyZ57kizKASzaOsVAqYp9q9CzSDSYNSCQ+rMf5RTA9RcbBeLJ9/pdj2U/fBBdrHqwSkZLHrBSaJ5MSguu6Q0fMzFE4Ltk5Nx1I67z5ph3e/LYiljkuF+s2HUqmPJs/eXZW2KO1b2A2VQaSl9EAt1BrXDxK7ows9ch9S/pPJZI1eXf1MpP6Vf5bGPkrrviB76k/jaOJLMfStgxjou8C6leh2nedBnbcgKgGxJrSU3KJ9CLDVKxO09M5K589+K+897GDkyCqL5CWMfPGwwUhCil7AyLmHDUZquuZrvngOs+Nul0PI+n3trpwtX0e1UrPVWKkJO6qVmq7GilHl8rm1OmbdSsDx3AuR4+4d0L0G6yvwViY7TSu03sddOLwB1zfl4DJxfWLP/dtY7rsaxqAjUdSefgQcF3vc4L72nde+86J959g9457Z+eAZ554Bt+5+syfNEvVc+zpwHTBwvU76LzDp96/OV1KfTeo5k/nY5yzPAs8aKA76Ur6hO2lknnlX+h/MDyCM3aIm4PyIbrMyqSrW+fXsrL9h+RuVTNz+ZPCH1rl+/nolIYtS8a89I5XK487bpxTybDdR25A/595B15rM8r4hcnvYjMFlK+v7RR0Zgwm/vY/v7TJs6uLypoNcq2a29Hp294dx7ul7KLkXk8l1D9DntpvUSdj5DXw5DCbNzi8lu8p5LVjkxu8A7QoiGBaa7iT9O/RLwmGYfs1ws52Dq2G9SgQeX/VdvTgstYIIVtYWJhoOY5WXyQkuKbN4gnKIhXSnyFBcamnXTmV0ffmJ1heECWmIprO2wJjry1dMV6xJFhbyEzF3YWU5Ku0q1/J/XwZha7nyWkyOzBa5Uw88jpxzg9H1JQjgMDxrpye/nJzCLpcdYT4aGLujUdt2r0HssNDEDwIodecCLGH62/YFe8ZZSDFr4e1P3c6OInBh6T87LBRKV//OiU3I6hRCVjlfDg2abaYBAVFn1dskdyZgxcURTWGzmaOhL1pVFT/+VpLm/M0E3KGWOGc2pxtIpOHfCUQLVIZ6rjYNBd7chHPzdrC9DLoh1DnOOMF3qEr+DwT8Q+vudtr1hFVdQpsgMIpjKmxLtdfCuNaaY3B9NZ5AVX0HIMT3rQ== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Transfer Simple Testset + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-evaluator-revision.api.mdx b/docs/docs/reference/api/unarchive-evaluator-revision.api.mdx new file mode 100644 index 0000000000..b1fc5111ee --- /dev/null +++ b/docs/docs/reference/api/unarchive-evaluator-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-evaluator-revision +title: "Unarchive Evaluator Revision" +description: "Unarchive Evaluator Revision" +sidebar_label: "Unarchive Evaluator Revision" +hide_title: true +hide_table_of_contents: true +api: eJzNWdty2kgQ/RWqn5IqxXhd+6Sn9dpJ2ZtsTPm2DxTlaqQGJhlplLk4y1L69625SCAEBDBU8WSMuk9Pn+6ZaR1moHGsIO7Dx1fkBrWQCgYRiIIkaiby2xRiMDnKZMJe6YUqqxdJr0wxkUMEBUrMSJO0QDPIMSOIoW36wlKIgOUQQ4F6AhFI+mGYpBRiLQ1FoJIJZQjxDPS0sCBKS5aPIYKRkBlquxbjUDTT3BrUy+7chyid2xTKcmDBVSFyRcriXZyf2z8pqUSywmYGMTyYJCGlRoZ37oMxRJCIXFOurTkWBWeJI6L7TVmf2cIaC2lp0sxHSITxTmHpLNc0Jrmw1itnEUFKIzRcQ3xeRitocoHz6d3IsdkMMrd+Rckw15bThv1m4sqotsgN52B5alP57LEdkxH8FPL7iIufRwj5T4BeijjP8hjZLWV1hGx8hMPT1WQJpWYjTA4Z4DJAVhGMngh5MHCPVkaQoqYtUa3pB80y2gh9bQHLCDJSCscbsTfB/B3cywhG3J2L63ciUy+JUVpkK4MNheCE+cZot6pz5RHKyMLVXf8WxLrNA+jEZJi/BfDGAZRlVBmJ4TdK9Koj+JPjrI3nCqOxuQpMU2bPVeS9Bq9b1K06WRuRsmHzm8X0VseChMnEcJTvPhnO/1Ii/3BndGH0e1hO1oIwTdmWXiglTjcSu+QLLXo3t6lG59Fq0VMi9av4wpT+Ja3rkmy578bRo2/FMIzsdxx8RXfsNIeG/aCuFyDKCBJJqCl9QX3QY/DKw3YuHVmmSI8R5MnDhiApcTpCkGsPG4JUdA2nB7zrKrL+nIbbruLroFEqtuooFWEHjVLRVUd5JdkeJbdv1+fgXkaguBnvC/Ngfe09dLBEA4e4fJs07+bDZW8k2xflSTKPwPdH4BZhQpi6d6vdTvpjUXJ6DbFhNrmnEUnKk8ZpUy10sNONchPKUFavqdtW5ITu5JMcdHaowUMg3k6UWBQs33YAWqZ4l2mrCuQKby/xvbvfe5dNxeRU57eT7JX1zr05pbZQJF9ZQtuw65WnHXowQJdOKRqxsfFK2TFiXTUCbPUSVslg1+heElrvYrtgvNW/FtXK0vr9fnHR1uCekbPU5df5KKWQ+wtwKWlk7rINXblswEXSeLrLrlq4K3wjz9P+IhKsBvtMjVeplysEBm+y3tSR0Xm0T1dxPldO+y4vHzrYNSSjil7P7vo0rj19mwp88/jYawH62jaL+lQJxp22PgtODZgIKywXQmknIOsJxNAtrARKP7u1EqK6lSiqurOVgnLZrcVp8Nu+kqHd4AUTrQsVd7sJFyY9wzHlGs+QdbFgbqcpSoxkeupcLnu3n2nqL3qI+4NFA3f1+D5qmtUlxIJ9JstoEMC93sX+880RhG8/zDmWWT4Szr3Sx9ziOpe9W1gY4OH87Lezc1hmuGFsNwwmbsNUsd1jiJZYqPOHCChzuwU0YfbH/IFdmS1LkI0C3i8KuvSGHAjR9K/uFhxZvjAI+1r3IdQaFtRe5fo61BsiiNf9hDAv+SCCie2huA+z2RAVPUlelvbrH4akreogCLFDy3F/BilT9nMK8Qi5otba68MH3t2HPfa+M7/FmjlVlc9t2e1i7X8QwXearv0FxB0lk6rHZsH2Mkmo0AsorZPPNmO9cXp3D49Qlv8DfPzbsg== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Evaluator Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-evaluator-variant.api.mdx b/docs/docs/reference/api/unarchive-evaluator-variant.api.mdx new file mode 100644 index 0000000000..435509ae19 --- /dev/null +++ b/docs/docs/reference/api/unarchive-evaluator-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-evaluator-variant +title: "Unarchive Evaluator Variant" +description: "Unarchive Evaluator Variant" +sidebar_label: "Unarchive Evaluator Variant" +hide_title: true +hide_table_of_contents: true +api: eJzNV01v2zgQ/SvGnFqAjd1gTzqtN2kRb7sbo3G6B8MwxtLYYkuJKj+SdQ399wUpSrYs25ukLtBTPjTz3sybITmzAYMrDdEU3j2gsGik0jBjIAtSaLjMRwlEYHNUccofaE611fwBFcfcAIMCFWZkSDmcDeSYEUTQsZzzBBjwHCIo0KTAQNE3yxUlEBlliYGOU8oQog2YdeEwtFE8XwGDpVQZGheJ9SiGG+EMmqB7nyuS3iiBspw5bF3IXJN2cJeDgfuRkI4VL1xaEMGdjWPSemlF71MwBgaxzA3lxpljUQgeexX6X7Tz2eyEWCinkeEVQyxt5RQi57mhFamdUK+8BYOElmiFgWhQsq5Injdf3y69lG2OrTFP2nan5SpZY5FbIcDJ0xXQCcfgUaqvSyEfz0jxT4AMDKgMX2JszsgwDJCBYSl8Sx8Xkut5bLWR2cEAFlIKwvwk40j3riqEkjm4pjQ/gtjUIoCmNsP8RwBvPEBZstpILr5QbA6dn/desy5eySAjg+0oMEm4OxUoxi1dj9VyB7Y+Fy2mbNH+z256h7kg5iq2AtWr91aIP7XM39xaU1jzGvaTdSDcUPZEL1QK1yeF3fOFjrynnP9yYjqPTov+SqL+LT9ybf5X1mNJdtyfp9GkasXwkDxJgW4Izrdk7Sv/ZVDXOxAlg1gRGkrmaJ54fSVo6I3hPp7jLFcVbG/oxbJF8jNI7ivYQJKQoJ9Acl3BBpJarsX6jBd+LdYf63Dl13qdlaVWq2GpBTsrSy1Xw6KFXb20V++cr3s9zhaen6ee8ICE+evQE/IM92YQK0vn9tvlZXdu+4yCJ34q671TSqqXD20JGeTCTwTVA7FvIGTc+vqcu3hW7r0p26w/yipAV6lMrw4NvNv3Qmtc0fYCPW7qxehN3NdDkm+H7anPq6IOdjsF38pbqXs8jetKvlP1vZlMxh3Aqrbtot7XG0avM9KDH0FS6RaRQupq4zApRNAvFD1weuw345fuhzla9zeHFpCy36wywECTeqi3FqsERJAaU+io34+FtMkFrig3eIG8jwX3p0JTbBU3a+8yHI8+0PqGMCEF0XS2a3DnWq5qorZZUz8s+AdycoZ9aWhNKhX/XnVGWJTSysvpxfOl9O710OuD6w3HI2Dg0qiEHFy8vRjAvrwtY3daMPanpeb2n4HtqdDkDwwo80cFDGH2+/aDi8wVJUyqAe90Nffe5KCHoX9NvxDI/bHwgWxCoacQCg07G5N2aYdiA4PoyL65rfeMQeraJ5rCZrNATfdKlKX79zdLypV0FhAXTuDpBhKu3e8JREsUmjqRN9cOvPoUTtfr3nZSamdUlz1f+8CFdX8Bg6+0PrYt+zskrftrE0yHcUyF2QHpXHmuEZsjM769m0BZ/gc/SHX+ +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Evaluator Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-evaluator.api.mdx b/docs/docs/reference/api/unarchive-evaluator.api.mdx index 7ce3f5dd5a..bac28c5f77 100644 --- a/docs/docs/reference/api/unarchive-evaluator.api.mdx +++ b/docs/docs/reference/api/unarchive-evaluator.api.mdx @@ -5,641 +5,67 @@ description: "Unarchive Evaluator" sidebar_label: "Unarchive Evaluator" hide_title: true hide_table_of_contents: true -api: eJydVdtu2zAM/ZWATxsgxFmxJz8t6wI06IYGvewlCApWZmK1tqxKcrbM8L8PlC9xbhiwpzjWIXV4DklX4HHjIF7CbIuZg5WAwpBFrwo9TyCGUqOVqdrSM20xK9EXFgQYtJiTJ8uhFWjMCWLoEc8qAQFKQwwGfQoCLL2XylICsbclCXAypRwhrgD17m4dsvid4SzOW6U3IGBd2Bw9cyhVArU4RtQrAV75jF/NuqtH8wRqPrHkTKEdOb7kajLhn4SctMpwcRDDQyklObcus9F9CwYBstCetA/UjMmUDFpEr45jqgFxY1kpr5obZFE2QS1HpT1tiLXqKF4HRC32Mp0tv3h5JenhTGlDCXSZZVCv6lqcxO2lXraszunUV1zXnOTz1dWpQD8xU0kofzSzNhj/n+ok5FFl/KQ85e4UkBXy4PRSVwwk6BSuV3sR0FrcDbT7XjQEWfbcbQb+9F3WQX+Qc7gh6JNdhgYxRo98+i8DuK7m6hY38GIvb6Pu5TK+NfKdu6yD3Dw+Lk4SNt4emvrUDfRoNhjonHxa8Lybwvkw4D6FGCJjaavoV9T3rIuq4ZjXUb8gQIAju+12QmkziCH13rg4imRWlMkYN6Q9jlFFaBQcM5uG09E1Q8NwO5KlVX4X8k0X81va3RAmZCFeroaAB267ppEOYb2HaNQtsaTtqpqWPi2s+tN0R7ur0iaKNVN6XYTwVt6W21eUb6R5uXGdDe3J+NN4cqmYNmA0Xczb6UEZpqfjEWAgjuTqhQIBlIfRAU+Yf9kfMEs2K0c9yHfe3QNqvSaefvvIZKjCeAQCVWv8ElrjYbCuHAiIj3b83v2VgJR7J15CVb2goyeb1TW/fi/JsocrAVu0Cl9Y0WUFiXL8nEC8xszRCc1+18CH+3akPo5AnKff+azZZObI/0DAG+2Ov0xhYaRdI1UtZColGT8IPtlv3HH9nCzuHh6hrv8Cwzl9EQ== +api: eJzNV9tu20YQ/RVhnhJgYylGn/hU1U5gNWltxHJfBMEYkSNx0+Ule1GrEvz3YpYXkaLkyo4D9MmyOHPm7JnhzlEBFjcGggV82KJyaDNtYCkgy0mjlVk6iyAAl6IOY7mlR2qiQECOGhOypDm/gBQTggDaiEcZgQCZQgA52hgEaPrmpKYIAqsdCTBhTAlCUIDd5ZxrrJbpBgSsM52g5crOo1hpFQe0JEezCMpyyZgmz1JDhmEuJxP+E5EJtcyZPgRw78KQjFk7NfpSB4OAMEstpZbDMc+VDP1px18N5xQdarlmLaysKoSZq5JqxjK1tCHdoXjlIwREtEanLASTUuxF8fXS3e3aS9bHXivfitMB0jyGztgs6QfVVFZZpghTKEX7VeqUAlapITczo6sKoRQMd4LX8xDbptSgsUsw/R7AGw9QlqIJylZfKbTH5uCj12yIVwpIyGKfBUaR5C6juuvpOuBZz2EHtulzr1Ky6n/TPd7xWhBKHTqF+s1Hp9SvJkvf3TqbO/sWDg/LINJScmYWao27J4U9yIWBvE8l/8ZicsZgRP9Pov6efZbG/qespw45SH+eRvNqFOuL8CwFhhQ4txT9K+xlUNcdiFJAqAktRY9onwLsXL0RWnpnpedzuspVBTuaerFcHv2IIg8VbF0kIkU/oMh1BVsXaeRa7XiPnVfHL6tzxPpl5/fXXq9XrdKo1VZpBHvVKo1cbRWj3Oals3rPubw9Xo2e9wdnLJBju+OcvNZKlCXH/3R5OXQef6CSkfcVow9ae8/0QtsRkUWpvAeoVsJhgMrC3tPn3L7L8mCL7I/7OasIcm8Sszlm1fYbwhjc0P7KPB3qxRjN+ekxrfc2ceHPVZWu4zot3stbqXv6GNeVfE819mY+vxsAVr3tN/Wh8cId3+PNRpyxVc4zY703tjEEMM41bSX9NW6NlhkXXYdcjltvDQIM6W1jp51WEEBsbW6C8ThUmYsucEOpxQuUY8ylH3dDodPS7nzK9G72iXY3hBFpCBbLbsA9T1Y1K/2wtk2Yy0/EqtVGfupsnGn5TzUAtZOPqyyWRabrzKfXCk49udH0bgYC+BiVXpOL9xcTOFSxF8wvBYb+pWhq+8cgDlRozw8CKPFvBFjC5Of9A2bGPagtaI13vGkHS7bWwdLfdpwrlH7qPYGi7ucC6n5Cx9IbEBAc/OrZN3UpIOaRCBZQFCs09KBVWfLX3xxp7ttSwBa1xBWruCggkoY/RxCsURka0GyvEHjzpX5T3o72PqdPv+ltyo1ljvwfCPiTdoe/1fw9EDfDU9Qh0zCk3HaSB9cWT1k7/ne393Moy38BoeTnoQ== sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Unarchive Evaluator - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - evaluator - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-query-revision.api.mdx b/docs/docs/reference/api/unarchive-query-revision.api.mdx new file mode 100644 index 0000000000..42e10ab045 --- /dev/null +++ b/docs/docs/reference/api/unarchive-query-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-query-revision +title: "Unarchive Query Revision" +description: "Unarchive Query Revision" +sidebar_label: "Unarchive Query Revision" +hide_title: true +hide_table_of_contents: true +api: eJy9WVFz2zYM/is+PK13bJz19uSnZU17zdomWZJmDz6fj5Zgmy1FKSTlxPPpv+9AUopkyYrjuXtJZBn4AHwgCRDegOULA6Mx/JWjFmhgwiDNUHMrUnURwwhyxXW0FCucPuSo11ONK2FEqoBBxjVP0KImhA0oniCMoCk2FTEwEApGkHG7BAYaH3KhMYaR1TkyMNESEw6jDdh1RgDGaqEWwGCe6oRb8iF3KFZYSQLk63pwEywMLmIoigkBmyxVBg1hvTs9pX8xmkiLjKKBEdzmUYTGzHM5uAnCwCBKlUVlSZxnmRSRC3743ZDOpuZfpokaK7yFKM29UnBbKIsL1DU/3zsJBjHOeS4tjE4LtkWPM6rWV3PHYNOAl1xxLbiyxGNDtp+sglUSKpcSiJ8mffce17HH4PhWmvg+lmPH4LG5tmLOo2M6fxYgSwu5Xab6aOAerWAQc4t7opLoWysS7IU+J8CCQYLG8EUvdh/M16BeMJhLd0DUcXgcC9ohXF431mvL0ixNJXJVN1UanxSsfJXOvmNke/356JxwcVl+oDPtsMsN27CczJpv6jF024JI6CiXXP/yMZfyT5Oqt1e5zXL7BrpiFBaTPbW41nzdT0xTF17F6lcikzQOz/D/QOpl+kUY+yKtu4Jsqb+Oo7uw8HxtO2w3XXK3a5u16DCo8xpEwSDSyC3GU26Peoq897CDM0dWnsU/w8g3DxuMxCjxJxg597DBSEnX7JiVqCTrj7IclXwd1UrJVmWlJOyoVkq6Kisr1O0uZf/leh/UCwZG5otDYW5Jt2BwvEADh3y7mjQbsEeh4vSRsHuEFD6iOe6qvfSQBYNUxscGv/KQdKbh077QLxJ6SVgFAykS0Q3aWRi2UL44bYpbx/hCv4UqT+jiwk2EKvbv6IQNHya9HDh4WlHKol5xebDHFyVAwUDv6ubaBbCFc+Mat1Zpehb4u1qLbRhq04S0qF9Yqv5i5xvZ6k4CXMXPFbVNr/s2pWuNSskh5d+oVEM9c+lCRFxelRYKd63yld3ZDm3PbufmAmXcdQuseh0nUDD4getDT5LPuPa3HZnvW85f3dCUkRYdfVx3s+Pvwfs3JffO/YI1EvryThGGbuJmSnmsF7A0ybgWJlW17O1GwQfKvvu7oPUgrXtC90h/Z/ZR1fEv8wS1iPYCN5Zrax6FGxSgistHuqJzoSiAhNtoifQkxQ+sG7p1aHvZEcqv56louEqt4l76S04OLHmLzHMR7YeAT8JYE7wIH2o4H+gNqgi7wNrnWSlUmzVQut0Sqbbgrp0XcYNTg8oIK1bd26LjJtduhLjBwW0FU3NlzqXBggE+0S3dJfBgKx8IY/DVYbRM9Jyfd/hkrwIXhN+kgMvuErCPR2dSvsoTv8iePdmd1CDTgfU8QxuHg7OxocPB607h6ppZVog3MNk+mjp0TT2m8aQvoAq5qzT16LkZTjnFO+fuMnqw/n/RrWaBRUE6v7171x4d3nMpYjcYHHzQ2m21A+eGMVouZKMmNgVkGu2omC8XqZ7Ufkm9g26OYhZ9pbY2//Eiu0UdGYM7+valhUpxedNBrlnSAr2e3d1hnHv6+pL76e7uugXoc9tM6rdytj1ojpTBTZqWKc2/s9RYN+u2SxjBMKPJLT4OH/y8fFgOcs1w0xp8F8NqeA4MDOpVOSrPtYQRLK3NzGg4jGSaxyd8gcryEy6GPBPuJDAY5VrYtVM5u774jOtPyF1nPJ7UBW5pqfnF0xSr8sYzQb1POcgIM0jxj18RYUC/9FqFa4znqVMvDznn3ODs+gJqt0I4Pfn15BS2aW0Iu9IduV1S2nZfA9tioYqfqmTitghY5Mnvz1+QZ5SPhKsaXk8Wt0YugQyLT3aYSS7cXnBebEKCxxASDH5mLVynUSUZGIy6ft94zvOEwZJWzGgMm82MG/ymZVHQa6dHmQvT9hkRO95ALAw9x6F0tJyujhn45SbspjeD5469GUyZbkW5Dm0uQOiZO36acQfGslxUmyB3FkWY2RpC63yj1Vdtkeur2zsoin8BbdL6Pw== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Query Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-query.api.mdx b/docs/docs/reference/api/unarchive-query.api.mdx new file mode 100644 index 0000000000..628cc88b6d --- /dev/null +++ b/docs/docs/reference/api/unarchive-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-query +title: "Unarchive Query" +description: "Unarchive Query" +sidebar_label: "Unarchive Query" +hide_title: true +hide_table_of_contents: true +api: eJy9V99z2zYM/ld8eGrv2NjN7UlP85r1mrVb3MbZi8+XgyXYYkf9CAlmc3X633ckJUuynTTxpX2yLAL4gA8gAFXAuDEQLeCzJS3JwFJAUZJGlkV+mUAENkcdp/Kebu8s6S0IKFFjRkzaKVaQY0YQgT+9lQkIkDlEUCKnIEDTnZWaEohYWxJg4pQyhKgC3pZOz7CW+QYErAudITtE662wZOUEnGfb0WUCdb109kxZ5IaMM3E+mbifhEysZelchgiubRyTMWurRl8aYRAQFzlTzk4cy1LJ2Ec4/mqcTtVzq9QufpYBIS5sUGq8lTnThnTPvXdeQkBCa7SKIZrUIpDhsfLt1drTNLS7Vp73vgAmiXQ+oZoNRDuJxodVUSjCHGqxT2K9rEX7qlh9pZj7QrlVChyHrevvvRO1gIwYT3SmRRYHFA2Qs9XwTT+G41gQSx1bhfrVe6vUH6bI31xZLi2/hmMxSqbsiVqoNW4fJ2aoC89i9U9HptM4PcM/gdS/ik/S8HdpfSjIA/XncTRvCi/0jicxcOiC063F8PafZuqiZ6IWEGtCpuQW+TGDvY6VINMblt6fh1HeBbOjqSfLlsmPALkJZhuQhBT9AJCLYLYBaela+fb/NBzf459C1m+h9Xd8vShKy9YOpSXsRVFaunYoRtnNqbV67XRrAS/nnh+t+7d3b/4eMfBdnd30rWsn+8v5+eGw/huVTPwoHv2udaFPn9QJMUrlnppRsC+ginhw+pyu25urYXp0oX4qgoN+jprNsc2mmwzG4Ia6VvmwqCdjNHenx3jutqqFjytAN3K91Hb0BnYfDuMi0PdYUj/M57MDgyG3w6TetCvj6HOzMmbEaeG2ybIw7FdITiGCcanpXtK/47uwfY6rdousx7u9EwQY0vftumm1gghS5tJE43GsCpuc4YZyxjOUYyylr21DsdWSt15lOrv8SNsPhAlpiBbLvsC1K6dQIEOxXW6wlB/JBdEsulPLaaHlt5D1ZttNg5bjQubrwqs3tE29c6Pp7BIEuDACSZOzt2cT2KduIOxuAsb+JrTY/hjEHgu7+EEAZf4aABNmv3YHzjNHfoZ5z95hpvamacMB0388LhVKX+YevGqSuIAmiRDWXnfbBES9z4Euk0sBqSuAaAFVtUJDN1rVtXvdLMyLpYB71BJXjrpFBYk07jmBaI3K0IF/u2YBr740d+L1qNtkhn63Cc1doPeorPsHAv6hbf8Dxt/2tK2WqjmexjGV3FM8aE6urHaFPru6nkNd/w8G65Br +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-simple-evaluator.api.mdx b/docs/docs/reference/api/unarchive-simple-evaluator.api.mdx new file mode 100644 index 0000000000..a206dffe31 --- /dev/null +++ b/docs/docs/reference/api/unarchive-simple-evaluator.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-simple-evaluator +title: "Unarchive Simple Evaluator" +description: "Unarchive Simple Evaluator" +sidebar_label: "Unarchive Simple Evaluator" +hide_title: true +hide_table_of_contents: true +api: eJzNWFlvGzcQ/ivCPCUAYzlGn/apqp3ATtJa8JEXQTAo7kjLlHuEh1pV2P8e8NhLa6mSbAN6iqOd+Wb4zZBzrEHThYJoAp+WVBiqc6lgSiAvUFLN8+wmhghMRiVL+BKfFE8LgU9YCQOBgkqaokZpYdaQ0RQhglriicdAgGcQQUF1AgQk/jRcYgyRlgYJKJZgSiFag14VVldpybMFEJjnMqXaOmAciuZaWIHa18FNDGU5tZiqyDOFysJcnJ/bf2JUTPLCngIiuDeMoVJzIwZ3QRgIsDzTmGkrTotCcOYOPfyhrM665VohLSWaewssN14peMwzjQuULRcvnQSBGOfUCA3ReUkaUpy9bHU7d5R1sefCRWS7AFdPzCidp12h4MoszwXSDEpS/5QZIcCyVDl3owaXHqEkFm6LX4ch1kEJoIlJafYSwGsHUJakEspnP5DpFsn3Lhtrw58dc33UkkCKmnZ9oXHMbaypGHfY7XkbsrEFW0W7YymddX9pH/J5W8C4ZEZQ+e6zEeKLyrMPt0YXRr+HzSNbEK4x3VOLSklXO+nd0IUeybuU/7RkWo1eop4SqX/l37jS/0vrtkP21A/j6MGnYngO92Kg74LVLUn3ITsO6qoFURJgEqnG+InqXYCtBzimGj9o7vzZbuXSww5GjixTxG9h5NHDBiMxCnwDI1ceNhip6JqtbDXbz44rWfuQ9cfKVbGGr1e1UrFVW6kIe1UrFV21FSXM4thcvbe6toa8mnvh5HSzBnTr6hKlesEV+x7UbSQlPxblUXKPII5HEBYhQRq7nuyw9/mtKDm9hNjRV9zhHCVmrPNGVI5OD6oD1yEMZdXn7huRE6qkJ9meHBCD+0C87QNpUfBs37Zlk+JDeqTKkAu8Lb1HZ7/XLruT1ql2XSeZK9uVxw2lNlAol5zhPuz60fWAHAzQpZs553xh/Hz9FrYuOwYOGKCuqGvse/PT/ggv064H87K0Wr9dXPTn+O9U8NidbPBJSreBOHKIj1FT7spsyMdNAZGzztdD7lOrSvgUbg79LWe0asRTtXhu8dFMWkrRBTY5vV3UkTF4sF+fY7xZukzcubzpINcu2TW9nt3tx7jy9O0K7/XDw7gH6GPbDepjtWAa+IxoLRPc7J7kdg1V5Eq7hZNOIIJhIXHJ8Z+h30kN6yWGGq7b26dyWK+vwF/xalXlmixItC5UNBwykZv4jC4w0/SM8iEtuLtVCpmRXK+cymh88xVXvqhDNJm2BVyZ8ZnTFauDRgv+FS2HYUk2MjrJJf/Pp0PYkvnGzfHKs3nu1AOfI+fcYDS+AdL0ZnB+9vHsHDY57QjbK0KZuyKVbfcZyAYL9fmBAKbufoBGmv7efLCe2VCE9U7A2xnCjQk20KHxXz0sBOVZq+X10Z1AiK4NmcOD1vpMAYFoY8PYBHlKILGZEk1gvZ5RhY9SlKX9+adBaeM4JbCkktOZZXWyhpgr+3cM0ZwKhT1/6wcG3t2Fe/R+0NSo7jmqWGc20NZH+z8g8DeuNvei7pVIqmRaB5ERY1jolnLvUbNZV9+K8e39A5TlL/7Wfas= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Simple Evaluator + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-simple-query.api.mdx b/docs/docs/reference/api/unarchive-simple-query.api.mdx new file mode 100644 index 0000000000..0b46ac1aa3 --- /dev/null +++ b/docs/docs/reference/api/unarchive-simple-query.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-simple-query +title: "Unarchive Simple Query" +description: "Unarchive Simple Query" +sidebar_label: "Unarchive Simple Query" +hide_title: true +hide_table_of_contents: true +api: eJzNWFFv2zgM/isBnzbAa3rDPeXpeuuG9ba1XdPtHoIgUGwm1iZLriSnzQL/9wMl2bFrJ02DDriX1pHFj+RHiqK5AcuWBkYT+Fqg5mhgGoHKUTPLlbxIYASFZDpO+Qpnhme5wNldgXoNEeRMswwtapLfgGQZwgjc2xlPIAIuYQQ5sylEoPGu4BoTGFldYAQmTjFjMNqAXeckZ6zmcgkRLJTOmCXFhUOx3AraQAauBxcJlOWU8EyupEFDEG9PT+lfgibWPCfLYQTjIo7RmEUhBjdhM0QQK2lRWtrO8lzw2Dk6/GFIZtMwK9dEg+VeQ6wKLxSs5dLiEnXDvHduRwQJLlghLIxOy8iT4XTJ9dXC0dTG9aQ137fpKKN6RRZCALleabwk2TJqu30c1HkDoowg1sgsJjNm9wE2QpUwi28sd/bs1vLOww7OLCkp8uR3KPnmYYOSBAX+BiXnHjYoqeiau7w/TI9L7kPI+tvn/JavF9VSsVVrqQh7US0VXbUWI4rlsbk6Jtkygpczz9u0EK4SNiFZknA6E0xct05tR+lcKYFMNrVUnkzLqFpS8x8Y272mfHBGkMjxxnQ5rKpVS3M2b680fejXBTHXcSGYfnWpPnNj/zFKvrkqbF7Y1/AcLzvi8CySbgNHGVr2/+XoQyHEkwxxi9mBUkxrtt6fPG3Z55H6hcikAsAek9q+se65TNQ9kbfvWsN7NC9bci89ZBmBEslLg195yDICiQ+HQj9ZVy4Jq4xA8Iz3g/Ym3SOUz06a/NYJ6v22oSwyauaYiVEmfo3ag/BjupcDB0+FVVrUKyaOtviiAigj0Mz2Nzjdw9XBuSHZspPF2w3/1rnYhaGKzoVF/USq+mZXad9Aht4NmEy2J69Lr3urqP2TigySfkUqDc3IqSWPmbiqNJSu/fRVw+kOp3+3cQuOIulrkusj7zaUEfzE9bEX6ieksgIrJopDe9FnF8vK07KnnPUXUv+ZcHj9+u7ML6NWQJ8+KdzQh4qZURyb3ZfKcqa5UbIRvd0oeEfRd3+XlA/Cuid0j/R3bu9lE/+yyFDz+CBwY5m25p677yiUSfVInzKMS3IgYzZOkZ4E/4lNRWOHdpAeLn0+z3jLVLqqD5JPGRmQsg6Z5zw+DAEfuLEmWBF+NHDe0wrKGPvAuvWs2tT4JqNwuxSpj+CukxczgzOD0nDLV/3Hoqfp63bxzOBgXMM0TFkwYbCMAB9YbGcugEdreU8Ygy8Oo6NiT/28xQd7Fbgg/DYFTPRfAYdYdCbEsyzxSba1ZHdQw54erO2IYRIKZ+tAh8LrqnDdbVU3xGuYPi5NPbKm6dNkus+hGrnvatoj56YcN7jihit5zlxP9hz5sZvROJTjJet5SVmSxJ9v33bHK9+Z4Ikbngzea+2O2ZGzlQQt46J1H7Y3CBXvuC2fvqD2hPWz8ga6Twmz3HfNfkFj2BK3HfXurY6MwS29fSpJyS+vOuxrX2eBXs/ubjfOPX37Qvvx9va6A+hj2w7qt2rWN/DZMPgaZn0Z2lTRNDBXxrrZn01hBMNc44rj/dCPBod3fog43FRTwHJYjw8hAoN6VY0LCy1gBKm1uRkNh7FQRXLCligtO2F8yHLuzr3BuNDcrp3I2fXFJ1x/ROb64Mm0uWFMyeXTpb2tjhTLOXU6UTWoPCtsqjT/5XMgTCtTL1W6NnihnHhV0pxxg7PrC4iA3PCUnZ78cXIKj4lsbXYXdWy3877wGqJHLNT+052YuUMBFln21/YFWUYxyJhs4O2M26PZYKDC4oMd5oJxl/vOhk0I6QRCSClcDgv8GJO79mLUGO9uIzuNIKW8GE1gs5kzg9+0KEtaDgPQyZT6S83ZnKicbCDhhp6TcDV0DK1LCby6CSfm9WDbkbcdqAIsyePQxgKEnng7kHa1IK2yZxNen8Ux5rYh2CldlGZ1/l9fjW+hLP8DyqHqIA== +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Simple Query + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-simple-testset.api.mdx b/docs/docs/reference/api/unarchive-simple-testset.api.mdx new file mode 100644 index 0000000000..05dd162ab1 --- /dev/null +++ b/docs/docs/reference/api/unarchive-simple-testset.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-simple-testset +title: "Unarchive Simple Testset" +description: "Unarchive Simple Testset" +sidebar_label: "Unarchive Simple Testset" +hide_title: true +hide_table_of_contents: true +api: eJztWEtv40YM/isCT7vAbOwGPelUd9NF0t02Qez0YhgBLdHWbEePnRm5dQ3998U8JEuW7ThZB+ghpzgS+ZH8yOFQ3IDGpYJwChNSWpFWMGOQFyRR8zy7iSGEMkMZJXxFj4qnhaBH7USBQYESU9IkDcQGMkwJQvDvH3kMDHgGIRSoE2Ag6VvJJcUQalkSAxUllCKEG9DrwmgqLXm2BAaLXKaojfHSomiuhRHwXgY3MVTVzCCqIs8UKQNyORyaPzGpSPLC+A8hjMsoIqUWpQjuvTAwiPJMU6aNOBaF4JENd/BVGZ1Ny7FCGjI0dxaivHRK3l+eaVqSbDn40UowiGmBpdAQDitWE2KtZevbhSWri7wQNg+HBRJUlvgIfbRbQe/MPM8FYQYVax5lpRBgeKrdu0YVTBqUijlYidGPYjqIygTrxPL5V4p0P3WfbKB9vIpBShq7XmAcc5MYFHcdMnp++sJpwdap6VhK590n7fD224KIy6gUKN99KoX4XeXZh9tSF6V+D7uhGhCuKT1RC6XE9VFid3ShR+4x5T8MmUajV1f/J1L/zL9wpZ+k9VCQPfXncTRxpej71kkM9F0wuhXrdp2XQV21ICoGkSTUFD+iPgbY6pUxavqgufXnsJWPDjYYWbLKIn4NIw8O1huJSdArGLlysN5ITdd8bS6e0+zY2+UUsn5d2ytny9dZrdRsNVZqws5qpaarsaJEuXxprY6NbsXgfO75yHH3Duheg/UV+MjjnablW+/TLpzegOubMriJbZ84cP82lvuu+jHoTBS1px8G58UeN7hvfeet77xq3zl3z9gzO5884+wZcOvuN3vWLFHPtW8D1wkD19uk/wqTfv/qfCP1xaReGTKf+pw1s8CLBoqTvpTvacUVzzPnSv+D+QjC2C5qPM6P6DYrk6oyOj9fXvY3LH+h4LHdnwS/SZnLl69XYtLIhfl1YKQSedR5+5xCnu0mahvyl9w5aFuTWu4bIreHTSlctrJ+WNSSEUzM2318b5dhUxuXM+3lWjWzpdexeziMK0ffseReTyZ3PUCX225SH+qlX+DqIZg0S7+UdJKbxWCRK7cE1AmEMCgkrTj9M3BbwoEff9Vgsx2Eq0GzTAQzwMpVvTospYAQEq0LFQ4GkcjL+AKXlGm8QD7AgttzpCgqJddrqzK6u/lM62vCmCSE01lbYGwqzNVMV6xJFxb8Mxn2/NJyVOokl/w/Vwh+b5k4LUMPzxa5VfdMjqxzwejuBhiYMBxvw4ufLoawy2ZH2BwOjOzhqG3b18B2WGjiBwaU2pMBmjD9ZfvCeGbSkGLWwjuSvJ01hSdD0796UAjk9ghYLzY+r1PweTUJs2jQLDQVMAg7295temcMElMf4RQ2mzkqepCiqszjbyVJk8EZgxVKjnPD53QDMVfmdwzhAoWinq9NU4F39/7svA+2F0I3hjrLmUnxCkVp/gMGf9O6u6G2fSGpi2jjBUZRRIVuqfbamKm25iTc3Y4nUFXfAQ31+Y0= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Simple Testset + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-testset-revision.api.mdx b/docs/docs/reference/api/unarchive-testset-revision.api.mdx new file mode 100644 index 0000000000..ef68a09b58 --- /dev/null +++ b/docs/docs/reference/api/unarchive-testset-revision.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-testset-revision +title: "Unarchive Testset Revision" +description: "Unarchive Testset Revision" +sidebar_label: "Unarchive Testset Revision" +hide_title: true +hide_table_of_contents: true +api: eJztWUtv20gM/isCTy0wjbPBnnTabLNFsu02QeLkYhgBLdH2dEePzoy86zX034t5KZZlO46rAHvIKY5FfiQ/cjgUvQKNMwXxCIaktCKtYMygKEmi5kV+lUIMVY4ymfMFPWon8yhpwRUvcmBQosSMNEkDsoIcM4IYNgUfeQoMeA4xlKjnwEDS94pLSiHWsiIGKplThhCvQC9LA6G05PkMGEwLmaE2flQWRXMtjIB3OLr1NqKrFOp6bKBVWeSKlEE7Oz01f1JSieSliQliuKuShJSaViK69cLAIClyTbk24liWgieWgsE3ZXRWax6W0hCkubOQFJVT8o7zXNOM5JqnH60Eg5SmWAkN8WnNOhRZs/nyemp5bJsIsguUHHNt2GxJ76esZo1EXgkBhqNNEh8csuWQQf922vghnv7jcPgoNZ9i0qeBcw8ZLFR6XsjewB1azSBFTQeiGtEPmme0F/rCANYMMlIKZ3ux98H85dVrBlNhO8buap2jsp0iQX8GOwYnRSEI870WL1FFwwalZg5WYvKzmA6iNmXoxIrJN0p0t7N8soF28SybGtteYJpy0y5Q3LTIOIDs0DBalrJJ+5v18LbbgoTLpBIo332qhPhTFfmH60qXlX4Pm6EaEK4pO1ALpcTlXmI3dKFD7v7a0mg1OnX1fyL1a/GFK/0srbuC7Ki/jKOhK0V/vx53hr+i7RXtu/A4qIs1iJpBIgk1pY+oe+1dHx1sdG7Jqsr0NYzcO1hvJCVBr2DkwsF6I4GuybLHCyqQ9fvSX1GBr16tBLYaK4GwXq0EuhorC5LdGenwcn3w6jUDJarZsTB3Rrdm0F+gnkPcvE2645+5Bh95utH+fBN/3oXDW3m4c6OrVIVZbctN3ljePqm+1mTXL/Zdg/vWwd462Kt2sL57xpYp/OBpacuoHLrf+EVTSZiQ30a3A0a3t3eGV3hn6F6db6QeTeqFIfO5F2MzCxw1UBz0zh2Wec6V7qv34Qg/p92sBevaaP16dtbdIj6g4KndEUZ/SFnI41eIKWnkwnzaMVaJImk9fUkxjzeT9RT0l8I5aNuTmm0bJLcsgJzIblFLRjQ0T7cx/rT5Hdm4nGkv11oZBnodu7vDuHD07Uvv5XB40wF0uW0n9T4su6PN/TLYFj4vzEq8LJS2y289hxgGpVni0j8DP/2qQVjqqsFqyyq8HjQrdTAjrVyE9XklBcQw17pU8WCQiKJKT3BGucYT5AMsuT1ZipJKcr20Kuc3V59peUmYkoR4NF4XuDP15iqoLdYkD0v+mQyXfnHvNpH8P1cWfmU/d1qGLJ5PC6seNpfWuej85grW3tLg9OSXk1PY5LYlbI4KJvaoBNv2MbANFpr4gQFl9pyAJsx+e3pgPDMpyTBfw9ubyo0liKdD0796UArk9khYP1Y+yyPwWYZmf61sNftMA4N4+88eT8keM5ibyolHsFpNUNG9FHVtvv5ekTT5HPvl+8SwO1pBypX5nEI8RaGo43fTcODdrT9X76OnC6MdT8h5bhK+QFGZ/4DB37Tc8ZuNbR7zUFsrL3meJFTqNYxOrzNF2ByWm+u7IdT1D1T4DRM= +sidebar_class_name: "post api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Testset Revision + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-testset-variant.api.mdx b/docs/docs/reference/api/unarchive-testset-variant.api.mdx new file mode 100644 index 0000000000..6113c76264 --- /dev/null +++ b/docs/docs/reference/api/unarchive-testset-variant.api.mdx @@ -0,0 +1,71 @@ +--- +id: unarchive-testset-variant +title: "Unarchive Testset Variant" +description: "Unarchive Testset Variant" +sidebar_label: "Unarchive Testset Variant" +hide_title: true +hide_table_of_contents: true +api: eJzNV01v20YQ/SvCnBJgYzlGTzxVjRvYTdoYsZyLIBgjciRtuvzI7qxbVeB/D/aDlEhKiuM4QE+iyJn3Zt7M7s5ugXFlIJnBlAwbYgNzAWVFGlmWxXUGCdgCdbqWD3TPweb+AbXEgkFAhRpzYtIOYwsF5gQJ9OzuZQYCZAEJVMhrEKDpi5WaMkhYWxJg0jXlCMkWeFM5BMNaFisQsCx1juyisB6FJStnEMMdfQoUo+sM6nrukE1VFoaMA7s4P3c/GZlUy8olBAnc2jQlY5ZWjT5GYxCQlgVTwc4cq0rJ1Oc//mycz3YvwEo7dVgGhrS0wSnGLQumFem9QN94CwEZLdEqhuS8Fn2BPGux+bD0InYZGlOZda1OC1WL1qKwSoGTpi+dk0wAapZLTJ+TYBIhI8NS+RY7nuIajW+tFGPdBkEsylIRFidZr9CMpi1KLQKsxvRHMQNE7coWzMrFZ0p52IxvfaJDvFpATozdKDDLpGsxVDcdMY4VYA+2abIOU77ovtlP7zAXpFKnVqF+8dYq9Ycpi1cfLFeWX0I/VQcimfJHeqHWuDkpbM8XBuKecv7Tiek8Bn31fxL1r/K9NPxNWY8lOXD/Po2moRXjjvwoBYYhON9adPfPp0Fd7kHUAlJNyJTdIz9yz8mQ6RVLH89xljcBdjTxYtkq+xkkdwE2kmSk6CeQXAbYSNLItdg84y7diPXbJu7TjV7PytKo1bI0gj0rSyNXy2KUXT21V2+dby3g+cLzw8k3j484yhw6QB7t3E40de2cfrm4GA5An1DJzI83o9+1LvXTp5+MGKVyT/Fw6BuoMu18/Z59eF73zpNdzu/LEKCrUm5Wh+bG3VlhDK5ot3keN/VijKbu6yHBdzPrzOcVqKPdXrF38gZ1j6dxGeQ7Vd2r6fRmABhq2y3qXTOkj3qTMfjhY126Sd6dIiLM4AmMK00Pkv4ZxwnTjOM0asbb4QBfj9trAAgwpB+amd9qBQmsmSuTjMepKm12hisqGM9QjrGSfikYSq2WvPEuk5vrd7S5IsxIQzKb7xvcul4L3dM1awuHlXxHTsd425hYXpda/hdaIl401sHLCSWLZendm/HUBzea3FyDAJdGUPD87PXZOfR17Ri7ZYKpXyYNt/8MoqdCmz8IoNyvEWDC/NfdBxdZVRrOsdjDO1XG3jEc1WD6l8eVQulXgw9jG0s8g1hiaG8cxqUcywwCkoM3tV2l5wLWpWEHtd0u0NCdVnXtXn+xpF0x5xFv4aSdbSGTxj1nkCxRGRpE3e408OJjXFAvR7vBqJtNU/Bi48NW1v0DAX/T5vAt028a66avttFwkqZU8R7EYI9zDdiukpu7KdT1V5xFLi4= +sidebar_class_name: "put api-method" +info_path: reference/api/agenta-api +custom_edit_url: null +--- + +import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; +import OperationTabs from "@theme/OperationTabs"; +import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + + + + +Unarchive Testset Variant + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-testset.api.mdx b/docs/docs/reference/api/unarchive-testset.api.mdx index b7e808abc0..da988934dc 100644 --- a/docs/docs/reference/api/unarchive-testset.api.mdx +++ b/docs/docs/reference/api/unarchive-testset.api.mdx @@ -5,834 +5,67 @@ description: "Unarchive Testset" sidebar_label: "Unarchive Testset" hide_title: true hide_table_of_contents: true -api: eJydVcFu2zAM/RWDpw0Q4qzYyadl3YAG3dCgzXYJgkKVmVitLamSnC0z/O8DZdlxkgYDdopjPVKP75F0A55vHWQrWKLzDr2DNQNt0HIvtZrnkEGtuBWF3OGj7zDAwHDLK/RoKbYBxSuEDOL5o8yBgVSQgeG+AAYWX2tpMYfM2xoZOFFgxSFrgKv93Sbk8HtDOZy3Um2BwUbbinu6v5Y5tOwU0a4ZeOlLehXJJ/McWnpv0RmtHDq64mo6pZ8cnbDSUFmQwUMtBDq3qcvkPoKBgdDKo/KBmDGlFEGF9NlRTDOibSxp5GV3g9B1FxQZSuVxixYOBK8DomW9RG+Wrp+eUXg4K2tcvKrLEtp1S6lOog4iryKjc4WGWtuWUny8ujqX5icvZR4KT75aq+3/65Kj57KkJ+mxcueAUouj00vdMBKg17ZdHyTg1vL9SLdvuiNIglduO3Jm6K4e+h2d41uEIdllaBAjWdLpv+SnurqrI27kxEHeTt3LZXzp5Hvrsh5ys1wuzhJ23h6b+qMf4mQ5DHGFvtA04Ua7bqh9ARmkxuJO4q809qpLm8Ngt+mwDoCBQ7vrd0BtS8ig8N64LE1Fqet8wreoPJ9wmXIj4ZTTLJwm1wQN4+xQ1Fb6fcg3W8xvcX+DPEcL2Wo9BjxQw3UtdAwb3ONG3iKJGVfTrPaFtvJP1xdxOxVdFKkl1UaH8Chs5PaZixdUtM6ozo72dPJhMr1UTAxIZot5nBsuwtz0PAIM2Ilcg1DAAKswNOCRV58OB8SSjKq4GuV7y9cjYoMiHn/71JRchrEI1zfR8hVEy2FYUA4YZEf7/OD7mkFBHZOtoGmeuMMftmxbev1aoyX31gx23Er+RFquGsilo+ccsg0vHZ5RHPYLvLuPY/Q+AfY29d5hRfbueFnTP2Dwgvvjb1BYEUXfQE0EzIRA40ehZxuNOm2YjcXdwxLa9i/NUHRa +api: eJzNV9tu20YQ/RVhnhJgY6lGn/hUNW5gN2ktxHJfBMEYLUfipstL9qJWJfjvxS6XN1GyHdcB+iSJO3Nm5pzhzqgEgzsN0QqWpI0mo2HNIC9IoRF5dhNDBDZDxROxpwdT2wCDAhWmZEg53xIyTAkiCOcPIgYGIoMICjQJMFD01QpFMURGWWKgeUIpQlSCORTOUxslsh0w2OYqReOiWo9ihJHOIKQ3uYmhqtYOURd5pkk7kMvZzH3EpLkShUscIriznJPWWysnn4MxMOB5ZigzzhyLQgru65x+0c6n7CVWKMeCEXUEntvaKeQrMkM7Ur0E33sLBjFt0UoD0axiDSE+Wna43Xqyhshb6QU4b5Cg9sRzDNV2hiGZTZ5Lwgwq1j7KrJTgeGrSu0Y9WbYoFathFfL/illDVK7Y2izffCFuxtJ98IWO8SoGKRkcZoFxLJwwKBcDMkZ5hsbpwTbSDCKlm+GTfnmnYwEXiluJ6s0HK+WvOs/e3VpTWPMWjkt1IMJQ+kwvVAoPjxJ75Asjch9z/s2R6TxGffV/IvX3/JPQ5klazxU5cv82jpZ1K4Z761kMjFNwvhUb3jovg7rqQVQMuCI0FD+geQywd1fGaOidET6f81He17CTuSfLFvH3CHJfw4YgMUn6DkGuatgQpKFrc3CD53lx/HR5Dlk/H/zI6fh61SgNW22UhrBXjdLQ1UbR0u5e2qt3zrdi8Hrp+ZH+5Pg4NTme9monf1U56x8vL8eLwh8oRezXgMkvSuXq5VtCTAaFdN/CODg2kDkfnH7LzbuujiZIV+ynvE7Q6ZLq3am9qpsOWuOOuuvyvKknY7J0p6eY7na6la+rDh3sevJ29Nbsni/jqqbvMVmvl8vFCLDWdijqfbO0Tpbt0pqSSXK30Ra5rpdYk0AE00LRXtBf07Ct6WnZLbLVtF1/gYEmtW92XqskRJAYU+hoOuUyt/EF7igzeIFiioXwTa6JWyXMwbvMFzcf6XBNGJOCaLXuG9y5nqq7ZGjWCoSF+EiOr7Btz61JciX+qaUPC3dSezlCRLbNvXvgbu6Tm8wXN8DAlVEzNbv44WIGx/wNjN3rgNy/Dk1sfwzsiIW2fmBAqX8XwBCmP3UHLjPHf4pZD++UXEeDNbBg6G8zLSQK3+0+fBmUXEFQEtrNWwODaPC3pJNzzSBxjRCtoCw3qOleyapyj79aUk6xNYM9KoEbx9+qhFho9z2GaItS0yjF9tqAN5/D2/F20u01w9QbVTMn6R6ldb+AwZ90GP6V8m9+0jRNGQzmnFNheq6ji8p1V9vyi9u7JVTVv0olw3E= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Unarchive Testset - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-workflow-revision-rpc.api.mdx b/docs/docs/reference/api/unarchive-workflow-revision-rpc.api.mdx index 129828ef6f..92d1c5fa3d 100644 --- a/docs/docs/reference/api/unarchive-workflow-revision-rpc.api.mdx +++ b/docs/docs/reference/api/unarchive-workflow-revision-rpc.api.mdx @@ -5,1999 +5,67 @@ description: "Unarchive Workflow Revision" sidebar_label: "Unarchive Workflow Revision" hide_title: true hide_table_of_contents: true -api: eJydVcFu2zAM/RWDpw0Q4qzYyadl3YAG3dCgTbdDEBSqzMRqbUmV5HSZ4X8fKMuO07QbsFOU6JF6fHxkGvB86yBbwU9tHzelfnawZqANWu6lVvMcMqgVt6KQO7x7jqA7izvppFZ31ghgYLjlFXq0lKoBxSuEDAaQzIGBVJCB4b4ABhafamkxh8zbGhk4UWDFIWvA7w2FOm+l2gKDjbYV90SiDlm89CUBrmPuZJ5D264ppTNaOXSU5Ww6pY8cnbDSUCGQwU0tBDq3qcvkOoKBgdDKo/IE58aUUoS60wdHMc2ImbGkipfdC0LXXVAkLJXHLdoRw/OAaNkgQ3hC7a82QaMYp+8fUPhRWN+HvkBo2QBWdVlCu25bdhJ+UHQVua3fzjmU37aU6+PZ2alaP3gp86BF8tVabf9fqhw9lyWdpMfKnQJKLY5uT0SKbhgp0cvdrg9acGv5fqTkN90RpB5Ubvuau3rod3SObxGGZG9DgxjJkm7/1Qeqq3s64kYtOcjbqft2GV86+V57rIdcLJeLk4Rdb4+bettPctJbIhl8xqBCX2gaeKOdD1PtC8ggNeRgfE7vucO0XwEu7X3t0mY06W06rAtg4NDu+q1Q2xIyKLw3LktTUeo6n/AtKs8nXKbcSHhJdxZuk3OCAg25Q1Fb6fch32wxv8T9BfIcLWSr9RhwQ17s3HUMGxrLjbxE0jkuq1ntC23l784ycV0VXRQJKdVGh/CoeeT2mYtHVLSZqM6O9nTyYTJ9q5gYkMwW8zhSXISR6nkEGLAXcg1CAQOswjyBR159OlwQS+pcxdUo399bfkRx0MbjL5+aksswO4FIE92wgugGYEB+AAaDI+Cw6+icHe//gy3WDApyWLaCpqEkt7ZsW/r5qUZLzV0z2HEr+T1JvWogl47OOWQbXjo84T1sJnh3HQfwfQLs9Xp6Ayjq/o6XNX0DBo+4f/GnFbZL0RusiYiZEGj8KPZkGZITh2FaXN0soW3/AFlgjuA= +api: eJzNWdtuGkkQ/RVUT4k0MV5rn+ZpvXYie5ONkW/7gJBVzBTQSc8lfcFL0Pz7qm8DwwALBEs8YZiqU12nqrt6juegcCwh7sM/hfg+4sWrhEEERUkCFSvy2xRi0DmKZMKm9PLqjV4ETZlkRf4iygQiKFFgRoqEgZpDjhlBDG1rlkIELIcYSlQTiEDQD80EpRAroSkCmUwoQ4jnoGalwZBKsHwMEYwKkaEyq9EWRTHFjUFYd+feB+ncplBVA4MtyyKXJA3cxfm5+UhJJoKVJjWI4UEnCUk50rxz740hgqTIFeXKmGNZcpZYJrrfpPGZLy2xFIYnxVyEpNDOya+c5YrGJJaWemUtIkhphJoriM+rqE2SjZvP7kaWymaM2niKgmGuDKEN8+2sVVFtkWvOwbDU4vHZQVsaIzh+oCZ+ndEbZOIioFBshMkxU7j0kCGCVpNCHA3coVURpKhoR1Rj+kGxjLZCXxvAKoKMpMTxVuxtMH979yqCEbfHx+aOZfIl0VIV2dpgw6LghPnWaLeyc+UQqsjA0RS5RrWB8B0RP9YgDnSiM8x/BfDGAlRVFIyK4TdK1JqD6pOlrA1n66KwuQhMU2ZOH+S9Bq07lC2cP41I2bD5y3J262NBwkSiOYp3nzTnf8ki/3CnVanVe1jN1YAwRdmOXigEzrbyuuILLXa3d6lC69Hq0FMi9WvxhUn1v7RuSrLlvh9Hj64V/cA+7DT4ivbUaY7Ww6CulyCqCBJBqCh9QXXUU/DKwXYuLVm6TN8iyJOD9UFS4vQGQa4drA8S6BrOjjjqAll/zvywC3wdNUpgq44SCDtqlEBXHWVKon3j2r1dn717FYHkenwozIPxNWPoaIl6DnF1mjRH8/Gy14IdivIkmEPghyNwgzAhTO37x34n/VtRcnoNseVqck8jEpQnjdMmLHSw10S58WWowrvcrhU5oZl8khedPWrw4Ik3N0osS5bvegFapXif21YIZAtvhvjB3e+8q6aqcKr3t5Pslc3OvQWlplAkpiyhXdh18swePeihK6unjNhYO0HpLWJdNQLs8g4WtKJrtO8IrVexPSB+0b3WnarKuP1+cdGWqZ6Rs9Qm1/koRCEO16hSUsjspPUtuWrAi6TxdJ8ttTQoXBcvsv5SJBhu9Zkcr9P31ogLzmSzqSWj82ierqN8oS32bV4utLdrCFKBXsfu5jSuHX3b6nvz+NhrAbraNov6FETVTkvBBKsETAqjvZaFVFZgVROIoVsalZBeu0E2k90gG8rufJ3eWnVr9Rbchg8irb1ywUSpUsbdbsILnZ7hmHKFZ8i6WDK7xyQlWjA1sy6XvdvPNHMjHuL+YNnADh3XRE2zun5Yss9k6PTysBO62E/XGV4Xdtc4SzHLR4V1D8KYXVznsncLS1d3OD/77ewcVultGJvdgondLSG2fQzRCgt1/hABZXargCLM/lg8MCszRfF6kcfbXs2VV2PPh6J/VbfkyPKlG7ArdB98oWGhkErb0r7YEEG8QV5f1HsQwcS0T9yH+XyIkp4Eryrz8w9NwpR04AXeoSG4P4eUSfN3CvEIuaTWyutjB97d+931vrMYXs2MQtlzU3Ojt5lvEMF3mm3654A9Qyahv+be9DJJqFRLIK0jzzRivWV6dw+PUFX/AaoBjX0= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Unarchive Workflow Revision - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - revision - object - -
    -
    - anyOf - - - -
    - - author - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - date - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - data - object - -
    -
    - anyOf - - - -
    - - service - object - -
    -
    - anyOf -
    -
    -
    - -
    - - configuration - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - variant_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - - object - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - - object - - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - - object - - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-workflow-variant.api.mdx b/docs/docs/reference/api/unarchive-workflow-variant.api.mdx index 78a04ea5c0..e855606aae 100644 --- a/docs/docs/reference/api/unarchive-workflow-variant.api.mdx +++ b/docs/docs/reference/api/unarchive-workflow-variant.api.mdx @@ -5,1008 +5,67 @@ description: "Unarchive Workflow Variant" sidebar_label: "Unarchive Workflow Variant" hide_title: true hide_table_of_contents: true -api: eJydVU1v2zAM/SsGTxsg1Fmxk0/LugELuqFBv3YIjEKVmVitLamS3C4z/N8HyrLjNM0G7BQleqQeHx+ZFjzfOMhW8FPbx3WlXxzkDLRBy73UalFABo3iVpTyGe9eIujumVvJlQcGhlteo0dLWVpQvEbIIN7fyQIYSAUZGO5LYGDxqZEWC8i8bZCBEyXWHLIW/NZQpPNWqg0wWGtbc0/PNyGLl74iwG2fOlkU0HU5ZXRGK4eOkpzOZvRRoBNWGqoAMrhqhEDn1k2VXEYwMBBaeVSe4NyYSopQcPrgKKadEDOW5PCyf0Hopg+KfKXyuEE7IXgWEB0bRAgvqO3FOggUw/T9Awo/iRr0j+VBx0asaqoKurzr2EH0Ts5VZJYfTTnW3nWU6uPp6aFUt7ySRRAi+Wqttv+vU4Gey4pO0mPtDgGVFnu3BxJFJ0yEGLTu8p0U3Fq+nej4XfcEqQG127zlrAH6A53jG4Qx2XFoECO5ptt/tYHq6p+OuHzq3UHeXt3jZXzp5XvrsQHy7fp6eZCw7+1+U2+G+U0GRyS34/zW6EtNU2606+fZl5BBaiw+S3xJ77nDdJh7l0ZPu7TdjXiXjhsCGDi0z8M2aGwFGZTeG5elqah0U5zwDSrPT7hMuZHwmus83CZnBAUab4eisdJvQ775cnGO22/IC7SQrfIp4IqM2FtrHzZ2lRt5jiRyXFLzxpfayt+9X+KeKvsoUlGqtQ7hUfDI7TMXj6hoJVGdPe3ZyYeT2bFiYkAyXy7iPHER5mngEWDAXsk1CgUMsA7DBB55/Wl3QSypbzVXk3x/7fcew1Eaj798aiouw9wEHm20wgqiFYABmQEYjHaAccnRMdvb+jtP5AxKMle2gralFDe26jr6+alBS53NY5570nnVQiEdnQvI1rxyeMB63Enw7jKO3vsE2NvVDN1X20C3augbMHjE7f4/VVgr5WCuNgLmQqDxk9CDLUguHMdoeXF1DV33B0hBhwo= +api: eJzNV01v20YQ/SvCnBJgY6lGTzxVtRNYTVoLsZweBEEYkSNxkyWX2Q+5qsD/XuxySYmipDiOAvTkD868N/NmdnZ2CwZXGqIp/C3Vl6WQTxpmDGRBCg2X+SiBCGyOKk75muZPwWi+RsUxN8CgQIUZGVIOZQs5ZgQRHBrOeQIMeA4RFGhSYKDoq+WKEoiMssRAxyllCNEWzKZwENoonq+AwVKqDI2Lw3oUw41wBnXEvU8VR2+UQFnOHLQuZK5JO7TrwcD9SEjHihcuJ4jgwcYxab20ovcxGAODWOaGcuPMsSgEj70E/c/a+Wz3IiyUE8jwiiGWtnIKgfPc0IrUXqQ33oJBQku0wkA0KFlHIk+bb+6XXsc2RWPLk7bZea1K1ljkVghw4nTUc6oxQGX4EmNzQYZhgAwMS+E77XSSXM9jq43MjgawkFIQ5mcZR7p3UyGUzMHRGoVFI9WPIL5tQCrQ1GaY/wjgnQcoS1YbycVnis2Rzn7nJevClQwyMtgOApOEu35FMW7JeqqUe7B1x7aYskX7P/vZHeeCmKvYClSv3lkh/tAyf3NvTWHNazjM1YFwQ9kzvVAp3JzV9cAXOuqec/7Tiek8Oh36fxL1L/mBa/NNWU8l2XH/Po0mVSuGAf8sBbohON+StYfxy6Bu9yBKBrEiNJTM0TxzeiVo6I3hPp7TLDcVbG/oxbJF8jNIHivYQJKQoJ9AclvBBpJarsXmgvO+Fuv3TZj4tV4XZanValhqwS7KUsvVsGhhVy/t1Qfn6y6Pi4XnN51v3x9hMTp2gzzfu1mQytJ5/Xp93d2nPqHgid+Wem+Vkurly1RCBrnw60B1PRwaCBm3vn7PJJ6VBzfKLukPsgrQ1SnTq2N76O620BpXtBufp029GL2J+3pM8d0OPPV5VdTBbq/cO3krdU+ncVvJd668d5PJuANY1bZd1Md67e8dbtrg949UusdBIXX1DDApRNAvFK05PfXrjVX3w3qr+9sjj4Ky3zwugIEmta4fElYJiCA1ptBRvx8LaZMrXFFu8Ap5HwvuD4Sm2CpuNt5lOB69p80dYUIKouls3+DB9VvVQW2zpnhY8PfktAxPmKE1qVT836otwuMlrbycWDxfSu9er7s+uN5wPAIGLo1KxcHVL1cDONS2ZeyOCsb+qNTc/jOwAxWa/IEBZf6cgCHMftt9cJG5koQdNeCdLeXBbRzkMPSP6RcCuT8SPo5tqPIUQpVh94rRLulQaWAQHX8A7oo9Y5C6zommsN0uUNOjEmXp/v3VknL1nAXAhVN3uoWEa/d7AtEShaZO3M3AgVcfw7l63dttSO186prnGx+3sO4vYPCFNider354pHVvbYPlMI6pMHsYnVnnmrA5LOP7hwmU5X9LvE7O sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Unarchive Workflow Variant - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - variant - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    - -
    - - artifact_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - artifact - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - - object - - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/unarchive-workflow.api.mdx b/docs/docs/reference/api/unarchive-workflow.api.mdx index 27a7b9151d..c015a7c5ee 100644 --- a/docs/docs/reference/api/unarchive-workflow.api.mdx +++ b/docs/docs/reference/api/unarchive-workflow.api.mdx @@ -5,598 +5,67 @@ description: "Unarchive Workflow" sidebar_label: "Unarchive Workflow" hide_title: true hide_table_of_contents: true -api: eJydVU1v2zAM/SsGTxsgxFmxk0/LugENuqFBm66HIAhYmYnVypYryekyw/99oL/i1CkG7JQgeiQfH/mYEjzuHEQreDD2eavNq4O1AJOTRa9MNo8hgiJDKxO1p81rCwIBOVpMyZPl6BIyTAkiQOvVFqXfqBgEqAwieCnIHkCApZdCWYoh8rYgAU4mlCJEJfhDzrHOW5XtQMDW2BQ9Fy7qNF55zYBZmzyYx1BVa07pcpM5cpzlYjrlj5ictCpn8hDBXSElObctdHDbgkGANJmnzDMc81wrWfcaPjmOKQfMcstKeNVUkKZoglrCKvO0IztgeFkjKgG9UFwiO9xsa5HaOPP4RNIPwjrtuwahEj04K7SGal1VYhR+VHTVcluPc/ZtVxXn+HxxMVbpF2oV1xoE36019v8lismj0vxNeUrdGKCNPHkdidNuwUCBTuZqfdQArcXDQMEfpiHI2qdud26rOuhPcg53BH2y96G1GMGSX/+lP/fVlG5xg1Ec5W3Ufb+Nb41854p1kKvlcjFK2Mz2dKj3nWuDh6NrU/KJYU/nxvnaxT6BCMLc0l7Ra/iIjsJueV1Ydl83Kq7C/g6AAEd233m/sBoiSLzPXRSGUpsinuCOMo8TVCHmCt5ym9WvwSVDgZ3sSBZW+UOdb7aYX9PhijAmC9FqPQTc8eI1q3QK66eIubomFrU9SbPCJ8aqP81+tEcpaaJYNZVtTR3eXZmG21eUz5Tx+eE+G9rTyafJ9L1m2oBgtpi3/mEnR/1pbGAg3sjVCwUCKK3NA54w/XJ8YJY8rxSzQb6z8z1h1kvi6bcPc42q9kddv2xHv4J29CCAhw/H2+VAQDRYAKbeb8BaQMIrFK2gLDnw3uqq4p+be89zjJXDR83+2KJ2NGLX3xj4cNta6WMA4jzrZzqM/l/2qAtG1iu0R6u4XL0xopsw82hCZ1JS7gdRo7vGWXqDLG7ullBVfwELanMP +api: eJzNV01v20YQ/SvCnBJgY6lGTzxVtRNYTVoLsdwcBMFYkSNxkyWX2Q+5KsH/XszyW5QcxXGAniRxZ97MvBnuPOVg+dZAsIRPSn/ZSPVoYMVAZai5FSqdRRCAS7kOY7HDh8fKCBhkXPMELWryziHlCUIAtcGDiICBSCGAjNsYGGj86oTGCAKrHTIwYYwJhyAHu8/I1Vgt0i0w2CidcEtxnUexwkoyqDMczSIoihVBmkylBg2hXE4m9BGhCbXIKHcI4M6FIRqzcXL0sTIGBqFKLaaWzHmWSRH6UsefDfnkncwyTURYUUYIlSudqoRFanGLupPhlbdgEOGGO2khmBSsocSHS/e3G89XH3ojfRdOGwjzEDpjVdI3qjJZKyWRp1Cw5lHqpAQiqc5tZkZXJULBCA53XDpulf4RxLcNSAkau4SnPwJ44wGKgtVGav0ZQ3tkCt55yoZwBYMELe8nwaNIUI+5nPdoHaRZDWEHtu5yL1Ky7j/pVnc8FoRCh05y/eqdk/IPo9I3t85mzr6Gw1oJRFhMzvTiWvP9k7we+MKA3aec/yQyyWMwof8nUv9SH4Sx36T1VJED9+/jaFGOYnUJnsXAMAXyLVj/Anse1HUHomAQauQWowdunwLs3LsRt/jGCp/P6ShXJexo6slyWfQzgtyXsFWQCCX+hCDXJWwVpKZrvacldl4cv6nOIev3vd9eLV8vGqVmq4lSE/aiUWq6mihGuu1zZ/WOfGl5vFh6Xh18e38cWx1nuDUyoijI/NfLy6Hq+JtLEXlNMXqrtdLPlxwRWi6kFwDlQjg0kCrsnX7P3bsqDnZIW+0HVSZInUnM9phKa/eDMXyL7YV52tSTMVrQ6TGqW4W49HWVoSu7ToNbekt2T5dxXdL3VF9vFov5ALDsbb+p97UIHn1qRXCCNlYkkTNlrBfFNoYAxpnGncDHca39zDjvKONi3ChqYGBQ72oV7bSEAGJrMxOMx6FULrrgW0wtv+BizDPhJ91g6LSwe+8ync/e4/4GeYQaguWqa3BHY1UOSt+s6RHPxHskyir9PnU2Vlr8W3a/UvBx6UWciHSjvHtF39QnN5rOZ8CAyijJmlz8cjGBQwp7xvRG8NC/EXVsfwzsgIWmfmCAiX8dwCJPfmsPKDPqQCU+K7yjHTtYrxUNFv+x40xy4Sfex8+rZi6haia0Ut4Ag6D/V6ft6IpBTNMQLCHP19zgvZZFQY+/OtTUtBWDHdeCr4nCZQ6RMPQ9gmDDpcFBks3lAa8+Vu/I61Grb/rJ141Nqaskz+kXMPiC+4P/Z/4CiOvBySuLaRhiZju+g/uKJqwZ/Pnt3QKK4j/5nOJ5 sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Unarchive Workflow - + + + + + + + + + + + + + + + -
- -

Query Parameters

-
-
-
    - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - workflow - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - flags - object - -
    -
    - anyOf - - - -
    - - is_custom - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_evaluator - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - is_human - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/unassign-role-from-user.api.mdx b/docs/docs/reference/api/unassign-role-from-user.api.mdx index 7480d4648a..c76f108f6f 100644 --- a/docs/docs/reference/api/unassign-role-from-user.api.mdx +++ b/docs/docs/reference/api/unassign-role-from-user.api.mdx @@ -5,349 +5,81 @@ description: "Delete a role assignment from a user in a workspace." sidebar_label: "Unassign Role From User" hide_title: true hide_table_of_contents: true -api: eJztVktv20YQ/iuLuTQBCMk1euKpaq0gQlLEcOT2YAvGmByRG5O7zM7SiUrwvxezfMqujbapbzlJ3J3nNzPfTgMpceJ05bU1EMMZFeRJoXK2IIXMOjMlGa/2zpYKVc3klDYK1Rfr7rjChBbX5tqsXMbxtVFKTRc3OlWv2LvXsdrmpDZnyu6Vz+lIVTSoRF3MRbuDXjq49FY5Ku09haMQnETUG7Aue9KZdRka/SdKgr14UJ8Jh+/JQ0h18Dyo0Oea2KtXF92fXvMNsl+db8Zre/uJEh8QuSBfOzOAcmttEautq0np/ZTDDOAvyIrrJCHmfV0UB5WGUqSdMdRMg6232+35+mtCoWax2gR7jpRmhUaRczaUKDgZ4nITlKklVsZ6leM9qYpcqZm1NYJARW5vXZc9JjPI/qHPukrRa5ON3n7gkCgvIAJbkQtl2KQQQ2265G/k/kYwvxEFiKBChyV5cgzxVQMGS4IY5m0FEWjp1gp9DhFIltpRCrF3NUXASU4lQtyAP1Siy95pk0EEXvtCDv4YjKlNCm0bjV5C5w3mP9fkDv/J/jqYmRvuWvTbLX9w2cOYBcBvN3whVtp2J7pcWcPEIn56ciI/xyzxcexTddELQwSJNZ6MF3GsqkInodjLTyw6zRRC27ZtBD+dnj42/DsWOg1qai099S+sQuWkwbzu4k7JSwniBrSnkh8LFDY5ukVz+LAPDXeMkADdn2jjKSMH7a6NhjN0Dg8zGN/bLkBoIyg5ew7x34gZM4LR2DP9FAZsK7ft5Ltjm6NqX4W8Ote93G4yM8Hboft0GmcdfH/nbBARSnhksKttST63MuQdh4WZ9jnEsBynmJfNfKLbZaAJiIDJ3Q+jX7sCYsi9rzheLpPC1ukCMzIeF6iXWGmIHjTQKtyqX0UUpJmZktppfwj2Vuebd3R4S5iSg/hqNxf4KI3Utcax2FgVrPQ7EpD6uVvVPreuf1qGAcw7LUFBm70N6j1gfWy/YHJHRqhA8uzCPln8uDh5KpleQa3ON/08YBLmYYgjiEH0AK4RKIh6WovBE5Y/TxcSZWXZl2hm9i57ZlZCCeqNvIaXHTMfhddMo/l9bfi+NrzY2tBPn6evflkVqAO1hlZvelq5mpYDYZD4warQMcsugtyyF+mmuUWmS1e0rRx3b6bwQ6oZbwvh0T0WTM80fCioUO5r9VSId3SYLRT3WNQiE96TF/Az7hcv7ajfNiY3O/lwWvz8/yAO1GsOc59DLEeFDq9yPnB704usEum+mfKjJUISGB+ss/X79XYNbfsXsWB6XA== +api: eJztVt9v20YM/lcOfFkLCHYW7ElPMxAXNdqhQepsD4kRMBJtXSvdqcdTWk/Q/z7wTrLkeAm2dXnrk607kh/58cexhZw4c7r22hpI4YJK8qRQOVuSQma9MxUZr7bOVgpVw+SUNgrVV+s+c40ZzW7NrVm4Hae3Rik1XtzpXL1i716nal2QWl0ou1W+oCNV0aAKdTkVjQe9dID0Vjmq7AOFo+CceNQbsG6HRv+JEsSTqFOhXi/YmQiH7xEqxDy4MKjQl4bYq1dX8U+v+QbZLy5Xh2t7/4kyH6i5It84M7Bzb22ZqrVrSOntGMyE6a/IipssI+ZtU5Z7lYec5NEYaqbB1tv1+nL5LaOQvFStgj1HSrNCo8g5G3IVQAa/3MhpbomVsV4V+ECqJldpZm2NMFCT21oXo8dsQtk/xGzqHL02uwPaTxwC5RkkYGtyIQ2rHFJoTAz+Tu7vhPM7UYAEanRYkSfHkN60YLAiSGFaX5CAlrKt0ReQgESpHeWQetdQApwVVCGkLfh9LbrsnTY7SMBrX8rBH4Mxtcqh65IDSijBwfyXhtz+P9lfBjNTw49q9fshPkwMPo5CKP1+hCux0nUb0eXaGiYW8fOzM/k5HiAfD5WrrnphSCCzxpPxIo51XeoseDv/xKLTji50Xdcl8Mv5+anh37HUeQxyKVX2L6xC7aTkvI5+5+QlKWkL2lPFpwKlzY5u0ew/bEMJHjMkRPcn2njakYNu0yXDGTqH+wmN7210ELoEKt49x/hvxIw7goOxZyostNxabrsRO86fo2zfhLgidC+3Gc2M9EZ2nw7jItL3d2CDiAyJE4MxtxX5wkrbx6kWutwXkML80Nc8b6c93s3D4IAEmNzDMAwaV0IKhfc1p/N5Vtomn+GOjMcZ6jnWGqRembLGab8PKovL1TvavyXMyUF6s5kKfJRaidk/FjsQj7V+R8JD31qLxhfW9X039FgRtSRQbbY2qPecLIJzanG5ggQkjFjWZ7OfZ2eQPCr2I2Epc8xCmQ/Y4RqSRywc4oekn18peMLq1/FCPKst+wrNxN51P4KVdLp6I8/edRzBR261Y8f9WBR+LAovvyj0refpm5/XJeowOkPNt/3YuBnXAZkQ6aPlIE6OTQKFZS/SbXuPTNeu7Do5jm+iDIdcM96XMie3WDI9U/khoTJSX6unXPxM+8kK8YBlIzLhvXgBnNON4qUR+7VihNnIh9OC8/+zOQxgs59iDr4cZTw8v8Uw4dteZJFJGU6UT7YFCeDwMl0s3y/XS+i6vwDtNX7O sidebar_class_name: "delete api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Delete a role assignment from a user in a workspace. Args: -workspace_id (str): The ID of the workspace. -email (str): The email of the user to remove the role from. -organization_id (str): The ID of the organization. -role (str): The role to remove from the user. -request (Request): The FastAPI request object. + workspace_id (str): The ID of the workspace. + email (str): The email of the user to remove the role from. + organization_id (str): The ID of the organization. + role (str): The role to remove from the user. + request (Request): The FastAPI request object. Returns: -bool: True if the role assignment was successfully deleted. + bool: True if the role assignment was successfully deleted. Raises: -HTTPException: If there is an error in the request or the user does not have permission to perform the action. -HTTPException: If there is an error in updating the user's roles. + HTTPException: If there is an error in the request or the user does not have permission to perform the action. + HTTPException: If there is an error in updating the user's roles. +> + + + + + -
- -

- Path Parameters -

-
-
-
    - -
-
-
-
+ + - -

- Query Parameters -

-
-
-
    - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/update-app.api.mdx b/docs/docs/reference/api/update-app.api.mdx index 0ba076482c..4a27ce4da7 100644 --- a/docs/docs/reference/api/update-app.api.mdx +++ b/docs/docs/reference/api/update-app.api.mdx @@ -5,355 +5,77 @@ description: "Update an app for a user or organization." sidebar_label: "Update App" hide_title: true hide_table_of_contents: true -api: eJztVk1v4zYQ/SvEXJoFVDsNetKp2myAGNt2g6y3l8QIJuJY4q5EckkqiSvovy+GlPyRNG7RFuilRgArmjdfjzOP7iFg5SG/gcJaD6sMJPnSKRuU0ZDDJysxkEAt0FqxNk6g6Dw5YfivQq1+R4bObvWtLlzl81sthGD0nZLixAf3JhfLmsTinTBrEWpi2yyhLG4ag1KcpDSFtSN4MpRGB1Ra6WryFBpbitmuKXROTwm3ET50wXYhhTHx+XkUTY/NRpSOMJDkmN95rg613AuOytMU+3K5vLp4KimSkotFbMORUJ6JIeeMS+H26zQuPkaypCEvtAmixgcSllyrvFdGi2AEliV5vyUGMjCWXCR1ISGHLjZ2h9ZCBhYdthTI8ZH1wOVCDolsyEDxkVkMNWTg6GunHEnIg+soA1/W1CLkPYSNZS8fnNIVZBBUaPhFYa1YSBiGVfImH94auWGX58GYUdKBTWhto8pY7/yz56Hp93JZx90ERX7E3qWaj1fxK2OGIZtA5v4zleGgqZtdsNXOeTsFMAzs78hbo33KfnZ6yl+HA/6xi/yvu0Zcj2D4R/0p+Vc4zv59LuIEHCUlrcZIzY9nZy/Z+A0bJWOv4oLH+u9TISmgavhJBWr9S0BjygMr6s2HdZzqQzaGbPtG6UAVORhWOzrQOdzsUfazSQUyxa2vjrH7C3mPFcE22OvQSIZYsvXPjoL7SqlH3N5J7OhN7L7exrtE3x8lmyCsSi8CprNtKdRGJi0o66gboYYc5mitn/dpWgbIwJN7mMSkcw3kUIdgfT6fl43p5Awr0gFnqOZoFTy/HIpoFecMBVYNT2XnVNjEeMXV4j1tLgklOchvVvuAjzw1aQ4OYdsjQKveEzMyalzRhdq48baZpK5OXtwyz+P1TrQunrC1DR2Kzm6kQOm1idmmTUutvMXyC2leJKYldXk6+2F2+lrvo4MorhbjrmAZd2UqO8Ige8bullfIgNq4KBAI2592Bm7KGh9a1Hvxxvu4iLfBQUX9blP/v7X/g1t7nNtAT2FuG1RRgeKp9+P6RZn2kEE+yvUqg9r4wJa+v0dPn1wzDPz6a0eOt2iVwQM6hfc8pDc9SOX5WUK+xsbTkRE4uR416Y14rbhp0zSv2QM2Hf8HGXyhze5HRdTaelrifjSepzzfR0XcOb+4IFi8k0dR8kkcxa72hOuqWJ5fQgb34w+Q1kh2cvjIcouPqVITG48yEt/10KCuOhb1HFJQ/nwDDBi6Kw== +api: eJztVk1v4zYQ/SvEXJoFVDsNetKp6m6AGNt2g2y2l8QIJuJY4lYiuSSVxBX03xdDSpadNG7RFuilhgHTmu83M4/qIWDlIb+BwloP6wwk+dIpG5TRkMMnKzGQQC3QWrExTqDoPDlh+FuhVr8jqy5u9a0uXOXzWy2EYO07JcWJD+5NLq5rEqt3wmxEqIlli6RlcdsYlOIkhSmsHZUnQWl0QKWVriZLobGlGO2KQuf0FHDn4UMXbBeSGxPPz71oemy2onSEgST7/MZzdqjlnnNUnibfF9fXl+dPJUVQcrGKZTgSyjMw5Jxxyd1+nsbFYwRLGvJCmyBqfCBhybXKe2W0CEZgWZL3O2AgA2PJRVBXEnLoYmF3aC1kYNFhS4Ect6wHThdySGBDBopbZjHUkIGjL51yJCEPrqMMfFlTi5D3ELaWrXxwSleQQVCh4QeFtWIlYRjWyZp8+NHILZs8d8aIkg4sQmsbVcZ8l589D02/F8s6riYo8qPuXcr5eBa/sM4wZJOSuf9MZTgo6mZ2tp6Nd1MAw8D2jrw12qfoZ6en/HM44B+7iP+ma8TVqAz/qD4l/wrG2b+PRZyAo6Ck1Rih+f7s7CUav2KjZKxVnPNY/30oJAVUDZ9UoNa/VGhMeSBFvf2wiVN9iMaQ7Z4oHagiB8N6hgOdw+0eZD+ZlCBD3PrqGLo/k/dYEeycva4awRDXLP2zVnBdKfSot9eJGd6E7utlvEvw/VGwSYVZ6YXD1NuWQm1k4oKyjrwRashhidb6ZZ+mZYAMPLmHiUw610AOdQjW58tl2ZhOLrAiHXCBaolWARODp7JzKmyjSXG5ek/bC0JJDvKb9b7CRx6M1OpDtR3KaNV74qJHGiu6UBs3XigTm9XJiqvikbuaeen8CVvb0CGvzFMDSm9MjDYtU6xFFJcryICrTiN/uvhucQrP770D5Xh/lHEFplSjGLJnoO3gggyojfMPgbD9YRZwIdb40KLe8zdes0Uk+YNM+nkB/7+M/4PLeJzVQE9haRtUkVhi1/txqyL7esggH1l4nUFtfGBJ39+jp0+uGQZ+/KUjx5uzzuABncJ7HsybHqTyfJaQb7DxdGQETq5GqnkjXktu2i7Nq/WATcf/IIPfaDu/K0QKrafF7Ufh2xTn20h0s/EL3mdOThZFyZ04qrve46PL4vrtBWRwP75XtEaykcNHZlF8TJmaWHikjvishwZ11TFX55Cc8ucrw6GrnA== sidebar_class_name: "patch api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Update an app for a user or organization. Args: -app_id (str): The ID of the app. -payload (UpdateApp): The payload containing the app name. + app_id (str): The ID of the app. + payload (UpdateApp): The payload containing the app name. Returns: -UpdateAppOutput: The output containing the newly created app's ID and name. + UpdateAppOutput: The output containing the newly created app's ID and name. Raises: -HTTPException: If there is an error creating the app or the user does not have permission to access the app. + HTTPException: If there is an error creating the app or the user does not have permission to access the app. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/update-evaluation-scenario-router-human-evaluations-evaluation-id-evaluation-scenario-evaluation-scenario-id-evaluation-type-put.api.mdx b/docs/docs/reference/api/update-evaluation-scenario-router-human-evaluations-evaluation-id-evaluation-scenario-evaluation-scenario-id-evaluation-type-put.api.mdx index 2669342041..f6f00a0c9a 100644 --- a/docs/docs/reference/api/update-evaluation-scenario-router-human-evaluations-evaluation-id-evaluation-scenario-evaluation-scenario-id-evaluation-type-put.api.mdx +++ b/docs/docs/reference/api/update-evaluation-scenario-router-human-evaluations-evaluation-id-evaluation-scenario-evaluation-scenario-id-evaluation-type-put.api.mdx @@ -5,552 +5,73 @@ description: "Updates an evaluation scenario's vote or score based on its type." sidebar_label: "Update Evaluation Scenario Router" hide_title: true hide_table_of_contents: true -api: eJzdVktv4zYQ/ivEXNoCWjsN9qRTvWmAGNtmjcTZi2MItDS2uSuRWj6SuIL+ezEkbcmPGPsosEBziUzOfDOcxzfTgOUrA+kMblzF5ZvrJ146boWSBuYJFGhyLWr6DSk81AW3aBiXDHdyzOQouRbqF8OelEWmNDO50sgW3GDBlGTCGmY3NQ4e5aO848KgSR8lY4zdTKeT65ccvYWUjZfMeRtsyUVpCMpJ7uxaafEPFkEfrdNyC3CrJKbs8uItu1XsSkmL0jJjuXWG5apA5mpy0eU5GrN0ZcQfQAKqRu1fMC4ghXCede/Ktu/KtHIWdbamAPUETNaXFkV2UvnkIQn3Lyg4WVY7CwnUXPMKLWrKSgOSVwgp7FmCBATlo+Z2DQlo/OKExgJSqx0mYPI1VhzSBggXUjBWC7mCBKywJR10WWbjAto2OWWn5+1/afA+wp6x7FG+1yRKV1E9h3TxbJFZNDbcGSFXJWaVKrD0x1Tjxz5OCbJt58EsGvtOFRuydehFHgqOrnhdlyL36sNPhtql6TlZa6o2K9DQL2oTryM3H5Y+y/uPoKjEE+nKEtqelx9Jt6UAKP21IEJaXKE+i3vv8Vp6k9aY24xL84z6e928CihsFFDaBJSztbPmJCDXmm/O4n2I2i2VxQ/gjOUOxmS1kJKSeQJpoVSJXJ7HMmwSENoE5A/k9NbntE22AmrxCXPbax/PzV19blso8DG0LelqNLWSJlTY5cUF/dun7/uOBe+iMHx9DQcrby8vj4E/8lIUobuvtVb6G1APOqNAy0VJX8JiZY4FSpXv3X5L9c+7CIdC6QL8lwoOUiYrszpHZX+jMXzlWyWInGE9CgaLbHKc3Y5NZv5dwXSU67f8Lrwhuq8/488QvrOlNJ1OjgBDbiu0a0WzcDuI7BpSGHoifdObe8Nmbxq1wxNDY0+mN0navQtysiVeRv20HXhOl5DC2trapMNhXipXDPgKpeUDLoa8FnC4loz8LbsiUd9XBnOnhd14vNFk/B43N8gLYrPZvC9wT2UYCmtfrGOUWrxHCnGcUqO4jIRqiTNqHbQohlTgd93QuH7hVV1iR/pdkUQC7w4Oibe72VHnrIEnrgWXloZyT2J7GiR7bTDv+HLWhM8sPmWnHE4pK3ig2VFkmHdy7w2ei5fKRytWV0zFO55/RklrA6U1ZOli8Pvg4rXcRQU2mowjefDck8c27F4MkoPq2NUFzf3KMwdY5NUf3QUlpVbGVlz28AJzslNryZ3f9g4dbTpG+5+twbHQLb7YYV1y4TnQh7mJFBB3qT4FQALp4Up6ouEPxPY3yvRw45snsFbGksGmoag96LJt6fiLQ03dPI+VvqBimzVQCEPfBaRLXho8k7Nf7yLZ/sZee/O24+XGN1ToBkjgM26OFnAaLz/HeD+GP88LL+gH6npLrE2UitX3ZhqW+C3K0RZAzgeNUU6Vf1Z23ptOk4cpJLCIKznt8pCC5s80UflzcFjVoUxpZ6ezBkouV47mdgoBkv7+BV6vPIg= +api: eJzdV0tv4zYQ/ivEXNoCWjsN9qRT3W2AGNsmRuLk4hgCLY1tbiVSS1JJXEH/fTGkZD3sOMm2wALNJQk5L37zzUMlWL4xEC7gssi4/HDxyNOCW6GkgWUACZpYi5z+hxDu8oRbNIxLhns5ZmKUXAv1k2GPyiJTmplYaWQrbjBhSjJhDbO7HEcP8kHecGHQhA+SMcYu5/PZxXOMzkPIpmtWOB9szUVqyFQheWG3Sot/MPH6aAstGwNXSmLIzs8+sivFPilpUVpmLLeFYbFKkBU5hVjEMRqzLtLa/ggCUDlq94JpAiH486h9V9S8K9KqsKijLQHUETBRV1ok0VHlo4ck3L0gcKIoLywEkHPNM7SoKSslSJ4hhNDzBAEIykfO7RYC0Pi1EBoTCK0uMAATbzHjEJZAdiEEY7WQGwjACpvSQZtlNk2gqoJjfjrR/pcOb2uzJzw7K9/rEmWREZ99uni0iiwa6++MkJsUo0wlmLpj4vhhjHMyWVVL7xaN/V0lO/I1jCL2hKMrnuepiJ36+Iuhcik7Qeaa2GYFGvqPysTpyN312mW5/whCpT6RRZpC1YnynnQrAkDptxoR0uIG9Um7t85eRW/SGmMbcWmeUH9vmJ+8FTbxVqoAVGHzwpq+QWExM0cA4lpwaYl5J0h176UckYK9jvfzFr1rL1lVQSOqVl8wtj26LbrBHHjpvNj1z5ZDDc0bJ3sfXGu+O4nddY1URSXwZsycaOSL6eW3T0mKXZFUYz6imN+gdO/EXkOrE0bf/utQOTfvQmoq90CZKBdSYnKUsCulUuTytC3DZt5CFYD8FxV65Sr0CEyvPN9PV6gq0tVociWNT+352Rn96g/j23am3dTC8PaO5L18PD8/NHzPU5H4Xn2htdLvsDqgZIKWi9SR8zhnUxX3bt/Ty5ZDorQA/6l8gJTJzGxOUfsvNIZvsGXdiRlGYLB6NpwuAnqXd13LdRv4Hl6P7svP+MPDd5JK8/nswKDPbYZ2q2izadYKu4UQxm4sfuhsMeOyt1tU4yMrQE+msxdUvQsKsqIpi/qxWV8KnUIIW2tzE47HcaqKZMQ3KC0fcTHmuXClYzAutLA7pzKZTT/j7hJ5QuNnsewK3BLTPHf6Yvu08Vx8RkKxXism9fboCVEvFVuvRTARh2/aKX/xzLM8xXZKtzyoJ257MJyU7c1+1i36s6yVGE6rPdOXbdNf9Jt6q9xr2z3Ntgv6BUX23uA6/lo5tGoCTVwu2GQ2paBQG98Dzka/js5guP/3hKkn8Nj1hAZqdw3BIOn7dNNylrmGABZ59lt7QYnIlbEZlx17viGyY7vjjVvJhwGWbaP6n32r1OS2+GzHecqFa20O5rKu7Hrh7VY2BBAOvxuO1PFArL/2h8O1fBnAVhlLDsuSULvTaVXR8dcCNVXwsmb3igi2KCERhv5OIFzz1OCJnP18U/fQX9hLb26qXO5cEfkKgAD+xt3BVxJNjR/jvIvhj4vCCbo5uW2aaVlL1ez7MPdfWo2Vg+FOwXuNSUzMPym77Ayd2d0cAljV3030wQUhaP5Eg5I/+YBV7mlKH1Z0VkLK5aagcRyCN0k/3wD7w9F0 sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + path={"/human-evaluations/{evaluation_id}/evaluation_scenario/{evaluation_scenario_id}/{evaluation_type}"} + context={"endpoint"} +> + + + + Updates an evaluation scenario's vote or score based on its type. Raises: -HTTPException: If update fails or unauthorized. + HTTPException: If update fails or unauthorized. Returns: -None: 204 No Content status code upon successful update. + None: 204 No Content status code upon successful update. +> + -
- -

- Path Parameters -

-
-
-
    - - - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
    - - vote - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - score - object - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
    -
    - -
    - - correct_answer - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - outputs - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - inputs - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - is_pinned - object - -
    -
    - anyOf - - -
    - boolean -
    -
    -
    -
    -
    -
    - -
    - - note - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/update-evaluation-scenario-score-router-human-evaluations-evaluation-scenario-evaluation-scenario-id-score-put.api.mdx b/docs/docs/reference/api/update-evaluation-scenario-score-router-human-evaluations-evaluation-scenario-evaluation-scenario-id-score-put.api.mdx index 6191952abf..0b747730b6 100644 --- a/docs/docs/reference/api/update-evaluation-scenario-score-router-human-evaluations-evaluation-scenario-evaluation-scenario-id-score-put.api.mdx +++ b/docs/docs/reference/api/update-evaluation-scenario-score-router-human-evaluations-evaluation-scenario-evaluation-scenario-id-score-put.api.mdx @@ -5,326 +5,73 @@ description: "Updates the score of an evaluation scenario." sidebar_label: "Update Evaluation Scenario Score Router" hide_title: true hide_table_of_contents: true -api: eJzdVU1v2zgQ/SvEnLaAYrtBTzqt2wZI0N1uYCe9OIYxlsYWW4lkSSqNV9B/L4aUbfkr3b3WF9vk8HHmzbzHBjyuHaQzuK0rVFc3z1jW6KVWDuYJ5OQyKw3/hxQeTY6enPAFCZdpS0KvBCpBu0PCZaTQSj14Uk9qgtKRS5+UEELcPjzc37xkFMBSMSX7TFaQtdoKuQqYPZw6XCVWKEsXscjXVm3BPmtFqbgevROftfiglSflhfPoaycynZOoDSdTZxk5t6rLDm8ACWhDNtxxl0MKcX2xv3mxrWARKlxYXXuyi4LZ6YW5s0fOLsp80WGZ2kMCBi1W5Mky7Q0orAhSOH8SEpDMvEFfQAKWvtfSUg6ptzUl4LKCKoS0Ab8xjOK8lWoNCXjpS17Y91NMO1hxl0PbziMaOf9e5xuGOAbPIq28hcaUMgsww6+OZ6Hp3W0sc+olubiuLfVSUnW1JNtLaRoC2jbZRujlV8r8QXmzDmZ+rpJtIQEoziS0LQNackYrFxO5Ho3463CEp/uRmHTB8N9Ljbe8u74+Bf6Cpcwj0Tc80/8D9YjAnDzKkn9JT5U7DSh1drCLavPPKszS4RS0yW5FKk9rstDO97Sjtbjp9eUvHROENoHKrV+bqr/JOVwT7MBeGcAg8Afe/VXLua54dRfX6/6e3sju5TI+RvrOXbYNYSs6AYy9rcgXmo1hq1VfQArDIP+rnvyHZ/Q6bM6LuB3GYU7ABdOLuq9tCSkU3huXDodZqet8gGtSHgcoh2gkHNvvOOyKDxwKLGBHWW2l3wS88f3dJ9rcEuZkIZ3N+wFTHrU4PIdhu76hkZ+IaezsaFz7Qlv5b5yIzoWKeIp54iGe7P3j5gUrU1JP/6OWD610uKPjvSvgPWbfSLG3MRmxttHg7WB0qeLugBjf33WywizIaptsCIPkiNMdm5AAVUFT4AmrP/cbXIrRzleoenjRU8Q57wyeIybhUThOt9kr/vd4KrvZ8PTih6ZEGawhcNx0ypjBiTKY7FMZQALpxSdu5/WFdp5Bm2aJjh5t2ba8/L0my0M+T+AZrcQlT9OsgVw6/p1DusLS0Svt+GPS+cwbcamurRAUq4Az5X+QwDfaXH6eg58WW801XXDH8lVwvT3YySPABh1PjDPu9qux85453T8+QALL7uGudM5HLP5gQ8UfMW9tYjv4Zee1BkpU65ptO4UIyZ+fGoWBZg== +api: eJzdVU1v4zYQ/SvEnFpAsd1gTzo1bQMk2HYb2EkvjmGMpbHFrURy+ZGNK+i/F0PKtvyR7PZaX2yTw8eZN28eW/C4cZDP4S40qK5uX7AO6KVWDhYZlOQKKw3/hxyeTImenPAVCVdoS0KvBSpB+0PCFaTQSj16Vs9qitKRy5+VEELcPT4+3L4WFMFyMSP7QlaQtdoKuY6YA5wQrxJrlLVLWOSDVTuwT1pRLq4nH8QnLX7VypPywnn0wYlClySC4WRCUZBz61D3eCPIQBuy8Y77EnJI68vDzctdBctY4dLq4MkuK2ZnEOYuHrm4KMtlj2WChwwMWmzIk2XaW1DYEORw+SRkIJl5g76CDCx9CdJSCbm3gTJwRUUNQt6C3xpGcd5KtYEMvPQ1Lxz6KWY9rLgvoesWCY2c/0WXW4Y4BS8SrbyFxtSyiDDjz4610A7uNpY59ZJcWteWBimp0KzIDlKaxYCuy3YRevWZCn9U3ryHWVyqZFdIBEqahK5jQEvOaOVSIteTCX8dS3h2kMS0D4bvLzXd8uH6+hz4L6xlmYi+ZU3/B9QTAkvyKGv+JT017jyg1sXRLqrtn+uopWMVdNl+RSpPG7LQLQ60o7W4HfTld50ShC6Dxm3eU9Uf5BxuCPZg7wgwDvgj736r5VxXurqPG3T/QG9i9+0yfkv0XbpsF8JWdAaYetuQrzQbw25WfQU5jOP4Xw3Gf3xhXsft5SHuxknMGbhoemnug60hh8p74/LxuKh1KEe4IeVxhHKMRgLPqKMiWOm38cjNw/1H2t4RlmQhny+GATNWU9LHcdi+NWjkR2Kmese5Cb7SVv6Tmt4bTZVOMRWs0+nBIm5fsTE1DUZ80vGhtY539NTexArEzcM9ZMC1pumYjH4aTeD0PTkK5mnBIk7LLsG4DdkJVXuSIANq4qiAJ2x+Pmxw+kY736Aa4CWrEJcsMVqJmEavP02zPQzy/+MF7PXg6dWPTY0yTnzkuO0FP4czwTPZ5+qGDPI3X669hVfaeQZt2xU6erJ11/Hyl0CWhb3I4AWtxBUraN5CKR3/LiFfY+3onXb8MO3t40fxVl078StWPmfK/yCDv2n79qsbbbLazVnbB/csX0UzO4CdeTv7bjpxU3C3341dDDzn4ekRMlj173GjSz5i8Sv7JH5NeWuT2sEPNq+1UKPaBHbjHBIkf/4F55hy1w== sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Updates the score of an evaluation scenario. Raises: -HTTPException: Server error if the evaluation update fails. + HTTPException: Server error if the evaluation update fails. Returns: -None: 204 No Content status code upon successful update. + None: 204 No Content status code upon successful update. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/update-evaluator-config-evaluators-configs-evaluator-config-id-put.api.mdx b/docs/docs/reference/api/update-evaluator-config-evaluators-configs-evaluator-config-id-put.api.mdx index c5c9ddba0d..414b3175c8 100644 --- a/docs/docs/reference/api/update-evaluator-config-evaluators-configs-evaluator-config-id-put.api.mdx +++ b/docs/docs/reference/api/update-evaluator-config-evaluators-configs-evaluator-config-id-put.api.mdx @@ -5,366 +5,70 @@ description: "Endpoint to update evaluator configurations for a specific app." sidebar_label: "Update Evaluator Config" hide_title: true hide_table_of_contents: true -api: eJzNVktv4zYQ/ivEnFpAtdOgJ53qZANskG1r5LEXxzAYaWxzVyK55Ci7rqD/XgwpW5JfKXJpc0lCzovf982MaiC58pDO4OZVFpUk4zzME8jRZ05ZUkZDCjc6t0ZpEmREZXNJKHBrLjKjl2pVOcnGXiyNE1J4i5laqkxIa0fP+lnfI1VO+/RZCyHEJ+Vptst4HSJ8uJqnYiIK5UmY5akEwrx8wYz8CBIwFuPhbQ4pxMIWO79F9OsOfHviF4dGKl8sbEWQgJVOlkjoGJUatCwRUjjiAAkoBsdKWkMCDr9VymEOKbkKE/DZGksJaQ20sRzCk1N6BQmQooIPdu8XEQBxm0PTzGMo9HRl8g3770fOjCbUxFfS2kJlAYPxF89c1b3E1jFCpNDzf/ElNUi9+WsZ3jYsrEl2J7oqCuBKtqX+yb5N0oPhK27eG6x79x1uOKpHIqVXfsEXsdgursxzxe+TxbT3nIhEmyFK4mzOhzaF+BxTNM2+d5/B2UFJvVBPQWd74oWm4ZAOvTXaxzdcXlzwr2ErPVRZht4vq0Lct8bwbkpVfk5fLKdkR/spqy211hnGYXE+5jRaiRj7QA5vS/0/pDyBzKEkzBeSzhV7Ha3EhOO3Y+UtnyiK6POGtMLkCKwMQN9Hc1DtoIxjrTRQ4W+Xl4fC+ywLlccReuOcce9XXY4kVRH0R1j6Q4PCZIPbfzEklCZcoYNm3qEnnZObHsafTCyQWSn96hwdf6D3chV0HU3OSJPBEI98+xZz/K6YurXrMdHBG9E9/YwPEb5jybYmHx8fpwcBI7cl0trwuttuK1pDCuNuyY3bJTeuj+ysBrj13Ot2u1WugBTWRNan43FWmCofyRVqkiOpxtIq2P8UmIRbcc2mod08ZpVTtAnxJtPbO9x8RJmjg3Q27xs8sJyiQIZmO26kVXdB+e3SnVS0Nk79HVlv1+06ejEWLNT7blfe/JClLbDbdR3Ze4OquzicQxxY6aUJdbV8tI++ktlX1NyqDGDE42L06+jiFEqtg5hMb9t2kxn16otm3N0DHnYMcOVl6DUglOXv3QVXaY2nUupevDiFxP6HxX55ddf5/9dPu1YRhD9obAupQtMHlOpW87OOVB/BZdVDAumxb7V5Amvjid3q+kV6fHJF0/Dxtwodi3eewKt0Sr4w47MacuX57xzSpSw8noHwp/t2RvwsTlW+FbhmdQepQQqQQFTjsYLDIFxvG6luLa9j0l/CuOoiHUxvnqzRY5JlaOms7bw3VaZPj5DAS/vlWZqcXZz8zpNQfo9Fm4BBaORwVkMh9arieZtCDMk//wD3SU4f +api: eJzNVktv2zgQ/ivEnLaAameDPelUNw3QIN1dI49eHMNgpLHNrkSy5CitV9B/L4aULcl2nCKX1hfb5Dy/+WaGNZBceUhncPkki0qScR7mCeToM6csKaMhhUudW6M0CTKisrkkFLgVF5nRS7WqnGRhL5bGCSm8xUwtVSaktaMH/aBvkCqnffqghRDik/I023m8CBY+vJ+nYiIK5UmY5XMOhHn8ghn5ESRgLMbDqxxSiIEtdnqLqNcd+PbELw6FVL5Y2IogASudLJHQMSo1aFkipHBEARJQDI6VtIYEHH6tlMMcUnIVJuCzNZYS0hpoY9mEJ6f0ChIgRQUf7PIXEQBxlUPTzKMp9PTe5BvW37ecGU2oia+ktYXKAgbjL55rVfccW8cIkULP/2ImNUi9+XcZchsG1iS7E10VBXAk21D/Yd0m6cHwH25ea6zL+xo3bNUjkdIrv+CLGGxnV+a54vxkMe2lE5FoPURKnPR527oQn6OLptnX7ldwdhBSz9R94NkeeaFp2KRDb432MYfzszP+GrbSbZVl6P2yKsRNKwyvLqnKT/GL6ZTsyv6c1La01hnGYXHa5jRKiWj7gA4vU/0XljyBzKEkzBeSTgV7EaXEhO23Y+UlnUiKqPMCtcLkCFUZgL6P5iDaQRjHWmnAwr/Ozw+J91kWKo8j9NI5417PuhxJqiLwj7D0hwKFyQa3PzEklCZcoYNm3qEnnZObHsafTAyQq1L61aly/I3ey1XgdRQ5QU0GQ9zx7UuV47yi61auV4kO3oju82l8iPAdc7YV+Xh3Nz0wGGtbIq0Nr7vttqI1pDDulty4XXLj+sjOaoBbzz1tt1vlCkhhTWR9Oh5nhanykVyhJjmSaiytCh3lMaucok1QmUyvrnHzEWWODtLZvC9wy4yJHBiK7eCXVl0Hcrd7dVLR2jj1fyxsu1HXUYvTZS7edOvw8rssbYHdOuvquTeLuovDUcOGlV6aEFcL+SRkLSbTK0iA8Yldczb6c3QG+++hgTB3kcyoF1O85qYdwLsDlqMtQwsBoSzfdRccmTWeSql79uJwEfvvhf2w6q6hf9cXW8sCwu80toVUoZcDSnVL5VlXSB/BZTJDAumxJ9g8gbXxxGp1/Sg93ruiafj4a4WOCTtP4Ek6JR+5yrMacuX5dw7pUhYeT0D4x03b+m/Ec5FvSa2Z0YFekAIkEBl4LOAw39bb5qlbyYvo9G2YQp2lg6HMAzNqTLIMLZ2UnfeGxfT+DhJ4bB+UpclZxclvPODktxi0CRiE5g1nNRRSryoeoylEk/z5ATGJP5A= sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Endpoint to update evaluator configurations for a specific app. Returns: -List[EvaluatorConfigDB]: A list of evaluator configuration objects. + List[EvaluatorConfigDB]: A list of evaluator configuration objects. + + + + + + + + + + + + + + + - -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - name - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - evaluator_key - object - -
    -
    - anyOf - - -
    string
    -
    -
    -
    -
    -
    - -
    - - settings_values - object - - required - - -
    -
    - anyOf -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - -
    - - settings_values - object - -
    -
    - anyOf -
    -
    -
    - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/update-human-evaluation.api.mdx b/docs/docs/reference/api/update-human-evaluation.api.mdx index f9cdfce2dd..d18c3e78e4 100644 --- a/docs/docs/reference/api/update-human-evaluation.api.mdx +++ b/docs/docs/reference/api/update-human-evaluation.api.mdx @@ -5,346 +5,73 @@ description: "Updates an evaluation's status." sidebar_label: "Update Human Evaluation" hide_title: true hide_table_of_contents: true -api: eJzlVk1v20YQ/SuLubQFGMk1cuKpTKLaRFzbkOgUqC0Ia3IsbkLuMrtD2yrB/17MkhIpKTLac32xuPOx897MPLIBkmsH4T1c1qXU72bPsqglKaMdLAPI0KVWVfwMIdxVmSR0QmqBO7+fnHAkqXaTB/2g51I5dOGDFkKIyyS5nb2m6ONDET8JylGkpqhL7YTS/pHQkXBIIjNCGxKlpDQXL4pyb1a6qmnn/Cytkpq6q5Bqq7d3XRuNoYjE+dl7cW3ER6MJNfWlidRkGAilM5VKUnotKJfkM9Yek3iRTrg6TdG5p7qYQACmQusBxhmE0LmtciZpNYCHACppZYmElllsQMsSIYTBZaUyCEAxf5WkHAKw+L1WFjMIydYYgEtzLCWEDdCm4mBHVuk1BECKCj4YuiLiDNp22SVBRx9MtuHIw5xph59NsqoKD9vo6VfHjWxGV1aWgZJC5889XT5Kb26ePKLDolDXJQ/M7Et0dRcl8c31Kr6Okzi6iv+afYJgbFgk0Tw5PPw9vo4Xl6dOV3/GyeVqNp/fzBcHHlF8dRgVXVzMZxd79uWPeFt4YDMuvQ12mHRdFNAu2zbYnpjHr5jSiHq/FkOebgWgbTnGoquMdh1152dn/G9/Yxa7kRLz3hn+fXO6W96fnx8n/iILlXUTMbPW2P+Q9aDlGZJUBf9ShKU7dihMumc9NRkjXpUmXKNlanfMSmvlZkTslekKhDaA0q3fGv8/0Dm5Rtgle2NTmAyRsPVHXR3W5N7j6q7u/UaDM9DbsXsaxqeOvjdHKElujxJ2vS2RcsP6UtXktYRyCGHqZebdoCFu2uwJSgsBOLTPW9GpbQEh5ESVC6fTtDB1NpFr1CQnUk1lpeBQyiNvFR/ZFVhPHKa1VbTx+aLb+DNuLlFmaCG8X44dFjxH3WTsu+2aIiv1GZmjXgujmnJj1d9bxfRamHdRTAJP6HyQs9mrLKsCx3J0SmtaTvZk/N092T2wDzL9hpqVl0nqMJ9Nfp2cnWKiDxDRbdzvkkz9Lm1BeDcIDrjesczCWPpFAkJZ/jYYGGJlHJVSj/J1QiK8vIjZ+IWyV14zrPX/6/XbzxLhK02rQiqvE577pl+TezhaEwgg3H/zLgPIjSP2bppH6fDOFm3Lx99rtDztywA8rEcen/sGMuX4dwbhkywcvtGPn+e9mvwiThW83QjN68CF8RME8A03Rx8JXizz7c41vU/P5DsvaUOOI4Vn9e0iopRb/qbvcqQ8t3cJBPDYf0eUJuMQK19YLeVLV66pOnr5Q4PPGiikXtesySF0KfnvH7lMhUM= +api: eJzlVt9vo0YQ/ldW89JWInYa3RNPpT03QZcmkU2uUh3L2sDE7BV2ud0hiQ/xv1ezYIPtS9Q+1y+G+bUz38x8SwMkNw7CJVzVpdRns2dZ1JKU0Q5WAWToUqsqfocQ7qtMEjohtcC93Q9OOJJUu8mDftBzqRy68EELIcRVktzNXlP0/qGInwTlKFJT1KV2Qmn/SuhIOCSRGaENiVJSmosXRblXK13VtDd+llZJTd1RSLXVu7NujMZQROLi/IO4MeI3owk19amJ1GQYCKUzlUpSeiMol+Qj1r4m8SKdcHWaonNPdTGBAEyF1hcYZxBCZ7bOGaT1UDwEUEkrSyS0jGIDWpYIIQwma5VBAIrxqyTlEIDFr7WymEFItsYAXJpjKSFsgLYVOzuySm8gAFJUsGDoiogzaNtVFwQd/WqyLXsex0y7+lklq6rwZRs9/eK4kc3oyMpyoaTQebmHy3vp7e2Tr+g4KdR1yQMz+xxd30dJfHuzjm/iJI6u479mHyEYKxZJNE+Ohb/HN/Hi6i3p+s84uVrP5vPb+eLIIoqvj72iy8v57PJAv/oebgtf2IxTb4N9TbouCmhXbRvsJObxC6Y0gt6vxRCnWwFoW/ax6CqjXQfdxfk5/x1uzGI/UmLeG8O/b053yoeLi9PAn2Whsm4iZtYa+x+iHrU8Q5Kq4CdFWLpTg8KkB9q3JmOEq9KEG7QM7R5Zaa3cjoC9Nl2C0AZQus174/8HOic3CPtg72wKgyES1n6vq8OaLH1d3dG93WhwBng7dN8u42MH37sjlCR3JwG73pZIuWF+qWryXEI5hDD1NHM2cIibNgeE0kIADu3zjnRqW0AIOVHlwuk0LUydTeQGNcmJVFNZKWDKcJjWVtHWu0R38SfcXqHM0EK4XI0NFjwqXfMPzfa4y0p9Qoahp7uoptxY9W1Hip7u8s6L6+QhnA+MNXuVZVXgmHHeopOWgz0Zf3aPZ+QrE9FdDAEwBt1KnE9+npzD8Z11YMwrIlO/IrvEvRqCIwj34DHflX4/gFCWvwwKLqsyjkqpR/E6fhCeNcRsfE8cpNUM2/r/ulX7+SF8pWlVSOXX32Pf9NO/hJPphwDCwwt1FUBuHLF10zxKh/e2aFsWf63R8oSvAvBlPfLILBvIlOPnDMInWTh8px8/znuS+Em8lfBuCzSvACfGbxDA37g9ufs9B+a7PWt6mx7JM89UQ4wT4mZS7TyilFv+ru1qRCh39wkE8Nh/HpQmYxcrX5gE5UuXrqk6ePn7gWUNFFJvaqbaELqQ/PsHaeR2tA== sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Updates an evaluation's status. Raises: -HTTPException: If the columns in the test set do not match with the inputs in the variant. + HTTPException: If the columns in the test set do not match with the inputs in the variant. Returns: -None: A 204 No Content status code, indicating that the update was successful. + None: A 204 No Content status code, indicating that the update was successful. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
    - - status - object - -
    -
    - anyOf - - -
    - string -
    - **Possible values:** [`EVALUATION_INITIALIZED`, - `EVALUATION_STARTED`, `EVALUATION_FINISHED`, - `EVALUATION_FINISHED_WITH_ERRORS`, `EVALUATION_FAILED`, - `EVALUATION_AGGREGATION_FAILED`] -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/update-organization.api.mdx b/docs/docs/reference/api/update-organization.api.mdx index b266d35aff..bbc8e9bff5 100644 --- a/docs/docs/reference/api/update-organization.api.mdx +++ b/docs/docs/reference/api/update-organization.api.mdx @@ -5,36 +5,36 @@ description: "Update Organization" sidebar_label: "Update Organization" hide_title: true hide_table_of_contents: true -api: eJydVU1v3DgM/SsGT7uANpMGe/Jppx9Ag+5ugjTZy2AQMDZjq7UlVaLTzhr+7wUlz9jOJEHbuYxNkTT5+PjUg3XkkbU15yXk0LkSmW6tr9Do/6MdFDj02BKTD5BvejDYEuRgfXWrS1CgDeTgkGtQ4OlLpz2VkLPvSEEoamoR8h545yQqsNemAgWsuRHDha+y8xKGYZuiKfBrW+4k5HGywhomw3KEzjW6iAWuPgVrxDZ9y3lpizUFeUv19oBmd3EfO1jWMqiDxXRNA1LJvrp/JXZQUFIovHYRkF9M9XaWYlAj1OUt8q8mvEkZsjXDMKi9m737RAUvAT4MM4XAMEiAp+CsCQmks9NT+Vv0CR+7oqAQ7rsmuxqd4cfHkL7y59nZceL/sNFlDMveeW/9T2R9NNySGHUjT5qpDccOjS0Wpz+AtDZMFXkYthOs6D3uZqj+bVOBMso2VC8x/B8KAatIo+TyvGsEI7uW06dGOi3EJvaVPj36zZgxwZvQfb6Ntwm+l/jz/vr68ihhmu1yqIlc2cVSPFri2oq2uI6jlnANOazmEhNWfRKTARQE8g97pel8AznUzC7kq1XR2K48wYoM4wnqFToNj2tYx9PsjbjGZQlUdF7zLuZbX55/oN17wpI85Jvt3OGjECxRZul2mBY6/YEEvFEA1x3X1k+dRh2sU5SgI9S9mhTt3TdsXUOTIk3jX/ZwMM8lYqIpaHNvY1njgMaeX2PxmYwIsuCXUp2evDo5fQ6kMSBbX56P+4cFz8pLblLHYgyHAYACauPyARO2f00H0r2zgVs0s3xP8+ORso5YM33jlWtQJ630ccMTdzaw4A4oyMeraKugtoHFpe/vMNCNb4ZBzF868kKBrYIH9BrvBLhND6UO8lxCfo9NoKNqDqIEv12Nu/d7BurpKvc0McKRB2w6eQMFn2k3XZdRU+o9A/vx8E36zh9x86fgIyEUkUoR66Igxy/6bmfLd3lzDQruxou1taWEePwqooJfU53WJUDl5hVbDw2aqhPpyiGllN934ATQCg== +api: eJydVU1v2zAM/SsBTxugNV2xk0/L1gEr9tGia3cJgoK12VibLWkS3S0z/N8HSk5sJ22xLZckFPlEPpJPLVhHHllbc1ZABo0rkOnG+jUa/TvaQYFDjzUx+QDZsgWDNUEGY6cbXYACbSADh1yCAk8/Gu2pgIx9QwpCXlKNkLXAGyfhgb02a1DAmisxnI/wZmcFdN0qwVDgN7bYSOw+am4Nk2E5Qucqncfo+bdgjdiGS52XQllTkH+pghbQbM7vYk3TpDq1s5imqkAy2ab5WWI7BQWF3GsXKfpPqNMRRKd68osb5P8FvE4IswVD16mtm739Rjk/wnQKga6TAE/BWRMSSSfHx/I1qRO+NHlOIdw11eyyd4a/b0O65dXJySHwV6x0kXr/znvr/wF1r7kFMepKfmmmOhw6VDafnP4F09owrclDtxpoRe9xM2L1o00JSivrsH5q1D9RCLiOY5RcHneNZMyu5PShlg4LsYx1pat7v9FkDPQmdh8v4zTR99T8vL+6ujgATL2dNjUN1+x8Kic1cWlFbVzDUV24hAzmYz0J83ZPXjpQEMjfb0Wo8RVkUDK7kM3neWWb4gjXZBiPUM/R6bgYgfLGa97EkMXF2QfavCcsyEO2XI0dvsgwpfGYuu06g05/ICGql79Fw6X1Q1VR/MoUJUzImF4O6vXuF9auokF9hlZPOduZx3IwjCRoc2djWn0zFrHo2eLiDBQIPQnm+Ojl0fEB+MRZ9gtzHqWUjuXuCbs7XkEB1XG5gAnr18OBVOxs4BrNCO/h/u8pZ88v0y+euwp10kIfNzjNxnLy1gRQkO0/PisFpQ0svm17i4GufdV1Yv7RkJf+rxTco9d4K6wtWyh0kN8FZHdYBTpIa6c+8OyyX7LnM1APp7udESMDco9VI/9AwXfaPPBSRhUpt3PY9l5v04Uv4q4PKAfSJ7KUIhZ5To6f9F2N1u3i+goU3PZPaW0LCfH4U2QEf6aErUsUy1srthYqNOtGxCqDBCmfP/Bq1Hw= sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Update Organization @@ -43,331 +43,29 @@ Update Organization as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/update-secret.api.mdx b/docs/docs/reference/api/update-secret.api.mdx index e895a6ad23..4d287b8ac9 100644 --- a/docs/docs/reference/api/update-secret.api.mdx +++ b/docs/docs/reference/api/update-secret.api.mdx @@ -5,1199 +5,67 @@ description: "Update Secret" sidebar_label: "Update Secret" hide_title: true hide_table_of_contents: true -api: eJydVk1vGzkM/SsGT1tgNk6CPc1p3aRAjbRbI3F6MYyAGdG2mhlJlTRuvcb894LSfPmzaXyxPSIp8j0+crbgcekgncFXLHMP8wS0IYteajUWkEJpBHp6cpRZ8pCAQYsFebLstAWFBUEK8fhJCkhAKkjBoF9BApa+l9KSgNTbkhJw2YoKhHQLfmOCo7dSLSEBL33ODx5CpMFYQFXNYwBy/r0WG/baj5dp5Ul5PkJjcpmFxIffnFb8rLvOWC7LS3L8b0UoyAYvtfmyCJXUCennb5T5XkIfo22VtCaqzHOo5lVSl30+TpfyDF6kYoQEemSkd2u+nX45dkuVnEztMXDT867Y2pIzWrlY6fXlJX8JcpmVhsHh+8osI+cWZT64r43hzViGmo4QSqosuGZj9VoKsk8vtOFbSud18dQ8PYThjuNVNUh/iuzRsB6VQCsm9dkezq8Kl0ChBeWuH/cmVLITtXd6y+lXCUhxtIgWpoW2BXoWWinFEf67iOMAS9e6uzREIZ6+6Vzk/9iXIe93ydtC3fZCnGvdVlWQywVlmyw/nv2B46fG/PVyOaXAFsyDHmxU0Ynqn+vrQx19xVyKoJLBB2u1fbuIBHmUOf+Sngp3aJDrbOf0FdxI5WnJGM87TNBa3PTR1DFBJqJwy3OD+TM5h8vQJ9HktGkAYzDl09/xwXXFq2u7HhcdvBHd02XcRvjONtx0OjkIGLndJTUO1cFDs/AK8ivNm9CUcf/5FaQwXPO6HK6vhnEHuOG23YEV8Gaw62ZHljaHFFbeG5cOh1muS3GBS1IeL1AO0UjYz2EUTgc3bBrk5SgrrfSbEG80Gd/RplZQOpv3DR64wWLL7Jq1bKGRd2ES16t7VPqVtvL/2Af1+q6Fwehw6953W/jDTyxMFGs3ipq3gKYRdqtpW7O3L+PW2F8OzcyvT7UhhbI/h/mMNr2YgUCpFjpUWHNdw/cesxcKcmcqYi6XF1cXl6fwrh0Go8m4ljJmvldfNINkj9GWS956RdAxeMLi3+6AszTa+QJVL95+q+3N35owTz/90OQog0rD1du6DWcQ2pArvIIGXgcJpN0L2TyBlXaejbfbZ3T0aPOq4sffS7LcUfME1mglPjN4sy0I6fi3gHSBuaODvNoZB3/d11J+N4DkeL5N1ynmd415yf8gaWhs0wxTqumoWUPzTbzq7zBLOv+D0cpjL3qMsoyMP2s774l68jiFBJ7r10te8pCCxR88pvBHTFWHyoOmwrMt5KiWJQ/DFGJI/vwCjzTX1A== +api: eJztWUtv2zgQ/ivGnHYBbpwWe9Jp0yTABmm3QR69BIYxkcYWG0pUSMqNavi/L4bU007U1Dnsoogvtvj4ODPfcGY0XoPDpYXoFq4oNuQszAToggw6qfOzBCIoiwQdza2fBwEFGszIkeFta8gxI4ggTM9lAgJkDhEU6FIQYOihlIYSiJwpSYCNU8oQojW4qvAbnZH5EgQ46RQPBEEmZwlsNrMAQNZ90EnFu7bxYp07yh1PYVEoGXvBp1+tznmsO64wrJaTZPkpJUzI+F159XnhNRmuCHr154cCb0Q7kpdKAcvaqPAP790ISMjGRhYs0b5QJz2IzUY06/TdV4pdz2p/B4V2oTai5mZM2XuZJ09xQnmZsXMURq9kQmZ+TxUIiEvrdDZvRmG2zd4547EB0OFrztUF5Sj5RJ2SIRCMZGNU/DMhKmS+MMjDiooUVZHyw9LoBxCQSesMKr8fc5caXciYHZhMoehRuspPOb0kl5KZ+yc+0ejSkWEgymQuB+o5zBM0yUWteqNoa4odT2OLjXj7OVVP8tr5+a2HGJHhipyT+dKeXH/+MRTL2xN3BNbDiZ9lLLgGW/x76Qm7o8To+B4EWFxShvfesisyjh47k/+vSD72Oryc4tKofa/3jVGMvSJjXxEkvtTbN6Jxt31QvCsKoEdn0A5BMEkkhyBUFz3NQwQeutvYAacBeSyMDU0/8GwBmU5Iecmko8zuEmFVuRxNLTz/X6nYv4Ze0B2P+8T6belco6AxWPU0+RRM0XPLeaP8PtQ3Bp80FvKm5mi/ZaXW8NvYQ0HHzvKiT84Z+mejVesCz15Wb7V++uQE9MJjfLLaSWVNGNzKqiM+fOMLpt7uDa82ZAud2+Co7w8P+WtQH8BVGcdk7aJUk8t6Mexd4Lxl9LeM/pbR3zL6W0Z/y+i/YEYXIJMx0whYaJOh4/5FKZNR8c98MOg6Ar9GHwCUXFBcxYrG0nVsCB0lc3T7CnYcECZHfI3qZtFr8EL1tI13V83HCX8J5IdqErjuUF8POcrGR1piXH1smHh5Lflcedr66U6B1pSMXcX55/v3u0XmF1Qy8SXk5NQYbfavMBNyKNVI7FY6Hsy+wM4yd7Rk9509Hyg/6iCgD2p2NDt8IsslShfMnl/qjTG55tkf8cF6haPrdf283Zo3WPd5NU6C+Ubv8vX1xQ5g4HZIavDGyVXTos3IpZp7t0UZOrYuhQimKyyVm67eTUND0E7Xbdd2w9UcmVXT1fUFEKTOFTaaTmOly+QAl5Q7PEA5xUL622ApLo10ld9ydHF2TlUdf6LbWX/BFftQ8IrhspYQLOS5fxOp+8lHpUu1kd8D1XVPufZ9NgB752XXGj59xKwIoa4L5E1ruuF6aLQu0XX90VALb78cNe889Wxb3fbrR1+ltZieI5kvtNewpvPI229ydHEGvfoQDg/eHRzuSDdYzDcUY9fTKUyD2CKqpYjr98xfT3CE2V/dBEtWaOsyzHt42x60lbFqkhw9ummhUPrLVxfJwbtuwXsXa/YOGpNaEBB1/wzMBKTaOl68Xt+hpRujNhsefijJsBfNBKzQSLxjg92uIZGWfycQLVBZ2pGrDV3w22V9Q3+fgHha3sbTcuZ0harkJxANda2YPvg0XnTbUHscjvrDh4hu/07E5GgWdhzFMRVudO2sd1cvbq755ar+n4PLIojA4DeOPvgtiKq95v4e+bE1KMyXJce4CAIkf/4FnOPaIw== sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; + + + + + + + - - Update Secret - + + + + + + + + + + + + + + + -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - -
    - - header - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - secret - object - -
    -
    - anyOf - - - - -
    - - data - object - - required - - -
    -
    - anyOf - - - - -
    - - - provider - object - - required - - -
    - -
    -
    -
    -
    - - - -
    - - - provider - object - - required - - -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - key - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    - -
    - - - models - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - provider_slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - model_keys - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - data - object - - required - - -
    -
    - anyOf - - - - -
    - - - provider - object - - required - - -
    - -
    -
    -
    -
    - - - -
    - - - provider - object - - required - - -
    - -
    - - url - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - version - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - key - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    - -
    - - - models - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - extras - object - -
    -
    - anyOf -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - -
    - - provider_slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - model_keys - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • -
    - string -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - - header - object - - required - - -
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    - - lifecycle - object - -
    -
    - anyOf - - - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/update-testset-from-file.api.mdx b/docs/docs/reference/api/update-testset-from-file.api.mdx deleted file mode 100644 index b638a05a52..0000000000 --- a/docs/docs/reference/api/update-testset-from-file.api.mdx +++ /dev/null @@ -1,867 +0,0 @@ ---- -id: update-testset-from-file -title: "Update Testset From File" -description: "Update Testset From File" -sidebar_label: "Update Testset From File" -hide_title: true -hide_table_of_contents: true -api: eJydVU2P20YM/SsCTy0wWW0WPelUZ9tFNkm7i9jJxTAMWqLtSSTNZIba1jX03wvOSLbkj7TIybJEch4fH9/sgXHjIZvDjDx7Yg8LBcaSQ9amfiwgg8YWyLTkGLBcO1Mt17okUGDRYUVMTkrsocaKIIM+UhegQNeQgUXeggJH3xrtqICMXUMKfL6lCiHbA9a7p3WowTsrNTw7XW9Awdq4CllgNLqAVp1GtAsFrLmUV10PyWMBrbyX88jzG1Ps5JDT43NTM9Usn6qmZG3RcSrnvSqQA6wjQOuEFNbk5V9oP/sO2JWu0e3gCO1BMloVMpcx7Tyd6qaSWdxPP4OCd9OnP2ExLpHMJKVtVZ9rVl8o5xG38whvkCkELK+OsW2lniNvTe1jf3e3t/JTkM+dtqIEyGDa5Dl5v27K5GMXDCMS0dpS50E46RcvOdcZzE0Tk7o+dM20ITdg7D5ESKcR8UWZHNo/kcBQKHVTltAu/ou0iOhcTYdeI0+/3N2dU/MZS12ExpPfnTPux3kpiFGX8qSZKn8eUJp89PXa5gwI6LltF0cK0Dkc6vODiQCF8MpvLqmzD/2DvMdNUPM1IfehgYz/p1npKx7dxQ0mcaQ3snu9jd8ifZcO60PezmbPZwXjbMdD/RQWJulN5cGZKnmIvlcRb414ozWegw/yFjJIraMXTX+lnWR9uj96YZs2tjQonujJvfSe2bgSMtgyW5+laV6aprjBDdWMN6hTtBpOcU3C1+ReQoP9ecobp3kX6k2eH9/T7i1hQQ6y+WIYMBXRRRmNww4TRKvfkxDaWfmk4a1x+p+ojc7NtzFLGNP12oT0jtwO2xvMv1ItrUqfEfbtzeub22vNdAnJ5Pmx2x3Mw+70OEIYqBO6DkSJeVZhcYAJq1+PHwSlTKnCelDvO7Md4TsQw/Q3p7ZEHTYkoNh3Y59DN3Y4eJUHBdnoGuxmv1CwFclkc9jvV+jpkyvbVl5/a8jJBBcKXtBpXAmf8z0U2stzAdkaS09n+A4+Az997Nbp5wTUZdz9lGsZ8QuWjfwDBV9pN763g1VsexHtu4D7eNarsNDHApcuT7GfmDTJc7I8CD+zQ5HoYaOen6YzULDq7uzKFJIjhUNddXwUcbftv/zLAGw= -sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend -custom_edit_url: null ---- - -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; -import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; -import OperationTabs from "@theme/OperationTabs"; -import TabItem from "@theme/TabItem"; - - - - - -Update Testset From File - - - -
- -

Path Parameters

-
-
-
    - -
-
-
- - -
- -

Body

- required -
-
-
    - - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - -
    - - testset - object - -
    -
    - anyOf - - - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - created_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - deleted_by_id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - slug - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - id - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - testcases - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - property name* - FullJson-Output - - -
    -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    - -
    - number -
    -
    - -
    - boolean -
    -
    - -
  • -
    - Array [ -
    -
  • - - - - - - - - - - - - - - - - - - - - - - - - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    - -
    - - metadata - object - -
    -
    - anyOf -
    -
    -
    -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - detail - object[] - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - loc - object[] - - required - - -
    -
  • -
    - Array [ -
    -
  • -
    - anyOf - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
diff --git a/docs/docs/reference/api/update-testset.api.mdx b/docs/docs/reference/api/update-testset.api.mdx index 11a5adda82..fd669ceab9 100644 --- a/docs/docs/reference/api/update-testset.api.mdx +++ b/docs/docs/reference/api/update-testset.api.mdx @@ -5,33 +5,36 @@ description: "Update a testset with given id, update the testset in Postgres." sidebar_label: "Update Testset" hide_title: true hide_table_of_contents: true -api: eJzlVVFv2zYQ/ivEPSWAZmfBnvQ0NyvQoFtmpM5eHKOgxbPEViJV8mTXE/TfixNpS3bqtHueX2yTd9/dfXf3sQWSuYd0CQv05JE8rBJQ6DOna9LWQApPtZKEQgoKJmKnqRC53qIRWiWiCfdU4NFCGzG3nnKHfvJsns3M5T59NvH6o1biypO7ToVWwm6OroJ9yYo1RlA1eTaZ3ypJUlw94C4meZ2KB9yJ/piscFiXMgsZ2FIdsugjPyI1znBwTy4ViwK/F/MQDRKwNTrJld8rSCFcfIyIkEAtnayQ0DFpLRhZIaQwFAYJaCatllRAAg6/NNqhgpRcgwn4rMBKQtoC7Wv29OS0ySEB0lTyQSxR3CvoulVAQE9vrNqz2zlgZg2hIb6SdV3qrM99+slz69pRvNpxZaTR87+Q9+UsHvi+SyCSz6aasOp9pVKag8hyPsIM6UQ8u/6EGTFAPJDOyf0I/y7idt25z5izZchzSGM1yvA4DdB1DOPQ19b4UN/tzQ1/nQ7yhybL0PtNU4rHaAw/z2CI8tvt7Uvgf2SpVe8m3jpn3X9APeuLQpK6PKH71KC02WkzzP7vTT+Kp63skuOJNoQ5OuhWl/vxpw0Jcssqn782Gn+h9zLHobmXTXsyxIJvf9RoriuEjnajVg/0BnYvl/FHoO97wQ4m7xaL+QvA0NsKqbC89XUTVp0KSGEal9tP22HNO0jAo9sedKBxJaRQENU+nU6z0jZqInM0JCdST2Wt4VxVZ/2tuGNT4EX3mDVO077Hm83v3+P+HUqFDtLlamzwgWcnTMOp2bERstbvkXmJ8jRrqLBO/xtaHBWqCF5cOE/l46Azb7/Kqi5x0Imhs0c9WLb9OGmzsX3gyG6s6o3MPqNhMWSGQsE3k18nN5doiA5iNr+PyyMzGiUQzCA5I/pIMSSAVb85QCir34cLrq+2nippRnjxTVscdf0kq3ZY3//Z6xcHiPArTetS6l4Qes7buA/Lw2PnIYF09PCtEiisJ7Zo27X0+OTKruPjLw06HutVAlvptFzzqCxbUNrzbwXpRpYeX2nC1WOUimtxKcnD6Bue+60sG/4HCXzG/ekD3c9tcdisNhrchVi/9GI1ALzQbtbV4DHLMqzpVdvVSFPmTwtIYB2f8coqdnFyxzoodyFX25feb3Z/1kIpTd6w2qYQIPnzDU5rWwI= +api: eJzlVU2P2zgM/SsCTzOAN5kOevJps90CHXQ7G0wze8kEhWIxtlpbciU6adbwfy9oKbGTaWa35+aSRCQfycevFkjmHtIlLNCTR/KwSkChz5yuSVsDKTzWShIKKSioiJ2mQuR6i0ZolYgmyKnAo4Y2Ym495Q795Mk8mZnLffpkoviTVuLKk7tOhVbCbo6mgm3JijVGUDV5MpnfKklSXN3jLgZ5nYp73In+maxwWJcyCxHYUh2i6D0/IDXOsHNPLhWLAn/k8+ANErA1OsmZ3ylIIQg+RURIoJZOVkjomLQWjKwQUhgSgwQ0k1ZLKiABh18b7VBBSq7BBHxWYCUhbYH2NVt6ctrkkABpKvkhpijuFHTdKiCgpz+s2rPZOWBmDaEhFsm6LnXWxz797Ll07chf7Tgz0uj5X4j7chT3LO8SiOSzqiaseluplGYnspyPMEM4Ec+uP2NGDBAfpHNyP8J/E3G77txmzNkyxDmEsRpFeOwG6DqGcehra3zI7/bmhr9OG/ljk2Xo/aYpxUNUhv/PYPDy+vb2OfA/stSqNxNvnbPuJ1DP6qKQpC5P6D5VKG12Wgyz/3vTt+JpKbvk+KINYY4OutXlevxlQ4BcssrnL7XGB/Re5jgU97JqT4ZYsPS/Cs15BddRb1Tqgd7A7uU0/gz0/cjZQeXdYjF/BhhqWyEVlqe+bsKoUwEpTONw+2k7jHkHCXh028MeaFwJKRREtU+n06y0jZrIHA3JidRTWWvgWfaYNU7TvjeZze/e4/4dSoUO0uVqrPCR2yMU/FTtyLWs9Xvk1OMGmjVUWKf/DVWMS6gIVpwbN97DsErefpNVXeKwCobiHUd+2fYdo83G9o4jgbM+LTGb30ECTECYgZvJq8kNnN+OE2WeCZnRyGkQQ3LG35E5SACrfiCAUFa/DwLOqbaeKmlGePFULY7r+iSadpjKX+yoxaYh/EbTupS6n/Oe8za2+fJwwzwkkI7u2SqBwnpijbZdS4+Pruw6fv7aoONWXiWwlU7LNbfHsgWlPf9WkG5k6fGFIlw9xA1wLS4FeWh3w72+lWXD/yCBL7g/vbt9rxaHaWqjwpvg67d+Bw0Az1Yyr8tgMcsyrOlF3dVoVcwfF5DAOl7nyio2cXLH603uQqy2T72f5v6thVKavOElmkKA5M93EkZMcw== sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Update a testset with given id, update the testset in Postgres. @@ -47,294 +50,29 @@ str: The id of the test set updated. as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - - -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/update-variant-parameters.api.mdx b/docs/docs/reference/api/update-variant-parameters.api.mdx index 9792a11377..d3d0f14354 100644 --- a/docs/docs/reference/api/update-variant-parameters.api.mdx +++ b/docs/docs/reference/api/update-variant-parameters.api.mdx @@ -5,370 +5,77 @@ description: "Updates the parameters for an app variant." sidebar_label: "Update Variant Parameters" hide_title: true hide_table_of_contents: true -api: eJztVk1z2zYQ/SuYPTkzrOR6euKpiuOZqGkbjS3nIms8a3IlIiEBBABtqxz+984CpElJkZvccqguIoHdh3378cAGPG4dpCv4hFai8g7WCeTkMiuNl1pBCrcmR09O+IKEQYsVebJObLQVqAQaIx6j7+RO3amZ3br0Tgkh+uV7mYsz5+2bVCwLEvN3Qm8C2MhVeC3qcM4k+hrclRpzcRZP76Jb9Mcv4nYH2RtnWnmUSqptwI+A+SjoEOE1Skd9jO+Xy8XVc0aBbCrmITJLQjomR9ZqK54KWZLwdheA+0APKURs8rVVPfgfNx//viZntHKUill4F7ZbOBXtOCujyCEBbcgixznPIYVof98neTCFBEYv6aoBhRVBCkM9IAHJpTXoC0jA0tdaWsoh9bamBFxWUIWQNuB3hj2dt1JtIQEvfckLXT3EPIe2XUcEcv6tznfsdgjIVEl53kJjSpkFGtPPjhusGZ1nLJP0klx4G9FoAPNcshuWi5FVPKCLUz98psyP4lwMCC2HUVXS31fkHG4pYKrdx03I0T7TNnlZUXVZAnPsMS8DivirQ2nb4+MH/qsxiRHIq20NbcuofacE9hfn5/y3P5o3dZaRc5u6FH2fwfdnO57y28XFMfAnLGUe3MQVz8APoB7UMCePsuQn6alyxwalzvZ2v6MkUnnakoV2PeQercXdqPJ/6hgg171y29ea+aWSPdhp05AMseTd/6o784pHd3br8fj06Y3ZPU3jXUzftw7rTVjCjgBjbSvyhWaxMLUPsuALSGHaCYGbNoMktNM9BXFkH3v5qG0JKRTeG5dOp1mp63yCW1IeJyinaCQcXhmzsCsu2TTMjqOsttLvAt5sMf9Au/eEOVlIV+uxwQ23UWyMfbOXmqCRH4hT1KnarPaFtvKfWO1O2IroxTngBr0e5OnqGStT0pG8fEMehs4DqTY6xNDlvCP4FrMvpFhOOVmR+/nk18n5qYx0DmK2mHcjhVkYqZ5MMIPkIOcv2YYEqArzBJ6w+n3YYKpGO1+hGuFFmRG9XC/GJd4LsBnm+/8L/2e58LuO9/Tsp6ZEGcQsdEbTzfKqv9S5oOneBb9/7xTaeTZvmgd0dGvLtuXlrzVZHsp1EoEeuLtXDeTS8XMO6QZLR680y9l1p3lvxKmI+8FVPLWPWNb8Bgl8od3+V0nQ86LXhaYzuIxn/RJUdwA4uoT4goges4zr+6rteiSOi9slJPDQfbtUOmcXi08s6PgUY9WBetClsNZAiWpbR52IkPz7F3A47+g= +api: eJztVk1v4zYQ/SvEnLKAaqdBTzrV+QDW3e6ukY+9OIbBSGOLW4nkklQSV9B/L4YULSneeIugQHtoLo7I4eO8mTczbMDxrYV0CV+4EVw6C6sEcrSZEdoJJSGFO51zh5a5Apnmhlfo0Fi2UYZxybjW7DGcndzLezkzW5veS8ZYXF6LnJ1YZ96l7LZANr9kauPBBkeZU6z290zCWc13peI5Owm3d94t4vWLsN1BRuNMSceFFHLr8QNgPnDae3jNhcXo4/vb28XVc4aebMrm3jODTFgih8Yow54KUSJzZueBo6MvKQRsdLWREfy3m8+frtFqJS2mbOa/mekWXvN2GJWB55CA0mg4+TnPIYVgv45B7k0hgcFHumxA8gohhT4fkICg1GruCkjA4LdaGMwhdabGBGxWYMUhbcDtNJ20zgi5hQSccCUtdPlg8xzadhUQ0Lpzle/o2EtAoorS0RbXuhSZpzH9aklgzeA+bYikE2j914BGAzzPBR3j5WJgFS7o/FQPXzFzAz8XPUJLblSVcOsKreVb9Jhy93njYzRm2ib7FVmXJRDHiHnhUdjHDqVtD6/v+S+HJAYgR2UNbUuoUSme/dnpKf2MS/OmzjK0dlOXLOoM3hxtkb81IqQCcvdRWBHu6CyFdLhFM0jIdTRqE6hULjYC8/XD7pjWPnZm7HwXkig3YnvoflhfB62/jnbhzdgnMmuTf1hiP5DC0MXVS5cuzz07g9QF1twdJRGs2Mz9a7LeZ3ucx31+RlQG18y07lTfS8Gr/Zezs0OBf+GlyL182RX14rerO0fHRel17rCyhwalyka7fyOGUd7tqg8WN4bvBqn6XQUHveDt9qjQY+gj2OumPhjslnZ/lCjiFa7u7FbDNh7DG6L7Oo3LEL7vXRZNaJQeAIbcVugKRUNL186PJ1dACtNuINlp04+mdjqaZBbNYxxjtSkhhcI5bdPpNCtVnU/4FqXjEy6mXAuvZ4tZbYTb+SOzxfwD7t4jz9FAulwNDW5IKSH3Y7N92LkWH5Ci0A3QWe0KZcSfIaHdDC3CKaJJGrzuJ+HVM690iQeT7Dsl24sLhNwo70MsGM+QzRZzSIBiESrjdPLz5BRevtVGxv6BkflKiQT8NiQvQrkPIiSAlS8TcMirX/sNoqeVdRWXA7wwxVh8DSyGmRs51vRl+/978r/ynuxU7vDZTXXJhe9RXhlNV6LL+GakhKaj9+P4WVMo68i8aR64xTtTti0tf6vRUCGukgD0QIpeNpALS//nkG54afGIWE6uu1b2jr3mcSxWSZX6yMuaviCBP3A3fvT6Nl3EXtB0Bhfhrp98M+0BDmYL9f1wYpZRfo/argY9b3F3Cwk8dE/jSuV0xPAn6tP8KfiqPHXfi/xaAyWX2zr0hgBJf38B1oTAMw== sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Updates the parameters for an app variant. Args: -variant_id (str): The ID of the app variant to update. -payload (UpdateVariantParameterPayload): The payload containing the updated parameters. + variant_id (str): The ID of the app variant to update. + payload (UpdateVariantParameterPayload): The payload containing the updated parameters. Raises: -HTTPException: If there is an error while trying to update the app variant. + HTTPException: If there is an error while trying to update the app variant. Returns: -JSONResponse: A JSON response containing the updated app variant parameters. + JSONResponse: A JSON response containing the updated app variant parameters. +> + -
- -

- Path Parameters -

-
-
-
    - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
    - - - - parameters - - object - - required - - -
    - -
    -
    -
    - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/update-variant-url.api.mdx b/docs/docs/reference/api/update-variant-url.api.mdx index c16d6c0266..3044551fb2 100644 --- a/docs/docs/reference/api/update-variant-url.api.mdx +++ b/docs/docs/reference/api/update-variant-url.api.mdx @@ -5,332 +5,77 @@ description: "Updates the URL used in an app variant." sidebar_label: "Update Variant Url" hide_title: true hide_table_of_contents: true -api: eJztVsFu20YQ/ZXFnFqAlVyjJ56qJAaixm0E2cpFFowxORI3IXeZ3WFkVeC/F7NLirRcuynQY3URuZx5OzvvzSOPwLjzkK7hEzqNhj1sEsjJZ07XrK2BFFZ1jkxecUFqtbxWjadcaaPQKKxr9S0mTu7MnZm5nU/vjFKqX77XufrBs/sxVbcFqfk7ZbcBaZSq2KombDKJuY0rx0my6TjkzixRe+p3en97u7h6zCjUm6r5Vioj56xTNssa59W+0CUpdgdtdgPSeRkRmbhxpof+7ebjH0vytTWeUjUL98p1C0qbXGfIAroviAtyAbJD36NXvsky8n7blMo6ZSxPIAFbk0OpdZ5DCjH6vm9X40pIwNHXhjy/sfkB0iNk1jAZlkus6zJsas30sxd+juCzgiqUq9oJOGvycidY6RH4UBOk4Nlps4MEWHMpCytXQpvAQNRrwZ081DyXnMxWleb7irzHHYW6zOHjFtL1OUKbnFZMU5bQbgbMtwFF/d6htG3Sh9qHz5Rx1wjtKBeFxtaMyh1BRY12Ra6W1ws8lBZzaAV0AGHXUFiIDIYuXV5cyN9Tzd8MxPX8Q/LdPLRh218uL58Df8JS5yFNXYlE/wXqGbs5MepAsGaq/POA0mZPnn4HRdow7chBuxm4QOfwMFLCtY0Fig4qv3tNNCdme7CXQ0Mz1K08/ScdyLni1l3cZizTvr2xuy8f411s399t1oeIsTwDjNxWxIWV8a0byaiRC0hh2onTT4+DTNupJ/dNZyIguSLnAwlhOqFgrn06nWalbfIJ7sgwTlBPsdZwbsSz8FS9ldAwSJ6yxmk+BLzZYv6BDu8Jc3KQrjfjgBvRUFTF07ATIVjrDyT9MVjJ/azhwjr9Z6Q6AS0FFDFLGiDqXA4udfWIVV3SyXUGgsf2MqyeG8igRdBma0NhHQvdqd9g9oVMLojkfGzIxeTnycVLbeoS1Gwx74YMszBk/QlDGCRnRJwogASoChMGTFj9OjyQ89fWc4VmhBctSPVGuQpu9aSykZH//1L9j1+qnYyZHnlal6iDPXUvwDid616KHhJIR7KMYykDukmgsJ4l9nh8QE8rV7atLH9tyMmYbTpBP4g01+KSRT9wR/hCh/BWCxz/FLxMwssmDtiZtYvtxoxZJn1+NXYzspzF6hYSeOi+DSqbS4rDvdgk7iGF8I0hyWHgw9oRSjS7Js5ahJTfXzRScMo= +api: eJztVlFv2zYQ/ivEPW2AZqfBnvQ0bw1Qt+lqOHZfHCNgpLPEViJV8lRHE/TfiyMlS3bWrAP2uLxEou4+Hu/77qNbIJk5iHfwUVolNTnYR5CiS6yqSBkNMWyrVBI6QTmK7fpW1A5TobSQWsiqEl9D4uxe3+uFzVx8r4UQw/KDSsVPjuzPsdjkKJavhTl4pEmqICNqv8ks5Na2mCbxptOQe72WyuGw05vNZnXzlKCvNxbLA1eG1horTJLU1oljrgoUZBulsxHpsoyAjFRbPUC/vfvw5xpdZbTDWCz8u7D9glA6VYkkBj3mSDlaD9mjH6UTrk4SdO5QF8JYoQ3NIAJToZVc6zKFGEL0w9Cu2hYQgcUvNTr63aQNxC0kRhNq4kdZVYXf1Oj5J8f8tOCSHEvJT5VlcFLo+I2x4haoqRBicGSVziACUlTwwtYW0EUwEvVScC8PsUw5JzFlqeihROdkhr4u3Xw4QLy7ROii04quiwK6/Yj5h0cR73uUrouGUPP4CRPqG6EspqzQ0JpJuROooNG+yO36diWbwsgUOgYdQcjW6BcCg75L11dX/O9c83cjcQP/EP0wD53f9tfr6+fAH2WhUp8mblii/wL1gt0USSpPsCIs3fOAwiRnX3+AIqUJM7TQ7UcupLWymSjh1oQCWQely14SzYnZAez7ob4ZYsNf/0kHfK6wdR+3n8p0aG/o7veP8Tq07+82G0LYWJ4BBm5LpNzw+FY1Z1SScohh3ovTzdtRpt3cof2qEhYQP6F1ngQ/nZATVS6ez5PC1OlMZqhJzqSay0r5WXGY1FZR41MWq+U7bN6gTNFCvNtPA+5YJoH487BTz2Wl3iG3QMuS3xc15caqvwKbESjWZx6y+IwswPVoRDdPsqwKPBnLyOHUQcbVS48Y5QZKH4wvrG/0wh9bLFZLRkPrwqxczV7NruDyOjoL5tmRiZ+d4VT+M0QX/T11FiLA0g8OEMryt/EDn7kyjkqpJ3jBWcTgf1tvQmcVTfz5/7vyP74re+kSPtG8KqTyrtPfa2HodoP8HEQQT6QYpo3nbh9BbhxxbNs+SodbW3QdL3+p0fJo7XsRP7Icd2x++TBkLXzGxl9WnuNfvEVxeFGHobpwbHbTkLFIuM8vxu4nTrLabiCCx/7KL03KKVYe2f3kEWLwPx042Q+5X2uhkDqrw3wFSP77Bi81Yjs= sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Updates the URL used in an app variant. Args: -variant_id (str): The ID of the app variant to update. -url (str): The URL to update. + variant_id (str): The ID of the app variant to update. + url (str): The URL to update. Raises: -HTTPException: If an error occurs while trying to update the app variant. + HTTPException: If an error occurs while trying to update the app variant. Returns: -JSONResponse: A JSON response indicating whether the update was successful or not. + JSONResponse: A JSON response indicating whether the update was successful or not. +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - - - -
    - - commit_message - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/update-workspace.api.mdx b/docs/docs/reference/api/update-workspace.api.mdx index ccd8a61e19..ec43985ce5 100644 --- a/docs/docs/reference/api/update-workspace.api.mdx +++ b/docs/docs/reference/api/update-workspace.api.mdx @@ -5,36 +5,36 @@ description: "Update Workspace" sidebar_label: "Update Workspace" hide_title: true hide_table_of_contents: true -api: eJy9Vttu2zgQ/RVhnrYoY8uujaJ6qpsWaNB2G6TOFljDCGhpbLORRJakkrqC/r0YUVfftgh21y+2qcOZ4ZnDM8pBKtTcCpleRRBApiJu8e5R6nujeIjAQHHNE7SoDQSLHFKeIAQg9eZORMBApBCA4nYLDDR+z4TGCAKrM2Rgwi0mHIIc7E7RLmO1SDfAwAob08JnvfGuIigK1kRucv8b8b/WwVyWpYuBxr6R0Y427ocMZWoxtfSIKxWLsORm+M3IlNbajEoTc1agoX+u9hx4uvu8LnnqV0Tnq1bSLI6BKqlr/JP2FgwiNKEWivI9NdTbToiCVd2M7rg9F5DBWuqEMEDwCyvKek5nuXVhvZmlxtUwufqGoYV9WNMBKApCazRKpsbRNvZ9+uqdHL5kYYjGrLPYu6nA8OTGhBo7FJySyaVD0YmoD2uexUTH2B9PL/zpxWjq+S+DF9Ng4g/8V5OxP37u+4HvH3J8KkGHst9J8HLUJhDRucAka9bI7xTqv5OYgz0t1JzWC0ZewlPxk9dlnTGLFlcwSDBZlbZ0JD3Xmu/OZv9U7T4m4dYVFlC6UElwhdsreHnEbRrdOs1PxuNDmf/FYxGVIbx3Wkv9dI1HaLmI6ZewmJhDQCzD3tPfaJZILW5QQ7Fs6XGctsf9KMO2F2ZzrnWf0Bi+wa5iTkFLMjynjX9oDZ3Lpa5wnV609Dp2Tx/jraPvnJW9n8+vDwK63vab6u6597UzPxO0W0mzVWW2HKd2CwEMuxoyw9zN02LYTD8zzLuTsAAGBvVDPYYzHUMAW2uVCYbDMJZZNOAbTC0fcDHkSsB+abPyqXdJ0PIiGAwzLeyujDe7vvqAu/fII9QQLJZdwBfSnVNSH9beNiU+4K6+JwHMMruVur4h1RDful1EGin6ph3E737wRMXYDtJWFf0zNMtd1+246Hz0IvBHwXQy8Cejv0v3TNeyLLTqZMXCGx7eY0o3mxh1wf3BaOCfoq3a4M2ur6qLykPbKdjBqLJeY5qWAANMylsKFnnyun1AfChpbMLTTrwjQtoz74p6iz/sUMVcuImvSx9wIlv0jMoAg6B5bWt1Rsu9d64lg600lvbn+YobvNVxUdDy9ww1yWXJ4IFrwVdE6SKHSBj6HUGw5rHBg1IbX4M/bqrr+8wDdvwItaRS0tMDjzP6Bwzucde+d5JT/Y9Ze/yUlritb0peQS5dtou5GxF1iAMfp8rdjlkYorJnscuOfVzfzoHBqnpvTWREWzR/JE/kj65aqVyn6cWW1nKIebrJyHkDcCHp8wsVpAit +api: eJy9GGtv2zbwrxj3acOU+NFHWn1a1hZo0HU10nQFFhgCI51tthKpklRcz/B/H46kJEq23C7oli8xj/fivU87kCUqZrgUVxnEUJUZM5hspPqsS5YiRFAyxQo0qDTEtzsQrECIQaoVE/xvS5nwDCLgAmIomVlDBAq/VFxhBrFRFUag0zUWDOIdmG1J5NooLlYQgeEmJ8C7gN/oKoP9PmpkNdr8CEEfa2ZOysLxQG1+k9mWCPssUykMCkNXrCxznlodx5+0FARrJZaKbGk4ajo53XfAxPbd0lquqxG9z0NEledAmtQ6/kG0+wgy1KniJcl7KKuXAYt95P2bJcycYhjBUqqCcIDQzwy3+gxL+eDYji4NOa5Gk3efMDXQR2s8APs9YSvUpRTamW02mdC/zsvhfZWmqPWyykfXHhke7JhUYWCCoTB54bDoReSHJatyMsdsMntyNp2eTWaj6SyePY0fPz1/NH02fX7xy2QSTyaHNh4SEJjsOwTMHk1bATw7xZjCOmrCbwjrvwsxh/YwVjcE30ed6vK9VYPoCizubKEKxXODhT6Mg0qjsohZxome5fPg3uX+YCATLYWuzB2zARl0nwy5AkVVQHwLciNQQQT3HDf2B2bcSPvjnuUVc7/bIsiyggsbNGUutwUKkxRMsBUqWBypc9cyx1rX5Ae4m/iNej4vURVcay7FkO2HHq+QZYneaoOFN0ESJLP21ghhlPk2OQmY3DPFmXA5lOMBsJAZX25rQJJKseSrSjXMW6KafUCsKpFoVPfc9kEvVGOq0NS6NiffOJuzZ9zFJt1Q3HMlhXVb68HgncMYwbMHcawcg9pobJi2R8+hBXg1W4Cl93HnjE1WaAGNRzo4nm8H5ln3YKRqz5tWZDhxWP4hwLMPQZ57CPK+prxOXGJGlNyJwI0DGnkoplNpGrY9aJ9L71qhRpOUTOuNVFn9ojue5z7WSVB7bN67zOVGh++tAWTy8Bw6Raq+CxzE4nypUHFsENpjGBa6FxfNPRNCml7edUAWi4t72cvOLqgXQomqjkVNDe5j6xQFU1weIwnvDqSgrnJzVFBz06cp0CieHqNpb/o0Xyqs8BiJvwgq5bypim1fBKYU254ssPOgmB6bptoB9TZoMMdK/wkFuvX824Jst6wb3jFZb23rbcazf/Pgt75rf0sHO/3bx3q83qBwtPs1CtlZ8/Fsdjhe/slynrnN45VStts+cLbM0DCenxgIcpl2br+jAXNhkHr7fjHsw999+tkZSK9OjUxvUWu2wnBSG0K1xhi5mewbrqF3OdEeL/BFa15n3eFnvHTmO7VCvL65mR8wdL7tOtXN16OPYYNAs5a05ZaVsYutWUMM4zCG9HjX22z346Zn6PEuXEX3EAGNB/VmXKkcYlgbU+p4PE5zWWXnbIXCsHPGx6zkNug1ppXiZmtJLudXb3D7GllGs+jtIkR4TzHmoqaL1jiMlfwNbuuciOGyMmup2r5kF+W1oyIDUfRet8vuq6+sKHNsl9U2ArqmbMDhZkObyuOzycXZ7PnN9En8ZBrPnp1PLqZ/2Q1FLKVV1Hvt0pphdDm/ooqKSjvGk/Pp+eRAXAeZEpGlJlDSXZM2HXs3lqbSXNgsBIOs+LW9IBuUUpuCiYDfkUDpTcne3Aa/mnGZM+42aWXz3AXRbacQUXeIDz+QtHFE952PGosI1lIbYrTb3TGNH1S+3xOYWjjFyiICO5jekT1vd5BxTb8ziJcs13igc1PA4Kdrn6c/jyA6/pY6ngQFE3U0OkEEn3F75FMP1ab/UXzHULYIrut82XmUF07a2Y1rCjWLg8pNmjuKyzTF0pzEXQQFY/7hBiK481+ICpkRiWIbqoJs47SVpan3HwvbQc7EqqJaG4NjSX//AHA5zc4= sidebar_class_name: "put api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + context={"endpoint"} +> + + + + Update Workspace @@ -43,810 +43,29 @@ Update Workspace as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Path Parameters -

-
-
-
    - - -
-
-
- - -
- -

- Body -

- required -
-
-
    - -
    - - name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - updated_at - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - - - -
    - - description - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - type - object - - required - - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    - - -
    - - members - object - -
    -
    - anyOf - - -
  • -
    - Array [ -
    -
  • - -
    - - - - user - - - object - - - - required - - - -
    - -
    -
    -
    - -
    - - - - roles - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • - - -
    - - role_description - - object - - -
    -
    - - anyOf - - - -
    - string -
    -
    -
    -
    -
    -
    - -
    - - permissions - - object - - -
    -
    - - anyOf - - - -
  • -
    - Array [ -
    -
  • -
    - string -
    - **Possible values:** - [`read_system`, - `view_application`, - `edit_application`, - `create_application`, - `delete_application`, - `create_app_variant`, - `delete_app_variant`, - `modify_variant_configurations`, - `delete_application_variant`, - `run_service`, - `create_secret`, - `view_secret`, - `update_secret`, - `delete_secret`, - `view_app_environment_deployment`, - `edit_app_environment_deployment`, - `create_app_environment_deployment`, - `view_testset`, - `edit_testset`, - `create_testset`, - `delete_testset`, - `view_evaluation`, - `run_evaluations`, - `edit_evaluation`, - `create_evaluation`, - `delete_evaluation`, - `deploy_application`, - `view_workspace`, - `edit_workspace`, - `create_workspace`, - `delete_workspace`, - `modify_user_roles`, - `add_new_user_to_workspace`, - `edit_organization`, - `delete_organization`, - `add_new_user_to_organization`, - `reset_password`, - `view_billing`, - `edit_billing`, - `view_workflows`, - `edit_workflows`, - `view_evaluators`, - `edit_evaluators`, - `view_testsets`, - `edit_testsets`, - `view_annotations`, - `edit_annotations`, - `delete_annotations`] -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    -
    -
    -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/api/upload-file.api.mdx b/docs/docs/reference/api/upload-file.api.mdx index d98d2edb79..7e1762784d 100644 --- a/docs/docs/reference/api/upload-file.api.mdx +++ b/docs/docs/reference/api/upload-file.api.mdx @@ -5,363 +5,75 @@ description: "Uploads a CSV or JSON file and saves its data to Postgres." sidebar_label: "Upload File" hide_title: true hide_table_of_contents: true -api: eJztVk2P20YM/SsDnhJAsbeLnnSqs02QbdqsETu5eI0FLdHWJKMZZYZa1DX03wvOyLa83o+g554kj8hH8vGR4x0wbgLkC5hT4EAcYJlBSaHwumHtLOTwpTEOy6BQXc2+KufVH7ObT2qtDSm0pQp4T0FpDqpERsVOTV3gjacwurW3duI3Ib+1bQS5421DKlfvNFfkFapvwVmBLMJ9RBzdWqVUAn+VAr/Xhl7nal7ReXx2KgH3fpyKuLNYk3p1EytA8zpXXJGKh24d33tDpdeq8e5el1TGbD8Tt95KwgJX6oJTZE+hNbz3TjHFs6AQRpCBa8ijRLsuIYe+WEkRMvD0o6XAb125hXwHhbNMluW1bg3rBj2P187Xb4Q/OQ5FRXV8a7wAs6YgvwYcys/0hMBe2w1kwJoNHfql5vK5yyBm8Yi5hESGHFbaot8OAIRx8RyyKQhotzdryBcPsbrscGJbY6BbHrF6WalPgtEJaDJ0q29UcM+O9lSKBmOqA2eh7G5IZicIRw/2LcWD0DgbEkmXFxfyOJXwrC2kU+vWqM+9MWTDTmDTGF3EDo5Fk8+1QZfPsX9dCnV7yp6ySnRkUHhCpvIO+Tnrq2SlJvwihbqEPvoJ+IOOzIhnum4MHdjoIrW/Xl6ek/cVjS4jNeqd987/d+ZKYtQmcshUh3MD44qTrz+hOG2ZNuShWx6ZQe9xKOg/XUpQGK/D5jmq/6IQcJPk/8KcRTL6MXuhK1JXCt3bDfpxpDex+3QZvyf6Hgu2N/kwn0/PAFNva+LKyXZqXBCXBrmCHMb9lIdxGjTIIJC/Jx8i7603kEPF3IR8PC6Ma8sRbsgyjlCPsdHw8LqYxK/qSkzjKghUtF7zNuJNptcfafuBsCQP+WI5NJiJbJIQTs0OPcBGf6TtXuE5TFqunNf/pO5moCWBKnlJzdquXXTv6elze4vFd7JSqtSZ0r4Y/TK6eKqY3kFNpte9+rGI6t/nEc0ge0DXgSjIgOoofWDC+rfjB8lSGlKjHeD1K/x9ukBOUhpcIP/fzD9xM/fKYfqbx41BHZdAbNOuH4HF/qIL0sA0BMsMKhmTfAG73QoDffGm6+T4R0tepLzM4B69xpUIayHLp9qLegffaStrOzXqTVwRYm5aSeWxW18WWnKaFAU1PDA/W7AyModhnt7M5pDBqv9zUbtSfAQ44mbHV0my6/4Fa4RmKA== +api: eJztVsGOGzcM/RWBpwSY2JtFT3OqmybINm3WiJ1cvMZCHtEepRpJkThGXWP+vaA0tsfrzW7Qc04jS+Qj+fgoeQ8kNxHKBcwxUkSKsCxAYayC9qSdhRI+e+OkikKKN7MvwgXxx+z2o1hrg0JaJaLcYhSaolCSpCAnpi7SJmAc3dk7OwmbWN7ZNoHc086jKMVbTTUGIcXX6CxDVnGbEEd3VgiRwV/kwO+0wZelmNd4GZ+cyMC9H+Ui7q1sULy4TRVI87IUVKNIm26d1r2h0Gvhg9tqhSpl+wmpDZYTZjilK8qRA8bW0ME7x2TPCmMcQQHOY5Ac7UZBCX2xnCIUEPBbi5F+c2oH5R4qZwkt8bJpDWkvA43XLjSvmD/ejlWNTVr5wMCkMfKvAYf8M38hUtB2AwWQJoPHfok5H3cFpCweMeeQkqCElbYy7AYAzDh7DtlkBGl3t2soFw+xuuK4Y1tjoFuesHpZiY+M0TFoNnSrr1hRz44OqFiDKdWBM1N2PySzY4STB4UW00b0zsZM0vXVFX/OJTxrK+7UujXiU28MxbAT0nujq9TBMWvyqTZo9RT7N4qpO1D2PatMRwFVQEmo7iU9Zf0mW4kJPUuhVtBHPwN/0JEZ0kw33uCRjS5R+8v19SV5X6TRKlEj3obgwv9nTiFJbRKHhE28NDCuOjv9AcVpS7jBAN3yxIwMQQ4F/afLCTLjTdw8RfVfGKPcZPk/M2eJjH7MnukK15VD93aDfpzozex+v4zfM32PBTuYvJ/PpxeAubcNUu34dvIusouXVEMJ437K4zgPGhQQMWwxxMR7GwyUUBP5WI7HlXGtGskNWpIjqcfS6zTtEas2aNoll8n05gPu3qNUGKBcLIcGM1ZG7vW52ZFm6fUH3B1EXMKkpdoF/W9uYAGaJVlnLy5L27VL7j0Dk5ScmExvoAAuI4v4avR6dAUPn7YzYxa1rJKoD7HTMRQPWDjWDwVgkxQNhLL59XTAmTHPjbQDvP5mfpffhbNUBu/Czwf3Bx7cXi2E/9DYG6nTbKc27XtlLw7vV+QGZm0vC6hZ/eUC9vuVjPg5mK7j7W8tBpbvsoCtDFquWEwLvlPqg5D38Dfu+DbOjXqVJp/NTcupPPaY8z2VnSZVhZ4G5hf3Jo/JcUant7M5FLDq/zM0TrEPAyfc4rTkJLvuPxo/V5k= sidebar_class_name: "post api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Uploads a CSV or JSON file and saves its data to Postgres. Args: upload_type : Either a json or csv file. -file (UploadFile): The CSV or JSON file to upload. -testset_name (Optional): the name of the testset if provided. + file (UploadFile): The CSV or JSON file to upload. + testset_name (Optional): the name of the testset if provided. Returns: -dict: The result of the upload process. + dict: The result of the upload process. +> + + + + + + + + + + + + + + - - -
- -

- Body -

- required -
-
-
    - - - -
    - - testset_name - object - -
    -
    - anyOf - - -
    - string -
    -
    -
    -
    -
    -
    -
-
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    - - - -
-
-
- - - -
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ \ No newline at end of file diff --git a/docs/docs/reference/api/variants.tag.mdx b/docs/docs/reference/api/variants.tag.mdx index e158173a13..eb7cd6c70f 100644 --- a/docs/docs/reference/api/variants.tag.mdx +++ b/docs/docs/reference/api/variants.tag.mdx @@ -5,9 +5,16 @@ description: "Variants" custom_edit_url: null --- + + + + + + ```mdx-code-block import DocCardList from '@theme/DocCardList'; import {useCurrentSidebarCategory} from '@docusaurus/theme-common'; ``` + \ No newline at end of file diff --git a/docs/docs/reference/api/verify-permissions.api.mdx b/docs/docs/reference/api/verify-permissions.api.mdx index 17f59cdddd..6adc61c479 100644 --- a/docs/docs/reference/api/verify-permissions.api.mdx +++ b/docs/docs/reference/api/verify-permissions.api.mdx @@ -5,33 +5,36 @@ description: "Verify Permissions" sidebar_label: "Verify Permissions" hide_title: true hide_table_of_contents: true -api: eJy9Vk1vGjEQ/StozhbQqKc9laZRg9KqKKG9IBRNdgdw4rUd2xuVov3v1Xg/2IUgEanNCbDfzHt+4xmzg4BrD8kCJmlK3g8ujQ7OKFgKMJYcBmn0NIMEXsjJ1fbeksul99JoDwIsOswpkOMUO9CYEySAKUeBAKkhgeeC3BYEOHoupKMMkhUqTwJ8uqEcIdkB6u2PVcwQtpYz+OCkXkMp2hVdKAXlUkCQQfHCpCIpGVPz+tRYuo8B/5f7jokGc9495pfZP2AXsDIuxwAJFIXMzlAzzXpaHHlTuPRd7LituY4daVW8uymtpujLkvm8NdqTZ4aL8Zg/MvKpkzZepATuitgCq0INbmswCEiNDqRD1GWtkmlsidGj55jdXnVZlqWAjxcXx4l/oZJZDBtcOWfcG7KCddyGQVa6MwooFX+TgXJ/DFAm7e2eUU6pA63JQbksRbOGziEXqXHzm6kEQikg92vOfFiaBvqdvMc1QZvsNDSa0V6aBmYeHikNvRuyiOeqqGtcp9R7eyt3Tx/jS2Xfa2QN5Ho+nx0lrGp7UNQ4Dwez3jzMKWwMT8s1hTgewwYSGHWG5qiaoyDAk3tpBmfhFCSwCcH6ZDRKlSmyIa5JBxyiHKGVcEg/ibuDS4bGi+8pLZwM25hvMpve0PaaMCMHyWLZBdzx3apuSx/WFgqtvCGWWHfxpAgb4+Qf7I71TRXFxki9MjG8Gc2Vts+YPpHmxudzVrLHww/D8anD1AGDyWxatwimsUUaHREG4sCu1igQQHnsDwiE+af9Bqu0xoccdSffqyXsKWstCfQ7jKxCGVsg8u/q8i6g/ybWBV4K2BgfeH+3e0BPP50qS16uJiCXKZMeH1RnBj7Rtvt+vqAqmD226wlw79E7PyAO5HPghw/Jm2IOWJb8w0kOibdSNLeIzahC+W+IDZ2oo/HIWdo++3o1h7L8Cydh/FI= +api: eJy9Vk1v2zAM/SsBz0KcFTv5tGAb1qAbFrTZLkFQqDYTq5MlVaKLZYH/+0D5o3bSAimw9ZREeuSjHqmnHIDkLkC6hnmWYQiTj9aQtxo2AqxDL0lZs8ghhUf0aru/dehLFYKyJoAAJ70skdBzigMYWSKkIDOOAgHKQAoPFfo9CPD4UCmPOaRbqQMKCFmBpYT0ANLsv29jBto7zhDIK7ODWvQrptIa6o0AUqR5Yd6Q1IxpeUNmHd7GgP/LfcNEkxXvnvKr/B+wC9haX0qCFKpK5WdUs8hHtXgMtvLZm8hx3XKdKtJX8eai9DVFXTbMF5w1AQMzXMxm/JFjyLxycZBSuKniFdhWenLdgkFAZg2hoViXc1pl8Uok94FjDk9V13VdC3h/cXGa+KfUKo9hk8/eW/+KrOA8X0NSTd05klSavynCMpwCtM1Gu2e0UxnCHXqoN7Xo1qT3kpvUqfnVNgVCLaAMO8583JoO+g1DkDuEPtnL0ChGPzQdzN7dY0ajCVnHczXULW7Q6id5G3VfPsanRr7nyDrI5Wq1PEnY9PaoqdEPJ8uRH5ZIhWW33CFFe6QCUkgGppk0PgoCAvrHzjgrryGFgsiFNEkybat8KndoSE6lSqRTcbYDZpVXtI8h8+XiCveXKHP0kK43Q8ANj08zEGNY3wvp1BVyFe1FnVdUWK/+yKFzF00Un12ZrY3hnfvG4ibz5QIEPw2hEWU2fTedwbFUIzBPvszi5HfccRvEkQr9+UEAlnHsgVCWH542uDJnA5XSDPI925lRRb0MhL8pcVqqONmR/9B2bQ3jp67t20ZAYQPx/uFwJwP+8LquebkxNm5NroK80wNr+4X74bP4KHXF7PEWvgAevWXnB0SfPQd+/D68KuaIZcM/vOKQOImimxwWownlfxeOBlEnrsdZ+uvz5fMK6vov3Qntww== sidebar_class_name: "get api-method" -info_path: reference/api/agenta-backend +info_path: reference/api/agenta-api custom_edit_url: null --- -import ApiTabs from "@theme/ApiTabs"; -import DiscriminatorTabs from "@theme/DiscriminatorTabs"; import MethodEndpoint from "@theme/ApiExplorer/MethodEndpoint"; -import SecuritySchemes from "@theme/ApiExplorer/SecuritySchemes"; -import MimeTabs from "@theme/MimeTabs"; -import ParamsItem from "@theme/ParamsItem"; -import ResponseSamples from "@theme/ResponseSamples"; -import SchemaItem from "@theme/SchemaItem"; -import SchemaTabs from "@theme/SchemaTabs"; -import Markdown from "@theme/Markdown"; -import Heading from "@theme/Heading"; +import ParamsDetails from "@theme/ParamsDetails"; +import RequestSchema from "@theme/RequestSchema"; +import StatusCodes from "@theme/StatusCodes"; import OperationTabs from "@theme/OperationTabs"; import TabItem from "@theme/TabItem"; +import Heading from "@theme/Heading"; +> + + + + + + - Verify Permissions @@ -40,305 +43,29 @@ Verify Permissions as={"h2"} className={"openapi-tabs__heading"} children={"Request"} -> +> + -
- -

- Query Parameters -

-
-
-
    - - - - - -
-
-
-
-
- - -
Successful Response
-
- - - - -
- - Schema - -
-
    any
-
-
-
-
-
-
-
- -
Validation Error
-
- - - - -
- - Schema - -
-
    - -
    - - - - detail - - - object[] - - - -
    -
  • -
    - Array [ -
    -
  • - -
    - - - - loc - - - object[] - - - - required - - - -
    -
  • -
    - Array [ -
    -
  • -
    - - anyOf - - - -
    - string -
    -
    - -
    - integer -
    -
    -
    -
    -
  • -
    - ] -
    -
  • -
    -
    -
    - - -
  • -
    - ] -
    -
  • -
    -
    -
    -
-
-
- - - -
-
-
-
-
-
-
-
+ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/docs/reference/openapi.json b/docs/docs/reference/openapi.json index 8e76abe55b..768da55536 100644 --- a/docs/docs/reference/openapi.json +++ b/docs/docs/reference/openapi.json @@ -1,18045 +1 @@ -{ - "openapi": "3.1.0", - "info": { - "title": "Agenta Backend", - "version": "0.1.0", - "description": "Agenta Backend API", - "contact": { - "name": "Agenta", - "url": "https://agenta.ai", - "email": "team@agenta.ai" - } - }, - "servers": [ - { - "url": "https://cloud.agenta.ai/api", - "description": "Agenta Cloud" - } - ], - "paths": { - "/admin/accounts": { - "post": { - "tags": ["Admin"], - "summary": "Create Accounts", - "operationId": "create_accounts", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EntitiesRequestModel" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ScopesResponseModel" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/admin/account": { - "post": { - "tags": ["Admin"], - "summary": "Create Account", - "operationId": "create_account", - "requestBody": { - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/AccountRequest" - }, - { - "type": "null" - } - ], - "title": "Account" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AccountResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/organizations/own": { - "get": { - "summary": "Get User Organization", - "operationId": "get_own_org", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationOutput" - } - } - } - } - } - } - }, - "/organizations/{organization_id}": { - "get": { - "tags": ["Organization"], - "summary": "Fetch Organization Details", - "description": "Return the details of the organization.", - "operationId": "fetch_organization_details", - "parameters": [ - { - "name": "organization_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Org Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationDetails" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "summary": "Update Organization", - "operationId": "update_organization", - "parameters": [ - { - "name": "organization_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Org Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationUpdate" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/organizations/{organization_id}/workspaces": { - "post": { - "summary": "Create Workspace", - "operationId": "create_workspace", - "parameters": [ - { - "name": "organization_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Org Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CreateWorkspace" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkspaceResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/organizations/{organization_id}/workspaces/{workspace_id}": { - "put": { - "summary": "Update Workspace", - "operationId": "update_workspace", - "parameters": [ - { - "name": "organization_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Org Id" - } - }, - { - "name": "workspace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Workspace Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpdateWorkspace" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkspaceResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/workspaces/permissions": { - "get": { - "summary": "Get All Workspace Permissions", - "description": "Get all workspace permissions.\n\nReturns a list of all available workspace permissions.\n\nReturns:\n List[Permission]: A list of Permission objects representing the available workspace permissions.\n\nRaises:\n HTTPException: If there is an error retrieving the workspace permissions.", - "operationId": "get_all_workspace_permissions", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/Permission" - }, - "type": "array", - "title": "Response Get All Workspace Permissions" - } - } - } - } - } - } - }, - "/workspaces/{workspace_id}/roles": { - "post": { - "summary": "Assign Role To User", - "description": "Assigns a role to a user in a workspace.\n\nArgs:\n payload (UserRole): The payload containing the organization id, user email, and role to assign.\n workspace_id (str): The ID of the workspace.\n request (Request): The FastAPI request object.\n\nReturns:\n bool: True if the role was successfully assigned, False otherwise.\n\nRaises:\n HTTPException: If the user does not have permission to perform this action.\n HTTPException: If there is an error assigning the role to the user.", - "operationId": "assign_role_to_user", - "parameters": [ - { - "name": "workspace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Workspace Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserRole" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "summary": "Unassign Role From User", - "description": "Delete a role assignment from a user in a workspace.\n\nArgs:\n workspace_id (str): The ID of the workspace.\n email (str): The email of the user to remove the role from.\n organization_id (str): The ID of the organization.\n role (str): The role to remove from the user.\n request (Request): The FastAPI request object.\n\nReturns:\n bool: True if the role assignment was successfully deleted.\n\nRaises:\n HTTPException: If there is an error in the request or the user does not have permission to perform the action.\n HTTPException: If there is an error in updating the user's roles.", - "operationId": "unassign_role_from_user", - "parameters": [ - { - "name": "workspace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Workspace Id" - } - }, - { - "name": "email", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Email" - } - }, - { - "name": "organization_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Org Id" - } - }, - { - "name": "role", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Role" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluations/by_resource": { - "get": { - "tags": ["Evaluations"], - "summary": "Fetch Evaluation Ids", - "description": "Fetches evaluation ids for a given resource type and id.\n\nArguments:\n app_id (str): The ID of the app for which to fetch evaluations.\n resource_type (str): The type of resource for which to fetch evaluations.\n resource_ids List[ObjectId]: The IDs of resource for which to fetch evaluations.\n\nRaises:\n HTTPException: If the resource_type is invalid or access is denied.\n\nReturns:\n List[str]: A list of evaluation ids.", - "operationId": "fetch_evaluation_ids_evaluations_by_resource_get", - "parameters": [ - { - "name": "resource_type", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Resource Type" - } - }, - { - "name": "resource_ids", - "in": "query", - "required": false, - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "title": "Resource Ids" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "title": "Response Fetch Evaluation Ids Evaluations By Resource Get" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluations": { - "post": { - "tags": ["Evaluations"], - "summary": "Create Evaluation", - "description": "Creates a new comparison table document\nRaises:\n HTTPException: _description_\nReturns:\n _description_", - "operationId": "create_evaluation", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewEvaluation" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Evaluation" - }, - "title": "Response Create Evaluation" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Evaluations"], - "summary": "Fetch List Evaluations", - "description": "Fetches a list of evaluations, optionally filtered by an app ID.\n\nArgs:\n app_id (Optional[str]): An optional app ID to filter the evaluations.\n\nReturns:\n List[Evaluation]: A list of evaluations.", - "operationId": "fetch_list_evaluations_evaluations_get", - "parameters": [ - { - "name": "app_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/Evaluation" - }, - "title": "Response Fetch List Evaluations Evaluations Get" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Evaluations"], - "summary": "Delete Evaluations", - "description": "Delete specific comparison tables based on their unique IDs.\n\nArgs:\ndelete_evaluations (List[str]): The unique identifiers of the comparison tables to delete.\n\nReturns:\nA list of the deleted comparison tables' IDs.", - "operationId": "delete_evaluations", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeleteEvaluation" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "title": "Response Delete Evaluations" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluations/{evaluation_id}/status": { - "get": { - "tags": ["Evaluations"], - "summary": "Fetch Evaluation Status", - "description": "Fetches the status of the evaluation.\n\nArgs:\n evaluation_id (str): the evaluation id\n request (Request): the request object\n\nReturns:\n (str): the evaluation status", - "operationId": "fetch_evaluation_status", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluations/{evaluation_id}/results": { - "get": { - "tags": ["Evaluations"], - "summary": "Fetch Evaluation Results", - "description": "Fetches the results of the evaluation\n\nArgs:\n evaluation_id (str): the evaluation id\n request (Request): the request object\n\nReturns:\n _type_: _description_", - "operationId": "fetch_evaluation_results", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluations/{evaluation_id}/evaluation_scenarios": { - "get": { - "tags": ["Evaluations"], - "summary": "Fetch Evaluation Scenarios", - "description": "Fetches evaluation scenarios for a given evaluation ID.\n\nArguments:\n evaluation_id (str): The ID of the evaluation for which to fetch scenarios.\n\nRaises:\n HTTPException: If the evaluation is not found or access is denied.\n\nReturns:\n List[EvaluationScenario]: A list of evaluation scenarios.", - "operationId": "fetch_evaluation_scenarios", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/EvaluationScenario" - }, - "title": "Response Fetch Evaluation Scenarios" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluations/{evaluation_id}": { - "get": { - "tags": ["Evaluations"], - "summary": "Fetch Evaluation", - "description": "Fetches a single evaluation based on its ID.\n\nArgs:\n evaluation_id (str): The ID of the evaluation to fetch.\n\nReturns:\n Evaluation: The fetched evaluation.", - "operationId": "fetch_evaluation", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Evaluation" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluations/evaluation_scenarios/comparison-results": { - "get": { - "tags": ["Evaluations"], - "summary": "Fetch Evaluation Scenarios Comparison Results", - "description": "Fetches evaluation scenarios for a given evaluation ID.\n\nArguments:\n evaluation_id (str): The ID of the evaluation for which to fetch scenarios.\n\nRaises:\n HTTPException: If the evaluation is not found or access is denied.\n\nReturns:\n List[EvaluationScenario]: A list of evaluation scenarios.", - "operationId": "fetch_evaluation_scenarios_comparison_results", - "parameters": [ - { - "name": "evaluations_ids", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Evaluations Ids" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "title": "Response Fetch Evaluation Scenarios Evaluations Evaluation Scenarios Comparison Results Get" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/human-evaluations": { - "post": { - "tags": ["Human-Evaluations"], - "summary": "Create Human Evaluation", - "description": "Creates a new comparison table document\nRaises:\n HTTPException: _description_\nReturns:\n _description_", - "operationId": "create_human_evaluation", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewHumanEvaluation" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SimpleEvaluationOutput" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Human-Evaluations"], - "summary": "Fetch List Human Evaluations", - "description": "Fetches a list of evaluations, optionally filtered by an app ID.\n\nArgs:\n app_id (Optional[str]): An optional app ID to filter the evaluations.\n\nReturns:\n List[HumanEvaluation]: A list of evaluations.", - "operationId": "fetch_list_human_evaluations_human_evaluations_get", - "parameters": [ - { - "name": "app_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/HumanEvaluation" - }, - "title": "Response Fetch List Human Evaluations Human Evaluations Get" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Human-Evaluations"], - "summary": "Delete Evaluations", - "description": "Delete specific comparison tables based on their unique IDs.\n\nArgs:\n payload (List[str]): The unique identifiers of the comparison tables to delete.\n\nReturns:\nA list of the deleted comparison tables' IDs.", - "operationId": "delete_evaluations_human_evaluations_delete", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeleteEvaluation" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "type": "string" - }, - "title": "Response Delete Evaluations Human Evaluations Delete" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/human-evaluations/{evaluation_id}": { - "get": { - "tags": ["Human-Evaluations"], - "summary": "Fetch Human Evaluation", - "description": "Fetches a single evaluation based on its ID.\n\nArgs:\n evaluation_id (str): The ID of the evaluation to fetch.\n\nReturns:\n HumanEvaluation: The fetched evaluation.", - "operationId": "fetch_human_evaluation_human_evaluations__evaluation_id__get", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HumanEvaluation" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Human-Evaluations"], - "summary": "Update Human Evaluation", - "description": "Updates an evaluation's status.\n\nRaises:\n HTTPException: If the columns in the test set do not match with the inputs in the variant.\n\nReturns:\n None: A 204 No Content status code, indicating that the update was successful.", - "operationId": "update_human_evaluation", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HumanEvaluationUpdate" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/human-evaluations/{evaluation_id}/evaluation_scenarios": { - "get": { - "tags": ["Human-Evaluations"], - "summary": "Fetch Human Evaluation Scenarios", - "description": "Fetches evaluation scenarios for a given evaluation ID.\n\nArguments:\n evaluation_id (str): The ID of the evaluation for which to fetch scenarios.\n\nRaises:\n HTTPException: If the evaluation is not found or access is denied.\n\nReturns:\n List[EvaluationScenario]: A list of evaluation scenarios.", - "operationId": "fetch_human_evaluation_scenarios", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/HumanEvaluationScenario" - }, - "title": "Response Fetch Human Evaluation Scenarios" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/human-evaluations/{evaluation_id}/evaluation_scenario/{evaluation_scenario_id}/{evaluation_type}": { - "put": { - "tags": ["Human-Evaluations"], - "summary": "Update Evaluation Scenario Router", - "description": "Updates an evaluation scenario's vote or score based on its type.\n\nRaises:\n HTTPException: If update fails or unauthorized.\n\nReturns:\n None: 204 No Content status code upon successful update.", - "operationId": "update_evaluation_scenario_router_human_evaluations__evaluation_id__evaluation_scenario__evaluation_scenario_id___evaluation_type__put", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - }, - { - "name": "evaluation_scenario_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Scenario Id" - } - }, - { - "name": "evaluation_type", - "in": "path", - "required": true, - "schema": { - "$ref": "#/components/schemas/EvaluationType" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HumanEvaluationScenarioUpdate" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/human-evaluations/evaluation_scenario/{evaluation_scenario_id}/score": { - "get": { - "tags": ["Human-Evaluations"], - "summary": "Get Evaluation Scenario Score Router", - "description": "Fetch the score of a specific evaluation scenario.\n\nArgs:\n evaluation_scenario_id: The ID of the evaluation scenario to fetch.\n\nReturns:\n Dictionary containing the scenario ID and its score.", - "operationId": "get_evaluation_scenario_score_router_human_evaluations_evaluation_scenario__evaluation_scenario_id__score_get", - "parameters": [ - { - "name": "evaluation_scenario_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Scenario Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "title": "Response Get Evaluation Scenario Score Router Human Evaluations Evaluation Scenario Evaluation Scenario Id Score Get" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Human-Evaluations"], - "summary": "Update Evaluation Scenario Score Router", - "description": "Updates the score of an evaluation scenario.\n\nRaises:\n HTTPException: Server error if the evaluation update fails.\n\nReturns:\n None: 204 No Content status code upon successful update.", - "operationId": "update_evaluation_scenario_score_router_human_evaluations_evaluation_scenario__evaluation_scenario_id__score_put", - "parameters": [ - { - "name": "evaluation_scenario_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Scenario Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluationScenarioScoreUpdate" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/human-evaluations/{evaluation_id}/results": { - "get": { - "tags": ["Human-Evaluations"], - "summary": "Fetch Results", - "description": "Fetch all the results for one the comparison table\n\nArguments:\n evaluation_id -- _description_\n\nReturns:\n _description_", - "operationId": "fetch_results", - "parameters": [ - { - "name": "evaluation_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluation Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/billing/stripe/events/": { - "post": { - "tags": ["Billing"], - "summary": "Handle Events", - "operationId": "handle_events", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/billing/stripe/portals/": { - "post": { - "tags": ["Billing"], - "summary": "Create Portal User Route", - "operationId": "create_portal", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/billing/stripe/checkouts/": { - "post": { - "tags": ["Billing"], - "summary": "Create Checkout User Route", - "operationId": "create_checkout", - "parameters": [ - { - "name": "plan", - "in": "query", - "required": true, - "schema": { - "$ref": "#/components/schemas/Plan" - } - }, - { - "name": "success_url", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Success Url" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/billing/plans": { - "get": { - "tags": ["Billing"], - "summary": "Fetch Plan User Route", - "operationId": "fetch_plans", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/billing/plans/switch": { - "post": { - "tags": ["Billing"], - "summary": "Switch Plans User Route", - "operationId": "switch_plans", - "parameters": [ - { - "name": "plan", - "in": "query", - "required": true, - "schema": { - "$ref": "#/components/schemas/Plan" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/billing/subscription": { - "get": { - "tags": ["Billing"], - "summary": "Fetch Subscription User Route", - "operationId": "fetch_subscription", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/billing/subscription/cancel": { - "post": { - "tags": ["Billing"], - "summary": "Cancel Subscription User Route", - "operationId": "cancel_plan", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/billing/usage": { - "get": { - "tags": ["Billing"], - "summary": "Fetch Usage User Route", - "operationId": "fetch_usage", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/admin/billing/stripe/portals/": { - "post": { - "tags": ["Admin", "Billing"], - "summary": "Create Portal Admin Route", - "operationId": "admin_create_portal", - "parameters": [ - { - "name": "organization_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Organization Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/admin/billing/stripe/checkouts/": { - "post": { - "tags": ["Admin", "Billing"], - "summary": "Create Checkout Admin Route", - "operationId": "admin_create_checkout", - "parameters": [ - { - "name": "organization_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Organization Id" - } - }, - { - "name": "plan", - "in": "query", - "required": true, - "schema": { - "$ref": "#/components/schemas/Plan" - } - }, - { - "name": "success_url", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Success Url" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/admin/billing/plans/switch": { - "post": { - "tags": ["Admin", "Billing"], - "summary": "Switch Plans Admin Route", - "operationId": "admin_switch_plans", - "parameters": [ - { - "name": "organization_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Organization Id" - } - }, - { - "name": "plan", - "in": "query", - "required": true, - "schema": { - "$ref": "#/components/schemas/Plan" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/admin/billing/subscription/cancel": { - "post": { - "tags": ["Admin", "Billing"], - "summary": "Cancel Subscription Admin Route", - "operationId": "admin_cancel_subscription", - "parameters": [ - { - "name": "organization_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Organization Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/admin/billing/usage/report": { - "post": { - "tags": ["Admin", "Billing"], - "summary": "Report Usage", - "operationId": "admin_report_usage", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/health": { - "get": { - "summary": "Health Check", - "operationId": "health_check", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/permissions/verify": { - "get": { - "tags": ["Access Control"], - "summary": "Verify Permissions", - "operationId": "verify_permissions", - "parameters": [ - { - "name": "action", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Action" - } - }, - { - "name": "scope_type", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Scope Type" - } - }, - { - "name": "scope_id", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Scope Id" - } - }, - { - "name": "resource_type", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Resource Type" - } - }, - { - "name": "resource_id", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Resource Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/projects": { - "get": { - "tags": ["Scopes"], - "summary": "Get Projects", - "operationId": "get_projects", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/ProjectsResponse" - }, - "type": "array", - "title": "Response Get Projects" - } - } - } - } - } - } - }, - "/profile": { - "get": { - "summary": "User Profile", - "operationId": "fetch_user_profile", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/profile/reset-password": { - "post": { - "summary": "Reset User Password", - "operationId": "reset_user_password", - "parameters": [ - { - "name": "user_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "User Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/apps/{app_id}/variants": { - "get": { - "tags": ["Apps"], - "summary": "List App Variants", - "description": "Retrieve a list of app variants for a given app ID.\n\nArgs:\n app_id (str): The ID of the app to retrieve variants for.\n\nReturns:\n List[AppVariantResponse]: A list of app variants for the given app ID.", - "operationId": "list_app_variants", - "parameters": [ - { - "name": "app_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/AppVariantResponse_" - }, - "title": "Response List App Variants" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/apps/get_variant_by_env": { - "get": { - "tags": ["Apps"], - "summary": "Get Variant By Env", - "description": "Retrieve the app variant based on the provided app_id and environment.\n\nArgs:\n app_id (str): The ID of the app to retrieve the variant for.\n environment (str): The environment of the app variant to retrieve.\n\nRaises:\n HTTPException: If the app variant is not found (status_code=500), or if a ValueError is raised (status_code=400), or if any other exception is raised (status_code=500).\n\nReturns:\n AppVariantResponse: The retrieved app variant.", - "operationId": "get_variant_by_env", - "parameters": [ - { - "name": "app_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - }, - { - "name": "environment", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Environment" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AppVariantResponse_" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/apps": { - "post": { - "tags": ["Apps"], - "summary": "Create App", - "description": "Create a new app for a user or organization.\n\nArgs:\n payload (CreateApp): The payload containing the app name and organization ID (optional).\n\nReturns:\n CreateAppOutput: The output containing the newly created app's ID and name.\n\nRaises:\n HTTPException: If there is an error creating the app or the user does not have permission to access the app.", - "operationId": "create_app", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CreateApp_" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CreateAppOutput" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Apps"], - "summary": "List Apps", - "description": "Retrieve a list of apps filtered by app_name.\n\nArgs:\n app_name (Optional[str]): The name of the app to filter by.\n\nReturns:\n List[App]: A list of apps filtered by app_name.\n\nRaises:\n HTTPException: If there was an error retrieving the list of apps.", - "operationId": "list_apps", - "parameters": [ - { - "name": "app_name", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "App Name" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/App" - }, - "title": "Response List Apps" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/apps/{app_id}": { - "patch": { - "tags": ["Apps"], - "summary": "Update App", - "description": "Update an app for a user or organization.\n\nArgs:\n app_id (str): The ID of the app.\n payload (UpdateApp): The payload containing the app name.\n\nReturns:\n UpdateAppOutput: The output containing the newly created app's ID and name.\n\nRaises:\n HTTPException: If there is an error creating the app or the user does not have permission to access the app.", - "operationId": "update_app", - "parameters": [ - { - "name": "app_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpdateApp" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpdateAppOutput" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Apps"], - "summary": "Remove App", - "description": "Remove app, all its variant.\n\nArguments:\n app -- App to remove", - "operationId": "remove_app", - "parameters": [ - { - "name": "app_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/apps/{app_id}/variant/from-service": { - "post": { - "tags": ["Apps"], - "summary": "Add Variant From Url Route", - "operationId": "add_variant_from_url", - "parameters": [ - { - "name": "app_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AddVariantFromURLPayload" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/apps/{app_id}/variant/from-template": { - "post": { - "tags": ["Apps"], - "summary": "Add Variant From Key Route", - "operationId": "add_variant_from_key", - "parameters": [ - { - "name": "app_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AddVariantFromKeyPayload" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/apps/{app_id}/environments": { - "get": { - "tags": ["Apps"], - "summary": "List Environments", - "description": "Retrieve a list of environments for a given app ID.\n\nArgs:\n app_id (str): The ID of the app to retrieve environments for.\n\nReturns:\n List[EnvironmentOutput]: A list of environment objects.", - "operationId": "list_environments", - "parameters": [ - { - "name": "app_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/EnvironmentOutput_" - }, - "title": "Response List Environments" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/apps/{app_id}/revisions/{environment_name}": { - "get": { - "tags": ["Apps"], - "summary": "List App Environment Revisions", - "operationId": "environment_revisions", - "parameters": [ - { - "name": "app_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - }, - { - "name": "environment_name", - "in": "path", - "required": true, - "schema": { - "title": "Environment Name" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EnvironmentOutputExtended_" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/from-base": { - "post": { - "tags": ["Variants"], - "summary": "Add Variant From Base And Config", - "description": "Add a new variant based on an existing one.\nSame as POST /config\n\nArgs:\n payload (AddVariantFromBasePayload): Payload containing base variant ID, new variant name, and parameters.\n\nRaises:\n HTTPException: Raised if the variant could not be added or accessed.\n\nReturns:\n Union[AppVariantResponse, Any]: New variant details or exception.", - "operationId": "add_variant_from_base_and_config", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AddVariantFromBasePayload" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/AppVariantResponse_" - }, - {} - ], - "title": "Response Add Variant From Base And Config" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/{variant_id}": { - "delete": { - "tags": ["Variants"], - "summary": "Remove Variant", - "description": "Mark a variant as hidden from the UI.\n\nArguments:\n app_variant -- AppVariant to remove\n\nRaises:\n HTTPException: If there is a problem removing the app variant", - "operationId": "mark_variant_as_hidden", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Variant Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Variants"], - "summary": "Get Variant", - "operationId": "get_variant", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Variant Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AppVariantResponse_" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/{variant_id}/parameters": { - "put": { - "tags": ["Variants"], - "summary": "Update Variant Parameters", - "description": "Updates the parameters for an app variant.\n\nArgs:\n variant_id (str): The ID of the app variant to update.\n payload (UpdateVariantParameterPayload): The payload containing the updated parameters.\n\nRaises:\n HTTPException: If there is an error while trying to update the app variant.\n\nReturns:\n JSONResponse: A JSON response containing the updated app variant parameters.", - "operationId": "update_variant_parameters", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Variant Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpdateVariantParameterPayload" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/{variant_id}/service": { - "put": { - "tags": ["Variants"], - "summary": "Update Variant Url", - "description": "Updates the URL used in an app variant.\n\nArgs:\n variant_id (str): The ID of the app variant to update.\n url (str): The URL to update.\n\nRaises:\n HTTPException: If an error occurs while trying to update the app variant.\n\nReturns:\n JSONResponse: A JSON response indicating whether the update was successful or not.", - "operationId": "update_variant_url", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpdateVariantURLPayload" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/{variant_id}/revisions": { - "get": { - "tags": ["Variants"], - "summary": "Get Variant Revisions", - "operationId": "get_variant_revisions", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Variant Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/AppVariantRevision" - }, - "title": "Response Get Variant Revisions" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/{variant_id}/revisions/{revision_number}": { - "get": { - "tags": ["Variants"], - "summary": "Get Variant Revision", - "operationId": "get_variant_revision", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Variant Id" - } - }, - { - "name": "revision_number", - "in": "path", - "required": true, - "schema": { - "type": "integer", - "title": "Revision Number" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AppVariantRevision" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/{variant_id}/revisions/{revision_id}": { - "delete": { - "tags": ["Variants"], - "summary": "Remove Variant Revision", - "description": "Mark a variant revision as hidden from the UI.\n\nArguments:\n app_variant -- AppVariant to remove\n revision_id -- Revision ID to remove\n\nRaises:\n HTTPException: If there is a problem removing the app variant", - "operationId": "mark_variant_revision_as_hidden", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Variant Id" - } - }, - { - "name": "revision_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Revision Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/configs/add": { - "post": { - "tags": ["Variants"], - "summary": "Configs Add", - "operationId": "configs_add", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Body_configs_add" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConfigResponseModel" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/configs/fetch": { - "post": { - "tags": ["Variants"], - "summary": "Configs Fetch", - "description": "Fetch configuration for a variant or environment.\n\nEither variant_ref OR environment_ref must be provided (if neither is provided,\na default environment_ref with slug=\"production\" will be used).\n\nFor each reference object (variant_ref, environment_ref, application_ref):\n- Provide either 'slug' or 'id' field\n- 'version' is optional and can be set to null\n- If 'id' is provided, it will be used directly to fetch the resource\n- Otherwise, 'slug' will be used along with application_ref\n\nReturns:\n ConfigResponseModel: The configuration for the requested variant or environment.\n\nRaises:\n HTTPException: If the configuration is not found.", - "operationId": "configs_fetch", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Body_configs_fetch" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConfigResponseModel" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/configs/fork": { - "post": { - "tags": ["Variants"], - "summary": "Configs Fork", - "operationId": "configs_fork", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Body_configs_fork" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConfigResponseModel" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/configs/commit": { - "post": { - "tags": ["Variants"], - "summary": "Configs Commit", - "operationId": "configs_commit", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConfigRequest" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConfigResponseModel" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/configs/deploy": { - "post": { - "tags": ["Variants"], - "summary": "Configs Deploy", - "operationId": "configs_deploy", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Body_configs_deploy" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConfigResponseModel" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/configs/delete": { - "post": { - "tags": ["Variants"], - "summary": "Configs Delete", - "operationId": "configs_delete", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Body_configs_delete" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "integer", - "title": "Response Configs Delete" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/configs/list": { - "post": { - "tags": ["Variants"], - "summary": "Configs List", - "operationId": "configs_list", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ReferenceRequest" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/ConfigResponseModel" - }, - "type": "array", - "title": "Response Configs List" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/variants/configs/history": { - "post": { - "tags": ["Variants"], - "summary": "Configs History", - "operationId": "configs_history", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Body_configs_history" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/ConfigResponseModel" - }, - "type": "array", - "title": "Response Configs History" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/containers/templates": { - "get": { - "tags": ["Containers"], - "summary": "Container Templates", - "description": "Returns a list of templates available for creating new containers.", - "operationId": "container_templates", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - } - } - } - }, - "/evaluators": { - "get": { - "tags": ["Evaluators"], - "summary": "Get Evaluators Endpoint", - "description": "Endpoint to fetch a list of evaluators.\n\nReturns:\n List[Evaluator]: A list of evaluator objects.", - "operationId": "get_evaluators_endpoint_evaluators_get", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/oss__src__models__api__evaluation_model__Evaluator" - }, - "type": "array", - "title": "Response Get Evaluators Endpoint Evaluators Get" - } - } - } - } - } - } - }, - "/evaluators/map": { - "post": { - "tags": ["Evaluators"], - "summary": "Evaluator Data Map", - "description": "Endpoint to map the experiment data tree to evaluator interface.\n\nArgs:\n request (Request): The request object.\n payload (EvaluatorMappingInputInterface): The payload containing the request data.\n\nReturns:\n EvaluatorMappingOutputInterface: the evaluator mapping output object", - "operationId": "evaluator_data_map_evaluators_map_post", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorMappingInputInterface" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorMappingOutputInterface" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluators/{evaluator_key}/run": { - "post": { - "tags": ["Evaluators"], - "summary": "Evaluator Run", - "description": "Endpoint to evaluate LLM app run\n\nArgs:\n request (Request): The request object.\n evaluator_key (str): The key of the evaluator.\n payload (EvaluatorInputInterface): The payload containing the request data.\n\nReturns:\n result: EvaluatorOutputInterface object containing the outputs.", - "operationId": "evaluator_run_evaluators__evaluator_key__run_post", - "parameters": [ - { - "name": "evaluator_key", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluator Key" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorInputInterface" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorOutputInterface" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluators/configs": { - "get": { - "tags": ["Evaluators"], - "summary": "Get Evaluator Configs", - "description": "Endpoint to fetch evaluator configurations for a specific app.\n\nArgs:\n app_id (str): The ID of the app.\n\nReturns:\n List[EvaluatorConfigDB]: A list of evaluator configuration objects.", - "operationId": "get_evaluator_configs_evaluators_configs_get", - "parameters": [ - { - "name": "app_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/EvaluatorConfig" - }, - "title": "Response Get Evaluator Configs Evaluators Configs Get" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "post": { - "tags": ["Evaluators"], - "summary": "Create New Evaluator Config", - "description": "Endpoint to fetch evaluator configurations for a specific app.\n\nArgs:\n app_id (str): The ID of the app.\n\nReturns:\n EvaluatorConfigDB: Evaluator configuration api model.", - "operationId": "create_new_evaluator_config_evaluators_configs_post", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewEvaluatorConfig" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorConfig" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/evaluators/configs/{evaluator_config_id}": { - "get": { - "tags": ["Evaluators"], - "summary": "Get Evaluator Config", - "description": "Endpoint to fetch evaluator configurations for a specific app.\n\nReturns:\n List[EvaluatorConfigDB]: A list of evaluator configuration objects.", - "operationId": "get_evaluator_config_evaluators_configs__evaluator_config_id__get", - "parameters": [ - { - "name": "evaluator_config_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluator Config Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorConfig" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Evaluators"], - "summary": "Update Evaluator Config", - "description": "Endpoint to update evaluator configurations for a specific app.\n\nReturns:\n List[EvaluatorConfigDB]: A list of evaluator configuration objects.", - "operationId": "update_evaluator_config_evaluators_configs__evaluator_config_id__put", - "parameters": [ - { - "name": "evaluator_config_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluator Config Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpdateEvaluatorConfig" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorConfig" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Evaluators"], - "summary": "Delete Evaluator Config", - "description": "Endpoint to delete a specific evaluator configuration.\n\nArgs:\n evaluator_config_id (str): The unique identifier of the evaluator configuration.\n\nReturns:\n bool: True if deletion was successful, False otherwise.", - "operationId": "delete_evaluator_config_evaluators_configs__evaluator_config_id__delete", - "parameters": [ - { - "name": "evaluator_config_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Evaluator Config Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "boolean", - "title": "Response Delete Evaluator Config Evaluators Configs Evaluator Config Id Delete" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/testsets/upload": { - "post": { - "tags": ["Testsets"], - "summary": "Upload File", - "description": "Uploads a CSV or JSON file and saves its data to Postgres.\n\nArgs:\nupload_type : Either a json or csv file.\n file (UploadFile): The CSV or JSON file to upload.\n testset_name (Optional): the name of the testset if provided.\n\nReturns:\n dict: The result of the upload process.", - "operationId": "upload_file", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "$ref": "#/components/schemas/Body_upload_file" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestSetSimpleResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/testsets/endpoint": { - "post": { - "tags": ["Testsets"], - "summary": "Import Testset", - "description": "Import JSON testset data from an endpoint and save it to Postgres.\n\nArgs:\n endpoint (str): An endpoint URL to import data from.\n testset_name (str): the name of the testset if provided.\n\nReturns:\n dict: The result of the import process.", - "operationId": "import_testset", - "parameters": [ - { - "name": "authorization", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Authorization" - } - } - ], - "requestBody": { - "content": { - "application/x-www-form-urlencoded": { - "schema": { - "$ref": "#/components/schemas/Body_import_testset" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestSetSimpleResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/testsets": { - "get": { - "tags": ["Testsets"], - "summary": "Get Testsets", - "description": "Get all testsets.\n\nReturns:\n- A list of testset objects.\n\nRaises:\n- `HTTPException` with status code 404 if no testsets are found.", - "operationId": "get_testsets", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/TestSetOutputResponse" - }, - "type": "array", - "title": "Response Get Testsets" - } - } - } - } - } - }, - "post": { - "tags": ["Testsets"], - "summary": "Create Testset", - "description": "Create a testset with given name, save the testset to Postgres.\n\nArgs:\nname (str): name of the test set.\ntestset (Dict[str, str]): test set data.\n\nReturns:\nstr: The id of the test set created.", - "operationId": "create_testset", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewTestset" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestSetSimpleResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Testsets"], - "summary": "Delete Testsets", - "description": "Delete specific testsets based on their unique IDs.\n\nArgs:\ntestset_ids (List[str]): The unique identifiers of the testsets to delete.\n\nReturns:\nA list of the deleted testsets' IDs.", - "operationId": "delete_testsets", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeleteTestsets" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Response Delete Testsets" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/testsets/{testset_id}": { - "put": { - "tags": ["Testsets"], - "summary": "Update Testset", - "description": "Update a testset with given id, update the testset in Postgres.\n\nArgs:\ntestset_id (str): id of the test set to be updated.\ncsvdata (NewTestset): New data to replace the old testset.\n\nReturns:\nstr: The id of the test set updated.", - "operationId": "update_testset", - "parameters": [ - { - "name": "testset_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Testset Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/NewTestset" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Testsets"], - "summary": "Get Single Testset", - "description": "Fetch a specific testset in Postgres.\n\nArgs:\n testset_id (str): The id of the testset to fetch.\n\nReturns:\n The requested testset if found, else an HTTPException.", - "operationId": "get_single_testset", - "parameters": [ - { - "name": "testset_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Testset Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/environments/deploy": { - "post": { - "tags": ["Environments"], - "summary": "Deploy To Environment", - "description": "Deploys a given variant to an environment\n\nArgs:\n environment_name: Name of the environment to deploy to.\n variant_id: variant id to deploy.\n\nRaises:\n HTTPException: If the deployment fails.", - "operationId": "deploy_to_environment", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DeployToEnvironmentPayload" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/bases": { - "get": { - "tags": ["Bases"], - "summary": "List Bases", - "description": "Retrieve a list of bases filtered by app_id and base_name.\n\nArgs:\n request (Request): The incoming request.\n app_id (str): The ID of the app to filter by.\n base_name (Optional[str], optional): The name of the base to filter by. Defaults to None.\n\nReturns:\n List[BaseOutput]: A list of BaseOutput objects representing the filtered bases.\n\nRaises:\n HTTPException: If there was an error retrieving the bases.", - "operationId": "list_bases", - "parameters": [ - { - "name": "app_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "App Id" - } - }, - { - "name": "base_name", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Base Name" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/BaseOutput" - }, - "title": "Response List Bases" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/configs": { - "get": { - "tags": ["Configs"], - "summary": "Get Config", - "operationId": "get_config", - "parameters": [ - { - "name": "base_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Base Id" - } - }, - { - "name": "config_name", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Config Name" - } - }, - { - "name": "environment_name", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Environment Name" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GetConfigResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/configs/deployment/{deployment_revision_id}": { - "get": { - "tags": ["Configs"], - "summary": "Get Config Deployment Revision", - "operationId": "get_config_deployment_revision", - "parameters": [ - { - "name": "deployment_revision_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Deployment Revision Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/configs/deployment/{deployment_revision_id}/revert": { - "post": { - "tags": ["Configs"], - "summary": "Revert Deployment Revision", - "operationId": "revert_deployment_revision", - "parameters": [ - { - "name": "deployment_revision_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Deployment Revision Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/keys": { - "get": { - "tags": ["Api Keys"], - "summary": "List Api Keys", - "description": "List all API keys associated with the authenticated user.\n\nArgs:\n request (Request): The incoming request object.\n\nReturns:\n List[ListAPIKeysResponse]: A list of API Keys associated with the user.", - "operationId": "list_api_keys", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/ListAPIKeysResponse" - }, - "type": "array", - "title": "Response List Api Keys" - } - } - } - } - } - }, - "post": { - "tags": ["Api Keys"], - "summary": "Create Api Key", - "description": "Creates an API key for a user.\n\nArgs:\n request (Request): The request object containing the user ID in the request state.\n\nReturns:\n str: The created API key.", - "operationId": "create_api_key", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "string", - "title": "Response Create Api Key" - } - } - } - } - } - } - }, - "/keys/{key_prefix}": { - "delete": { - "tags": ["Api Keys"], - "summary": "Delete Api Key", - "description": "Delete an API key with the given key prefix for the authenticated user.\n\nArgs:\n key_prefix (str): The prefix of the API key to be deleted.\n request (Request): The incoming request object.\n\nReturns:\n dict: A dictionary containing a success message upon successful deletion.\n\nRaises:\n HTTPException: If the API key is not found or does not belong to the user.", - "operationId": "delete_api_key", - "parameters": [ - { - "name": "key_prefix", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Key Prefix" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "type": "object", - "additionalProperties": true, - "title": "Response Delete Api Key" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/organizations": { - "get": { - "tags": ["Organization"], - "summary": "List Organizations", - "description": "Returns a list of organizations associated with the user's session.\n\nReturns:\n list[Organization]: A list of organizations associated with the user's session.\n\nRaises:\n HTTPException: If there is an error retrieving the organizations from the database.", - "operationId": "list_organizations", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/Organization" - }, - "type": "array", - "title": "Response List Organizations" - } - } - } - } - } - } - }, - "/organizations/{organization_id}/workspaces/{workspace_id}/invite": { - "post": { - "tags": ["Organization"], - "summary": "Invite User To Organization", - "description": "Assigns a role to a user in an organization.\n\nArgs:\n organization_id (str): The ID of the organization.\n payload (InviteRequest): The payload containing the organization id, user email, and role to assign.\n workspace_id (str): The ID of the workspace.\n\nReturns:\n bool: True if the role was successfully assigned, False otherwise.\n\nRaises:\n HTTPException: If the user does not have permission to perform this action.\n HTTPException: If there is an error assigning the role to the user.", - "operationId": "invite_user_to_workspace", - "parameters": [ - { - "name": "organization_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Org Id" - } - }, - { - "name": "workspace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Workspace Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/InviteRequest" - }, - "title": "Payload" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/organizations/{organization_id}/workspaces/{workspace_id}/invite/resend": { - "post": { - "tags": ["Organization"], - "summary": "Resend User Invitation To Organization", - "description": "Resend an invitation to a user to an Organization.\n\nRaises:\n HTTPException: _description_; status_code: 500\n HTTPException: Invitation not found or has expired; status_code: 400\n HTTPException: You already belong to this organization; status_code: 400\n\nReturns:\n JSONResponse: Resent invitation to user; status_code: 200", - "operationId": "resend_invitation", - "parameters": [ - { - "name": "organization_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Org Id" - } - }, - { - "name": "workspace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Workspace Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ResendInviteRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/organizations/{organization_id}/workspaces/{workspace_id}/invite/accept": { - "post": { - "tags": ["Organization"], - "summary": "Accept Organization Invitation", - "description": "Accept an invitation to an organization.\n\nRaises:\n HTTPException: _description_; status_code: 500\n HTTPException: Invitation not found or has expired; status_code: 400\n HTTPException: You already belong to this organization; status_code: 400\n\nReturns:\n JSONResponse: Accepted invitation to workspace; status_code: 200", - "operationId": "accept_invitation", - "parameters": [ - { - "name": "organization_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Org Id" - } - }, - { - "name": "workspace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Workspace Id" - } - }, - { - "name": "project_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Project Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/InviteToken" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/workspaces": { - "get": { - "tags": ["Workspace"], - "summary": "Get Workspace", - "description": "Get workspace details.\n\nReturns details about the workspace associated with the user's session.\n\nReturns:\n Workspace: The details of the workspace.\n\nRaises:\n HTTPException: If the user does not have permission to perform this action.", - "operationId": "get_workspace", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/Workspace" - }, - "type": "array", - "title": "Response Get Workspace" - } - } - } - } - } - } - }, - "/workspaces/roles": { - "get": { - "tags": ["Workspace"], - "summary": "Get All Workspace Roles", - "description": "Get all workspace roles.\n\nReturns a list of all available workspace roles.\n\nReturns:\n List[WorkspaceRoleResponse]: A list of WorkspaceRole objects representing the available workspace roles.\n\nRaises:\n HTTPException: If an error occurs while retrieving the workspace roles.", - "operationId": "get_all_workspace_roles", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "additionalProperties": { - "type": "string" - }, - "type": "object" - }, - "type": "array", - "title": "Response Get All Workspace Roles" - } - } - } - } - } - } - }, - "/workspaces/{workspace_id}/users": { - "delete": { - "tags": ["Workspace"], - "summary": "Remove User From Workspace", - "description": "Remove a user from a workspace.\n\nArgs:\n email (str): The email address of the user to be removed\n workspace_id (str): The ID of the workspace.", - "operationId": "remove_user_from_workspace", - "parameters": [ - { - "name": "workspace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Workspace Id" - } - }, - { - "name": "email", - "in": "query", - "required": true, - "schema": { - "type": "string", - "title": "Email" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": {} - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/tracing/traces/": { - "put": { - "tags": ["Tracing"], - "summary": "Edit Trace", - "operationId": "edit_trace", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelTracingRequest" - } - } - }, - "required": true - }, - "responses": { - "202": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelLinksResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "post": { - "tags": ["Tracing"], - "summary": "Add Trace", - "operationId": "add_trace", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelTracingRequest" - } - } - }, - "required": true - }, - "responses": { - "202": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelLinksResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/tracing/traces/{trace_id}": { - "get": { - "tags": ["Tracing"], - "summary": "Fetch Trace", - "operationId": "fetch_trace", - "parameters": [ - { - "name": "trace_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - } - ], - "title": "Trace Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oss__src__apis__fastapi__tracing__models__OTelTracingResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Tracing"], - "summary": "Remove Trace", - "operationId": "remove_trace", - "parameters": [ - { - "name": "trace_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - } - ], - "title": "Trace Id" - } - } - ], - "responses": { - "202": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelLinksResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/tracing/spans/": { - "post": { - "tags": ["Tracing"], - "summary": "Ingest Spans", - "operationId": "ingest_spans", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelTracingRequest" - } - } - } - }, - "responses": { - "202": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelLinksResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Tracing"], - "summary": "Query Spans", - "operationId": "query_spans", - "parameters": [ - { - "name": "focus", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/Focus" - }, - { - "type": "null" - } - ], - "title": "Focus" - } - }, - { - "name": "format", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/Format" - }, - { - "type": "null" - } - ], - "title": "Format" - } - }, - { - "name": "oldest", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Oldest" - } - }, - { - "name": "newest", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Newest" - } - }, - { - "name": "limit", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Limit" - } - }, - { - "name": "filter", - "in": "query", - "required": false, - "schema": { - "title": "Filter" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oss__src__apis__fastapi__tracing__models__OTelTracingResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/tracing/spans/ingest": { - "post": { - "tags": ["Tracing"], - "summary": "Ingest Spans", - "operationId": "ingest_spans_rpc", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelTracingRequest" - } - } - }, - "required": true - }, - "responses": { - "202": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OTelLinksResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/tracing/spans/query": { - "post": { - "tags": ["Tracing"], - "summary": "Query Spans", - "operationId": "query_spans_rpc", - "parameters": [ - { - "name": "focus", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/Focus" - }, - { - "type": "null" - } - ], - "title": "Focus" - } - }, - { - "name": "format", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/Format" - }, - { - "type": "null" - } - ], - "title": "Format" - } - }, - { - "name": "oldest", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Oldest" - } - }, - { - "name": "newest", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Newest" - } - }, - { - "name": "limit", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Limit" - } - }, - { - "name": "filter", - "in": "query", - "required": false, - "schema": { - "title": "Filter" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/oss__src__apis__fastapi__tracing__models__OTelTracingResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/evaluators/": { - "get": { - "tags": ["Evals"], - "summary": "Query Evaluators", - "operationId": "list_evaluators", - "requestBody": { - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/EvaluatorQueryRequest" - }, - { - "type": "null" - } - ], - "title": "Evaluator Query Request" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "post": { - "tags": ["Evals"], - "summary": "Create Evaluator", - "operationId": "create_evaluator", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorRequest" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/evaluators/{evaluator_id}": { - "get": { - "tags": ["Evals"], - "summary": "Fetch Evaluator", - "operationId": "fetch_evaluator", - "parameters": [ - { - "name": "evaluator_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Evaluator Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Evals"], - "summary": "Edit Evaluator", - "operationId": "edit_evaluator", - "parameters": [ - { - "name": "evaluator_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Evaluator Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/evaluators/{evaluator_id}/archive": { - "post": { - "tags": ["Evals"], - "summary": "Archive Evaluator", - "operationId": "archive_evaluator", - "parameters": [ - { - "name": "evaluator_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Evaluator Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/evaluators/{evaluator_id}/unarchive": { - "post": { - "tags": ["Evals"], - "summary": "Unarchive Evaluator", - "operationId": "unarchive_evaluator", - "parameters": [ - { - "name": "evaluator_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Evaluator Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/evaluators/query": { - "post": { - "tags": ["Evals"], - "summary": "Query Evaluators", - "operationId": "query_evaluators", - "requestBody": { - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/EvaluatorQueryRequest" - }, - { - "type": "null" - } - ], - "title": "Evaluator Query Request" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EvaluatorsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/annotations/": { - "post": { - "tags": ["Evals"], - "summary": "Create Annotation", - "operationId": "create_annotation", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AnnotationCreateRequest" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AnnotationResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/annotations/{trace_id}/{span_id}": { - "get": { - "tags": ["Evals"], - "summary": "Fetch Annotation", - "operationId": "fetch_annotation", - "parameters": [ - { - "name": "trace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Trace Id" - } - }, - { - "name": "span_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Span Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AnnotationResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Evals"], - "summary": "Delete Annotation", - "operationId": "delete_annotation", - "parameters": [ - { - "name": "trace_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Trace Id" - } - }, - { - "name": "span_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Span Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AnnotationLinkResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/annotations/query": { - "post": { - "tags": ["Evals"], - "summary": "Query Annotations", - "operationId": "query_annotations", - "requestBody": { - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationQueryRequest" - }, - { - "type": "null" - } - ], - "title": "Query Request" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AnnotationsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/": { - "post": { - "tags": ["Workflows"], - "summary": "Create Workflow", - "operationId": "create_workflow", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Workflows"], - "summary": "Query Workflows", - "operationId": "list_workflows", - "parameters": [ - { - "name": "workflow_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of ref, e.g. {\"key\": value}", - "title": "Workflow Ref" - }, - "description": "JSON string of ref, e.g. {\"key\": value}" - }, - { - "name": "workflow_flags", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of flags, e.g. {\"key\": value}", - "title": "Workflow Flags" - }, - "description": "JSON string of flags, e.g. {\"key\": value}" - }, - { - "name": "workflow_metadata", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of metadata, e.g. {\"key\": value}", - "title": "Workflow Metadata" - }, - "description": "JSON string of metadata, e.g. {\"key\": value}" - }, - { - "name": "include_archived", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Include Archived" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/{workflow_id}": { - "get": { - "tags": ["Workflows"], - "summary": "Fetch Workflow", - "operationId": "fetch_workflow", - "parameters": [ - { - "name": "artifact_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Artifact Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Workflows"], - "summary": "Edit Workflow", - "operationId": "edit_workflow", - "parameters": [ - { - "name": "workflow_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Workflow Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/{workflow_id}/archive": { - "post": { - "tags": ["Workflows"], - "summary": "Archive Workflow", - "operationId": "archive_workflow", - "parameters": [ - { - "name": "artifact_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Artifact Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/{workflow_id}/unarchive": { - "post": { - "tags": ["Workflows"], - "summary": "Unarchive Workflow", - "operationId": "unarchive_workflow", - "parameters": [ - { - "name": "artifact_id", - "in": "query", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Artifact Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/query": { - "post": { - "tags": ["Workflows"], - "summary": "Query Workflows", - "operationId": "query_workflows", - "parameters": [ - { - "name": "workflow_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of ref, e.g. {\"key\": value}", - "title": "Workflow Ref" - }, - "description": "JSON string of ref, e.g. {\"key\": value}" - }, - { - "name": "workflow_flags", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of flags, e.g. {\"key\": value}", - "title": "Workflow Flags" - }, - "description": "JSON string of flags, e.g. {\"key\": value}" - }, - { - "name": "workflow_metadata", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of metadata, e.g. {\"key\": value}", - "title": "Workflow Metadata" - }, - "description": "JSON string of metadata, e.g. {\"key\": value}" - }, - { - "name": "include_archived", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Include Archived" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/variants/": { - "post": { - "tags": ["Workflows"], - "summary": "Create Workflow Variant", - "operationId": "create_workflow_variant", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Workflows"], - "summary": "Query Workflow Variants", - "operationId": "list_workflow_variants", - "parameters": [ - { - "name": "workflow_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of reference, e.g. {\"key\": value}", - "title": "Workflow Ref" - }, - "description": "JSON string of reference, e.g. {\"key\": value}" - }, - { - "name": "variant_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of reference, e.g. {\"key\": value}", - "title": "Variant Ref" - }, - "description": "JSON string of reference, e.g. {\"key\": value}" - }, - { - "name": "variant_metadata", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of metadata, e.g. {\"key\": value}", - "title": "Variant Metadata" - }, - "description": "JSON string of metadata, e.g. {\"key\": value}" - }, - { - "name": "variant_flags", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of flags, e.g. {\"key\": value}", - "title": "Variant Flags" - }, - "description": "JSON string of flags, e.g. {\"key\": value}" - }, - { - "name": "include_archived", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Include Archived" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/variants/{variant_id}": { - "get": { - "tags": ["Workflows"], - "summary": "Fetch Workflow Variant", - "operationId": "fetch_workflow_variant", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Variant Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Workflows"], - "summary": "Edit Workflow Variant", - "operationId": "edit_workflow_variant", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Variant Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/variants/{variant_id}/archive": { - "post": { - "tags": ["Workflows"], - "summary": "Archive Workflow Variant", - "operationId": "archive_workflow_variant", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Variant Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/variants/{variant_id}/unarchive": { - "post": { - "tags": ["Workflows"], - "summary": "Unarchive Workflow Variant", - "operationId": "unarchive_workflow_variant", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Variant Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/variants/query": { - "post": { - "tags": ["Workflows"], - "summary": "Query Workflow Variants", - "operationId": "query_workflow_variants", - "parameters": [ - { - "name": "workflow_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of reference, e.g. {\"key\": value}", - "title": "Workflow Ref" - }, - "description": "JSON string of reference, e.g. {\"key\": value}" - }, - { - "name": "variant_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of reference, e.g. {\"key\": value}", - "title": "Variant Ref" - }, - "description": "JSON string of reference, e.g. {\"key\": value}" - }, - { - "name": "variant_metadata", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of metadata, e.g. {\"key\": value}", - "title": "Variant Metadata" - }, - "description": "JSON string of metadata, e.g. {\"key\": value}" - }, - { - "name": "variant_flags", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of flags, e.g. {\"key\": value}", - "title": "Variant Flags" - }, - "description": "JSON string of flags, e.g. {\"key\": value}" - }, - { - "name": "include_archived", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Include Archived" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/variants/{variant_id}/commit": { - "post": { - "tags": ["Workflows"], - "summary": "Commit Workflow Revision", - "operationId": "commit_workflow_revision_by_variant_id", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Variant Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/variants/{variant_id}/fork": { - "post": { - "tags": ["Workflows"], - "summary": "Fork Workflow Variant", - "operationId": "fork_workflow_variant", - "parameters": [ - { - "name": "variant_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Variant Id" - } - }, - { - "name": "revision_id", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Revision Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/revisions/": { - "post": { - "tags": ["Workflows"], - "summary": "Create Workflow Revision", - "operationId": "create_workflow_revision", - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "get": { - "tags": ["Workflows"], - "summary": "Query Workflow Revisions", - "operationId": "list_workflow_revisions", - "parameters": [ - { - "name": "variant_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of ref, e.g. {\"key\": value}", - "title": "Variant Ref" - }, - "description": "JSON string of ref, e.g. {\"key\": value}" - }, - { - "name": "revision_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of ref, e.g. {\"key\": value}", - "title": "Revision Ref" - }, - "description": "JSON string of ref, e.g. {\"key\": value}" - }, - { - "name": "revision_metadata", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of metadata, e.g. {\"key\": value}", - "title": "Revision Metadata" - }, - "description": "JSON string of metadata, e.g. {\"key\": value}" - }, - { - "name": "revision_flags", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of flags, e.g. {\"key\": value}", - "title": "Revision Flags" - }, - "description": "JSON string of flags, e.g. {\"key\": value}" - }, - { - "name": "include_archived", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Include Archived" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/revisions/{revision_id}": { - "get": { - "tags": ["Workflows"], - "summary": "Fetch Workflow Revision", - "operationId": "fetch_workflow_revision", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Body_fetch_workflow_revision" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Workflows"], - "summary": "Edit Workflow Revision", - "operationId": "edit_workflow_revision", - "parameters": [ - { - "name": "revision_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Revision Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/revisions/{revision_id}/archive": { - "post": { - "tags": ["Workflows"], - "summary": "Archive Workflow Revision", - "operationId": "archive_workflow_revision_rpc", - "parameters": [ - { - "name": "revision_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Revision Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/revisions/{revision_id}/unarchive": { - "post": { - "tags": ["Workflows"], - "summary": "Unarchive Workflow Revision", - "operationId": "unarchive_workflow_revision_rpc", - "parameters": [ - { - "name": "revision_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Revision Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/revisions/query": { - "post": { - "tags": ["Workflows"], - "summary": "Query Workflow Revisions", - "operationId": "query_workflow_revisions", - "parameters": [ - { - "name": "variant_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of ref, e.g. {\"key\": value}", - "title": "Variant Ref" - }, - "description": "JSON string of ref, e.g. {\"key\": value}" - }, - { - "name": "revision_ref", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of ref, e.g. {\"key\": value}", - "title": "Revision Ref" - }, - "description": "JSON string of ref, e.g. {\"key\": value}" - }, - { - "name": "revision_metadata", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of metadata, e.g. {\"key\": value}", - "title": "Revision Metadata" - }, - "description": "JSON string of metadata, e.g. {\"key\": value}" - }, - { - "name": "revision_flags", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "JSON string of flags, e.g. {\"key\": value}", - "title": "Revision Flags" - }, - "description": "JSON string of flags, e.g. {\"key\": value}" - }, - { - "name": "include_archived", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Include Archived" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/revisions/{revision_id}/fork": { - "post": { - "tags": ["Workflows"], - "summary": "Fork Workflow Variant", - "operationId": "fork_workflow_variant_by_revision_id", - "parameters": [ - { - "name": "revision_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Revision Id" - } - }, - { - "name": "variant_id", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Variant Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowVariantResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/revisions/commit": { - "post": { - "tags": ["Workflows"], - "summary": "Commit Workflow Revision", - "operationId": "commit_workflow_revision", - "parameters": [ - { - "name": "variant_id", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Variant Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/base/workflows/revisions/log": { - "post": { - "tags": ["Workflows"], - "summary": "Log Workflow Revisions", - "operationId": "log_workflow_revisions", - "parameters": [ - { - "name": "depth", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Depth" - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Body_log_workflow_revisions" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WorkflowRevisionsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/": { - "get": { - "tags": ["Testsets"], - "summary": "Query Testsets", - "operationId": "list_testsets", - "requestBody": { - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/TagsRequest" - }, - { - "type": "null" - } - ], - "title": "Metadata Request" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "post": { - "tags": ["Testsets"], - "summary": "Create Testset", - "operationId": "create_testset", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetRequest" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/{testset_id}": { - "get": { - "tags": ["Testsets"], - "summary": "Fetch Testset", - "operationId": "fetch_testset", - "parameters": [ - { - "name": "testset_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Testset Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Testsets"], - "summary": "Edit Testset", - "operationId": "edit_testset", - "parameters": [ - { - "name": "testset_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Testset Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetRequest" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/{testset_id}/archive": { - "post": { - "tags": ["Testsets"], - "summary": "Archive Testset", - "operationId": "archive_testset", - "parameters": [ - { - "name": "testset_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Testset Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/{testset_id}/unarchive": { - "post": { - "tags": ["Testsets"], - "summary": "Unarchive Testset", - "operationId": "unarchive_testset", - "parameters": [ - { - "name": "testset_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Testset Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/query": { - "post": { - "tags": ["Testsets"], - "summary": "Query Testsets", - "operationId": "query_testsets", - "requestBody": { - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/TagsRequest" - }, - { - "type": "null" - } - ], - "title": "Metadata Request" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetsResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/upload": { - "post": { - "tags": ["Testsets"], - "summary": "Create Testset From File", - "operationId": "create_testset_from_file", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "$ref": "#/components/schemas/Body_create_testset_from_file" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/{testset_id}/upload": { - "post": { - "tags": ["Testsets"], - "summary": "Update Testset From File", - "operationId": "update_testset_from_file", - "parameters": [ - { - "name": "testset_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Testset Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "multipart/form-data": { - "schema": { - "$ref": "#/components/schemas/Body_update_testset_from_file" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/{testset_id}/download": { - "post": { - "tags": ["Testsets"], - "summary": "Fetch Testset To File", - "operationId": "fetch_testset_to_file", - "parameters": [ - { - "name": "testset_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "string" - } - ], - "title": "Testset Id" - } - }, - { - "name": "file_type", - "in": "query", - "required": false, - "schema": { - "enum": ["CSV", "JSON"], - "type": "string", - "title": "File Type" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestsetResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/preview/testsets/testcases/{testcase_id}": { - "get": { - "tags": ["Testsets"], - "summary": "Fetch Testcase", - "operationId": "fetch_testcase", - "parameters": [ - { - "name": "testcase_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "format": "uuid", - "title": "Testcase Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TestcaseResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/otlp/v1/traces": { - "post": { - "tags": ["Observability"], - "summary": "Receive /v1/traces via OTLP", - "description": "Receive traces via OTLP.", - "operationId": "otlp_v1_traces", - "responses": { - "202": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CollectStatusResponse" - } - } - } - } - } - } - }, - "/observability/v1/otlp/traces": { - "get": { - "tags": ["Observability"], - "summary": "Status of OTLP endpoint", - "description": "Status of OTLP endpoint.", - "operationId": "otlp_status", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CollectStatusResponse" - } - } - } - } - } - }, - "post": { - "tags": ["Observability"], - "summary": "Receive traces via OTLP", - "description": "Receive traces via OTLP.", - "operationId": "otlp_receiver", - "responses": { - "202": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CollectStatusResponse" - } - } - } - } - } - } - }, - "/observability/v1/traces": { - "get": { - "tags": ["Observability"], - "summary": "Query traces, with optional grouping, windowing, filtering, and pagination.", - "description": "Query traces, with optional grouping, windowing, filtering, and pagination.", - "operationId": "query_traces", - "parameters": [ - { - "name": "format", - "in": "query", - "required": false, - "schema": { - "enum": ["opentelemetry", "agenta"], - "type": "string", - "default": "agenta", - "title": "Format" - } - }, - { - "name": "focus", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Focus" - } - }, - { - "name": "oldest", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Oldest" - } - }, - { - "name": "newest", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Newest" - } - }, - { - "name": "filtering", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filtering" - } - }, - { - "name": "page", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Page" - } - }, - { - "name": "size", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Size" - } - }, - { - "name": "next", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Next" - } - }, - { - "name": "stop", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Stop" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__apis__fastapi__observability__models__OTelTracingResponse" - }, - { - "$ref": "#/components/schemas/AgentaNodesResponse" - }, - { - "$ref": "#/components/schemas/AgentaTreesResponse" - }, - { - "$ref": "#/components/schemas/AgentaRootsResponse" - } - ], - "title": "Response Query Traces" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Observability"], - "summary": "Delete traces", - "description": "Delete trace.", - "operationId": "delete_traces", - "parameters": [ - { - "name": "node_id", - "in": "query", - "required": false, - "schema": { - "type": "string", - "format": "uuid", - "title": "Node Id" - } - }, - { - "name": "node_ids", - "in": "query", - "required": false, - "schema": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "title": "Node Ids" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CollectStatusResponse" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/observability/v1/analytics": { - "get": { - "tags": ["Observability"], - "summary": "Query analytics, with optional grouping, windowing, filtering.", - "operationId": "query_analytics", - "parameters": [ - { - "name": "format", - "in": "query", - "required": false, - "schema": { - "enum": ["legacy", "agenta"], - "type": "string", - "default": "agenta", - "title": "Format" - } - }, - { - "name": "focus", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Focus" - } - }, - { - "name": "oldest", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Oldest" - } - }, - { - "name": "newest", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Newest" - } - }, - { - "name": "window", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Window" - } - }, - { - "name": "filtering", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Filtering" - } - }, - { - "name": "timeRange", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Timerange" - } - }, - { - "name": "app_id", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "App Id" - } - }, - { - "name": "environment", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Environment" - } - }, - { - "name": "variant", - "in": "query", - "required": false, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Variant" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/LegacyAnalyticsResponse" - }, - { - "$ref": "#/components/schemas/AnalyticsResponse" - } - ], - "title": "Response Query Analytics" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/observability/v1/traces/{trace_id}": { - "get": { - "tags": ["Observability"], - "summary": "Fetch trace by ID.", - "description": "Fetch trace by ID.", - "operationId": "fetch_trace_by_id", - "parameters": [ - { - "name": "trace_id", - "in": "path", - "required": true, - "schema": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - } - ], - "title": "Trace Id" - } - }, - { - "name": "format", - "in": "query", - "required": false, - "schema": { - "enum": ["opentelemetry", "agenta"], - "type": "string", - "default": "openetelemetry", - "title": "Format" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__apis__fastapi__observability__models__OTelTracingResponse" - }, - { - "$ref": "#/components/schemas/AgentaNodesResponse" - }, - { - "$ref": "#/components/schemas/AgentaTreesResponse" - }, - { - "$ref": "#/components/schemas/AgentaRootsResponse" - } - ], - "title": "Response Fetch Trace By Id" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/vault/v1/secrets": { - "get": { - "tags": ["Vault"], - "summary": "List Secrets", - "operationId": "list_secrets", - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "items": { - "$ref": "#/components/schemas/SecretResponseDTO" - }, - "type": "array", - "title": "Response List Secrets" - } - } - } - } - } - }, - "post": { - "tags": ["Vault"], - "summary": "Create Secret", - "operationId": "create_secret", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CreateSecretDTO" - } - } - }, - "required": true - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecretResponseDTO" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - }, - "/vault/v1/secrets/{secret_id}": { - "get": { - "tags": ["Vault"], - "summary": "Read Secret", - "operationId": "read_secret", - "parameters": [ - { - "name": "secret_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Secret Id" - } - } - ], - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecretResponseDTO" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "put": { - "tags": ["Vault"], - "summary": "Update Secret", - "operationId": "update_secret", - "parameters": [ - { - "name": "secret_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Secret Id" - } - } - ], - "requestBody": { - "required": true, - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpdateSecretDTO" - } - } - } - }, - "responses": { - "200": { - "description": "Successful Response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SecretResponseDTO" - } - } - } - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - }, - "delete": { - "tags": ["Vault"], - "summary": "Delete Secret", - "operationId": "delete_secret", - "parameters": [ - { - "name": "secret_id", - "in": "path", - "required": true, - "schema": { - "type": "string", - "title": "Secret Id" - } - } - ], - "responses": { - "204": { - "description": "Successful Response" - }, - "422": { - "description": "Validation Error", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/HTTPValidationError" - } - } - } - } - } - } - } - }, - "components": { - "schemas": { - "AccountRequest": { - "properties": { - "user": { - "anyOf": [ - { - "$ref": "#/components/schemas/LegacyUserRequest" - }, - { - "type": "null" - } - ] - }, - "scope": { - "anyOf": [ - { - "$ref": "#/components/schemas/LegacyScopeRequest" - }, - { - "type": "null" - } - ] - }, - "subscription": { - "anyOf": [ - { - "$ref": "#/components/schemas/LegacySubscriptionRequest" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "AccountRequest" - }, - "AccountResponse": { - "properties": { - "user": { - "anyOf": [ - { - "$ref": "#/components/schemas/LegacyUserResponse" - }, - { - "type": "null" - } - ] - }, - "scopes": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/LegacyScopesResponse" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Scopes" - } - }, - "type": "object", - "title": "AccountResponse" - }, - "AddVariantFromBasePayload": { - "properties": { - "base_id": { - "type": "string", - "title": "Base Id" - }, - "new_variant_name": { - "type": "string", - "title": "New Variant Name" - }, - "new_config_name": { - "type": "string", - "title": "New Config Name" - }, - "parameters": { - "additionalProperties": true, - "type": "object", - "title": "Parameters" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - } - }, - "type": "object", - "required": ["base_id", "new_variant_name", "new_config_name", "parameters"], - "title": "AddVariantFromBasePayload" - }, - "AddVariantFromKeyPayload": { - "properties": { - "variant_name": { - "type": "string", - "title": "Variant Name" - }, - "key": { - "type": "string", - "title": "Key" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - }, - "base_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Base Name" - }, - "config_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Config Name" - } - }, - "type": "object", - "required": ["variant_name", "key"], - "title": "AddVariantFromKeyPayload" - }, - "AddVariantFromURLPayload": { - "properties": { - "variant_name": { - "type": "string", - "title": "Variant Name" - }, - "url": { - "type": "string", - "title": "Url" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - }, - "base_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Base Name" - }, - "config_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Config Name" - } - }, - "type": "object", - "required": ["variant_name", "url"], - "title": "AddVariantFromURLPayload" - }, - "AgentaNodeDTO": { - "properties": { - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "span_id": { - "type": "string", - "title": "Span Id" - }, - "lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__shared__dtos__LifecycleDTO" - }, - { - "type": "null" - } - ] - }, - "root": { - "$ref": "#/components/schemas/RootDTO" - }, - "tree": { - "$ref": "#/components/schemas/TreeDTO" - }, - "node": { - "$ref": "#/components/schemas/NodeDTO" - }, - "parent": { - "anyOf": [ - { - "$ref": "#/components/schemas/ParentDTO" - }, - { - "type": "null" - } - ] - }, - "time": { - "$ref": "#/components/schemas/TimeDTO" - }, - "status": { - "$ref": "#/components/schemas/StatusDTO" - }, - "exception": { - "anyOf": [ - { - "$ref": "#/components/schemas/ExceptionDTO" - }, - { - "type": "null" - } - ] - }, - "data": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Data" - }, - "metrics": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metrics" - }, - "meta": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Meta" - }, - "refs": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Refs" - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/LinkDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - }, - "otel": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelExtraDTO" - }, - { - "type": "null" - } - ] - }, - "nodes": { - "anyOf": [ - { - "additionalProperties": { - "anyOf": [ - { - "$ref": "#/components/schemas/SpanDTO" - }, - { - "items": { - "$ref": "#/components/schemas/SpanDTO" - }, - "type": "array" - } - ] - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Nodes" - } - }, - "type": "object", - "required": ["trace_id", "span_id", "root", "tree", "node", "time", "status"], - "title": "AgentaNodeDTO" - }, - "AgentaNodesResponse": { - "properties": { - "nodes": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/AgentaNodeDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Nodes", - "default": [] - }, - "version": { - "type": "string", - "title": "Version" - }, - "count": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Count" - } - }, - "type": "object", - "required": ["version"], - "title": "AgentaNodesResponse" - }, - "AgentaRootDTO": { - "properties": { - "root": { - "$ref": "#/components/schemas/RootDTO" - }, - "trees": { - "items": { - "$ref": "#/components/schemas/AgentaTreeDTO" - }, - "type": "array", - "title": "Trees" - } - }, - "type": "object", - "required": ["root", "trees"], - "title": "AgentaRootDTO" - }, - "AgentaRootsResponse": { - "properties": { - "roots": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/AgentaRootDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Roots", - "default": [] - }, - "version": { - "type": "string", - "title": "Version" - }, - "count": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Count" - } - }, - "type": "object", - "required": ["version"], - "title": "AgentaRootsResponse" - }, - "AgentaTreeDTO": { - "properties": { - "tree": { - "$ref": "#/components/schemas/TreeDTO" - }, - "nodes": { - "items": { - "$ref": "#/components/schemas/AgentaNodeDTO" - }, - "type": "array", - "title": "Nodes" - } - }, - "type": "object", - "required": ["tree", "nodes"], - "title": "AgentaTreeDTO" - }, - "AgentaTreesResponse": { - "properties": { - "trees": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/AgentaTreeDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Trees", - "default": [] - }, - "version": { - "type": "string", - "title": "Version" - }, - "count": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Count" - } - }, - "type": "object", - "required": ["version"], - "title": "AgentaTreesResponse" - }, - "AggregatedResult": { - "properties": { - "evaluator_config": { - "anyOf": [ - { - "$ref": "#/components/schemas/EvaluatorConfig" - }, - { - "additionalProperties": true, - "type": "object" - } - ], - "title": "Evaluator Config" - }, - "result": { - "$ref": "#/components/schemas/Result" - } - }, - "type": "object", - "required": ["evaluator_config", "result"], - "title": "AggregatedResult" - }, - "AnalyticsResponse": { - "properties": { - "version": { - "type": "string", - "title": "Version" - }, - "count": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Count" - }, - "buckets": { - "items": { - "$ref": "#/components/schemas/BucketDTO" - }, - "type": "array", - "title": "Buckets" - } - }, - "type": "object", - "required": ["version", "buckets"], - "title": "AnalyticsResponse" - }, - "Annotation": { - "properties": { - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "span_id": { - "type": "string", - "title": "Span Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "kind": { - "$ref": "#/components/schemas/AnnotationKind", - "default": "custom" - }, - "source": { - "$ref": "#/components/schemas/AnnotationSource", - "default": "api" - }, - "data": { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object", - "title": "Data" - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "references": { - "$ref": "#/components/schemas/AnnotationReferences-Output" - }, - "links": { - "additionalProperties": { - "$ref": "#/components/schemas/AnnotationLink-Output" - }, - "type": "object", - "title": "Links" - } - }, - "type": "object", - "required": ["span_id", "trace_id", "data", "references", "links"], - "title": "Annotation" - }, - "AnnotationCreate": { - "properties": { - "kind": { - "$ref": "#/components/schemas/AnnotationKind", - "default": "custom" - }, - "source": { - "$ref": "#/components/schemas/AnnotationSource", - "default": "api" - }, - "data": { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object", - "title": "Data" - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "references": { - "$ref": "#/components/schemas/AnnotationReferences-Input" - }, - "links": { - "additionalProperties": { - "$ref": "#/components/schemas/AnnotationLink-Input" - }, - "type": "object", - "title": "Links" - } - }, - "type": "object", - "required": ["data", "references", "links"], - "title": "AnnotationCreate" - }, - "AnnotationCreateRequest": { - "properties": { - "annotation": { - "$ref": "#/components/schemas/AnnotationCreate" - } - }, - "type": "object", - "required": ["annotation"], - "title": "AnnotationCreateRequest" - }, - "AnnotationKind": { - "type": "string", - "enum": ["custom", "human", "auto"], - "title": "AnnotationKind" - }, - "AnnotationLink-Input": { - "properties": { - "span_id": { - "type": "string", - "title": "Span Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "attributes": { - "additionalProperties": true, - "type": "object", - "title": "Attributes" - } - }, - "type": "object", - "required": ["span_id", "trace_id"], - "title": "AnnotationLink" - }, - "AnnotationLink-Output": { - "properties": { - "span_id": { - "type": "string", - "title": "Span Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - } - }, - "type": "object", - "required": ["span_id", "trace_id"], - "title": "AnnotationLink" - }, - "AnnotationLinkResponse": { - "properties": { - "annotation": { - "$ref": "#/components/schemas/AnnotationLink-Output" - } - }, - "type": "object", - "required": ["annotation"], - "title": "AnnotationLinkResponse" - }, - "AnnotationQuery": { - "properties": { - "trace_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Trace Id" - }, - "span_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Span Id" - }, - "kind": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationKind" - }, - { - "type": "null" - } - ], - "default": "custom" - }, - "source": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationSource" - }, - { - "type": "null" - } - ], - "default": "api" - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "references": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationReferences-Input" - }, - { - "type": "null" - } - ] - }, - "links": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/AnnotationLink-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Links" - } - }, - "type": "object", - "title": "AnnotationQuery" - }, - "AnnotationQueryRequest": { - "properties": { - "annotation": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationQuery" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "AnnotationQueryRequest" - }, - "AnnotationReference-Input": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Version" - }, - "attributes": { - "additionalProperties": true, - "type": "object", - "title": "Attributes" - } - }, - "type": "object", - "title": "AnnotationReference" - }, - "AnnotationReference-Output": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Version" - } - }, - "type": "object", - "title": "AnnotationReference" - }, - "AnnotationReferences-Input": { - "properties": { - "evaluator": { - "$ref": "#/components/schemas/AnnotationReference-Input" - }, - "testset": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationReference-Input" - }, - { - "type": "null" - } - ] - }, - "testcase": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationReference-Input" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["evaluator"], - "title": "AnnotationReferences" - }, - "AnnotationReferences-Output": { - "properties": { - "evaluator": { - "$ref": "#/components/schemas/AnnotationReference-Output" - }, - "testset": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationReference-Output" - }, - { - "type": "null" - } - ] - }, - "testcase": { - "anyOf": [ - { - "$ref": "#/components/schemas/AnnotationReference-Output" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["evaluator"], - "title": "AnnotationReferences" - }, - "AnnotationResponse": { - "properties": { - "annotation": { - "anyOf": [ - { - "$ref": "#/components/schemas/Annotation" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "AnnotationResponse" - }, - "AnnotationSource": { - "type": "string", - "enum": ["web", "sdk", "api"], - "title": "AnnotationSource" - }, - "AnnotationsResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "oldest": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Oldest" - }, - "limit": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Limit" - }, - "annotations": { - "items": { - "$ref": "#/components/schemas/Annotation" - }, - "type": "array", - "title": "Annotations", - "default": [] - } - }, - "type": "object", - "required": ["count"], - "title": "AnnotationsResponse" - }, - "App": { - "properties": { - "app_id": { - "type": "string", - "title": "App Id" - }, - "app_name": { - "type": "string", - "title": "App Name" - }, - "app_type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "App Type" - }, - "updated_at": { - "type": "string", - "title": "Updated At" - } - }, - "type": "object", - "required": ["app_id", "app_name", "updated_at"], - "title": "App" - }, - "AppVariantResponse_": { - "properties": { - "app_id": { - "type": "string", - "title": "App Id" - }, - "app_name": { - "type": "string", - "title": "App Name" - }, - "variant_id": { - "type": "string", - "title": "Variant Id" - }, - "variant_name": { - "type": "string", - "title": "Variant Name" - }, - "project_id": { - "type": "string", - "title": "Project Id" - }, - "base_name": { - "type": "string", - "title": "Base Name" - }, - "base_id": { - "type": "string", - "title": "Base Id" - }, - "config_name": { - "type": "string", - "title": "Config Name" - }, - "uri": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Uri" - }, - "revision": { - "type": "integer", - "title": "Revision" - }, - "created_at": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "modified_by_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Modified By Id" - }, - "organization_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Organization Id" - }, - "workspace_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Workspace Id" - } - }, - "type": "object", - "required": [ - "app_id", - "app_name", - "variant_id", - "variant_name", - "project_id", - "base_name", - "base_id", - "config_name", - "revision" - ], - "title": "AppVariantResponse_" - }, - "AppVariantRevision": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "revision": { - "type": "integer", - "title": "Revision" - }, - "modified_by": { - "type": "string", - "title": "Modified By" - }, - "config": { - "$ref": "#/components/schemas/ConfigDB" - }, - "created_at": { - "type": "string", - "title": "Created At" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - } - }, - "type": "object", - "required": ["revision", "modified_by", "config", "created_at"], - "title": "AppVariantRevision" - }, - "Artifact-Input": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "additionalProperties": { - "type": "boolean" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Flags" - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - } - }, - "type": "object", - "title": "Artifact" - }, - "Artifact-Output": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "additionalProperties": { - "type": "boolean" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Flags" - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - } - }, - "type": "object", - "title": "Artifact" - }, - "BaseOutput": { - "properties": { - "base_id": { - "type": "string", - "title": "Base Id" - }, - "base_name": { - "type": "string", - "title": "Base Name" - } - }, - "type": "object", - "required": ["base_id", "base_name"], - "title": "BaseOutput" - }, - "Body_configs_add": { - "properties": { - "variant_ref": { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - "application_ref": { - "$ref": "#/components/schemas/ReferenceRequestModel" - } - }, - "type": "object", - "required": ["variant_ref", "application_ref"], - "title": "Body_configs_add" - }, - "Body_configs_delete": { - "properties": { - "variant_ref": { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - "application_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["variant_ref"], - "title": "Body_configs_delete" - }, - "Body_configs_deploy": { - "properties": { - "variant_ref": { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - "environment_ref": { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - "application_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["variant_ref", "environment_ref"], - "title": "Body_configs_deploy" - }, - "Body_configs_fetch": { - "properties": { - "variant_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - }, - "environment_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - }, - "application_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "Body_configs_fetch" - }, - "Body_configs_fork": { - "properties": { - "variant_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - }, - "environment_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - }, - "application_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "Body_configs_fork" - }, - "Body_configs_history": { - "properties": { - "variant_ref": { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - "application_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceRequestModel" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["variant_ref"], - "title": "Body_configs_history" - }, - "Body_create_testset_from_file": { - "properties": { - "file": { - "type": "string", - "format": "binary", - "title": "File" - }, - "file_type": { - "type": "string", - "enum": ["CSV", "JSON"], - "title": "File Type" - }, - "testset_slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Testset Slug" - }, - "testset_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Testset Name" - }, - "testset_description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Testset Description" - }, - "testset_metadata": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Testset Metadata" - } - }, - "type": "object", - "required": ["file"], - "title": "Body_create_testset_from_file" - }, - "Body_fetch_workflow_revision": { - "properties": { - "variant_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__shared__dtos__Reference" - }, - { - "type": "null" - } - ] - }, - "revision_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__shared__dtos__Reference" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "Body_fetch_workflow_revision" - }, - "Body_import_testset": { - "properties": { - "endpoint": { - "type": "string", - "title": "Endpoint" - }, - "testset_name": { - "type": "string", - "title": "Testset Name" - } - }, - "type": "object", - "title": "Body_import_testset" - }, - "Body_log_workflow_revisions": { - "properties": { - "variant_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__shared__dtos__Reference" - }, - { - "type": "null" - } - ] - }, - "revision_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__shared__dtos__Reference" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "Body_log_workflow_revisions" - }, - "Body_update_testset_from_file": { - "properties": { - "file": { - "type": "string", - "format": "binary", - "title": "File" - }, - "file_type": { - "type": "string", - "enum": ["CSV", "JSON"], - "title": "File Type" - } - }, - "type": "object", - "required": ["file"], - "title": "Body_update_testset_from_file" - }, - "Body_upload_file": { - "properties": { - "upload_type": { - "type": "string", - "title": "Upload Type" - }, - "file": { - "type": "string", - "format": "binary", - "title": "File" - }, - "testset_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Testset Name" - } - }, - "type": "object", - "required": ["file"], - "title": "Body_upload_file" - }, - "BucketDTO": { - "properties": { - "timestamp": { - "type": "string", - "format": "date-time", - "title": "Timestamp" - }, - "window": { - "type": "integer", - "title": "Window" - }, - "total": { - "$ref": "#/components/schemas/MetricsDTO" - }, - "error": { - "$ref": "#/components/schemas/MetricsDTO" - } - }, - "type": "object", - "required": ["timestamp", "window", "total", "error"], - "title": "BucketDTO" - }, - "CollectStatusResponse": { - "properties": { - "version": { - "type": "string", - "title": "Version" - }, - "status": { - "type": "string", - "title": "Status" - } - }, - "type": "object", - "required": ["version", "status"], - "title": "CollectStatusResponse" - }, - "ConfigDB": { - "properties": { - "config_name": { - "type": "string", - "title": "Config Name" - }, - "parameters": { - "additionalProperties": true, - "type": "object", - "title": "Parameters" - } - }, - "type": "object", - "required": ["config_name"], - "title": "ConfigDB" - }, - "ConfigDTO": { - "properties": { - "params": { - "additionalProperties": true, - "type": "object", - "title": "Params" - }, - "url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Url" - }, - "application_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceDTO" - }, - { - "type": "null" - } - ] - }, - "service_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceDTO" - }, - { - "type": "null" - } - ] - }, - "variant_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceDTO" - }, - { - "type": "null" - } - ] - }, - "environment_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceDTO" - }, - { - "type": "null" - } - ] - }, - "application_lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/LifecycleDTO-Input" - }, - { - "type": "null" - } - ] - }, - "service_lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/LifecycleDTO-Input" - }, - { - "type": "null" - } - ] - }, - "variant_lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/LifecycleDTO-Input" - }, - { - "type": "null" - } - ] - }, - "environment_lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/LifecycleDTO-Input" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["params"], - "title": "ConfigDTO" - }, - "ConfigRequest": { - "properties": { - "config": { - "$ref": "#/components/schemas/ConfigDTO" - } - }, - "type": "object", - "required": ["config"], - "title": "ConfigRequest" - }, - "ConfigResponseModel": { - "properties": { - "params": { - "additionalProperties": true, - "type": "object", - "title": "Params" - }, - "url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Url" - }, - "application_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceDTO" - }, - { - "type": "null" - } - ] - }, - "service_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceDTO" - }, - { - "type": "null" - } - ] - }, - "variant_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceDTO" - }, - { - "type": "null" - } - ] - }, - "environment_ref": { - "anyOf": [ - { - "$ref": "#/components/schemas/ReferenceDTO" - }, - { - "type": "null" - } - ] - }, - "application_lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__services__variants_manager__LifecycleDTO" - }, - { - "type": "null" - } - ] - }, - "service_lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__services__variants_manager__LifecycleDTO" - }, - { - "type": "null" - } - ] - }, - "variant_lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__services__variants_manager__LifecycleDTO" - }, - { - "type": "null" - } - ] - }, - "environment_lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__services__variants_manager__LifecycleDTO" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["params"], - "title": "ConfigResponseModel" - }, - "CorrectAnswer": { - "properties": { - "key": { - "type": "string", - "title": "Key" - }, - "value": { - "type": "string", - "title": "Value" - } - }, - "type": "object", - "required": ["key", "value"], - "title": "CorrectAnswer" - }, - "CreateAppOutput": { - "properties": { - "app_id": { - "type": "string", - "title": "App Id" - }, - "app_name": { - "type": "string", - "title": "App Name" - } - }, - "type": "object", - "required": ["app_id", "app_name"], - "title": "CreateAppOutput" - }, - "CreateApp_": { - "properties": { - "app_name": { - "type": "string", - "title": "App Name" - }, - "template_key": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Template Key" - }, - "project_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Project Id" - }, - "workspace_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Workspace Id" - }, - "organization_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Organization Id" - } - }, - "type": "object", - "required": ["app_name"], - "title": "CreateApp_" - }, - "CreateSecretDTO": { - "properties": { - "header": { - "$ref": "#/components/schemas/Header" - }, - "secret": { - "$ref": "#/components/schemas/SecretDTO" - } - }, - "type": "object", - "required": ["header", "secret"], - "title": "CreateSecretDTO" - }, - "CreateWorkspace": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Type" - } - }, - "type": "object", - "required": ["name"], - "title": "CreateWorkspace" - }, - "CustomModelSettingsDTO": { - "properties": { - "slug": { - "type": "string", - "title": "Slug" - }, - "extras": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extras" - } - }, - "type": "object", - "required": ["slug"], - "title": "CustomModelSettingsDTO" - }, - "CustomProviderDTO": { - "properties": { - "kind": { - "$ref": "#/components/schemas/CustomProviderKind" - }, - "provider": { - "$ref": "#/components/schemas/CustomProviderSettingsDTO" - }, - "models": { - "items": { - "$ref": "#/components/schemas/CustomModelSettingsDTO" - }, - "type": "array", - "title": "Models" - }, - "provider_slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Provider Slug" - }, - "model_keys": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Model Keys" - } - }, - "type": "object", - "required": ["kind", "provider", "models"], - "title": "CustomProviderDTO" - }, - "CustomProviderKind": { - "type": "string", - "enum": [ - "custom", - "azure", - "bedrock", - "sagemaker", - "vertex_ai", - "openai", - "cohere", - "anyscale", - "deepinfra", - "alephalpha", - "groq", - "mistralai", - "anthropic", - "perplexityai", - "togetherai", - "openrouter", - "gemini" - ], - "title": "CustomProviderKind" - }, - "CustomProviderSettingsDTO": { - "properties": { - "url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Url" - }, - "version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Version" - }, - "key": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Key" - }, - "extras": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Extras" - } - }, - "type": "object", - "title": "CustomProviderSettingsDTO" - }, - "DeleteEvaluation": { - "properties": { - "evaluations_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Evaluations Ids" - } - }, - "type": "object", - "required": ["evaluations_ids"], - "title": "DeleteEvaluation" - }, - "DeleteTestsets": { - "properties": { - "testset_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Testset Ids" - } - }, - "type": "object", - "required": ["testset_ids"], - "title": "DeleteTestsets" - }, - "DeployToEnvironmentPayload": { - "properties": { - "environment_name": { - "type": "string", - "title": "Environment Name" - }, - "variant_id": { - "type": "string", - "title": "Variant Id" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - } - }, - "type": "object", - "required": ["environment_name", "variant_id"], - "title": "DeployToEnvironmentPayload" - }, - "EntitiesRequestModel": { - "properties": { - "users": { - "additionalProperties": { - "$ref": "#/components/schemas/UserRequest" - }, - "type": "object", - "title": "Users" - }, - "organizations": { - "additionalProperties": { - "$ref": "#/components/schemas/OrganizationRequest" - }, - "type": "object", - "title": "Organizations" - }, - "workspaces": { - "additionalProperties": { - "$ref": "#/components/schemas/WorkspaceRequest" - }, - "type": "object", - "title": "Workspaces" - }, - "projects": { - "additionalProperties": { - "$ref": "#/components/schemas/ProjectRequest" - }, - "type": "object", - "title": "Projects" - }, - "organization_memberships": { - "additionalProperties": { - "$ref": "#/components/schemas/OrganizationMembershipRequest" - }, - "type": "object", - "title": "Organization Memberships" - }, - "workspace_memberships": { - "additionalProperties": { - "$ref": "#/components/schemas/WorkspaceMembershipRequest" - }, - "type": "object", - "title": "Workspace Memberships" - }, - "project_memberships": { - "additionalProperties": { - "$ref": "#/components/schemas/ProjectMembershipRequest" - }, - "type": "object", - "title": "Project Memberships" - } - }, - "type": "object", - "required": [ - "users", - "organizations", - "workspaces", - "projects", - "organization_memberships", - "workspace_memberships", - "project_memberships" - ], - "title": "EntitiesRequestModel" - }, - "EnvironmentOutputExtended_": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "app_id": { - "type": "string", - "title": "App Id" - }, - "project_id": { - "type": "string", - "title": "Project Id" - }, - "deployed_app_variant_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployed App Variant Id" - }, - "deployed_variant_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployed Variant Name" - }, - "deployed_app_variant_revision_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployed App Variant Revision Id" - }, - "revision": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Revision" - }, - "revisions": { - "items": { - "$ref": "#/components/schemas/EnvironmentRevision" - }, - "type": "array", - "title": "Revisions" - }, - "organization_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Organization Id" - }, - "workspace_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Workspace Id" - } - }, - "type": "object", - "required": [ - "name", - "app_id", - "project_id", - "deployed_app_variant_id", - "deployed_variant_name", - "deployed_app_variant_revision_id", - "revision", - "revisions" - ], - "title": "EnvironmentOutputExtended_" - }, - "EnvironmentOutput_": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "app_id": { - "type": "string", - "title": "App Id" - }, - "project_id": { - "type": "string", - "title": "Project Id" - }, - "deployed_app_variant_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployed App Variant Id" - }, - "deployed_variant_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployed Variant Name" - }, - "deployed_app_variant_revision_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployed App Variant Revision Id" - }, - "revision": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Revision" - }, - "organization_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Organization Id" - }, - "workspace_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Workspace Id" - } - }, - "type": "object", - "required": [ - "name", - "app_id", - "project_id", - "deployed_app_variant_id", - "deployed_variant_name", - "deployed_app_variant_revision_id", - "revision" - ], - "title": "EnvironmentOutput_" - }, - "EnvironmentRevision": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "revision": { - "type": "integer", - "title": "Revision" - }, - "modified_by": { - "type": "string", - "title": "Modified By" - }, - "deployed_app_variant_revision": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployed App Variant Revision" - }, - "deployment": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployment" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - }, - "created_at": { - "type": "string", - "title": "Created At" - }, - "deployed_variant_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Deployed Variant Name" - } - }, - "type": "object", - "required": ["id", "revision", "modified_by", "created_at"], - "title": "EnvironmentRevision" - }, - "Error": { - "properties": { - "message": { - "type": "string", - "title": "Message" - }, - "stacktrace": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Stacktrace" - } - }, - "type": "object", - "required": ["message"], - "title": "Error" - }, - "Evaluation": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "app_id": { - "type": "string", - "title": "App Id" - }, - "project_id": { - "type": "string", - "title": "Project Id" - }, - "variant_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Variant Ids" - }, - "variant_names": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Variant Names" - }, - "variant_revision_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Variant Revision Ids" - }, - "revisions": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Revisions" - }, - "testset_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Testset Id" - }, - "testset_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Testset Name" - }, - "status": { - "$ref": "#/components/schemas/Result" - }, - "aggregated_results": { - "items": { - "$ref": "#/components/schemas/AggregatedResult" - }, - "type": "array", - "title": "Aggregated Results" - }, - "average_cost": { - "anyOf": [ - { - "$ref": "#/components/schemas/Result" - }, - { - "type": "null" - } - ] - }, - "total_cost": { - "anyOf": [ - { - "$ref": "#/components/schemas/Result" - }, - { - "type": "null" - } - ] - }, - "average_latency": { - "anyOf": [ - { - "$ref": "#/components/schemas/Result" - }, - { - "type": "null" - } - ] - }, - "created_at": { - "type": "string", - "format": "date-time", - "title": "Created At" - }, - "updated_at": { - "type": "string", - "format": "date-time", - "title": "Updated At" - } - }, - "type": "object", - "required": [ - "id", - "app_id", - "project_id", - "variant_ids", - "variant_names", - "variant_revision_ids", - "revisions", - "status", - "aggregated_results", - "created_at", - "updated_at" - ], - "title": "Evaluation" - }, - "EvaluationScenario": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "evaluation_id": { - "type": "string", - "title": "Evaluation Id" - }, - "inputs": { - "items": { - "$ref": "#/components/schemas/EvaluationScenarioInput" - }, - "type": "array", - "title": "Inputs" - }, - "outputs": { - "items": { - "$ref": "#/components/schemas/EvaluationScenarioOutput" - }, - "type": "array", - "title": "Outputs" - }, - "correct_answers": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/CorrectAnswer" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Correct Answers" - }, - "is_pinned": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Pinned" - }, - "note": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Note" - }, - "results": { - "items": { - "$ref": "#/components/schemas/EvaluationScenarioResult" - }, - "type": "array", - "title": "Results" - } - }, - "type": "object", - "required": ["evaluation_id", "inputs", "outputs", "results"], - "title": "EvaluationScenario" - }, - "EvaluationScenarioInput": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "type": { - "type": "string", - "title": "Type" - }, - "value": { - "title": "Value" - } - }, - "type": "object", - "required": ["name", "type", "value"], - "title": "EvaluationScenarioInput" - }, - "EvaluationScenarioOutput": { - "properties": { - "result": { - "$ref": "#/components/schemas/Result" - }, - "cost": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Cost" - }, - "latency": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Latency" - } - }, - "type": "object", - "required": ["result"], - "title": "EvaluationScenarioOutput" - }, - "EvaluationScenarioResult": { - "properties": { - "evaluator_config": { - "type": "string", - "title": "Evaluator Config" - }, - "result": { - "$ref": "#/components/schemas/Result" - } - }, - "type": "object", - "required": ["evaluator_config", "result"], - "title": "EvaluationScenarioResult" - }, - "EvaluationScenarioScoreUpdate": { - "properties": { - "score": { - "type": "number", - "title": "Score" - } - }, - "type": "object", - "required": ["score"], - "title": "EvaluationScenarioScoreUpdate" - }, - "EvaluationStatusEnum": { - "type": "string", - "enum": [ - "EVALUATION_INITIALIZED", - "EVALUATION_STARTED", - "EVALUATION_FINISHED", - "EVALUATION_FINISHED_WITH_ERRORS", - "EVALUATION_FAILED", - "EVALUATION_AGGREGATION_FAILED" - ], - "title": "EvaluationStatusEnum" - }, - "EvaluationType": { - "type": "string", - "enum": ["human_a_b_testing", "single_model_test"], - "title": "EvaluationType" - }, - "Evaluator-Input": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "data": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowData" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "Evaluator" - }, - "EvaluatorConfig": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - }, - "project_id": { - "type": "string", - "title": "Project Id" - }, - "evaluator_key": { - "type": "string", - "title": "Evaluator Key" - }, - "settings_values": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Settings Values" - }, - "created_at": { - "type": "string", - "title": "Created At" - }, - "updated_at": { - "type": "string", - "title": "Updated At" - } - }, - "type": "object", - "required": ["id", "name", "project_id", "evaluator_key", "created_at", "updated_at"], - "title": "EvaluatorConfig" - }, - "EvaluatorInputInterface": { - "properties": { - "inputs": { - "additionalProperties": true, - "type": "object", - "title": "Inputs" - }, - "settings": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Settings" - }, - "credentials": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Credentials" - } - }, - "type": "object", - "title": "EvaluatorInputInterface" - }, - "EvaluatorMappingInputInterface": { - "properties": { - "inputs": { - "additionalProperties": true, - "type": "object", - "title": "Inputs" - }, - "mapping": { - "additionalProperties": true, - "type": "object", - "title": "Mapping" - } - }, - "type": "object", - "required": ["inputs", "mapping"], - "title": "EvaluatorMappingInputInterface" - }, - "EvaluatorMappingOutputInterface": { - "properties": { - "outputs": { - "additionalProperties": true, - "type": "object", - "title": "Outputs" - } - }, - "type": "object", - "required": ["outputs"], - "title": "EvaluatorMappingOutputInterface" - }, - "EvaluatorOutputInterface": { - "properties": { - "outputs": { - "additionalProperties": true, - "type": "object", - "title": "Outputs" - } - }, - "type": "object", - "required": ["outputs"], - "title": "EvaluatorOutputInterface" - }, - "EvaluatorQueryRequest": { - "properties": { - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object", - "title": "Metadata" - } - }, - "type": "object", - "required": ["metadata"], - "title": "EvaluatorQueryRequest" - }, - "EvaluatorRequest": { - "properties": { - "evaluator": { - "$ref": "#/components/schemas/Evaluator-Input" - } - }, - "type": "object", - "required": ["evaluator"], - "title": "EvaluatorRequest" - }, - "EvaluatorResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "evaluator": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__apis__fastapi__evaluators__models__Evaluator-Output" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["count"], - "title": "EvaluatorResponse" - }, - "EvaluatorsResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "evaluator": { - "items": { - "$ref": "#/components/schemas/oss__src__apis__fastapi__evaluators__models__Evaluator-Output" - }, - "type": "array", - "title": "Evaluator", - "default": [] - } - }, - "type": "object", - "required": ["count"], - "title": "EvaluatorsResponse" - }, - "ExceptionDTO": { - "properties": { - "timestamp": { - "type": "string", - "format": "date-time", - "title": "Timestamp" - }, - "type": { - "type": "string", - "title": "Type" - }, - "message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Message" - }, - "stacktrace": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Stacktrace" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - } - }, - "type": "object", - "required": ["timestamp", "type"], - "title": "ExceptionDTO" - }, - "Focus": { - "type": "string", - "enum": ["trace", "span"], - "title": "Focus" - }, - "Format": { - "type": "string", - "enum": ["agenta", "opentelemetry"], - "title": "Format" - }, - "FullJson-Input": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "number" - }, - { - "type": "boolean" - }, - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "items": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "FullJson-Output": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "number" - }, - { - "type": "boolean" - }, - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "items": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "array" - }, - { - "type": "null" - } - ] - }, - "GetConfigResponse": { - "properties": { - "config_name": { - "type": "string", - "title": "Config Name" - }, - "current_version": { - "type": "integer", - "title": "Current Version" - }, - "parameters": { - "additionalProperties": true, - "type": "object", - "title": "Parameters" - } - }, - "type": "object", - "required": ["config_name", "current_version", "parameters"], - "title": "GetConfigResponse" - }, - "HTTPValidationError": { - "properties": { - "detail": { - "items": { - "$ref": "#/components/schemas/ValidationError" - }, - "type": "array", - "title": "Detail" - } - }, - "type": "object", - "title": "HTTPValidationError" - }, - "Header": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - } - }, - "type": "object", - "title": "Header" - }, - "HumanEvaluation": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "app_id": { - "type": "string", - "title": "App Id" - }, - "project_id": { - "type": "string", - "title": "Project Id" - }, - "evaluation_type": { - "type": "string", - "title": "Evaluation Type" - }, - "variant_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Variant Ids" - }, - "variant_names": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Variant Names" - }, - "variants_revision_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Variants Revision Ids" - }, - "revisions": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Revisions" - }, - "testset_id": { - "type": "string", - "title": "Testset Id" - }, - "testset_name": { - "type": "string", - "title": "Testset Name" - }, - "status": { - "type": "string", - "title": "Status" - }, - "created_at": { - "type": "string", - "title": "Created At" - }, - "updated_at": { - "type": "string", - "title": "Updated At" - } - }, - "type": "object", - "required": [ - "id", - "app_id", - "project_id", - "evaluation_type", - "variant_ids", - "variant_names", - "variants_revision_ids", - "revisions", - "testset_id", - "testset_name", - "status", - "created_at", - "updated_at" - ], - "title": "HumanEvaluation" - }, - "HumanEvaluationScenario": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "evaluation_id": { - "type": "string", - "title": "Evaluation Id" - }, - "inputs": { - "items": { - "$ref": "#/components/schemas/HumanEvaluationScenarioInput" - }, - "type": "array", - "title": "Inputs" - }, - "outputs": { - "items": { - "$ref": "#/components/schemas/HumanEvaluationScenarioOutput" - }, - "type": "array", - "title": "Outputs" - }, - "vote": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Vote" - }, - "score": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Score" - }, - "correct_answer": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Correct Answer" - }, - "is_pinned": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Pinned" - }, - "note": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Note" - } - }, - "type": "object", - "required": ["evaluation_id", "inputs", "outputs"], - "title": "HumanEvaluationScenario" - }, - "HumanEvaluationScenarioInput": { - "properties": { - "input_name": { - "type": "string", - "title": "Input Name" - }, - "input_value": { - "type": "string", - "title": "Input Value" - } - }, - "type": "object", - "required": ["input_name", "input_value"], - "title": "HumanEvaluationScenarioInput" - }, - "HumanEvaluationScenarioOutput": { - "properties": { - "variant_id": { - "type": "string", - "title": "Variant Id" - }, - "variant_output": { - "type": "string", - "title": "Variant Output" - } - }, - "type": "object", - "required": ["variant_id", "variant_output"], - "title": "HumanEvaluationScenarioOutput" - }, - "HumanEvaluationScenarioUpdate": { - "properties": { - "vote": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Vote" - }, - "score": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Score" - }, - "correct_answer": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Correct Answer" - }, - "outputs": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/HumanEvaluationScenarioOutput" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Outputs" - }, - "inputs": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/HumanEvaluationScenarioInput" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Inputs" - }, - "is_pinned": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Pinned" - }, - "note": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Note" - } - }, - "type": "object", - "title": "HumanEvaluationScenarioUpdate" - }, - "HumanEvaluationUpdate": { - "properties": { - "status": { - "anyOf": [ - { - "$ref": "#/components/schemas/EvaluationStatusEnum" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "HumanEvaluationUpdate" - }, - "InviteRequest": { - "properties": { - "email": { - "type": "string", - "title": "Email" - }, - "roles": { - "anyOf": [ - { - "items": { - "type": "string" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Roles" - } - }, - "type": "object", - "required": ["email"], - "title": "InviteRequest" - }, - "InviteToken": { - "properties": { - "token": { - "type": "string", - "title": "Token" - }, - "email": { - "type": "string", - "title": "Email" - } - }, - "type": "object", - "required": ["token", "email"], - "title": "InviteToken" - }, - "LLMRunRateLimit": { - "properties": { - "batch_size": { - "type": "integer", - "title": "Batch Size" - }, - "max_retries": { - "type": "integer", - "title": "Max Retries" - }, - "retry_delay": { - "type": "integer", - "title": "Retry Delay" - }, - "delay_between_batches": { - "type": "integer", - "title": "Delay Between Batches" - } - }, - "type": "object", - "required": ["batch_size", "max_retries", "retry_delay", "delay_between_batches"], - "title": "LLMRunRateLimit" - }, - "LegacyAnalyticsResponse": { - "properties": { - "total_count": { - "type": "integer", - "title": "Total Count" - }, - "failure_rate": { - "type": "number", - "title": "Failure Rate" - }, - "total_cost": { - "type": "number", - "title": "Total Cost" - }, - "avg_cost": { - "type": "number", - "title": "Avg Cost" - }, - "avg_latency": { - "type": "number", - "title": "Avg Latency" - }, - "total_tokens": { - "type": "integer", - "title": "Total Tokens" - }, - "avg_tokens": { - "type": "number", - "title": "Avg Tokens" - }, - "data": { - "items": { - "$ref": "#/components/schemas/LegacyDataPoint" - }, - "type": "array", - "title": "Data" - } - }, - "type": "object", - "required": [ - "total_count", - "failure_rate", - "total_cost", - "avg_cost", - "avg_latency", - "total_tokens", - "avg_tokens", - "data" - ], - "title": "LegacyAnalyticsResponse" - }, - "LegacyDataPoint": { - "properties": { - "timestamp": { - "type": "string", - "format": "date-time", - "title": "Timestamp" - }, - "success_count": { - "type": "integer", - "title": "Success Count" - }, - "failure_count": { - "type": "integer", - "title": "Failure Count" - }, - "cost": { - "type": "number", - "title": "Cost" - }, - "latency": { - "type": "number", - "title": "Latency" - }, - "total_tokens": { - "type": "integer", - "title": "Total Tokens" - } - }, - "type": "object", - "required": ["timestamp", "success_count", "failure_count", "cost", "latency", "total_tokens"], - "title": "LegacyDataPoint" - }, - "LegacyScopeRequest": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - } - }, - "type": "object", - "title": "LegacyScopeRequest" - }, - "LegacyScopesResponse": { - "properties": { - "organization_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Organization Id" - }, - "organization_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Organization Name" - }, - "workspace_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Workspace Id" - }, - "workspace_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Workspace Name" - }, - "project_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Project Id" - }, - "project_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Project Name" - }, - "is_demo": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Demo" - }, - "user_role": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "User Role" - }, - "credentials": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Credentials" - } - }, - "type": "object", - "title": "LegacyScopesResponse" - }, - "LegacySubscriptionRequest": { - "properties": { - "plan": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Plan" - } - }, - "type": "object", - "title": "LegacySubscriptionRequest" - }, - "LegacyUserRequest": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "email": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Email" - } - }, - "type": "object", - "title": "LegacyUserRequest" - }, - "LegacyUserResponse": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - } - }, - "type": "object", - "title": "LegacyUserResponse" - }, - "LifecycleDTO-Input": { - "properties": { - "created_at": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "updated_by": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Updated By" - } - }, - "type": "object", - "title": "LifecycleDTO" - }, - "LinkDTO": { - "properties": { - "type": { - "$ref": "#/components/schemas/TreeType" - }, - "id": { - "type": "string", - "format": "uuid", - "title": "Id" - }, - "tree_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Tree Id" - } - }, - "type": "object", - "required": ["type", "id"], - "title": "LinkDTO" - }, - "ListAPIKeysResponse": { - "properties": { - "prefix": { - "type": "string", - "title": "Prefix" - }, - "created_at": { - "type": "string", - "title": "Created At" - }, - "last_used_at": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Last Used At" - }, - "expiration_date": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Expiration Date" - } - }, - "type": "object", - "required": ["prefix", "created_at"], - "title": "ListAPIKeysResponse" - }, - "MetricsDTO": { - "properties": { - "count": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Count", - "default": 0 - }, - "duration": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Duration", - "default": 0 - }, - "cost": { - "anyOf": [ - { - "type": "number" - }, - { - "type": "null" - } - ], - "title": "Cost", - "default": 0 - }, - "tokens": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Tokens", - "default": 0 - } - }, - "type": "object", - "title": "MetricsDTO" - }, - "NewEvaluation": { - "properties": { - "revisions_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Revisions Ids" - }, - "evaluators_configs": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Evaluators Configs" - }, - "testset_id": { - "type": "string", - "title": "Testset Id" - }, - "rate_limit": { - "$ref": "#/components/schemas/LLMRunRateLimit" - }, - "correct_answer_column": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Correct Answer Column" - } - }, - "type": "object", - "required": ["revisions_ids", "evaluators_configs", "testset_id", "rate_limit"], - "title": "NewEvaluation" - }, - "NewEvaluatorConfig": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "evaluator_key": { - "type": "string", - "title": "Evaluator Key" - }, - "settings_values": { - "additionalProperties": true, - "type": "object", - "title": "Settings Values" - } - }, - "type": "object", - "required": ["name", "evaluator_key", "settings_values"], - "title": "NewEvaluatorConfig" - }, - "NewHumanEvaluation": { - "properties": { - "app_id": { - "type": "string", - "title": "App Id" - }, - "variant_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Variant Ids" - }, - "evaluation_type": { - "$ref": "#/components/schemas/EvaluationType" - }, - "inputs": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Inputs" - }, - "testset_id": { - "type": "string", - "title": "Testset Id" - }, - "status": { - "type": "string", - "title": "Status" - } - }, - "type": "object", - "required": ["app_id", "variant_ids", "evaluation_type", "inputs", "testset_id", "status"], - "title": "NewHumanEvaluation" - }, - "NewTestset": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "csvdata": { - "items": { - "additionalProperties": true, - "type": "object" - }, - "type": "array", - "title": "Csvdata" - } - }, - "type": "object", - "required": ["name", "csvdata"], - "title": "NewTestset" - }, - "NodeDTO": { - "properties": { - "id": { - "type": "string", - "format": "uuid", - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - }, - "type": { - "anyOf": [ - { - "$ref": "#/components/schemas/NodeType" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["id", "name"], - "title": "NodeDTO" - }, - "NodeType": { - "type": "string", - "enum": ["agent", "workflow", "chain", "task", "tool", "embedding", "query", "completion", "chat", "rerank"], - "title": "NodeType" - }, - "OTelContextDTO": { - "properties": { - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "span_id": { - "type": "string", - "title": "Span Id" - } - }, - "type": "object", - "required": ["trace_id", "span_id"], - "title": "OTelContextDTO" - }, - "OTelEvent-Input": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "timestamp": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - } - ], - "title": "Timestamp" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - } - }, - "type": "object", - "required": ["name", "timestamp"], - "title": "OTelEvent" - }, - "OTelEvent-Output": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "timestamp": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - } - ], - "title": "Timestamp" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - } - }, - "type": "object", - "required": ["name", "timestamp"], - "title": "OTelEvent" - }, - "OTelEventDTO": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "timestamp": { - "type": "string", - "title": "Timestamp" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - } - }, - "type": "object", - "required": ["name", "timestamp"], - "title": "OTelEventDTO" - }, - "OTelExtraDTO": { - "properties": { - "kind": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Kind" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - }, - "events": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelEventDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelLinkDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - } - }, - "type": "object", - "title": "OTelExtraDTO" - }, - "OTelFlatSpan-Input": { - "properties": { - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "span_id": { - "type": "string", - "title": "Span Id" - }, - "parent_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parent Id" - }, - "span_kind": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelSpanKind" - }, - { - "type": "null" - } - ] - }, - "span_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Span Name" - }, - "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Start Time" - }, - "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "End Time" - }, - "status_code": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelStatusCode-Input" - }, - { - "type": "null" - } - ] - }, - "status_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Status Message" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - }, - "events": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelEvent-Input" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelLink-Input" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - } - }, - "type": "object", - "required": ["trace_id", "span_id"], - "title": "OTelFlatSpan" - }, - "OTelFlatSpan-Output": { - "properties": { - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "span_id": { - "type": "string", - "title": "Span Id" - }, - "parent_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parent Id" - }, - "span_kind": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelSpanKind" - }, - { - "type": "null" - } - ] - }, - "span_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Span Name" - }, - "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Start Time" - }, - "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "End Time" - }, - "status_code": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__tracing__dtos__OTelStatusCode" - }, - { - "type": "null" - } - ] - }, - "status_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Status Message" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - }, - "events": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelEvent-Output" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelLink-Output" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - } - }, - "type": "object", - "required": ["trace_id", "span_id"], - "title": "OTelFlatSpan" - }, - "OTelLink-Input": { - "properties": { - "span_id": { - "type": "string", - "title": "Span Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - } - }, - "type": "object", - "required": ["span_id", "trace_id"], - "title": "OTelLink" - }, - "OTelLink-Output": { - "properties": { - "span_id": { - "type": "string", - "title": "Span Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - } - }, - "type": "object", - "required": ["span_id", "trace_id"], - "title": "OTelLink" - }, - "OTelLinkDTO": { - "properties": { - "context": { - "$ref": "#/components/schemas/OTelContextDTO" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - } - }, - "type": "object", - "required": ["context"], - "title": "OTelLinkDTO" - }, - "OTelLinksResponse": { - "properties": { - "version": { - "type": "string", - "title": "Version" - }, - "count": { - "type": "integer", - "title": "Count" - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelLink-Output" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - } - }, - "type": "object", - "required": ["version", "count"], - "title": "OTelLinksResponse" - }, - "OTelSpan-Input": { - "properties": { - "spans": { - "anyOf": [ - { - "additionalProperties": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelSpan-Input" - }, - { - "items": { - "$ref": "#/components/schemas/OTelSpan-Input" - }, - "type": "array" - } - ] - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Spans" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "span_id": { - "type": "string", - "title": "Span Id" - }, - "parent_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parent Id" - }, - "span_kind": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelSpanKind" - }, - { - "type": "null" - } - ] - }, - "span_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Span Name" - }, - "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Start Time" - }, - "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "End Time" - }, - "status_code": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelStatusCode-Input" - }, - { - "type": "null" - } - ] - }, - "status_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Status Message" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - }, - "events": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelEvent-Input" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelLink-Input" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - } - }, - "type": "object", - "required": ["trace_id", "span_id"], - "title": "OTelSpan" - }, - "OTelSpan-Output": { - "properties": { - "spans": { - "anyOf": [ - { - "additionalProperties": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelSpan-Output" - }, - { - "items": { - "$ref": "#/components/schemas/OTelSpan-Output" - }, - "type": "array" - } - ] - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Spans" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "span_id": { - "type": "string", - "title": "Span Id" - }, - "parent_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Parent Id" - }, - "span_kind": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelSpanKind" - }, - { - "type": "null" - } - ] - }, - "span_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Span Name" - }, - "start_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Start Time" - }, - "end_time": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "End Time" - }, - "status_code": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__tracing__dtos__OTelStatusCode" - }, - { - "type": "null" - } - ] - }, - "status_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Status Message" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - }, - "events": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelEvent-Output" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelLink-Output" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - } - }, - "type": "object", - "required": ["trace_id", "span_id"], - "title": "OTelSpan" - }, - "OTelSpanDTO": { - "properties": { - "context": { - "$ref": "#/components/schemas/OTelContextDTO" - }, - "name": { - "type": "string", - "title": "Name" - }, - "kind": { - "$ref": "#/components/schemas/OTelSpanKind", - "default": "SPAN_KIND_UNSPECIFIED" - }, - "start_time": { - "type": "string", - "format": "date-time", - "title": "Start Time" - }, - "end_time": { - "type": "string", - "format": "date-time", - "title": "End Time" - }, - "status_code": { - "$ref": "#/components/schemas/oss__src__core__observability__dtos__OTelStatusCode", - "default": "STATUS_CODE_UNSET" - }, - "status_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Status Message" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - }, - "events": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelEventDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Events" - }, - "parent": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelContextDTO" - }, - { - "type": "null" - } - ] - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelLinkDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - } - }, - "type": "object", - "required": ["context", "name", "start_time", "end_time"], - "title": "OTelSpanDTO" - }, - "OTelSpanKind": { - "type": "string", - "enum": [ - "SPAN_KIND_UNSPECIFIED", - "SPAN_KIND_INTERNAL", - "SPAN_KIND_SERVER", - "SPAN_KIND_CLIENT", - "SPAN_KIND_PRODUCER", - "SPAN_KIND_CONSUMER" - ], - "title": "OTelSpanKind" - }, - "OTelSpansTree-Input": { - "properties": { - "spans": { - "anyOf": [ - { - "additionalProperties": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelSpan-Input" - }, - { - "items": { - "$ref": "#/components/schemas/OTelSpan-Input" - }, - "type": "array" - } - ] - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Spans" - } - }, - "type": "object", - "title": "OTelSpansTree" - }, - "OTelSpansTree-Output": { - "properties": { - "spans": { - "anyOf": [ - { - "additionalProperties": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelSpan-Output" - }, - { - "items": { - "$ref": "#/components/schemas/OTelSpan-Output" - }, - "type": "array" - } - ] - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Spans" - } - }, - "type": "object", - "title": "OTelSpansTree" - }, - "OTelStatusCode-Input": { - "type": "string", - "enum": ["STATUS_CODE_UNSET", "STATUS_CODE_OK", "STATUS_CODE_ERROR"], - "title": "OTelStatusCode" - }, - "OTelTracingRequest": { - "properties": { - "spans": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelFlatSpan-Input" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Spans" - }, - "traces": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/OTelSpansTree-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Traces" - } - }, - "type": "object", - "title": "OTelTracingRequest" - }, - "Organization": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - }, - "owner": { - "type": "string", - "title": "Owner" - }, - "description": { - "type": "string", - "title": "Description" - }, - "type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Type" - }, - "workspaces": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Workspaces" - } - }, - "type": "object", - "required": ["id", "name", "owner", "description"], - "title": "Organization" - }, - "OrganizationDetails": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - }, - "owner": { - "type": "string", - "title": "Owner" - }, - "description": { - "type": "string", - "title": "Description" - }, - "type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Type" - }, - "workspaces": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Workspaces" - }, - "default_workspace": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Default Workspace" - } - }, - "type": "object", - "required": ["id", "name", "owner", "description"], - "title": "OrganizationDetails" - }, - "OrganizationMembershipRequest": { - "properties": { - "role": { - "type": "string", - "enum": ["owner", "viewer", "editor", "evaluator", "workspace_admin", "deployment_manager"], - "title": "Role" - }, - "is_demo": { - "type": "boolean", - "title": "Is Demo" - }, - "user_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - }, - "organization_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - } - }, - "type": "object", - "required": ["role", "is_demo", "user_ref", "organization_ref"], - "title": "OrganizationMembershipRequest" - }, - "OrganizationOutput": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - } - }, - "type": "object", - "required": ["id", "name"], - "title": "OrganizationOutput" - }, - "OrganizationRequest": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "description": { - "type": "string", - "title": "Description" - }, - "is_paying": { - "type": "boolean", - "title": "Is Paying" - } - }, - "type": "object", - "required": ["name", "description", "is_paying"], - "title": "OrganizationRequest" - }, - "OrganizationUpdate": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "updated_at": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Updated At" - } - }, - "type": "object", - "title": "OrganizationUpdate" - }, - "ParentDTO": { - "properties": { - "id": { - "type": "string", - "format": "uuid", - "title": "Id" - } - }, - "type": "object", - "required": ["id"], - "title": "ParentDTO" - }, - "Permission": { - "type": "string", - "enum": [ - "read_system", - "view_application", - "edit_application", - "create_application", - "delete_application", - "create_app_variant", - "delete_app_variant", - "modify_variant_configurations", - "delete_application_variant", - "run_service", - "create_secret", - "view_secret", - "update_secret", - "delete_secret", - "view_app_environment_deployment", - "edit_app_environment_deployment", - "create_app_environment_deployment", - "view_testset", - "edit_testset", - "create_testset", - "delete_testset", - "view_evaluation", - "run_evaluations", - "edit_evaluation", - "create_evaluation", - "delete_evaluation", - "deploy_application", - "view_workspace", - "edit_workspace", - "create_workspace", - "delete_workspace", - "modify_user_roles", - "add_new_user_to_workspace", - "edit_organization", - "delete_organization", - "add_new_user_to_organization", - "reset_password", - "view_billing", - "edit_billing", - "view_workflows", - "edit_workflows", - "view_evaluators", - "edit_evaluators", - "view_testsets", - "edit_testsets", - "view_annotations", - "edit_annotations", - "delete_annotations" - ], - "title": "Permission" - }, - "Plan": { - "type": "string", - "enum": ["cloud_v0_hobby", "cloud_v0_pro", "cloud_v0_humanity_labs", "cloud_v0_x_labs", "cloud_v0_agenta_ai"], - "title": "Plan" - }, - "ProjectMembershipRequest": { - "properties": { - "role": { - "type": "string", - "enum": ["owner", "viewer", "editor", "evaluator", "workspace_admin", "deployment_manager"], - "title": "Role" - }, - "is_demo": { - "type": "boolean", - "title": "Is Demo" - }, - "user_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - }, - "project_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - } - }, - "type": "object", - "required": ["role", "is_demo", "user_ref", "project_ref"], - "title": "ProjectMembershipRequest" - }, - "ProjectRequest": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "description": { - "type": "string", - "title": "Description" - }, - "is_default": { - "type": "boolean", - "title": "Is Default" - }, - "workspace_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - }, - "organization_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - } - }, - "type": "object", - "required": ["name", "description", "is_default", "workspace_ref", "organization_ref"], - "title": "ProjectRequest" - }, - "ProjectScope": { - "properties": { - "credentials": { - "type": "string", - "title": "Credentials" - }, - "role": { - "type": "string", - "enum": ["owner", "viewer", "editor", "evaluator", "workspace_admin", "deployment_manager"], - "title": "Role" - }, - "tier": { - "type": "string", - "title": "Tier" - }, - "user": { - "$ref": "#/components/schemas/Reference-Output" - }, - "project": { - "$ref": "#/components/schemas/Reference-Output" - }, - "workspace": { - "$ref": "#/components/schemas/Reference-Output" - }, - "organization": { - "$ref": "#/components/schemas/Reference-Output" - } - }, - "type": "object", - "required": ["credentials", "role", "tier", "user", "project", "workspace", "organization"], - "title": "ProjectScope" - }, - "ProjectsResponse": { - "properties": { - "organization_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Organization Id" - }, - "organization_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Organization Name" - }, - "workspace_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Workspace Id" - }, - "workspace_name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Workspace Name" - }, - "project_id": { - "type": "string", - "format": "uuid", - "title": "Project Id" - }, - "project_name": { - "type": "string", - "title": "Project Name" - }, - "user_role": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "User Role" - }, - "is_demo": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Demo" - } - }, - "type": "object", - "required": ["project_id", "project_name"], - "title": "ProjectsResponse" - }, - "Reference-Output": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - } - }, - "type": "object", - "title": "Reference" - }, - "ReferenceDTO": { - "properties": { - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "version": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Version" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - } - }, - "type": "object", - "required": ["id"], - "title": "ReferenceDTO" - }, - "ReferenceRequest": { - "properties": { - "application_ref": { - "$ref": "#/components/schemas/ReferenceDTO" - } - }, - "type": "object", - "required": ["application_ref"], - "title": "ReferenceRequest" - }, - "ReferenceRequestModel": { - "properties": { - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "version": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Version" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - } - }, - "type": "object", - "title": "ReferenceRequestModel" - }, - "ResendInviteRequest": { - "properties": { - "email": { - "type": "string", - "title": "Email" - } - }, - "type": "object", - "required": ["email"], - "title": "ResendInviteRequest" - }, - "Result": { - "properties": { - "type": { - "type": "string", - "title": "Type" - }, - "value": { - "anyOf": [ - {}, - { - "type": "null" - } - ], - "title": "Value" - }, - "error": { - "anyOf": [ - { - "$ref": "#/components/schemas/Error" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["type"], - "title": "Result" - }, - "RootDTO": { - "properties": { - "id": { - "type": "string", - "format": "uuid", - "title": "Id" - } - }, - "type": "object", - "required": ["id"], - "title": "RootDTO" - }, - "ScopesResponseModel": { - "properties": { - "projects": { - "additionalProperties": { - "additionalProperties": { - "$ref": "#/components/schemas/ProjectScope" - }, - "type": "object" - }, - "type": "object", - "title": "Projects", - "default": {} - } - }, - "type": "object", - "title": "ScopesResponseModel" - }, - "SecretDTO": { - "properties": { - "kind": { - "$ref": "#/components/schemas/SecretKind" - }, - "data": { - "anyOf": [ - { - "$ref": "#/components/schemas/StandardProviderDTO" - }, - { - "$ref": "#/components/schemas/CustomProviderDTO" - } - ], - "title": "Data" - } - }, - "type": "object", - "required": ["kind", "data"], - "title": "SecretDTO" - }, - "SecretKind": { - "type": "string", - "enum": ["provider_key", "custom_provider"], - "title": "SecretKind" - }, - "SecretResponseDTO": { - "properties": { - "kind": { - "$ref": "#/components/schemas/SecretKind" - }, - "data": { - "anyOf": [ - { - "$ref": "#/components/schemas/StandardProviderDTO" - }, - { - "$ref": "#/components/schemas/CustomProviderDTO" - } - ], - "title": "Data" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "header": { - "$ref": "#/components/schemas/Header" - }, - "lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__shared__dtos__LifecycleDTO" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["kind", "data", "header"], - "title": "SecretResponseDTO" - }, - "SimpleEvaluationOutput": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "variant_ids": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Variant Ids" - }, - "app_id": { - "type": "string", - "title": "App Id" - }, - "status": { - "type": "string", - "title": "Status" - }, - "evaluation_type": { - "$ref": "#/components/schemas/EvaluationType" - } - }, - "type": "object", - "required": ["id", "variant_ids", "app_id", "status", "evaluation_type"], - "title": "SimpleEvaluationOutput" - }, - "SpanDTO": { - "properties": { - "trace_id": { - "type": "string", - "title": "Trace Id" - }, - "span_id": { - "type": "string", - "title": "Span Id" - }, - "lifecycle": { - "anyOf": [ - { - "$ref": "#/components/schemas/oss__src__core__shared__dtos__LifecycleDTO" - }, - { - "type": "null" - } - ] - }, - "root": { - "$ref": "#/components/schemas/RootDTO" - }, - "tree": { - "$ref": "#/components/schemas/TreeDTO" - }, - "node": { - "$ref": "#/components/schemas/NodeDTO" - }, - "parent": { - "anyOf": [ - { - "$ref": "#/components/schemas/ParentDTO" - }, - { - "type": "null" - } - ] - }, - "time": { - "$ref": "#/components/schemas/TimeDTO" - }, - "status": { - "$ref": "#/components/schemas/StatusDTO" - }, - "exception": { - "anyOf": [ - { - "$ref": "#/components/schemas/ExceptionDTO" - }, - { - "type": "null" - } - ] - }, - "data": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Data" - }, - "metrics": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metrics" - }, - "meta": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Meta" - }, - "refs": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Refs" - }, - "links": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/LinkDTO" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Links" - }, - "otel": { - "anyOf": [ - { - "$ref": "#/components/schemas/OTelExtraDTO" - }, - { - "type": "null" - } - ] - }, - "nodes": { - "anyOf": [ - { - "additionalProperties": { - "anyOf": [ - { - "$ref": "#/components/schemas/SpanDTO" - }, - { - "items": { - "$ref": "#/components/schemas/SpanDTO" - }, - "type": "array" - } - ] - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Nodes" - } - }, - "type": "object", - "required": ["trace_id", "span_id", "root", "tree", "node", "time", "status"], - "title": "SpanDTO" - }, - "StandardProviderDTO": { - "properties": { - "kind": { - "$ref": "#/components/schemas/StandardProviderKind" - }, - "provider": { - "$ref": "#/components/schemas/StandardProviderSettingsDTO" - } - }, - "type": "object", - "required": ["kind", "provider"], - "title": "StandardProviderDTO" - }, - "StandardProviderKind": { - "type": "string", - "enum": [ - "openai", - "cohere", - "anyscale", - "deepinfra", - "alephalpha", - "groq", - "mistralai", - "anthropic", - "perplexityai", - "togetherai", - "openrouter", - "gemini" - ], - "title": "StandardProviderKind" - }, - "StandardProviderSettingsDTO": { - "properties": { - "key": { - "type": "string", - "title": "Key" - } - }, - "type": "object", - "required": ["key"], - "title": "StandardProviderSettingsDTO" - }, - "StatusCode": { - "type": "string", - "enum": ["UNSET", "OK", "ERROR"], - "title": "StatusCode" - }, - "StatusDTO": { - "properties": { - "code": { - "$ref": "#/components/schemas/StatusCode" - }, - "message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Message" - } - }, - "type": "object", - "required": ["code"], - "title": "StatusDTO" - }, - "TagsRequest": { - "properties": { - "metadata": { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object", - "title": "Metadata" - } - }, - "type": "object", - "required": ["metadata"], - "title": "TagsRequest" - }, - "TestSetOutputResponse": { - "properties": { - "_id": { - "type": "string", - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - }, - "created_at": { - "type": "string", - "title": "Created At" - }, - "updated_at": { - "type": "string", - "title": "Updated At" - } - }, - "type": "object", - "required": ["_id", "name", "created_at", "updated_at"], - "title": "TestSetOutputResponse" - }, - "TestSetSimpleResponse": { - "properties": { - "id": { - "type": "string", - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - }, - "created_at": { - "type": "string", - "title": "Created At" - } - }, - "type": "object", - "required": ["id", "name", "created_at"], - "title": "TestSetSimpleResponse" - }, - "TestcaseResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "testcase": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Testcase" - } - }, - "type": "object", - "required": ["count"], - "title": "TestcaseResponse" - }, - "Testset-Input": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "testcases": { - "anyOf": [ - { - "items": { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Testcases" - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - } - }, - "type": "object", - "title": "Testset" - }, - "Testset-Output": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "testcases": { - "anyOf": [ - { - "items": { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Testcases" - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - } - }, - "type": "object", - "title": "Testset" - }, - "TestsetRequest": { - "properties": { - "testset": { - "$ref": "#/components/schemas/Testset-Input" - } - }, - "type": "object", - "required": ["testset"], - "title": "TestsetRequest" - }, - "TestsetResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "testset": { - "anyOf": [ - { - "$ref": "#/components/schemas/Testset-Output" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["count"], - "title": "TestsetResponse" - }, - "TestsetsResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "testsets": { - "items": { - "$ref": "#/components/schemas/Testset-Output" - }, - "type": "array", - "title": "Testsets", - "default": [] - } - }, - "type": "object", - "required": ["count"], - "title": "TestsetsResponse" - }, - "TimeDTO": { - "properties": { - "start": { - "type": "string", - "format": "date-time", - "title": "Start" - }, - "end": { - "type": "string", - "format": "date-time", - "title": "End" - } - }, - "type": "object", - "required": ["start", "end"], - "title": "TimeDTO" - }, - "TreeDTO": { - "properties": { - "id": { - "type": "string", - "format": "uuid", - "title": "Id" - }, - "type": { - "anyOf": [ - { - "$ref": "#/components/schemas/TreeType" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["id"], - "title": "TreeDTO" - }, - "TreeType": { - "type": "string", - "enum": ["invocation"], - "title": "TreeType" - }, - "UpdateApp": { - "properties": { - "app_name": { - "type": "string", - "title": "App Name" - } - }, - "type": "object", - "required": ["app_name"], - "title": "UpdateApp" - }, - "UpdateAppOutput": { - "properties": { - "app_id": { - "type": "string", - "title": "App Id" - }, - "app_name": { - "type": "string", - "title": "App Name" - } - }, - "type": "object", - "required": ["app_id", "app_name"], - "title": "UpdateAppOutput" - }, - "UpdateEvaluatorConfig": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "evaluator_key": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Evaluator Key" - }, - "settings_values": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Settings Values" - } - }, - "type": "object", - "required": ["settings_values"], - "title": "UpdateEvaluatorConfig" - }, - "UpdateSecretDTO": { - "properties": { - "header": { - "anyOf": [ - { - "$ref": "#/components/schemas/Header" - }, - { - "type": "null" - } - ] - }, - "secret": { - "anyOf": [ - { - "$ref": "#/components/schemas/SecretDTO" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "UpdateSecretDTO" - }, - "UpdateVariantParameterPayload": { - "properties": { - "parameters": { - "additionalProperties": true, - "type": "object", - "title": "Parameters" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - } - }, - "type": "object", - "required": ["parameters"], - "title": "UpdateVariantParameterPayload" - }, - "UpdateVariantURLPayload": { - "properties": { - "url": { - "type": "string", - "title": "Url" - }, - "variant_id": { - "type": "string", - "title": "Variant Id" - }, - "commit_message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Commit Message" - } - }, - "type": "object", - "required": ["url", "variant_id"], - "title": "UpdateVariantURLPayload" - }, - "UpdateWorkspace": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - } - }, - "type": "object", - "title": "UpdateWorkspace" - }, - "UserRequest": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "email": { - "type": "string", - "title": "Email" - } - }, - "type": "object", - "required": ["name", "email"], - "title": "UserRequest" - }, - "UserRole": { - "properties": { - "email": { - "type": "string", - "title": "Email" - }, - "organization_id": { - "type": "string", - "title": "Organization Id" - }, - "role": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Role" - } - }, - "type": "object", - "required": ["email", "organization_id"], - "title": "UserRole" - }, - "ValidationError": { - "properties": { - "loc": { - "items": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "integer" - } - ] - }, - "type": "array", - "title": "Location" - }, - "msg": { - "type": "string", - "title": "Message" - }, - "type": { - "type": "string", - "title": "Error Type" - } - }, - "type": "object", - "required": ["loc", "msg", "type"], - "title": "ValidationError" - }, - "WorkflowArtifact-Input": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - } - }, - "type": "object", - "title": "WorkflowArtifact" - }, - "WorkflowArtifact-Output": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - } - }, - "type": "object", - "title": "WorkflowArtifact" - }, - "WorkflowData": { - "properties": { - "service": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Service" - }, - "configuration": { - "anyOf": [ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Configuration" - } - }, - "type": "object", - "title": "WorkflowData" - }, - "WorkflowFlags": { - "properties": { - "is_custom": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Custom", - "default": false - }, - "is_evaluator": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Evaluator", - "default": false - }, - "is_human": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Is Human", - "default": false - } - }, - "type": "object", - "title": "WorkflowFlags" - }, - "WorkflowRequest": { - "properties": { - "workflow": { - "$ref": "#/components/schemas/WorkflowArtifact-Input" - } - }, - "type": "object", - "required": ["workflow"], - "title": "WorkflowRequest" - }, - "WorkflowResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "workflow": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowArtifact-Output" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["count"], - "title": "WorkflowResponse" - }, - "WorkflowRevision-Input": { - "properties": { - "author": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Author" - }, - "date": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Date" - }, - "message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Message" - }, - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Version" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "data": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowData" - }, - { - "type": "null" - } - ] - }, - "artifact_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Artifact Id" - }, - "artifact": { - "anyOf": [ - { - "$ref": "#/components/schemas/Artifact-Input" - }, - { - "type": "null" - } - ] - }, - "variant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Variant Id" - }, - "variant": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowVariant-Input" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "WorkflowRevision" - }, - "WorkflowRevision-Output": { - "properties": { - "author": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Author" - }, - "date": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Date" - }, - "message": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Message" - }, - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Version" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "data": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowData" - }, - { - "type": "null" - } - ] - }, - "artifact_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Artifact Id" - }, - "artifact": { - "anyOf": [ - { - "$ref": "#/components/schemas/Artifact-Output" - }, - { - "type": "null" - } - ] - }, - "variant_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Variant Id" - }, - "variant": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowVariant-Output" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "WorkflowRevision" - }, - "WorkflowRevisionRequest": { - "properties": { - "revision": { - "$ref": "#/components/schemas/WorkflowRevision-Input" - } - }, - "type": "object", - "required": ["revision"], - "title": "WorkflowRevisionRequest" - }, - "WorkflowRevisionResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "revision": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowRevision-Output" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["count"], - "title": "WorkflowRevisionResponse" - }, - "WorkflowRevisionsResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "revisions": { - "items": { - "$ref": "#/components/schemas/WorkflowRevision-Output" - }, - "type": "array", - "title": "Revisions", - "default": [] - } - }, - "type": "object", - "required": ["count"], - "title": "WorkflowRevisionsResponse" - }, - "WorkflowVariant-Input": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "artifact_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Artifact Id" - }, - "artifact": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowArtifact-Input" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "WorkflowVariant" - }, - "WorkflowVariant-Output": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "artifact_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Artifact Id" - }, - "artifact": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowArtifact-Output" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "WorkflowVariant" - }, - "WorkflowVariantRequest": { - "properties": { - "variant": { - "$ref": "#/components/schemas/WorkflowVariant-Input" - } - }, - "type": "object", - "required": ["variant"], - "title": "WorkflowVariantRequest" - }, - "WorkflowVariantResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "variant": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowVariant-Output" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "required": ["count"], - "title": "WorkflowVariantResponse" - }, - "WorkflowVariantsResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "variants": { - "items": { - "$ref": "#/components/schemas/WorkflowVariant-Output" - }, - "type": "array", - "title": "Variants", - "default": [] - } - }, - "type": "object", - "required": ["count"], - "title": "WorkflowVariantsResponse" - }, - "WorkflowsResponse": { - "properties": { - "count": { - "type": "integer", - "title": "Count" - }, - "workflows": { - "items": { - "$ref": "#/components/schemas/WorkflowArtifact-Output" - }, - "type": "array", - "title": "Workflows", - "default": [] - } - }, - "type": "object", - "required": ["count"], - "title": "WorkflowsResponse" - }, - "Workspace": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Type" - } - }, - "type": "object", - "required": ["name", "type"], - "title": "Workspace" - }, - "WorkspaceMemberResponse": { - "properties": { - "user": { - "additionalProperties": true, - "type": "object", - "title": "User" - }, - "roles": { - "items": { - "$ref": "#/components/schemas/WorkspacePermission" - }, - "type": "array", - "title": "Roles" - } - }, - "type": "object", - "required": ["user", "roles"], - "title": "WorkspaceMemberResponse" - }, - "WorkspaceMembershipRequest": { - "properties": { - "role": { - "type": "string", - "enum": ["owner", "viewer", "editor", "evaluator", "workspace_admin", "deployment_manager"], - "title": "Role" - }, - "is_demo": { - "type": "boolean", - "title": "Is Demo" - }, - "user_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - }, - "workspace_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - } - }, - "type": "object", - "required": ["role", "is_demo", "user_ref", "workspace_ref"], - "title": "WorkspaceMembershipRequest" - }, - "WorkspacePermission": { - "properties": { - "role_name": { - "$ref": "#/components/schemas/WorkspaceRole" - }, - "role_description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Role Description" - }, - "permissions": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/Permission" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Permissions" - } - }, - "type": "object", - "required": ["role_name"], - "title": "WorkspacePermission" - }, - "WorkspaceRequest": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "description": { - "type": "string", - "title": "Description" - }, - "is_default": { - "type": "boolean", - "title": "Is Default" - }, - "organization_ref": { - "$ref": "#/components/schemas/ee__src__services__admin_manager__Reference" - } - }, - "type": "object", - "required": ["name", "description", "is_default", "organization_ref"], - "title": "WorkspaceRequest" - }, - "WorkspaceResponse": { - "properties": { - "created_at": { - "type": "string", - "title": "Created At", - "default": "2025-05-15 07:35:40.094202+00:00" - }, - "updated_at": { - "type": "string", - "title": "Updated At", - "default": "2025-05-15 07:35:40.094271+00:00" - }, - "id": { - "type": "string", - "title": "Id" - }, - "name": { - "type": "string", - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "type": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Type" - }, - "organization": { - "type": "string", - "title": "Organization" - }, - "members": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/WorkspaceMemberResponse" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Members" - } - }, - "type": "object", - "required": ["id", "name", "type", "organization"], - "title": "WorkspaceResponse" - }, - "WorkspaceRole": { - "type": "string", - "enum": ["owner", "viewer", "editor", "evaluator", "workspace_admin", "deployment_manager"], - "title": "WorkspaceRole" - }, - "ee__src__services__admin_manager__Reference": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - } - }, - "type": "object", - "title": "Reference" - }, - "oss__src__apis__fastapi__evaluators__models__Evaluator-Output": { - "properties": { - "name": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Name" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "deleted_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Deleted At" - }, - "created_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Created By Id" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "deleted_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Deleted By Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "flags": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowFlags" - }, - { - "type": "null" - } - ] - }, - "metadata": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Metadata" - }, - "data": { - "anyOf": [ - { - "$ref": "#/components/schemas/WorkflowData" - }, - { - "type": "null" - } - ] - } - }, - "type": "object", - "title": "Evaluator" - }, - "oss__src__apis__fastapi__observability__models__OTelTracingResponse": { - "properties": { - "version": { - "type": "string", - "title": "Version" - }, - "count": { - "anyOf": [ - { - "type": "integer" - }, - { - "type": "null" - } - ], - "title": "Count" - }, - "spans": { - "items": { - "$ref": "#/components/schemas/OTelSpanDTO" - }, - "type": "array", - "title": "Spans" - } - }, - "type": "object", - "required": ["version", "spans"], - "title": "OTelTracingResponse" - }, - "oss__src__apis__fastapi__tracing__models__OTelTracingResponse": { - "properties": { - "version": { - "type": "string", - "title": "Version" - }, - "count": { - "type": "integer", - "title": "Count" - }, - "oldest": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Oldest" - }, - "newest": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Newest" - }, - "spans": { - "anyOf": [ - { - "items": { - "$ref": "#/components/schemas/OTelFlatSpan-Output" - }, - "type": "array" - }, - { - "type": "null" - } - ], - "title": "Spans" - }, - "traces": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/OTelSpansTree-Output" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Traces" - } - }, - "type": "object", - "required": ["version", "count"], - "title": "OTelTracingResponse" - }, - "oss__src__core__observability__dtos__OTelStatusCode": { - "type": "string", - "enum": ["STATUS_CODE_OK", "STATUS_CODE_ERROR", "STATUS_CODE_UNSET"], - "title": "OTelStatusCode" - }, - "oss__src__core__shared__dtos__LifecycleDTO": { - "properties": { - "created_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string", - "format": "date-time" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - } - }, - "type": "object", - "title": "LifecycleDTO" - }, - "oss__src__core__shared__dtos__Reference": { - "properties": { - "id": { - "anyOf": [ - { - "type": "string", - "format": "uuid" - }, - { - "type": "null" - } - ], - "title": "Id" - }, - "slug": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Slug" - }, - "version": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Version" - }, - "attributes": { - "anyOf": [ - { - "additionalProperties": { - "$ref": "#/components/schemas/FullJson-Input" - }, - "type": "object" - }, - { - "type": "null" - } - ], - "title": "Attributes" - } - }, - "type": "object", - "title": "Reference" - }, - "oss__src__core__tracing__dtos__OTelStatusCode": { - "type": "string", - "enum": ["STATUS_CODE_UNSET", "STATUS_CODE_OK", "STATUS_CODE_ERROR"], - "title": "OTelStatusCode" - }, - "oss__src__models__api__evaluation_model__Evaluator": { - "properties": { - "name": { - "type": "string", - "title": "Name" - }, - "key": { - "type": "string", - "title": "Key" - }, - "direct_use": { - "type": "boolean", - "title": "Direct Use" - }, - "settings_template": { - "additionalProperties": true, - "type": "object", - "title": "Settings Template" - }, - "description": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Description" - }, - "oss": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Oss", - "default": false - }, - "requires_llm_api_keys": { - "anyOf": [ - { - "type": "boolean" - }, - { - "type": "null" - } - ], - "title": "Requires Llm Api Keys", - "default": false - }, - "tags": { - "items": { - "type": "string" - }, - "type": "array", - "title": "Tags" - } - }, - "type": "object", - "required": ["name", "key", "direct_use", "settings_template", "tags"], - "title": "Evaluator" - }, - "oss__src__services__variants_manager__LifecycleDTO": { - "properties": { - "created_at": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Created At" - }, - "updated_at": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Updated At" - }, - "updated_by_id": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Updated By Id" - }, - "updated_by": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "title": "Updated By" - } - }, - "type": "object", - "title": "LifecycleDTO" - } - }, - "securitySchemes": { - "APIKeyHeader": { - "type": "apiKey", - "name": "Authorization", - "in": "header" - } - } - }, - "tags": [ - { - "name": "Variants" - }, - { - "name": "Evaluations" - }, - { - "name": "Evaluators" - }, - { - "name": "Apps" - }, - { - "name": "Human-Evaluations" - }, - { - "name": "Testsets" - }, - { - "name": "Containers" - }, - { - "name": "Environments" - }, - { - "name": "Observability" - }, - { - "name": "Organizations" - }, - { - "name": "Bases" - }, - { - "name": "Configs" - } - ], - "security": [ - { - "APIKeyHeader": [] - } - ] -} +{"openapi":"3.1.0","info":{"title":"Agenta API","version":"0.1.0","description":"Agenta API","contact":{"name":"Agenta","url":"https://agenta.ai","email":"team@agenta.ai"}},"paths":{"/billing/stripe/events/":{"post":{"tags":["Billing"],"summary":"Handle Events","operationId":"handle_events","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/billing/stripe/portals/":{"post":{"tags":["Billing"],"summary":"Create Portal User Route","operationId":"create_portal","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/billing/stripe/checkouts/":{"post":{"tags":["Billing"],"summary":"Create Checkout User Route","operationId":"create_checkout","parameters":[{"name":"plan","in":"query","required":true,"schema":{"$ref":"#/components/schemas/Plan"}},{"name":"success_url","in":"query","required":true,"schema":{"type":"string","title":"Success Url"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/billing/plans":{"get":{"tags":["Billing"],"summary":"Fetch Plan User Route","operationId":"fetch_plans","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/billing/plans/switch":{"post":{"tags":["Billing"],"summary":"Switch Plans User Route","operationId":"switch_plans","parameters":[{"name":"plan","in":"query","required":true,"schema":{"$ref":"#/components/schemas/Plan"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/billing/subscription":{"get":{"tags":["Billing"],"summary":"Fetch Subscription User Route","operationId":"fetch_subscription","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/billing/subscription/cancel":{"post":{"tags":["Billing"],"summary":"Cancel Subscription User Route","operationId":"cancel_plan","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/billing/usage":{"get":{"tags":["Billing"],"summary":"Fetch Usage User Route","operationId":"fetch_usage","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/admin/billing/stripe/portals/":{"post":{"tags":["Admin","Billing"],"summary":"Create Portal Admin Route","operationId":"admin_create_portal","parameters":[{"name":"organization_id","in":"query","required":true,"schema":{"type":"string","title":"Organization Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/admin/billing/stripe/checkouts/":{"post":{"tags":["Admin","Billing"],"summary":"Create Checkout Admin Route","operationId":"admin_create_checkout","parameters":[{"name":"organization_id","in":"query","required":true,"schema":{"type":"string","title":"Organization Id"}},{"name":"plan","in":"query","required":true,"schema":{"$ref":"#/components/schemas/Plan"}},{"name":"success_url","in":"query","required":true,"schema":{"type":"string","title":"Success Url"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/admin/billing/plans/switch":{"post":{"tags":["Admin","Billing"],"summary":"Switch Plans Admin Route","operationId":"admin_switch_plans","parameters":[{"name":"organization_id","in":"query","required":true,"schema":{"type":"string","title":"Organization Id"}},{"name":"plan","in":"query","required":true,"schema":{"$ref":"#/components/schemas/Plan"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/admin/billing/subscription/cancel":{"post":{"tags":["Admin","Billing"],"summary":"Cancel Subscription Admin Route","operationId":"admin_cancel_subscription","parameters":[{"name":"organization_id","in":"query","required":true,"schema":{"type":"string","title":"Organization Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/admin/billing/usage/report":{"post":{"tags":["Admin","Billing"],"summary":"Report Usage","operationId":"admin_report_usage","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/organizations/own":{"get":{"summary":"Get User Organization","operationId":"get_own_org","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrganizationOutput"}}}}}}},"/organizations/{organization_id}":{"get":{"tags":["Organization"],"summary":"Fetch Organization Details","description":"Return the details of the organization.","operationId":"fetch_organization_details","parameters":[{"name":"organization_id","in":"path","required":true,"schema":{"type":"string","title":"Organization Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrganizationDetails"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"summary":"Update Organization","operationId":"update_organization","parameters":[{"name":"organization_id","in":"path","required":true,"schema":{"type":"string","title":"Organization Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OrganizationUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/organizations/{organization_id}/workspaces":{"post":{"summary":"Create Workspace","operationId":"create_workspace","parameters":[{"name":"organization_id","in":"path","required":true,"schema":{"type":"string","title":"Organization Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateWorkspace"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkspaceResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/organizations/{organization_id}/workspaces/{workspace_id}":{"put":{"summary":"Update Workspace","operationId":"update_workspace","parameters":[{"name":"organization_id","in":"path","required":true,"schema":{"type":"string","title":"Organization Id"}},{"name":"workspace_id","in":"path","required":true,"schema":{"type":"string","title":"Workspace Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateWorkspace"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkspaceResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workspaces/permissions":{"get":{"summary":"Get All Workspace Permissions","description":"Get all workspace permissions.\n\nReturns a list of all available workspace permissions.\n\nReturns:\n List[Permission]: A list of Permission objects representing the available workspace permissions.\n\nRaises:\n HTTPException: If there is an error retrieving the workspace permissions.","operationId":"get_all_workspace_permissions","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/Permission"},"type":"array","title":"Response Get All Workspace Permissions"}}}}}}},"/workspaces/{workspace_id}/roles":{"post":{"summary":"Assign Role To User","description":"Assigns a role to a user in a workspace.\n\nArgs:\n payload (UserRole): The payload containing the organization id, user email, and role to assign.\n workspace_id (str): The ID of the workspace.\n request (Request): The FastAPI request object.\n\nReturns:\n bool: True if the role was successfully assigned, False otherwise.\n\nRaises:\n HTTPException: If the user does not have permission to perform this action.\n HTTPException: If there is an error assigning the role to the user.","operationId":"assign_role_to_user","parameters":[{"name":"workspace_id","in":"path","required":true,"schema":{"type":"string","title":"Workspace Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserRole"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"summary":"Unassign Role From User","description":"Delete a role assignment from a user in a workspace.\n\nArgs:\n workspace_id (str): The ID of the workspace.\n email (str): The email of the user to remove the role from.\n organization_id (str): The ID of the organization.\n role (str): The role to remove from the user.\n request (Request): The FastAPI request object.\n\nReturns:\n bool: True if the role assignment was successfully deleted.\n\nRaises:\n HTTPException: If there is an error in the request or the user does not have permission to perform the action.\n HTTPException: If there is an error in updating the user's roles.","operationId":"unassign_role_from_user","parameters":[{"name":"workspace_id","in":"path","required":true,"schema":{"type":"string","title":"Workspace Id"}},{"name":"email","in":"query","required":true,"schema":{"type":"string","title":"Email"}},{"name":"organization_id","in":"query","required":true,"schema":{"type":"string","title":"Organization Id"}},{"name":"role","in":"query","required":true,"schema":{"type":"string","title":"Role"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluations/by_resource":{"get":{"tags":["Evaluations"],"summary":"Fetch Evaluation Ids","description":"Fetches evaluation ids for a given resource type and id.\n\nArguments:\n app_id (str): The ID of the app for which to fetch evaluations.\n resource_type (str): The type of resource for which to fetch evaluations.\n resource_ids List[ObjectId]: The IDs of resource for which to fetch evaluations.\n\nRaises:\n HTTPException: If the resource_type is invalid or access is denied.\n\nReturns:\n List[str]: A list of evaluation ids.","operationId":"fetch_evaluation_ids_evaluations_by_resource_get","parameters":[{"name":"resource_type","in":"query","required":true,"schema":{"type":"string","title":"Resource Type"}},{"name":"resource_ids","in":"query","required":false,"schema":{"type":"array","items":{"type":"string"},"title":"Resource Ids"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"type":"string"},"title":"Response Fetch Evaluation Ids Evaluations By Resource Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluations/{evaluation_id}/status":{"get":{"tags":["Evaluations"],"summary":"Fetch Evaluation Status","description":"Fetches the status of the evaluation.\n\nArgs:\n evaluation_id (str): the evaluation id\n request (Request): the request object\n\nReturns:\n (str): the evaluation status","operationId":"fetch_evaluation_status","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluations/{evaluation_id}/results":{"get":{"tags":["Evaluations"],"summary":"Fetch Evaluation Results","description":"Fetches the results of the evaluation\n\nArgs:\n evaluation_id (str): the evaluation id\n request (Request): the request object\n\nReturns:\n _type_: _description_","operationId":"fetch_legacy_evaluation_results","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluations/{evaluation_id}/evaluation_scenarios":{"get":{"tags":["Evaluations"],"summary":"Fetch Evaluation Scenarios","description":"Fetches evaluation scenarios for a given evaluation ID.\n\nArguments:\n evaluation_id (str): The ID of the evaluation for which to fetch scenarios.\n\nRaises:\n HTTPException: If the evaluation is not found or access is denied.\n\nReturns:\n List[EvaluationScenario]: A list of evaluation scenarios.","operationId":"fetch_legacy_evaluation_scenarios","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/oss__src__models__api__evaluation_model__EvaluationScenario"},"title":"Response Fetch Legacy Evaluation Scenarios"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluations":{"get":{"tags":["Evaluations"],"summary":"Fetch List Evaluations","description":"Fetches a list of evaluations, optionally filtered by an app ID.\n\nArgs:\n app_id (Optional[str]): An optional app ID to filter the evaluations.\n\nReturns:\n List[Evaluation]: A list of evaluations.","operationId":"fetch_legacy_evaluations","parameters":[{"name":"app_id","in":"query","required":true,"schema":{"type":"string","title":"App Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Evaluation"},"title":"Response Fetch Legacy Evaluations"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Evaluations","description":"Delete specific comparison tables based on their unique IDs.\n\nArgs:\ndelete_evaluations (List[str]): The unique identifiers of the comparison tables to delete.\n\nReturns:\nA list of the deleted comparison tables' IDs.","operationId":"delete_legacy_evaluations","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeleteEvaluation"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"type":"string"},"title":"Response Delete Legacy Evaluations"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluations/{evaluation_id}":{"get":{"tags":["Evaluations"],"summary":"Fetch Evaluation","description":"Fetches a single evaluation based on its ID.\n\nArgs:\n evaluation_id (str): The ID of the evaluation to fetch.\n\nReturns:\n Evaluation: The fetched evaluation.","operationId":"fetch_legacy_evaluation","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Evaluation"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluations/evaluation_scenarios/comparison-results":{"get":{"tags":["Evaluations"],"summary":"Fetch Evaluation Scenarios Comparison Results","description":"Fetches evaluation scenarios for a given evaluation ID.\n\nArguments:\n evaluation_id (str): The ID of the evaluation for which to fetch scenarios.\n\nRaises:\n HTTPException: If the evaluation is not found or access is denied.\n\nReturns:\n List[EvaluationScenario]: A list of evaluation scenarios.","operationId":"fetch_legacy_evaluation_scenarios_comparison_results","parameters":[{"name":"evaluations_ids","in":"query","required":true,"schema":{"type":"string","title":"Evaluations Ids"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"title":"Response Fetch Legacy Evaluation Scenarios Comparison Results"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluations/preview/start":{"post":{"tags":["Evaluations"],"summary":"Start Evaluation","operationId":"start_evaluation","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewEvaluation"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/human-evaluations":{"post":{"tags":["Human-Evaluations"],"summary":"Create Human Evaluation","description":"Creates a new comparison table document\nRaises:\n HTTPException: _description_\nReturns:\n _description_","operationId":"create_human_evaluation","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewHumanEvaluation"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationOutput"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Human-Evaluations"],"summary":"Fetch List Human Evaluations","description":"Fetches a list of evaluations, optionally filtered by an app ID.\n\nArgs:\n app_id (Optional[str]): An optional app ID to filter the evaluations.\n\nReturns:\n List[HumanEvaluation]: A list of evaluations.","operationId":"fetch_list_human_evaluations_human_evaluations_get","parameters":[{"name":"app_id","in":"query","required":true,"schema":{"type":"string","title":"App Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/HumanEvaluation"},"title":"Response Fetch List Human Evaluations Human Evaluations Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Human-Evaluations"],"summary":"Delete Evaluations","description":"Delete specific comparison tables based on their unique IDs.\n\nArgs:\n payload (List[str]): The unique identifiers of the comparison tables to delete.\n\nReturns:\nA list of the deleted comparison tables' IDs.","operationId":"delete_evaluations_human_evaluations_delete","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeleteEvaluation"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"type":"string"},"title":"Response Delete Evaluations Human Evaluations Delete"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/human-evaluations/{evaluation_id}":{"get":{"tags":["Human-Evaluations"],"summary":"Fetch Human Evaluation","description":"Fetches a single evaluation based on its ID.\n\nArgs:\n evaluation_id (str): The ID of the evaluation to fetch.\n\nReturns:\n HumanEvaluation: The fetched evaluation.","operationId":"fetch_human_evaluation_human_evaluations__evaluation_id__get","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HumanEvaluation"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Human-Evaluations"],"summary":"Update Human Evaluation","description":"Updates an evaluation's status.\n\nRaises:\n HTTPException: If the columns in the test set do not match with the inputs in the variant.\n\nReturns:\n None: A 204 No Content status code, indicating that the update was successful.","operationId":"update_human_evaluation","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HumanEvaluationUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/human-evaluations/{evaluation_id}/evaluation_scenarios":{"get":{"tags":["Human-Evaluations"],"summary":"Fetch Human Evaluation Scenarios","description":"Fetches evaluation scenarios for a given evaluation ID.\n\nArguments:\n evaluation_id (str): The ID of the evaluation for which to fetch scenarios.\n\nRaises:\n HTTPException: If the evaluation is not found or access is denied.\n\nReturns:\n List[EvaluationScenario]: A list of evaluation scenarios.","operationId":"fetch_human_evaluation_scenarios","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/HumanEvaluationScenario"},"title":"Response Fetch Human Evaluation Scenarios"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/human-evaluations/{evaluation_id}/evaluation_scenario/{evaluation_scenario_id}/{evaluation_type}":{"put":{"tags":["Human-Evaluations"],"summary":"Update Evaluation Scenario Router","description":"Updates an evaluation scenario's vote or score based on its type.\n\nRaises:\n HTTPException: If update fails or unauthorized.\n\nReturns:\n None: 204 No Content status code upon successful update.","operationId":"update_evaluation_scenario_router_human_evaluations__evaluation_id__evaluation_scenario__evaluation_scenario_id___evaluation_type__put","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}},{"name":"evaluation_scenario_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Scenario Id"}},{"name":"evaluation_type","in":"path","required":true,"schema":{"$ref":"#/components/schemas/EvaluationType"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/HumanEvaluationScenarioUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/human-evaluations/evaluation_scenario/{evaluation_scenario_id}/score":{"get":{"tags":["Human-Evaluations"],"summary":"Get Evaluation Scenario Score Router","description":"Fetch the score of a specific evaluation scenario.\n\nArgs:\n evaluation_scenario_id: The ID of the evaluation scenario to fetch.\n\nReturns:\n Dictionary containing the scenario ID and its score.","operationId":"get_evaluation_scenario_score_router_human_evaluations_evaluation_scenario__evaluation_scenario_id__score_get","parameters":[{"name":"evaluation_scenario_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Scenario Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":{"type":"string"},"title":"Response Get Evaluation Scenario Score Router Human Evaluations Evaluation Scenario Evaluation Scenario Id Score Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Human-Evaluations"],"summary":"Update Evaluation Scenario Score Router","description":"Updates the score of an evaluation scenario.\n\nRaises:\n HTTPException: Server error if the evaluation update fails.\n\nReturns:\n None: 204 No Content status code upon successful update.","operationId":"update_evaluation_scenario_score_router_human_evaluations_evaluation_scenario__evaluation_scenario_id__score_put","parameters":[{"name":"evaluation_scenario_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Scenario Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenarioScoreUpdate"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/human-evaluations/{evaluation_id}/results":{"get":{"tags":["Human-Evaluations"],"summary":"Fetch Results","description":"Fetch all the results for one the comparison table\n\nArguments:\n evaluation_id -- _description_\n\nReturns:\n _description_","operationId":"fetch_results","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/vault/v1/secrets/":{"get":{"tags":["Secrets"],"summary":"List Secrets","operationId":"list_secrets","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/SecretResponseDTO"},"type":"array","title":"Response List Secrets"}}}}}},"post":{"tags":["Secrets"],"summary":"Create Secret","operationId":"create_secret","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateSecretDTO"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecretResponseDTO"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/vault/v1/secrets/{secret_id}":{"get":{"tags":["Secrets"],"summary":"Read Secret","operationId":"read_secret","parameters":[{"name":"secret_id","in":"path","required":true,"schema":{"type":"string","title":"Secret Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecretResponseDTO"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Secrets"],"summary":"Update Secret","operationId":"update_secret","parameters":[{"name":"secret_id","in":"path","required":true,"schema":{"type":"string","title":"Secret Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateSecretDTO"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SecretResponseDTO"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Secrets"],"summary":"Delete Secret","operationId":"delete_secret","parameters":[{"name":"secret_id","in":"path","required":true,"schema":{"type":"string","title":"Secret Id"}}],"responses":{"204":{"description":"Successful Response"},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/otlp/v1/traces":{"post":{"tags":["Observability"],"summary":"Receive /v1/traces via OTLP","description":"Receive traces via OTLP.","operationId":"otlp_v1_traces","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CollectStatusResponse"}}}}}}},"/observability/v1/otlp/traces":{"get":{"tags":["Observability"],"summary":"Status of OTLP endpoint","description":"Status of OTLP endpoint.","operationId":"otlp_status","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CollectStatusResponse"}}}}}},"post":{"tags":["Observability"],"summary":"Receive traces via OTLP","description":"Receive traces via OTLP.","operationId":"otlp_receiver","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CollectStatusResponse"}}}}}}},"/observability/v1/traces":{"get":{"tags":["Observability"],"summary":"Query traces, with optional grouping, windowing, filtering, and pagination.","description":"Query traces, with optional grouping, windowing, filtering, and pagination.","operationId":"query_traces","parameters":[{"name":"format","in":"query","required":false,"schema":{"enum":["opentelemetry","agenta"],"type":"string","default":"agenta","title":"Format"}},{"name":"focus","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Focus"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Oldest"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Newest"}},{"name":"filtering","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Filtering"}},{"name":"page","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Page"}},{"name":"size","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Size"}},{"name":"next","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Next"}},{"name":"stop","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Stop"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/oss__src__apis__fastapi__observability__models__OTelTracingResponse"},{"$ref":"#/components/schemas/AgentaNodesResponse"},{"$ref":"#/components/schemas/AgentaTreesResponse"},{"$ref":"#/components/schemas/AgentaRootsResponse"}],"title":"Response Query Traces"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Observability"],"summary":"Delete traces","description":"Delete trace.","operationId":"delete_traces","parameters":[{"name":"node_id","in":"query","required":false,"schema":{"type":"string","format":"uuid","title":"Node Id"}},{"name":"node_ids","in":"query","required":false,"schema":{"type":"array","items":{"type":"string","format":"uuid"},"title":"Node Ids"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CollectStatusResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/observability/v1/analytics":{"get":{"tags":["Observability"],"summary":"Query analytics, with optional grouping, windowing, filtering.","operationId":"query_analytics","parameters":[{"name":"format","in":"query","required":false,"schema":{"enum":["legacy","agenta"],"type":"string","default":"agenta","title":"Format"}},{"name":"focus","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Focus"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Oldest"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Newest"}},{"name":"interval","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"}},{"name":"filtering","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Filtering"}},{"name":"timeRange","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Timerange"}},{"name":"app_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"App Id"}},{"name":"environment","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Environment"}},{"name":"variant","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Variant"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/LegacyAnalyticsResponse"},{"$ref":"#/components/schemas/oss__src__apis__fastapi__observability__models__OldAnalyticsResponse"}],"title":"Response Query Analytics"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/observability/v1/traces/{trace_id}":{"get":{"tags":["Observability"],"summary":"Fetch trace by ID.","description":"Fetch trace by ID.","operationId":"fetch_trace_by_id","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"integer"}],"title":"Trace Id"}},{"name":"format","in":"query","required":false,"schema":{"enum":["opentelemetry","agenta"],"type":"string","default":"openetelemetry","title":"Format"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/oss__src__apis__fastapi__observability__models__OTelTracingResponse"},{"$ref":"#/components/schemas/AgentaNodesResponse"},{"$ref":"#/components/schemas/AgentaTreesResponse"},{"$ref":"#/components/schemas/AgentaRootsResponse"}],"title":"Response Fetch Trace By Id"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/tracing/traces/":{"post":{"tags":["Tracing"],"summary":"Create Trace","operationId":"create_trace","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelTracingRequest"}}},"required":true},"responses":{"202":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelLinksResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/tracing/traces/{trace_id}":{"get":{"tags":["Tracing"],"summary":"Fetch Trace","operationId":"fetch_trace","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/oss__src__apis__fastapi__tracing__models__OTelTracingResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Tracing"],"summary":"Edit Trace","operationId":"edit_trace","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelTracingRequest"}}}},"responses":{"202":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelLinksResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Tracing"],"summary":"Delete Trace","operationId":"delete_trace","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}}],"responses":{"202":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelLinksResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/tracing/spans/":{"post":{"tags":["Tracing"],"summary":"Ingest Spans","operationId":"ingest_spans","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelTracingRequest"}}},"required":true},"responses":{"202":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelLinksResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/tracing/spans/ingest":{"post":{"tags":["Tracing"],"summary":"Ingest Spans","operationId":"ingest_spans_rpc","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelTracingRequest"}}},"required":true},"responses":{"202":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OTelLinksResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/tracing/spans/query":{"post":{"tags":["Tracing"],"summary":"Query Spans","operationId":"query_spans_rpc","parameters":[{"name":"focus","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/Focus"},{"type":"null"}],"title":"Focus"}},{"name":"format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/Format"},{"type":"null"}],"title":"Format"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"null"}],"title":"Oldest"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"null"}],"title":"Newest"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"interval","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"}},{"name":"rate","in":"query","required":false,"schema":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rate"}},{"name":"filter","in":"query","required":false,"schema":{"title":"Filter"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/oss__src__apis__fastapi__tracing__models__OTelTracingResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/tracing/spans/analytics":{"post":{"tags":["Tracing"],"summary":"Fetch Legacy Analytics","operationId":"fetch_analytics","parameters":[{"name":"focus","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/Focus"},{"type":"null"}],"title":"Focus"}},{"name":"format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/Format"},{"type":"null"}],"title":"Format"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"null"}],"title":"Oldest"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"null"}],"title":"Newest"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"interval","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"}},{"name":"rate","in":"query","required":false,"schema":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rate"}},{"name":"filter","in":"query","required":false,"schema":{"title":"Filter"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/oss__src__apis__fastapi__tracing__models__OldAnalyticsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/tracing/analytics/query":{"post":{"tags":["Tracing"],"summary":"Fetch Analytics","operationId":"fetch_new_analytics","parameters":[{"name":"focus","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/Focus"},{"type":"null"}],"title":"Focus"}},{"name":"format","in":"query","required":false,"schema":{"anyOf":[{"$ref":"#/components/schemas/Format"},{"type":"null"}],"title":"Format"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"null"}],"title":"Oldest"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"null"}],"title":"Newest"}},{"name":"interval","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"}},{"name":"rate","in":"query","required":false,"schema":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rate"}},{"name":"filter","in":"query","required":false,"schema":{"title":"Filter"}},{"name":"specs","in":"query","required":false,"schema":{"title":"Specs"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnalyticsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/invocations/":{"post":{"tags":["Invocations"],"summary":"Create Invocation","operationId":"create_invocation","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/invocations/{trace_id}":{"get":{"tags":["Invocations"],"summary":"Fetch Invocation","operationId":"fetch_invocation_by_trace_id","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Invocations"],"summary":"Edit Invocation","operationId":"edit_invocation_by_trace_id","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Invocations"],"summary":"Delete Invocation","operationId":"delete_invocation_by_trace_id","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationLinkResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/invocations/{trace_id}/{span_id}":{"get":{"tags":["Invocations"],"summary":"Fetch Invocation","operationId":"fetch_invocation","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Invocations"],"summary":"Edit Invocation","operationId":"edit_invocation","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Invocations"],"summary":"Delete Invocation","operationId":"delete_invocation","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationLinkResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/invocations/query":{"post":{"tags":["Invocations"],"summary":"Query Invocations","operationId":"query_invocations","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/InvocationsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/annotations/":{"post":{"tags":["Annotations"],"summary":"Create Annotation","operationId":"create_annotation","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/annotations/{trace_id}":{"get":{"tags":["Annotations"],"summary":"Fetch Annotation","operationId":"fetch_annotation_by_trace_id","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Annotations"],"summary":"Edit Annotation","operationId":"edit_annotation_by_trace_id","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Annotations"],"summary":"Delete Annotation","operationId":"delete_annotation_by_trace_id","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationLinkResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/annotations/{trace_id}/{span_id}":{"get":{"tags":["Annotations"],"summary":"Fetch Annotation","operationId":"fetch_annotation","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Annotations"],"summary":"Edit Annotation","operationId":"edit_annotation","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Annotations"],"summary":"Delete Annotation","operationId":"delete_annotation","parameters":[{"name":"trace_id","in":"path","required":true,"schema":{"type":"string","title":"Trace Id"}},{"name":"span_id","in":"path","required":true,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationLinkResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/annotations/query":{"post":{"tags":["Annotations"],"summary":"Query Annotations","operationId":"query_annotations","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AnnotationsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testcases/{testcase_id}":{"get":{"tags":["Testcases"],"summary":"Fetch Testcase","operationId":"fetch_testcase_preview_testcases__testcase_id__get","parameters":[{"name":"testcase_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testcase Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestcaseResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testcases/query":{"post":{"tags":["Testcases"],"summary":"Query Testcases","operationId":"query_testcases_preview_testcases_query_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestcasesQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestcasesResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/":{"post":{"tags":["Testsets"],"summary":"Create Testset","operationId":"create_testset","parameters":[{"name":"testset_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetCreateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/{testset_id}":{"get":{"tags":["Testsets"],"summary":"Fetch Testset","operationId":"fetch_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Testsets"],"summary":"Edit Testset","operationId":"edit_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/{testset_id}/archive":{"post":{"tags":["Testsets"],"summary":"Archive Testset","operationId":"archive_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/{testset_id}/unarchive":{"post":{"tags":["Testsets"],"summary":"Unarchive Testset","operationId":"unarchive_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/query":{"post":{"tags":["Testsets"],"summary":"Query Testsets","operationId":"query_testsets","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/variants/":{"post":{"tags":["Testsets"],"summary":"Create Testset Variant","operationId":"create_testset_variant","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantCreateRequest"}}},"required":true},"responses":{"201":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/variants/{testset_variant_id}":{"get":{"tags":["Testsets"],"summary":"Fetch Testset Variant","operationId":"fetch_testset_variant","parameters":[{"name":"testset_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Testsets"],"summary":"Edit Testset Variant","operationId":"edit_testset_variant","parameters":[{"name":"testset_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Variant Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/variants/{testset_variant_id}/archive":{"put":{"tags":["Testsets"],"summary":"Archive Testset Variant","operationId":"archive_testset_variant","parameters":[{"name":"testset_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/variants/{testset_variant_id}/unarchive":{"put":{"tags":["Testsets"],"summary":"Unarchive Testset Variant","operationId":"unarchive_testset_variant","parameters":[{"name":"testset_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/variants/query":{"post":{"tags":["Testsets"],"summary":"Query Testset Variants","operationId":"query_testset_variants","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetVariantsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/revisions/retrieve":{"post":{"tags":["Testsets"],"summary":"Retrieve Testset Revision","operationId":"retrieve_testset_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionRetrieveRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/revisions/":{"post":{"tags":["Testsets"],"summary":"Create Testset Revision","operationId":"create_testset_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/revisions/{testset_revision_id}":{"get":{"tags":["Testsets"],"summary":"Fetch Testset Revision","operationId":"fetch_testset_revision","parameters":[{"name":"testset_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Testsets"],"summary":"Edit Testset Revision","operationId":"edit_testset_revision","parameters":[{"name":"testset_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Revision Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/revisions/{testset_revision_id}/archive":{"post":{"tags":["Testsets"],"summary":"Archive Testset Revision","operationId":"archive_testset_revision","parameters":[{"name":"testset_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/revisions/{testset_revision_id}/unarchive":{"post":{"tags":["Testsets"],"summary":"Unarchive Testset Revision","operationId":"unarchive_testset_revision","parameters":[{"name":"testset_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/revisions/query":{"post":{"tags":["Testsets"],"summary":"Query Testset Revisions","operationId":"query_testset_revisions","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/revisions/commit":{"post":{"tags":["Testsets"],"summary":"Commit Testset Revision","operationId":"commit_testset_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionCommitRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/testsets/revisions/log":{"post":{"tags":["Testsets"],"summary":"Log Testset Revisions","operationId":"log_testset_revisions","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetLogRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestsetRevisionsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/":{"post":{"tags":["Testsets"],"summary":"Create Simple Testset","operationId":"create_simple_testset","parameters":[{"name":"testset_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetCreateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/{testset_id}":{"get":{"tags":["Testsets"],"summary":"Fetch Simple Testset","operationId":"fetch_simple_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Testsets"],"summary":"Edit Simple Testset","operationId":"edit_simple_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/{testset_id}/archive":{"post":{"tags":["Testsets"],"summary":"Archive Simple Testset","operationId":"archive_simple_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/{testset_id}/unarchive":{"post":{"tags":["Testsets"],"summary":"Unarchive Simple Testset","operationId":"unarchive_simple_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/query":{"post":{"tags":["Testsets"],"summary":"Query Simple Testsets","operationId":"query_simple_testsets","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/upload":{"post":{"tags":["Testsets"],"summary":"Create Simple Testset From File","operationId":"create_simple_testset_from_file","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_create_simple_testset_from_file"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/{testset_id}/upload":{"post":{"tags":["Testsets"],"summary":"Edit Simple Testset From File","operationId":"edit_simple_testset_from_file","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_edit_simple_testset_from_file"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/{testset_id}/download":{"post":{"tags":["Testsets"],"summary":"Fetch Simple Testset To File","operationId":"fetch_simple_testset_to_file","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}},{"name":"file_type","in":"query","required":false,"schema":{"anyOf":[{"enum":["csv","json"],"type":"string"},{"type":"null"}],"title":"File Type"}},{"name":"file_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"File Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/testsets/{testset_id}/transfer":{"post":{"tags":["Testsets"],"summary":"Transfer Simple Testset","operationId":"transfer_simple_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Testset Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleTestsetResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/":{"post":{"tags":["Queries"],"summary":"Create Query","operationId":"create_query","parameters":[{"name":"query_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryCreateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/{query_id}":{"get":{"tags":["Queries"],"summary":"Fetch Query","operationId":"fetch_query","parameters":[{"name":"query_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Queries"],"summary":"Edit Query","operationId":"edit_query","parameters":[{"name":"query_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/{query_id}/archive":{"post":{"tags":["Queries"],"summary":"Archive Query","operationId":"archive_query","parameters":[{"name":"query_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/{query_id}/unarchive":{"post":{"tags":["Queries"],"summary":"Unarchive Query","operationId":"unarchive_query","parameters":[{"name":"query_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/query":{"post":{"tags":["Queries"],"summary":"Query Queries","operationId":"query_queries","parameters":[{"name":"query_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Id"}},{"name":"query_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Query Ids"}},{"name":"query_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Query Slug"}},{"name":"query_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Query Slugs"}},{"name":"name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},{"name":"description","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},{"name":"flags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Flags"}},{"name":"tags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tags"}},{"name":"meta","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Meta"}},{"name":"include_archived","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"}},{"name":"next","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Next"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Newest"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Oldest"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"order","in":"query","required":false,"schema":{"anyOf":[{"enum":["ascending","descending"],"type":"string"},{"type":"null"}],"title":"Order"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueriesResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/revisions/retrieve":{"post":{"tags":["Queries"],"summary":"Retrieve Query Revision","operationId":"retrieve_query_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionRetrieveRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/revisions/":{"post":{"tags":["Queries"],"summary":"Create Query Revision","operationId":"create_query_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/revisions/{query_revision_id}":{"get":{"tags":["Queries"],"summary":"Fetch Query Revision","operationId":"fetch_query_revision","parameters":[{"name":"query_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Queries"],"summary":"Edit Query Revision","operationId":"edit_query_revision","parameters":[{"name":"query_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Revision Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/revisions/{query_revision_id}/archive":{"post":{"tags":["Queries"],"summary":"Archive Query Revision","operationId":"archive_query_revision","parameters":[{"name":"query_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/revisions/{query_revision_id}/unarchive":{"post":{"tags":["Queries"],"summary":"Unarchive Query Revision","operationId":"unarchive_query_revision","parameters":[{"name":"query_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/revisions/query":{"post":{"tags":["Queries"],"summary":"Query Query Revisions","operationId":"query_query_revisions","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/revisions/commit":{"post":{"tags":["Queries"],"summary":"Commit Query Revision","operationId":"commit_query_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionCommitRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/queries/revisions/log":{"post":{"tags":["Queries"],"summary":"Log Query Revisions","operationId":"log_query_revisions","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionsLogRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QueryRevisionsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/queries/":{"post":{"tags":["Queries"],"summary":"Create Simple Query","operationId":"create_simple_query","parameters":[{"name":"query_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueryCreateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/queries/{query_id}":{"get":{"tags":["Queries"],"summary":"Fetch Simple Query","operationId":"fetch_simple_query","parameters":[{"name":"query_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Queries"],"summary":"Edit Simple Query","operationId":"edit_simple_query","parameters":[{"name":"query_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueryEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/queries/{query_id}/archive":{"post":{"tags":["Queries"],"summary":"Archive Simple Query","operationId":"archive_simple_query","parameters":[{"name":"query_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/queries/{query_id}/unarchive":{"post":{"tags":["Queries"],"summary":"Unarchive Simple Query","operationId":"unarchive_simple_query","parameters":[{"name":"query_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Query Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueryResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/queries/query":{"post":{"tags":["Queries"],"summary":"Query Simple Queries","operationId":"query_simple_queries","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueryQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleQueriesResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/legacy/applications/revisions/retrieve":{"post":{"tags":["Applications"],"summary":"Retrieve Application Revision","operationId":"retrieve_application_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationRevisionRetrieveRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApplicationRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/legacy/applications/":{"post":{"tags":["Applications"],"summary":"Create Application","description":"Create a new application using workflow data stored in legacy format","operationId":"create_legacy_application","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LegacyApplicationCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LegacyApplicationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/legacy/applications/{application_id}":{"get":{"tags":["Applications"],"summary":"Fetch Application","description":"Get an application using workflow data stored in legacy format","operationId":"fetch_legacy_application","parameters":[{"name":"application_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Application Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LegacyApplicationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Applications"],"summary":"Update Application","description":"Update an application using workflow data stored in legacy format","operationId":"edit_legacy_application","parameters":[{"name":"application_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Application Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LegacyApplicationEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/LegacyApplicationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/":{"post":{"tags":["Workflows"],"summary":"Create Workflow","operationId":"create_workflow","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/{workflow_id}":{"get":{"tags":["Workflows"],"summary":"Fetch Workflow","operationId":"fetch_workflow","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Workflows"],"summary":"Edit Workflow","operationId":"edit_workflow","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/{workflow_id}/archive":{"post":{"tags":["Workflows"],"summary":"Archive Workflow","operationId":"archive_workflow","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/{workflow_id}/unarchive":{"post":{"tags":["Workflows"],"summary":"Unarchive Workflow","operationId":"unarchive_workflow","parameters":[{"name":"workflow_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/query":{"post":{"tags":["Workflows"],"summary":"Query Workflows","operationId":"query_workflows","parameters":[{"name":"workflow_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"}},{"name":"workflow_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Workflow Ids"}},{"name":"workflow_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Slug"}},{"name":"workflow_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Workflow Slugs"}},{"name":"name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},{"name":"description","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},{"name":"flags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Flags"}},{"name":"tags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tags"}},{"name":"meta","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Meta"}},{"name":"include_archived","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"}},{"name":"next","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Next"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Newest"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Oldest"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"order","in":"query","required":false,"schema":{"anyOf":[{"enum":["ascending","descending"],"type":"string"},{"type":"null"}],"title":"Order"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/variants/":{"post":{"tags":["Workflows"],"summary":"Create Workflow Variant","operationId":"create_workflow_variant","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/variants/{workflow_variant_id}":{"get":{"tags":["Workflows"],"summary":"Fetch Workflow Variant","operationId":"fetch_workflow_variant","parameters":[{"name":"workflow_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Workflows"],"summary":"Edit Workflow Variant","operationId":"edit_workflow_variant","parameters":[{"name":"workflow_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Variant Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/variants/{workflow_variant_id}/archive":{"post":{"tags":["Workflows"],"summary":"Archive Workflow Variant","operationId":"archive_workflow_variant","parameters":[{"name":"workflow_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/variants/{workflow_variant_id}/unarchive":{"post":{"tags":["Workflows"],"summary":"Unarchive Workflow Variant","operationId":"unarchive_workflow_variant","parameters":[{"name":"workflow_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/variants/query":{"post":{"tags":["Workflows"],"summary":"Query Workflow Variants","operationId":"query_workflow_variants","parameters":[{"name":"workflow_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"}},{"name":"workflow_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Workflow Ids"}},{"name":"workflow_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Slug"}},{"name":"workflow_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Workflow Slugs"}},{"name":"workflow_variant_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"}},{"name":"workflow_variant_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Workflow Variant Ids"}},{"name":"workflow_variant_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Variant Slug"}},{"name":"workflow_variant_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Workflow Variant Slugs"}},{"name":"name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},{"name":"description","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},{"name":"flags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Flags"}},{"name":"tags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tags"}},{"name":"meta","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Meta"}},{"name":"include_archived","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"}},{"name":"next","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Next"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Newest"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Oldest"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"order","in":"query","required":false,"schema":{"anyOf":[{"enum":["ascending","descending"],"type":"string"},{"type":"null"}],"title":"Order"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/variants/fork":{"post":{"tags":["Workflows"],"summary":"Fork Workflow Variant","operationId":"fork_workflow_variant","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowForkRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/revisions/retrieve":{"get":{"tags":["Workflows"],"summary":"Retrieve Workflow Revision","operationId":"retrieve_workflow_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionRetrieveRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/revisions/":{"post":{"tags":["Workflows"],"summary":"Create Workflow Revision","operationId":"create_workflow_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/revisions/{workflow_revision_id}":{"get":{"tags":["Workflows"],"summary":"Fetch Workflow Revision","operationId":"fetch_workflow_revision","parameters":[{"name":"workflow_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Workflows"],"summary":"Edit Workflow Revision","operationId":"edit_workflow_revision","parameters":[{"name":"workflow_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Revision Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/revisions/{workflow_revision_id}/archive":{"post":{"tags":["Workflows"],"summary":"Archive Workflow Revision","operationId":"archive_workflow_revision_rpc","parameters":[{"name":"workflow_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/revisions/{workflow_revision_id}/unarchive":{"post":{"tags":["Workflows"],"summary":"Unarchive Workflow Revision","operationId":"unarchive_workflow_revision_rpc","parameters":[{"name":"workflow_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Workflow Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/revisions/query":{"post":{"tags":["Workflows"],"summary":"Query Workflow Revisions","operationId":"query_workflow_revisions","parameters":[{"name":"workflow_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"}},{"name":"workflow_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Workflow Ids"}},{"name":"workflow_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Slug"}},{"name":"workflow_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Workflow Slugs"}},{"name":"workflow_variant_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"}},{"name":"workflow_variant_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Workflow Variant Ids"}},{"name":"workflow_variant_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Variant Slug"}},{"name":"workflow_variant_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Workflow Variant Slugs"}},{"name":"workflow_revision_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Revision Id"}},{"name":"workflow_revision_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Workflow Revision Ids"}},{"name":"workflow_revision_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Revision Slug"}},{"name":"workflow_revision_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Workflow Revision Slugs"}},{"name":"workflow_revision_version","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Revision Version"}},{"name":"workflow_revision_versions","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Workflow Revision Versions"}},{"name":"name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},{"name":"description","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},{"name":"flags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Flags"}},{"name":"tags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tags"}},{"name":"meta","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Meta"}},{"name":"include_archived","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"}},{"name":"next","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Next"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Newest"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Oldest"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"order","in":"query","required":false,"schema":{"anyOf":[{"enum":["ascending","descending"],"type":"string"},{"type":"null"}],"title":"Order"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/revisions/commit":{"post":{"tags":["Workflows"],"summary":"Commit Workflow Revision","operationId":"commit_workflow_revision","parameters":[{"name":"workflow_variant_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionCommitRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/revisions/log":{"post":{"tags":["Workflows"],"summary":"Log Workflow Revisions","operationId":"log_workflow_revisions","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionsLogRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowRevisionsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/invoke":{"post":{"tags":["Workflows"],"summary":"Invoke Workflow","operationId":"invoke_workflow","parameters":[{"name":"workflow_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"}},{"name":"workflow_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Slug"}},{"name":"workflow_variant_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"}},{"name":"workflow_variant_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Variant Slug"}},{"name":"workflow_revision_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Revision Id"}},{"name":"workflow_revision_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Revision Slug"}},{"name":"workflow_revision_version","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workflow Revision Version"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Body_invoke_workflow"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowServiceResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/workflows/inspect":{"post":{"tags":["Workflows"],"summary":"Inspect Workflow","operationId":"inspect_workflow","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowServiceInterface-Input"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/WorkflowServiceInterface-Output"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/":{"post":{"tags":["Evaluators"],"summary":"Create Evaluator","operationId":"create_evaluator","parameters":[{"name":"evaluator_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorCreateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/{evaluator_id}":{"get":{"tags":["Evaluators"],"summary":"Fetch Evaluator","operationId":"fetch_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Evaluators"],"summary":"Edit Evaluator","operationId":"edit_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/{evaluator_id}/archive":{"post":{"tags":["Evaluators"],"summary":"Archive Evaluator","operationId":"archive_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/{evaluator_id}/unarchive":{"post":{"tags":["Evaluators"],"summary":"Unarchive Evaluator","operationId":"unarchive_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/query":{"post":{"tags":["Evaluators"],"summary":"Query Evaluators","operationId":"query_evaluators","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/variants/":{"post":{"tags":["Evaluators"],"summary":"Create Evaluator Variant","operationId":"create_evaluator_variant","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/variants/{evaluator_variant_id}":{"get":{"tags":["Evaluators"],"summary":"Fetch Evaluator Variant","operationId":"fetch_evaluator_variant","parameters":[{"name":"evaluator_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Evaluators"],"summary":"Edit Evaluator Variant","operationId":"edit_evaluator_variant","parameters":[{"name":"evaluator_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Variant Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/variants/{evaluator_variant_id}/archive":{"post":{"tags":["Evaluators"],"summary":"Archive Evaluator Variant","operationId":"archive_evaluator_variant","parameters":[{"name":"evaluator_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/variants/{evaluator_variant_id}/unarchive":{"post":{"tags":["Evaluators"],"summary":"Unarchive Evaluator Variant","operationId":"unarchive_evaluator_variant","parameters":[{"name":"evaluator_variant_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/variants/query":{"post":{"tags":["Evaluators"],"summary":"Query Evaluator Variants","operationId":"query_evaluator_variants","parameters":[{"name":"evaluator_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"}},{"name":"evaluator_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Evaluator Ids"}},{"name":"evaluator_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Evaluator Slug"}},{"name":"evaluator_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Evaluator Slugs"}},{"name":"evaluator_variant_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Variant Id"}},{"name":"evaluator_variant_ids","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string","format":"uuid"}},{"type":"null"}],"title":"Evaluator Variant Ids"}},{"name":"evaluator_variant_slug","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Evaluator Variant Slug"}},{"name":"evaluator_variant_slugs","in":"query","required":false,"schema":{"anyOf":[{"type":"array","items":{"type":"string"}},{"type":"null"}],"title":"Evaluator Variant Slugs"}},{"name":"name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},{"name":"description","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},{"name":"flags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Flags"}},{"name":"tags","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Tags"}},{"name":"meta","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Meta"}},{"name":"include_archived","in":"query","required":false,"schema":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"}},{"name":"next","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Next"}},{"name":"newest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Newest"}},{"name":"oldest","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Oldest"}},{"name":"limit","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"}},{"name":"order","in":"query","required":false,"schema":{"anyOf":[{"enum":["ascending","descending"],"type":"string"},{"type":"null"}],"title":"Order"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/variants/fork":{"post":{"tags":["Evaluators"],"summary":"Fork Evaluator Variant","operationId":"fork_evaluator_variant","parameters":[{"name":"evaluator_variant_id","in":"query","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Variant Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorForkRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorVariantResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/revisions/retrieve":{"post":{"tags":["Evaluators"],"summary":"Retrieve Evaluator Revision","operationId":"retrieve_evaluator_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionRetrieveRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/revisions/":{"post":{"tags":["Evaluators"],"summary":"Create Evaluator Revision","operationId":"create_evaluator_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/revisions/{evaluator_revision_id}":{"get":{"tags":["Evaluators"],"summary":"Fetch Evaluator Revision","operationId":"fetch_evaluator_revision","parameters":[{"name":"evaluator_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Evaluators"],"summary":"Edit Evaluator Revision","operationId":"edit_evaluator_revision","parameters":[{"name":"evaluator_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Revision Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/revisions/{evaluator_revision_id}/archive":{"post":{"tags":["Evaluators"],"summary":"Archive Evaluator Revision","operationId":"archive_evaluator_revision","parameters":[{"name":"evaluator_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/revisions/{evaluator_revision_id}/unarchive":{"post":{"tags":["Evaluators"],"summary":"Unarchive Evaluator Revision","operationId":"unarchive_evaluator_revision","parameters":[{"name":"evaluator_revision_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/revisions/query":{"post":{"tags":["Evaluators"],"summary":"Query Evaluator Revisions","operationId":"query_evaluator_revisions","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/revisions/commit":{"post":{"tags":["Evaluators"],"summary":"Commit Evaluator Revision","operationId":"commit_evaluator_revision","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionCommitRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluators/revisions/log":{"post":{"tags":["Evaluators"],"summary":"Log Evaluator Revisions","operationId":"log_evaluator_revisions","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionsLogRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorRevisionsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluators/":{"post":{"tags":["Evaluators"],"summary":"Create Simple Evaluator","operationId":"create_simple_evaluator","parameters":[{"name":"evaluator_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorCreateRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluators/{evaluator_id}":{"get":{"tags":["Evaluators"],"summary":"Fetch Simple Evaluator","operationId":"fetch_simple_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Evaluators"],"summary":"Edit Simple Evaluator","operationId":"edit_simple_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluators/{evaluator_id}/archive":{"post":{"tags":["Evaluators"],"summary":"Archive Simple Evaluator","operationId":"archive_simple_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluators/{evaluator_id}/unarchive":{"post":{"tags":["Evaluators"],"summary":"Unarchive Simple Evaluator","operationId":"unarchive_simple_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluators/query":{"post":{"tags":["Evaluators"],"summary":"Query Simple Evaluators","operationId":"query_simple_evaluators","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluators/{evaluator_id}/transfer":{"post":{"tags":["Evaluators"],"summary":"Transfer Simple Evaluator","operationId":"transfer_simple_evaluator","parameters":[{"name":"evaluator_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluator Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluatorResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/admin/evaluations/runs/refresh":{"post":{"tags":["Evaluations","Admin"],"summary":"Refresh Runs","operationId":"refresh_runs_admin_evaluations_runs_refresh_post","parameters":[{"name":"trigger_interval","in":"query","required":false,"schema":{"anyOf":[{"type":"integer","maximum":60,"minimum":1},{"type":"null"}],"default":1,"title":"Trigger Interval"}},{"name":"trigger_datetime","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Trigger Datetime"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/runs/":{"post":{"tags":["Evaluations"],"summary":"Create Runs","operationId":"create_runs_preview_evaluations_runs__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunsCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Runs","operationId":"delete_runs_preview_evaluations_runs__delete","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunIdsRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunIdsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Runs","operationId":"edit_runs_preview_evaluations_runs__patch","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunsEditRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/runs/query":{"post":{"tags":["Evaluations"],"summary":"Query Runs","operationId":"query_runs_preview_evaluations_runs_query_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/runs/close":{"post":{"tags":["Evaluations"],"summary":"Close Runs","operationId":"close_runs_preview_evaluations_runs_close_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunIdsRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/runs/open":{"post":{"tags":["Evaluations"],"summary":"Open Runs","operationId":"open_runs_preview_evaluations_runs_open_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunIdsRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/runs/{run_id}":{"get":{"tags":["Evaluations"],"summary":"Fetch Run","operationId":"fetch_run_preview_evaluations_runs__run_id__get","parameters":[{"name":"run_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Run Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Run","operationId":"edit_run_preview_evaluations_runs__run_id__patch","parameters":[{"name":"run_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Run Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Run","operationId":"delete_run_preview_evaluations_runs__run_id__delete","parameters":[{"name":"run_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Run Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunIdResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/runs/{run_id}/close":{"post":{"tags":["Evaluations"],"summary":"Close Run","operationId":"close_run_preview_evaluations_runs__run_id__close_post","parameters":[{"name":"run_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Run Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/runs/{run_id}/open":{"post":{"tags":["Evaluations"],"summary":"Open Run","operationId":"open_run_preview_evaluations_runs__run_id__open_post","parameters":[{"name":"run_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Run Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationRunResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/scenarios/":{"post":{"tags":["Evaluations"],"summary":"Create Scenarios","operationId":"create_scenarios_preview_evaluations_scenarios__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenariosCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenariosResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Scenarios","operationId":"delete_scenarios_preview_evaluations_scenarios__delete","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenarioIdsRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenarioIdsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Scenarios","operationId":"edit_scenarios_preview_evaluations_scenarios__patch","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenariosEditRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenariosResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/scenarios/query":{"post":{"tags":["Evaluations"],"summary":"Query Scenarios","operationId":"query_scenarios_preview_evaluations_scenarios_query_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenarioQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenariosResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/scenarios/{scenario_id}":{"get":{"tags":["Evaluations"],"summary":"Fetch Scenario","operationId":"fetch_scenario_preview_evaluations_scenarios__scenario_id__get","parameters":[{"name":"scenario_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Scenario Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenarioResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Scenario","operationId":"edit_scenario_preview_evaluations_scenarios__scenario_id__patch","parameters":[{"name":"scenario_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Scenario Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenarioEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenarioResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Scenario","operationId":"delete_scenario_preview_evaluations_scenarios__scenario_id__delete","parameters":[{"name":"scenario_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Scenario Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationScenarioIdResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/results/":{"post":{"tags":["Evaluations"],"summary":"Create Results","operationId":"create_results_preview_evaluations_results__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultsCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Results","operationId":"delete_results_preview_evaluations_results__delete","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultIdsRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultIdsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Results","operationId":"edit_results_preview_evaluations_results__patch","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultsEditRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/results/query":{"post":{"tags":["Evaluations"],"summary":"Query Results","operationId":"query_results_preview_evaluations_results_query_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/results/{result_id}":{"get":{"tags":["Evaluations"],"summary":"Fetch Result","operationId":"fetch_result_preview_evaluations_results__result_id__get","parameters":[{"name":"result_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Result Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Result","operationId":"edit_result_preview_evaluations_results__result_id__patch","parameters":[{"name":"result_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Result Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Result","operationId":"delete_result_preview_evaluations_results__result_id__delete","parameters":[{"name":"result_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Result Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationResultIdResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/metrics/refresh":{"post":{"tags":["Evaluations"],"summary":"Refresh Metrics","operationId":"refresh_metrics_preview_evaluations_metrics_refresh_post","parameters":[{"name":"run_id","in":"query","required":true,"schema":{"type":"string","format":"uuid","title":"Run Id"}},{"name":"scenario_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Scenario Id"}},{"name":"timestamp","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"}},{"name":"interval","in":"query","required":false,"schema":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/metrics/":{"post":{"tags":["Evaluations"],"summary":"Create Metrics","operationId":"create_metrics_preview_evaluations_metrics__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Metrics","operationId":"delete_metrics_preview_evaluations_metrics__delete","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsIdsRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsIdsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Metrics","operationId":"edit_metrics_preview_evaluations_metrics__patch","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsEditRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/metrics/query":{"post":{"tags":["Evaluations"],"summary":"Query Metrics","operationId":"query_metrics_preview_evaluations_metrics_query_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationMetricsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/queues/":{"post":{"tags":["Evaluations"],"summary":"Create Queues","operationId":"create_queues_preview_evaluations_queues__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueuesCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueuesResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Queues","operationId":"delete_queues_preview_evaluations_queues__delete","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueueIdsRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueueIdsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Queues","operationId":"edit_queues_preview_evaluations_queues__patch","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueuesEditRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueuesResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/queues/query":{"post":{"tags":["Evaluations"],"summary":"Query Queues","operationId":"query_queues_preview_evaluations_queues_query_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueueQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueuesResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/queues/{queue_id}":{"get":{"tags":["Evaluations"],"summary":"Fetch Queue","operationId":"fetch_queue_preview_evaluations_queues__queue_id__get","parameters":[{"name":"queue_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Queue Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueueResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Queue","operationId":"edit_queue_preview_evaluations_queues__queue_id__patch","parameters":[{"name":"queue_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Queue Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueueEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueueResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Queue","operationId":"delete_queue_preview_evaluations_queues__queue_id__delete","parameters":[{"name":"queue_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Queue Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueueIdResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/evaluations/queues/{queue_id}/scenarios":{"get":{"tags":["Evaluations"],"summary":"Fetch Queue Scenarios","operationId":"fetch_queue_scenarios_preview_evaluations_queues__queue_id__scenarios_get","parameters":[{"name":"queue_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Queue Id"}},{"name":"user_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"User Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluationQueueScenarioIdsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluations/":{"post":{"tags":["Evaluations"],"summary":"Create Evaluation","operationId":"create_evaluation_preview_simple_evaluations__post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationCreateRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluations/{evaluation_id}":{"get":{"tags":["Evaluations"],"summary":"Fetch Evaluation","operationId":"fetch_evaluation_preview_simple_evaluations__evaluation_id__get","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Evaluations"],"summary":"Edit Evaluation","operationId":"edit_evaluation_preview_simple_evaluations__evaluation_id__patch","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluation Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationEditRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluations"],"summary":"Delete Evaluation","operationId":"delete_evaluation_preview_simple_evaluations__evaluation_id__delete","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationIdResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluations/query":{"post":{"tags":["Evaluations"],"summary":"Query Evaluations","operationId":"query_evaluations_preview_simple_evaluations_query_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationQueryRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationsResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluations/{evaluation_id}/start":{"post":{"tags":["Evaluations"],"summary":"Start Evaluation","operationId":"start_evaluation_preview_simple_evaluations__evaluation_id__start_post","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluations/{evaluation_id}/stop":{"post":{"tags":["Evaluations"],"summary":"Stop Evaluation","operationId":"stop_evaluation_preview_simple_evaluations__evaluation_id__stop_post","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluations/{evaluation_id}/close":{"post":{"tags":["Evaluations"],"summary":"Close Evaluation","operationId":"close_evaluation_preview_simple_evaluations__evaluation_id__close_post","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/preview/simple/evaluations/{evaluation_id}/open":{"post":{"tags":["Evaluations"],"summary":"Open Evaluation","operationId":"open_evaluation_preview_simple_evaluations__evaluation_id__open_post","parameters":[{"name":"evaluation_id","in":"path","required":true,"schema":{"type":"string","format":"uuid","title":"Evaluation Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SimpleEvaluationResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/admin/accounts":{"post":{"tags":["Admin"],"summary":"Create Accounts","operationId":"create_accounts","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EntitiesRequestModel"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ScopesResponseModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/admin/account":{"post":{"tags":["Admin"],"summary":"Create Account","operationId":"create_account","requestBody":{"content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/AccountRequest"},{"type":"null"}],"title":"Account"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AccountResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/health":{"get":{"summary":"Health Check","operationId":"health_check","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/permissions/verify":{"get":{"tags":["Access Control"],"summary":"Verify Permissions","operationId":"verify_permissions","parameters":[{"name":"action","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Action"}},{"name":"scope_type","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Scope Type"}},{"name":"scope_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Scope Id"}},{"name":"resource_type","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Resource Type"}},{"name":"resource_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Resource Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/projects":{"get":{"tags":["Scopes"],"summary":"Get Projects","operationId":"get_projects","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/ProjectsResponse"},"type":"array","title":"Response Get Projects"}}}}}}},"/profile":{"get":{"summary":"User Profile","operationId":"fetch_user_profile","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/profile/reset-password":{"post":{"summary":"Reset User Password","operationId":"reset_user_password","parameters":[{"name":"user_id","in":"query","required":true,"schema":{"type":"string","title":"User Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/apps/{app_id}/variants":{"get":{"tags":["Apps"],"summary":"List App Variants","description":"Retrieve a list of app variants for a given app ID.\n\nArgs:\n app_id (str): The ID of the app to retrieve variants for.\n\nReturns:\n List[AppVariantResponse]: A list of app variants for the given app ID.","operationId":"list_app_variants","parameters":[{"name":"app_id","in":"path","required":true,"schema":{"type":"string","title":"App Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AppVariantResponse_"},"title":"Response List App Variants"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/apps/get_variant_by_env":{"get":{"tags":["Apps"],"summary":"Get Variant By Env","description":"Retrieve the app variant based on the provided app_id and environment.\n\nArgs:\n app_id (str): The ID of the app to retrieve the variant for.\n environment (str): The environment of the app variant to retrieve.\n\nRaises:\n HTTPException: If the app variant is not found (status_code=500), or if a ValueError is raised (status_code=400), or if any other exception is raised (status_code=500).\n\nReturns:\n AppVariantResponse: The retrieved app variant.","operationId":"get_variant_by_env","parameters":[{"name":"app_id","in":"query","required":true,"schema":{"type":"string","title":"App Id"}},{"name":"environment","in":"query","required":true,"schema":{"type":"string","title":"Environment"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AppVariantResponse_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/apps":{"post":{"tags":["Apps"],"summary":"Create App","description":"Create a new app for a user or organization.\n\nArgs:\n payload (CreateApp): The payload containing the app name and organization ID (optional).\n\nReturns:\n CreateAppOutput: The output containing the newly created app's ID and name.\n\nRaises:\n HTTPException: If there is an error creating the app or the user does not have permission to access the app.","operationId":"create_app","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateApp_"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateAppOutput"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Apps"],"summary":"List Apps","description":"Retrieve a list of apps filtered by app_name.\n\nArgs:\n app_name (Optional[str]): The name of the app to filter by.\n\nReturns:\n List[App]: A list of apps filtered by app_name.\n\nRaises:\n HTTPException: If there was an error retrieving the list of apps.","operationId":"list_apps","parameters":[{"name":"app_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"App Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/App"},"title":"Response List Apps"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/apps/{app_id}":{"get":{"tags":["Apps"],"summary":"Read App","description":"Retrieve an app by its ID.\n\nArgs:\n app_id (str): The ID of the app to retrieve.\n\nReturns:\n ReadAppOutput: The output containing the app's ID and name.\n\nRaises:\n HTTPException: If there is an error retrieving the app or the user does not have permission to access the app.","operationId":"create_app","parameters":[{"name":"app_id","in":"path","required":true,"schema":{"type":"string","title":"App Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReadAppOutput"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"patch":{"tags":["Apps"],"summary":"Update App","description":"Update an app for a user or organization.\n\nArgs:\n app_id (str): The ID of the app.\n payload (UpdateApp): The payload containing the app name.\n\nReturns:\n UpdateAppOutput: The output containing the newly created app's ID and name.\n\nRaises:\n HTTPException: If there is an error creating the app or the user does not have permission to access the app.","operationId":"update_app","parameters":[{"name":"app_id","in":"path","required":true,"schema":{"type":"string","title":"App Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateApp"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateAppOutput"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Apps"],"summary":"Remove App","description":"Remove app, all its variant.\n\nArguments:\n app -- App to remove","operationId":"remove_app","parameters":[{"name":"app_id","in":"path","required":true,"schema":{"type":"string","title":"App Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/apps/{app_id}/variant/from-service":{"post":{"tags":["Apps"],"summary":"Add Variant From Url Route","operationId":"add_variant_from_url","parameters":[{"name":"app_id","in":"path","required":true,"schema":{"type":"string","title":"App Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddVariantFromURLPayload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/apps/{app_id}/variant/from-template":{"post":{"tags":["Apps"],"summary":"Add Variant From Key Route","operationId":"add_variant_from_key","parameters":[{"name":"app_id","in":"path","required":true,"schema":{"type":"string","title":"App Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddVariantFromKeyPayload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/apps/{app_id}/environments":{"get":{"tags":["Apps"],"summary":"List Environments","description":"Retrieve a list of environments for a given app ID.\n\nArgs:\n app_id (str): The ID of the app to retrieve environments for.\n\nReturns:\n List[EnvironmentOutput]: A list of environment objects.","operationId":"list_environments","parameters":[{"name":"app_id","in":"path","required":true,"schema":{"type":"string","title":"App Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EnvironmentOutput_"},"title":"Response List Environments"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/apps/{app_id}/revisions/{environment_name}":{"get":{"tags":["Apps"],"summary":"List App Environment Revisions","operationId":"environment_revisions","parameters":[{"name":"app_id","in":"path","required":true,"schema":{"type":"string","title":"App Id"}},{"name":"environment_name","in":"path","required":true,"schema":{"title":"Environment Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EnvironmentOutputExtended_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/from-base":{"post":{"tags":["Variants"],"summary":"Add Variant From Base And Config","description":"Add a new variant based on an existing one.\nSame as POST /config\n\nArgs:\n payload (AddVariantFromBasePayload): Payload containing base variant ID, new variant name, and parameters.\n\nRaises:\n HTTPException: Raised if the variant could not be added or accessed.\n\nReturns:\n Union[AppVariantResponse, Any]: New variant details or exception.","operationId":"add_variant_from_base_and_config","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/AddVariantFromBasePayload"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"anyOf":[{"$ref":"#/components/schemas/AppVariantResponse_"},{}],"title":"Response Add Variant From Base And Config"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/{variant_id}":{"delete":{"tags":["Variants"],"summary":"Remove Variant","description":"Mark a variant as hidden from the UI.\n\nArguments:\n app_variant -- AppVariant to remove\n\nRaises:\n HTTPException: If there is a problem removing the app variant","operationId":"mark_variant_as_hidden","parameters":[{"name":"variant_id","in":"path","required":true,"schema":{"type":"string","title":"Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Variants"],"summary":"Get Variant","operationId":"get_variant","parameters":[{"name":"variant_id","in":"path","required":true,"schema":{"type":"string","title":"Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AppVariantResponse_"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/{variant_id}/parameters":{"put":{"tags":["Variants"],"summary":"Update Variant Parameters","description":"Updates the parameters for an app variant.\n\nArgs:\n variant_id (str): The ID of the app variant to update.\n payload (UpdateVariantParameterPayload): The payload containing the updated parameters.\n\nRaises:\n HTTPException: If there is an error while trying to update the app variant.\n\nReturns:\n JSONResponse: A JSON response containing the updated app variant parameters.","operationId":"update_variant_parameters","parameters":[{"name":"variant_id","in":"path","required":true,"schema":{"type":"string","title":"Variant Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateVariantParameterPayload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AppVariantRevision"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/{variant_id}/service":{"put":{"tags":["Variants"],"summary":"Update Variant Url","description":"Updates the URL used in an app variant.\n\nArgs:\n variant_id (str): The ID of the app variant to update.\n url (str): The URL to update.\n\nRaises:\n HTTPException: If an error occurs while trying to update the app variant.\n\nReturns:\n JSONResponse: A JSON response indicating whether the update was successful or not.","operationId":"update_variant_url","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateVariantURLPayload"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/{variant_id}/revisions":{"get":{"tags":["Variants"],"summary":"Get Variant Revisions","operationId":"get_variant_revisions","parameters":[{"name":"variant_id","in":"path","required":true,"schema":{"type":"string","title":"Variant Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/AppVariantRevision"},"title":"Response Get Variant Revisions"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/{variant_id}/revisions/{revision_number}":{"get":{"tags":["Variants"],"summary":"Get Variant Revision","operationId":"get_variant_revision","parameters":[{"name":"variant_id","in":"path","required":true,"schema":{"type":"string","title":"Variant Id"}},{"name":"revision_number","in":"path","required":true,"schema":{"type":"integer","title":"Revision Number"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/AppVariantRevision"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/{variant_id}/revisions/{revision_id}":{"delete":{"tags":["Variants"],"summary":"Remove Variant Revision","description":"Mark a variant revision as hidden from the UI.\n\nArguments:\n app_variant -- AppVariant to remove\n revision_id -- Revision ID to remove\n\nRaises:\n HTTPException: If there is a problem removing the app variant","operationId":"mark_variant_revision_as_hidden","parameters":[{"name":"variant_id","in":"path","required":true,"schema":{"type":"string","title":"Variant Id"}},{"name":"revision_id","in":"path","required":true,"schema":{"type":"string","title":"Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/configs/add":{"post":{"tags":["Variants"],"summary":"Configs Add","operationId":"configs_add","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Body_configs_add"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConfigResponseModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/configs/fetch":{"post":{"tags":["Variants"],"summary":"Configs Fetch","description":"Fetch configuration for a variant or environment.\n\nEither variant_ref OR environment_ref must be provided (if neither is provided,\na default environment_ref with slug=\"production\" will be used).\n\nFor each reference object (variant_ref, environment_ref, application_ref):\n- Provide either 'slug' or 'id' field\n- 'version' is optional and can be set to null\n- If 'id' is provided, it will be used directly to fetch the resource\n- Otherwise, 'slug' will be used along with application_ref\n\nReturns:\n ConfigResponseModel: The configuration for the requested variant or environment.\n\nRaises:\n HTTPException: If the configuration is not found.","operationId":"configs_fetch","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Body_configs_fetch"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConfigResponseModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/configs/fork":{"post":{"tags":["Variants"],"summary":"Configs Fork","operationId":"configs_fork","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Body_configs_fork"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConfigResponseModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/configs/commit":{"post":{"tags":["Variants"],"summary":"Configs Commit","operationId":"configs_commit","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConfigRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConfigResponseModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/configs/deploy":{"post":{"tags":["Variants"],"summary":"Configs Deploy","operationId":"configs_deploy","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Body_configs_deploy"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConfigResponseModel"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/configs/delete":{"post":{"tags":["Variants"],"summary":"Configs Delete","operationId":"configs_delete","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Body_configs_delete"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"integer","title":"Response Configs Delete"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/configs/list":{"post":{"tags":["Variants"],"summary":"Configs List","operationId":"configs_list","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ReferenceRequest"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/ConfigResponseModel"},"type":"array","title":"Response Configs List"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/variants/configs/history":{"post":{"tags":["Variants"],"summary":"Configs History","operationId":"configs_history","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Body_configs_history"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/ConfigResponseModel"},"type":"array","title":"Response Configs History"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/containers/templates":{"get":{"tags":["Containers"],"summary":"Container Templates","description":"Returns a list of templates available for creating new containers.","operationId":"container_templates","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}}}}},"/evaluators":{"get":{"tags":["Evaluators"],"summary":"Get Evaluators Endpoint","description":"Endpoint to fetch a list of evaluators.\n\nReturns:\n List[Evaluator]: A list of evaluator objects.","operationId":"get_evaluators_endpoint_evaluators_get","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/LegacyEvaluator"},"type":"array","title":"Response Get Evaluators Endpoint Evaluators Get"}}}}}}},"/evaluators/map":{"post":{"tags":["Evaluators"],"summary":"Evaluator Data Map","description":"Endpoint to map the experiment data tree to evaluator interface.\n\nArgs:\n request (Request): The request object.\n payload (EvaluatorMappingInputInterface): The payload containing the request data.\n\nReturns:\n EvaluatorMappingOutputInterface: the evaluator mapping output object","operationId":"evaluator_data_map_evaluators_map_post","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorMappingInputInterface"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorMappingOutputInterface"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluators/{evaluator_key}/run":{"post":{"tags":["Evaluators"],"summary":"Evaluator Run","description":"Endpoint to evaluate LLM app run\n\nArgs:\n request (Request): The request object.\n evaluator_key (str): The key of the evaluator.\n payload (EvaluatorInputInterface): The payload containing the request data.\n\nReturns:\n result: EvaluatorOutputInterface object containing the outputs.","operationId":"evaluator_run_evaluators__evaluator_key__run_post","parameters":[{"name":"evaluator_key","in":"path","required":true,"schema":{"type":"string","title":"Evaluator Key"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorInputInterface"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorOutputInterface"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluators/configs":{"get":{"tags":["Evaluators"],"summary":"Get Evaluator Configs","description":"Endpoint to fetch evaluator configurations for a specific app.\n\nArgs:\n app_id (str): The ID of the app.\n\nReturns:\n List[EvaluatorConfigDB]: A list of evaluator configuration objects.","operationId":"get_evaluator_configs_evaluators_configs_get","parameters":[{"name":"app_id","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"App Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EvaluatorConfig"},"title":"Response Get Evaluator Configs Evaluators Configs Get"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"post":{"tags":["Evaluators"],"summary":"Create New Evaluator Config","description":"Endpoint to fetch evaluator configurations for a specific app.\n\nArgs:\n app_id (str): The ID of the app.\n\nReturns:\n EvaluatorConfigDB: Evaluator configuration api model.","operationId":"create_new_evaluator_config_evaluators_configs_post","requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewEvaluatorConfig"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorConfig"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/evaluators/configs/{evaluator_config_id}":{"get":{"tags":["Evaluators"],"summary":"Get Evaluator Config","description":"Endpoint to fetch evaluator configurations for a specific app.\n\nReturns:\n List[EvaluatorConfigDB]: A list of evaluator configuration objects.","operationId":"get_evaluator_config_evaluators_configs__evaluator_config_id__get","parameters":[{"name":"evaluator_config_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluator Config Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorConfig"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"put":{"tags":["Evaluators"],"summary":"Update Evaluator Config","description":"Endpoint to update evaluator configurations for a specific app.\n\nReturns:\n List[EvaluatorConfigDB]: A list of evaluator configuration objects.","operationId":"update_evaluator_config_evaluators_configs__evaluator_config_id__put","parameters":[{"name":"evaluator_config_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluator Config Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateEvaluatorConfig"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EvaluatorConfig"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Evaluators"],"summary":"Delete Evaluator Config","description":"Endpoint to delete a specific evaluator configuration.\n\nArgs:\n evaluator_config_id (str): The unique identifier of the evaluator configuration.\n\nReturns:\n bool: True if deletion was successful, False otherwise.","operationId":"delete_evaluator_config_evaluators_configs__evaluator_config_id__delete","parameters":[{"name":"evaluator_config_id","in":"path","required":true,"schema":{"type":"string","title":"Evaluator Config Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"boolean","title":"Response Delete Evaluator Config Evaluators Configs Evaluator Config Id Delete"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/testsets/upload":{"post":{"tags":["Testsets"],"summary":"Upload File","description":"Uploads a CSV or JSON file and saves its data to Postgres.\n\nArgs:\nupload_type : Either a json or csv file.\n file (UploadFile): The CSV or JSON file to upload.\n testset_name (Optional): the name of the testset if provided.\n\nReturns:\n dict: The result of the upload process.","operationId":"upload_file","requestBody":{"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/Body_upload_file"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestSetSimpleResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/testsets/endpoint":{"post":{"tags":["Testsets"],"summary":"Import Testset","description":"Import JSON testset data from an endpoint and save it to Postgres.\n\nArgs:\n endpoint (str): An endpoint URL to import data from.\n testset_name (str): the name of the testset if provided.\n\nReturns:\n dict: The result of the import process.","operationId":"import_testset","parameters":[{"name":"authorization","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Authorization"}}],"requestBody":{"content":{"application/x-www-form-urlencoded":{"schema":{"$ref":"#/components/schemas/Body_import_testset"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestSetSimpleResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/testsets":{"get":{"tags":["Testsets"],"summary":"Get Testsets","description":"Get all testsets.\n\nReturns:\n- A list of testset objects.\n\nRaises:\n- `HTTPException` with status code 404 if no testsets are found.","operationId":"get_testsets","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/TestSetOutputResponse"},"type":"array","title":"Response Get Testsets"}}}}}},"post":{"tags":["Testsets"],"summary":"Create Testset","description":"Create a testset with given name, save the testset to Postgres.\n\nArgs:\nname (str): name of the test set.\ntestset (Dict[str, str]): test set data.\n\nReturns:\nstr: The id of the test set created.","operationId":"create_testset","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewTestset"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TestSetSimpleResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"delete":{"tags":["Testsets"],"summary":"Delete Testsets","description":"Delete specific testsets based on their unique IDs.\n\nArgs:\ntestset_ids (List[str]): The unique identifiers of the testsets to delete.\n\nReturns:\nA list of the deleted testsets' IDs.","operationId":"delete_testsets","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeleteTestsets"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"type":"string"},"type":"array","title":"Response Delete Testsets"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/testsets/{testset_id}":{"put":{"tags":["Testsets"],"summary":"Update Testset","description":"Update a testset with given id, update the testset in Postgres.\n\nArgs:\ntestset_id (str): id of the test set to be updated.\ncsvdata (NewTestset): New data to replace the old testset.\n\nReturns:\nstr: The id of the test set updated.","operationId":"update_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","title":"Testset Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/NewTestset"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}},"get":{"tags":["Testsets"],"summary":"Get Single Testset","description":"Fetch a specific testset in Postgres.\n\nArgs:\n testset_id (str): The id of the testset to fetch.\n\nReturns:\n The requested testset if found, else an HTTPException.","operationId":"get_single_testset","parameters":[{"name":"testset_id","in":"path","required":true,"schema":{"type":"string","title":"Testset Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/environments/deploy":{"post":{"tags":["Environments"],"summary":"Deploy To Environment","description":"Deploys a given variant to an environment\n\nArgs:\n environment_name: Name of the environment to deploy to.\n variant_id: variant id to deploy.\n\nRaises:\n HTTPException: If the deployment fails.","operationId":"deploy_to_environment","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DeployToEnvironmentPayload"}}},"required":true},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/bases":{"get":{"tags":["Bases"],"summary":"List Bases","description":"Retrieve a list of bases filtered by app_id and base_name.\n\nArgs:\n request (Request): The incoming request.\n app_id (str): The ID of the app to filter by.\n base_name (Optional[str], optional): The name of the base to filter by. Defaults to None.\n\nReturns:\n List[BaseOutput]: A list of BaseOutput objects representing the filtered bases.\n\nRaises:\n HTTPException: If there was an error retrieving the bases.","operationId":"list_bases","parameters":[{"name":"app_id","in":"query","required":true,"schema":{"type":"string","title":"App Id"}},{"name":"base_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Base Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/BaseOutput"},"title":"Response List Bases"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/configs":{"get":{"tags":["Configs"],"summary":"Get Config","operationId":"get_config","parameters":[{"name":"base_id","in":"query","required":true,"schema":{"type":"string","title":"Base Id"}},{"name":"config_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Config Name"}},{"name":"environment_name","in":"query","required":false,"schema":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Environment Name"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/GetConfigResponse"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/configs/deployment/{deployment_revision_id}":{"get":{"tags":["Configs"],"summary":"Get Config Deployment Revision","operationId":"get_config_deployment_revision","parameters":[{"name":"deployment_revision_id","in":"path","required":true,"schema":{"type":"string","title":"Deployment Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/configs/deployment/{deployment_revision_id}/revert":{"post":{"tags":["Configs"],"summary":"Revert Deployment Revision","operationId":"revert_deployment_revision","parameters":[{"name":"deployment_revision_id","in":"path","required":true,"schema":{"type":"string","title":"Deployment Revision Id"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/keys":{"get":{"tags":["Api Keys"],"summary":"List Api Keys","description":"List all API keys associated with the authenticated user.\n\nArgs:\n request (Request): The incoming request object.\n\nReturns:\n List[ListAPIKeysResponse]: A list of API Keys associated with the user.","operationId":"list_api_keys","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/ListAPIKeysResponse"},"type":"array","title":"Response List Api Keys"}}}}}},"post":{"tags":["Api Keys"],"summary":"Create Api Key","description":"Creates an API key for a user.\n\nArgs:\n request (Request): The request object containing the user ID in the request state.\n\nReturns:\n str: The created API key.","operationId":"create_api_key","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"string","title":"Response Create Api Key"}}}}}}},"/keys/{key_prefix}":{"delete":{"tags":["Api Keys"],"summary":"Delete Api Key","description":"Delete an API key with the given key prefix for the authenticated user.\n\nArgs:\n key_prefix (str): The prefix of the API key to be deleted.\n request (Request): The incoming request object.\n\nReturns:\n dict: A dictionary containing a success message upon successful deletion.\n\nRaises:\n HTTPException: If the API key is not found or does not belong to the user.","operationId":"delete_api_key","parameters":[{"name":"key_prefix","in":"path","required":true,"schema":{"type":"string","title":"Key Prefix"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"type":"object","additionalProperties":true,"title":"Response Delete Api Key"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/organizations":{"get":{"tags":["Organization"],"summary":"List Organizations","description":"Returns a list of organizations associated with the user's session.\n\nReturns:\n list[Organization]: A list of organizations associated with the user's session.\n\nRaises:\n HTTPException: If there is an error retrieving the organizations from the database.","operationId":"list_organizations","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/Organization"},"type":"array","title":"Response List Organizations"}}}}}}},"/organizations/{organization_id}/workspaces/{workspace_id}/invite":{"post":{"tags":["Organization"],"summary":"Invite User To Organization","description":"Assigns a role to a user in an organization.\n\nArgs:\n organization_id (str): The ID of the organization.\n payload (InviteRequest): The payload containing the organization id, user email, and role to assign.\n workspace_id (str): The ID of the workspace.\n\nReturns:\n bool: True if the role was successfully assigned, False otherwise.\n\nRaises:\n HTTPException: If the user does not have permission to perform this action.\n HTTPException: If there is an error assigning the role to the user.","operationId":"invite_user_to_workspace","parameters":[{"name":"organization_id","in":"path","required":true,"schema":{"type":"string","title":"Organization Id"}},{"name":"workspace_id","in":"path","required":true,"schema":{"type":"string","title":"Workspace Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/InviteRequest"},"title":"Payload"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/organizations/{organization_id}/workspaces/{workspace_id}/invite/resend":{"post":{"tags":["Organization"],"summary":"Resend User Invitation To Organization","description":"Resend an invitation to a user to an Organization.\n\nRaises:\n HTTPException: _description_; status_code: 500\n HTTPException: Invitation not found or has expired; status_code: 400\n HTTPException: You already belong to this organization; status_code: 400\n\nReturns:\n JSONResponse: Resent invitation to user; status_code: 200","operationId":"resend_invitation","parameters":[{"name":"organization_id","in":"path","required":true,"schema":{"type":"string","title":"Organization Id"}},{"name":"workspace_id","in":"path","required":true,"schema":{"type":"string","title":"Workspace Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ResendInviteRequest"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/organizations/{organization_id}/workspaces/{workspace_id}/invite/accept":{"post":{"tags":["Organization"],"summary":"Accept Organization Invitation","description":"Accept an invitation to an organization.\n\nRaises:\n HTTPException: _description_; status_code: 500\n HTTPException: Invitation not found or has expired; status_code: 400\n HTTPException: You already belong to this organization; status_code: 400\n\nReturns:\n JSONResponse: Accepted invitation to workspace; status_code: 200","operationId":"accept_invitation","parameters":[{"name":"organization_id","in":"path","required":true,"schema":{"type":"string","title":"Organization Id"}},{"name":"workspace_id","in":"path","required":true,"schema":{"type":"string","title":"Workspace Id"}},{"name":"project_id","in":"query","required":true,"schema":{"type":"string","title":"Project Id"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/InviteToken"}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}},"/workspaces":{"get":{"tags":["Workspace"],"summary":"Get Workspace","description":"Get workspace details.\n\nReturns details about the workspace associated with the user's session.\n\nReturns:\n Workspace: The details of the workspace.\n\nRaises:\n HTTPException: If the user does not have permission to perform this action.","operationId":"get_workspace","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"$ref":"#/components/schemas/Workspace"},"type":"array","title":"Response Get Workspace"}}}}}}},"/workspaces/roles":{"get":{"tags":["Workspace"],"summary":"Get All Workspace Roles","description":"Get all workspace roles.\n\nReturns a list of all available workspace roles.\n\nReturns:\n List[WorkspaceRoleResponse]: A list of WorkspaceRole objects representing the available workspace roles.\n\nRaises:\n HTTPException: If an error occurs while retrieving the workspace roles.","operationId":"get_all_workspace_roles","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"items":{"additionalProperties":{"type":"string"},"type":"object"},"type":"array","title":"Response Get All Workspace Roles"}}}}}}},"/workspaces/{workspace_id}/users":{"delete":{"tags":["Workspace"],"summary":"Remove User From Workspace","description":"Remove a user from a workspace.\n\nArgs:\n email (str): The email address of the user to be removed\n workspace_id (str): The ID of the workspace.","operationId":"remove_user_from_workspace","parameters":[{"name":"workspace_id","in":"path","required":true,"schema":{"type":"string","title":"Workspace Id"}},{"name":"email","in":"query","required":true,"schema":{"type":"string","title":"Email"}}],"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}},"components":{"schemas":{"AccountRequest":{"properties":{"user":{"anyOf":[{"$ref":"#/components/schemas/LegacyUserRequest"},{"type":"null"}]},"scope":{"anyOf":[{"$ref":"#/components/schemas/LegacyScopeRequest"},{"type":"null"}]},"subscription":{"anyOf":[{"$ref":"#/components/schemas/LegacySubscriptionRequest"},{"type":"null"}]}},"type":"object","title":"AccountRequest"},"AccountResponse":{"properties":{"user":{"anyOf":[{"$ref":"#/components/schemas/LegacyUserResponse"},{"type":"null"}]},"scopes":{"anyOf":[{"items":{"$ref":"#/components/schemas/LegacyScopesResponse"},"type":"array"},{"type":"null"}],"title":"Scopes"}},"type":"object","title":"AccountResponse"},"AddVariantFromBasePayload":{"properties":{"base_id":{"type":"string","title":"Base Id"},"new_variant_name":{"type":"string","title":"New Variant Name"},"new_config_name":{"type":"string","title":"New Config Name"},"parameters":{"additionalProperties":true,"type":"object","title":"Parameters"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"}},"type":"object","required":["base_id","new_variant_name","new_config_name","parameters"],"title":"AddVariantFromBasePayload"},"AddVariantFromKeyPayload":{"properties":{"variant_name":{"type":"string","title":"Variant Name"},"key":{"type":"string","title":"Key"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"},"base_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Base Name"},"config_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Config Name"}},"type":"object","required":["variant_name","key"],"title":"AddVariantFromKeyPayload"},"AddVariantFromURLPayload":{"properties":{"variant_name":{"type":"string","title":"Variant Name"},"url":{"type":"string","title":"Url"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"},"base_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Base Name"},"config_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Config Name"}},"type":"object","required":["variant_name","url"],"title":"AddVariantFromURLPayload"},"AgentaNodeDTO-Input":{"properties":{"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"},"lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"root":{"$ref":"#/components/schemas/RootDTO"},"tree":{"$ref":"#/components/schemas/TreeDTO"},"node":{"$ref":"#/components/schemas/NodeDTO"},"parent":{"anyOf":[{"$ref":"#/components/schemas/ParentDTO"},{"type":"null"}]},"time":{"$ref":"#/components/schemas/TimeDTO"},"status":{"$ref":"#/components/schemas/StatusDTO"},"exception":{"anyOf":[{"$ref":"#/components/schemas/ExceptionDTO"},{"type":"null"}]},"data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Data"},"metrics":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Metrics"},"meta":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Meta"},"refs":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Refs"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/LinkDTO"},"type":"array"},{"type":"null"}],"title":"Links"},"otel":{"anyOf":[{"$ref":"#/components/schemas/OTelExtraDTO-Input"},{"type":"null"}]},"nodes":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/SpanDTO-Input"},{"items":{"$ref":"#/components/schemas/SpanDTO-Input"},"type":"array"}]},"type":"object"},{"type":"null"}],"title":"Nodes"}},"type":"object","required":["trace_id","span_id","root","tree","node","time","status"],"title":"AgentaNodeDTO"},"AgentaNodeDTO-Output":{"properties":{"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"},"lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"root":{"$ref":"#/components/schemas/RootDTO"},"tree":{"$ref":"#/components/schemas/TreeDTO"},"node":{"$ref":"#/components/schemas/NodeDTO"},"parent":{"anyOf":[{"$ref":"#/components/schemas/ParentDTO"},{"type":"null"}]},"time":{"$ref":"#/components/schemas/TimeDTO"},"status":{"$ref":"#/components/schemas/StatusDTO"},"exception":{"anyOf":[{"$ref":"#/components/schemas/ExceptionDTO"},{"type":"null"}]},"data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Data"},"metrics":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Metrics"},"meta":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Meta"},"refs":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Refs"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/LinkDTO"},"type":"array"},{"type":"null"}],"title":"Links"},"otel":{"anyOf":[{"$ref":"#/components/schemas/OTelExtraDTO-Output"},{"type":"null"}]},"nodes":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/SpanDTO-Output"},{"items":{"$ref":"#/components/schemas/SpanDTO-Output"},"type":"array"}]},"type":"object"},{"type":"null"}],"title":"Nodes"}},"type":"object","required":["trace_id","span_id","root","tree","node","time","status"],"title":"AgentaNodeDTO"},"AgentaNodesResponse":{"properties":{"nodes":{"anyOf":[{"items":{"$ref":"#/components/schemas/AgentaNodeDTO-Output"},"type":"array"},{"type":"null"}],"title":"Nodes","default":[]},"count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Count"}},"type":"object","title":"AgentaNodesResponse"},"AgentaRootDTO":{"properties":{"root":{"$ref":"#/components/schemas/RootDTO"},"trees":{"items":{"$ref":"#/components/schemas/AgentaTreeDTO"},"type":"array","title":"Trees"}},"type":"object","required":["root","trees"],"title":"AgentaRootDTO"},"AgentaRootsResponse":{"properties":{"roots":{"anyOf":[{"items":{"$ref":"#/components/schemas/AgentaRootDTO"},"type":"array"},{"type":"null"}],"title":"Roots","default":[]},"count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Count"}},"type":"object","title":"AgentaRootsResponse"},"AgentaTreeDTO":{"properties":{"tree":{"$ref":"#/components/schemas/TreeDTO"},"nodes":{"items":{"$ref":"#/components/schemas/AgentaNodeDTO-Output"},"type":"array","title":"Nodes"}},"type":"object","required":["tree","nodes"],"title":"AgentaTreeDTO"},"AgentaTreesResponse":{"properties":{"trees":{"anyOf":[{"items":{"$ref":"#/components/schemas/AgentaTreeDTO"},"type":"array"},{"type":"null"}],"title":"Trees","default":[]},"count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Count"}},"type":"object","title":"AgentaTreesResponse"},"AgentaVersionedTreeDTO-Input":{"properties":{"version":{"type":"string","title":"Version"},"nodes":{"items":{"$ref":"#/components/schemas/AgentaNodeDTO-Input"},"type":"array","title":"Nodes"}},"type":"object","required":["version","nodes"],"title":"AgentaVersionedTreeDTO"},"AgentaVersionedTreeDTO-Output":{"properties":{"version":{"type":"string","title":"Version"},"nodes":{"items":{"$ref":"#/components/schemas/AgentaNodeDTO-Output"},"type":"array","title":"Nodes"}},"type":"object","required":["version","nodes"],"title":"AgentaVersionedTreeDTO"},"AggregatedResult":{"properties":{"evaluator_config":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorConfig"},{"additionalProperties":true,"type":"object"}],"title":"Evaluator Config"},"result":{"$ref":"#/components/schemas/Result"}},"type":"object","required":["evaluator_config","result"],"title":"AggregatedResult"},"Analytics":{"properties":{"count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Count","default":0},"duration":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Duration","default":0.0},"costs":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Costs","default":0.0},"tokens":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Tokens","default":0.0}},"type":"object","title":"Analytics"},"AnalyticsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"buckets":{"items":{"$ref":"#/components/schemas/MetricsBucket"},"type":"array","title":"Buckets","default":[]},"query":{"$ref":"#/components/schemas/TracingQuery","default":{}},"specs":{"items":{"$ref":"#/components/schemas/MetricSpec"},"type":"array","title":"Specs","default":[]}},"type":"object","title":"AnalyticsResponse"},"Annotation":{"properties":{"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"span_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"},"trace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trace Id"},"origin":{"$ref":"#/components/schemas/SimpleTraceOrigin","default":"custom"},"kind":{"$ref":"#/components/schemas/SimpleTraceKind","default":"adhoc"},"channel":{"$ref":"#/components/schemas/SimpleTraceChannel","default":"api"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object","title":"Data"},"references":{"$ref":"#/components/schemas/SimpleTraceReferences"},"links":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/Link"},"type":"object"},{"items":{"$ref":"#/components/schemas/Link"},"type":"array"}],"title":"Links"}},"type":"object","required":["data","references","links"],"title":"Annotation"},"AnnotationCreate":{"properties":{"origin":{"$ref":"#/components/schemas/SimpleTraceOrigin","default":"custom"},"kind":{"$ref":"#/components/schemas/SimpleTraceKind","default":"adhoc"},"channel":{"$ref":"#/components/schemas/SimpleTraceChannel","default":"api"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object","title":"Data"},"references":{"$ref":"#/components/schemas/SimpleTraceReferences"},"links":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/Link"},"type":"object"},{"items":{"$ref":"#/components/schemas/Link"},"type":"array"}],"title":"Links"}},"type":"object","required":["data","references","links"],"title":"AnnotationCreate"},"AnnotationCreateRequest":{"properties":{"annotation":{"$ref":"#/components/schemas/AnnotationCreate"}},"type":"object","required":["annotation"],"title":"AnnotationCreateRequest"},"AnnotationEdit":{"properties":{"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object","title":"Data"}},"type":"object","required":["data"],"title":"AnnotationEdit"},"AnnotationEditRequest":{"properties":{"annotation":{"$ref":"#/components/schemas/AnnotationEdit"}},"type":"object","required":["annotation"],"title":"AnnotationEditRequest"},"AnnotationLinkResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"annotation_link":{"anyOf":[{"$ref":"#/components/schemas/Link"},{"type":"null"}]}},"type":"object","title":"AnnotationLinkResponse"},"AnnotationQuery":{"properties":{"origin":{"anyOf":[{"$ref":"#/components/schemas/SimpleTraceOrigin"},{"type":"null"}]},"kind":{"anyOf":[{"$ref":"#/components/schemas/SimpleTraceKind"},{"type":"null"}]},"channel":{"anyOf":[{"$ref":"#/components/schemas/SimpleTraceChannel"},{"type":"null"}]},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"references":{"anyOf":[{"$ref":"#/components/schemas/SimpleTraceReferences"},{"type":"null"}]},"links":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/Link"},"type":"object"},{"items":{"$ref":"#/components/schemas/Link"},"type":"array"},{"type":"null"}],"title":"Links"}},"type":"object","title":"AnnotationQuery"},"AnnotationQueryRequest":{"properties":{"annotation":{"anyOf":[{"$ref":"#/components/schemas/AnnotationQuery"},{"type":"null"}]},"annotation_links":{"anyOf":[{"items":{"$ref":"#/components/schemas/Link"},"type":"array"},{"type":"null"}],"title":"Annotation Links"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"AnnotationQueryRequest"},"AnnotationResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"annotation":{"anyOf":[{"$ref":"#/components/schemas/Annotation"},{"type":"null"}]}},"type":"object","title":"AnnotationResponse"},"AnnotationsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"annotations":{"items":{"$ref":"#/components/schemas/Annotation"},"type":"array","title":"Annotations","default":[]}},"type":"object","title":"AnnotationsResponse"},"App":{"properties":{"app_id":{"type":"string","title":"App Id"},"app_name":{"type":"string","title":"App Name"},"app_type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"App Type"},"updated_at":{"type":"string","title":"Updated At"}},"type":"object","required":["app_id","app_name","updated_at"],"title":"App"},"AppVariantResponse_":{"properties":{"app_id":{"type":"string","title":"App Id"},"app_name":{"type":"string","title":"App Name"},"variant_id":{"type":"string","title":"Variant Id"},"variant_name":{"type":"string","title":"Variant Name"},"project_id":{"type":"string","title":"Project Id"},"base_name":{"type":"string","title":"Base Name"},"base_id":{"type":"string","title":"Base Id"},"config_name":{"type":"string","title":"Config Name"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"revision":{"type":"integer","title":"Revision"},"created_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Updated At"},"modified_by_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Modified By Id"},"organization_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization Id"},"workspace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workspace Id"}},"type":"object","required":["app_id","app_name","variant_id","variant_name","project_id","base_name","base_id","config_name","revision"],"title":"AppVariantResponse_"},"AppVariantRevision":{"properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Id"},"revision":{"type":"integer","title":"Revision"},"modified_by":{"type":"string","title":"Modified By"},"config":{"$ref":"#/components/schemas/ConfigDB"},"created_at":{"type":"string","title":"Created At"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"}},"type":"object","required":["revision","modified_by","config","created_at"],"title":"AppVariantRevision"},"ApplicationFlags":{"properties":{"is_custom":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Custom"},"is_evaluator":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Evaluator"},"is_human":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Human"}},"type":"object","title":"ApplicationFlags"},"ApplicationRevision":{"properties":{"application_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Application Variant Id"},"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"application_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Application Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"author":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Author"},"date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Date"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"flags":{"anyOf":[{"$ref":"#/components/schemas/ApplicationFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/ApplicationRevisionData"},{"type":"null"}]}},"type":"object","title":"ApplicationRevision"},"ApplicationRevisionData":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"ApplicationRevisionData"},"ApplicationRevisionResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"application_revision":{"anyOf":[{"$ref":"#/components/schemas/ApplicationRevision"},{"type":"null"}]}},"type":"object","title":"ApplicationRevisionResponse"},"ApplicationRevisionRetrieveRequest":{"properties":{"application_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"application_variant_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"application_revision_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]}},"type":"object","title":"ApplicationRevisionRetrieveRequest"},"BaseOutput":{"properties":{"base_id":{"type":"string","title":"Base Id"},"base_name":{"type":"string","title":"Base Name"}},"type":"object","required":["base_id","base_name"],"title":"BaseOutput"},"Body_configs_add":{"properties":{"variant_ref":{"$ref":"#/components/schemas/ReferenceRequestModel"},"application_ref":{"$ref":"#/components/schemas/ReferenceRequestModel"}},"type":"object","required":["variant_ref","application_ref"],"title":"Body_configs_add"},"Body_configs_delete":{"properties":{"variant_ref":{"$ref":"#/components/schemas/ReferenceRequestModel"},"application_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]}},"type":"object","required":["variant_ref"],"title":"Body_configs_delete"},"Body_configs_deploy":{"properties":{"variant_ref":{"$ref":"#/components/schemas/ReferenceRequestModel"},"environment_ref":{"$ref":"#/components/schemas/ReferenceRequestModel"},"application_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]}},"type":"object","required":["variant_ref","environment_ref"],"title":"Body_configs_deploy"},"Body_configs_fetch":{"properties":{"variant_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]},"environment_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]},"application_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]}},"type":"object","title":"Body_configs_fetch"},"Body_configs_fork":{"properties":{"variant_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]},"environment_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]},"application_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]}},"type":"object","title":"Body_configs_fork"},"Body_configs_history":{"properties":{"variant_ref":{"$ref":"#/components/schemas/ReferenceRequestModel"},"application_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceRequestModel"},{"type":"null"}]}},"type":"object","required":["variant_ref"],"title":"Body_configs_history"},"Body_create_simple_testset_from_file":{"properties":{"file":{"type":"string","format":"binary","title":"File"},"file_type":{"type":"string","enum":["csv","json"],"title":"File Type","default":"csv"},"testset_slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Slug"},"testset_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Name"},"testset_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Description"},"testset_tags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Tags"},"testset_meta":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Meta"}},"type":"object","required":["file"],"title":"Body_create_simple_testset_from_file"},"Body_edit_simple_testset_from_file":{"properties":{"file":{"type":"string","format":"binary","title":"File"},"file_type":{"type":"string","enum":["csv","json"],"title":"File Type","default":"csv"},"testset_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Name"},"testset_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Description"},"testset_tags":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Tags"},"testset_meta":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Meta"}},"type":"object","required":["file"],"title":"Body_edit_simple_testset_from_file"},"Body_import_testset":{"properties":{"endpoint":{"type":"string","title":"Endpoint"},"testset_name":{"type":"string","title":"Testset Name"}},"type":"object","title":"Body_import_testset"},"Body_invoke_workflow":{"properties":{"workflow_service_request":{"$ref":"#/components/schemas/WorkflowServiceRequest"},"workflow_revision_data":{"anyOf":[{"$ref":"#/components/schemas/WorkflowRevisionData-Input"},{"type":"null"}]}},"type":"object","required":["workflow_service_request"],"title":"Body_invoke_workflow"},"Body_upload_file":{"properties":{"upload_type":{"type":"string","title":"Upload Type"},"file":{"type":"string","format":"binary","title":"File"},"testset_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Name"}},"type":"object","required":["file"],"title":"Body_upload_file"},"Bucket":{"properties":{"timestamp":{"type":"string","format":"date-time","title":"Timestamp"},"interval":{"type":"integer","title":"Interval"},"total":{"$ref":"#/components/schemas/Analytics"},"errors":{"$ref":"#/components/schemas/Analytics"}},"type":"object","required":["timestamp","interval","total","errors"],"title":"Bucket"},"BucketDTO":{"properties":{"timestamp":{"type":"string","format":"date-time","title":"Timestamp"},"interval":{"type":"integer","title":"Interval"},"total":{"$ref":"#/components/schemas/MetricsDTO"},"error":{"$ref":"#/components/schemas/MetricsDTO"}},"type":"object","required":["timestamp","interval","total","error"],"title":"BucketDTO"},"CollectStatusResponse":{"properties":{"status":{"type":"string","title":"Status"}},"type":"object","required":["status"],"title":"CollectStatusResponse"},"ComparisonOperator":{"type":"string","enum":["is","is_not"],"title":"ComparisonOperator"},"Condition":{"properties":{"field":{"type":"string","title":"Field"},"key":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Key"},"value":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"boolean"},{"items":{},"type":"array"},{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Value"},"operator":{"anyOf":[{"$ref":"#/components/schemas/ComparisonOperator"},{"$ref":"#/components/schemas/NumericOperator"},{"$ref":"#/components/schemas/StringOperator"},{"$ref":"#/components/schemas/ListOperator"},{"$ref":"#/components/schemas/DictOperator"},{"$ref":"#/components/schemas/ExistenceOperator"},{"type":"null"}],"title":"Operator","default":"is"},"options":{"anyOf":[{"$ref":"#/components/schemas/TextOptions"},{"$ref":"#/components/schemas/ListOptions"},{"type":"null"}],"title":"Options"}},"type":"object","required":["field"],"title":"Condition"},"ConfigDB":{"properties":{"config_name":{"type":"string","title":"Config Name"},"parameters":{"additionalProperties":true,"type":"object","title":"Parameters"}},"type":"object","required":["config_name"],"title":"ConfigDB"},"ConfigDTO":{"properties":{"params":{"additionalProperties":true,"type":"object","title":"Params"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"application_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceDTO"},{"type":"null"}]},"service_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceDTO"},{"type":"null"}]},"variant_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceDTO"},{"type":"null"}]},"environment_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceDTO"},{"type":"null"}]},"application_lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"service_lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"variant_lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"environment_lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]}},"type":"object","required":["params"],"title":"ConfigDTO"},"ConfigRequest":{"properties":{"config":{"$ref":"#/components/schemas/ConfigDTO"}},"type":"object","required":["config"],"title":"ConfigRequest"},"ConfigResponseModel":{"properties":{"params":{"additionalProperties":true,"type":"object","title":"Params"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"application_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceDTO"},{"type":"null"}]},"service_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceDTO"},{"type":"null"}]},"variant_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceDTO"},{"type":"null"}]},"environment_ref":{"anyOf":[{"$ref":"#/components/schemas/ReferenceDTO"},{"type":"null"}]},"application_lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"service_lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"variant_lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"environment_lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]}},"type":"object","required":["params"],"title":"ConfigResponseModel"},"CorrectAnswer":{"properties":{"key":{"type":"string","title":"Key"},"value":{"type":"string","title":"Value"}},"type":"object","required":["key","value"],"title":"CorrectAnswer"},"CreateAppOutput":{"properties":{"app_id":{"type":"string","title":"App Id"},"app_name":{"type":"string","title":"App Name"}},"type":"object","required":["app_id","app_name"],"title":"CreateAppOutput"},"CreateApp_":{"properties":{"app_name":{"type":"string","title":"App Name"},"template_key":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Template Key"},"project_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Project Id"},"workspace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workspace Id"},"organization_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization Id"}},"type":"object","required":["app_name"],"title":"CreateApp_"},"CreateSecretDTO":{"properties":{"header":{"$ref":"#/components/schemas/Header"},"secret":{"$ref":"#/components/schemas/SecretDTO"}},"type":"object","required":["header","secret"],"title":"CreateSecretDTO"},"CreateWorkspace":{"properties":{"name":{"type":"string","title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Type"}},"type":"object","required":["name"],"title":"CreateWorkspace"},"CustomModelSettingsDTO":{"properties":{"slug":{"type":"string","title":"Slug"},"extras":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Extras"}},"type":"object","required":["slug"],"title":"CustomModelSettingsDTO"},"CustomProviderDTO":{"properties":{"kind":{"$ref":"#/components/schemas/CustomProviderKind"},"provider":{"$ref":"#/components/schemas/CustomProviderSettingsDTO"},"models":{"items":{"$ref":"#/components/schemas/CustomModelSettingsDTO"},"type":"array","title":"Models"},"provider_slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Provider Slug"},"model_keys":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Model Keys"}},"type":"object","required":["kind","provider","models"],"title":"CustomProviderDTO"},"CustomProviderKind":{"type":"string","enum":["custom","azure","bedrock","sagemaker","vertex_ai","openai","cohere","anyscale","deepinfra","alephalpha","groq","mistralai","anthropic","perplexityai","together_ai","openrouter","gemini"],"title":"CustomProviderKind"},"CustomProviderSettingsDTO":{"properties":{"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"key":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Key"},"extras":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Extras"}},"type":"object","title":"CustomProviderSettingsDTO"},"DeleteEvaluation":{"properties":{"evaluations_ids":{"items":{"type":"string"},"type":"array","title":"Evaluations Ids"}},"type":"object","required":["evaluations_ids"],"title":"DeleteEvaluation"},"DeleteTestsets":{"properties":{"testset_ids":{"items":{"type":"string"},"type":"array","title":"Testset Ids"}},"type":"object","required":["testset_ids"],"title":"DeleteTestsets"},"DeployToEnvironmentPayload":{"properties":{"environment_name":{"type":"string","title":"Environment Name"},"variant_id":{"type":"string","title":"Variant Id"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"}},"type":"object","required":["environment_name","variant_id"],"title":"DeployToEnvironmentPayload"},"DictOperator":{"type":"string","enum":["has","has_not"],"title":"DictOperator"},"EntitiesRequestModel":{"properties":{"users":{"additionalProperties":{"$ref":"#/components/schemas/UserRequest"},"type":"object","title":"Users"},"organizations":{"additionalProperties":{"$ref":"#/components/schemas/OrganizationRequest"},"type":"object","title":"Organizations"},"workspaces":{"additionalProperties":{"$ref":"#/components/schemas/WorkspaceRequest"},"type":"object","title":"Workspaces"},"projects":{"additionalProperties":{"$ref":"#/components/schemas/ProjectRequest"},"type":"object","title":"Projects"},"organization_memberships":{"additionalProperties":{"$ref":"#/components/schemas/OrganizationMembershipRequest"},"type":"object","title":"Organization Memberships"},"workspace_memberships":{"additionalProperties":{"$ref":"#/components/schemas/WorkspaceMembershipRequest"},"type":"object","title":"Workspace Memberships"},"project_memberships":{"additionalProperties":{"$ref":"#/components/schemas/ProjectMembershipRequest"},"type":"object","title":"Project Memberships"}},"type":"object","required":["users","organizations","workspaces","projects","organization_memberships","workspace_memberships","project_memberships"],"title":"EntitiesRequestModel"},"EnvironmentOutputExtended_":{"properties":{"name":{"type":"string","title":"Name"},"app_id":{"type":"string","title":"App Id"},"project_id":{"type":"string","title":"Project Id"},"deployed_app_variant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployed App Variant Id"},"deployed_variant_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployed Variant Name"},"deployed_app_variant_revision_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployed App Variant Revision Id"},"revision":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Revision"},"revisions":{"items":{"$ref":"#/components/schemas/EnvironmentRevision"},"type":"array","title":"Revisions"},"organization_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization Id"},"workspace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workspace Id"}},"type":"object","required":["name","app_id","project_id","revisions"],"title":"EnvironmentOutputExtended_"},"EnvironmentOutput_":{"properties":{"name":{"type":"string","title":"Name"},"app_id":{"type":"string","title":"App Id"},"project_id":{"type":"string","title":"Project Id"},"deployed_app_variant_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployed App Variant Id"},"deployed_variant_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployed Variant Name"},"deployed_app_variant_revision_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployed App Variant Revision Id"},"revision":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Revision"},"organization_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization Id"},"workspace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workspace Id"}},"type":"object","required":["name","app_id","project_id"],"title":"EnvironmentOutput_"},"EnvironmentRevision":{"properties":{"id":{"type":"string","title":"Id"},"revision":{"type":"integer","title":"Revision"},"modified_by":{"type":"string","title":"Modified By"},"deployed_app_variant_revision":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployed App Variant Revision"},"deployment":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployment"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"},"created_at":{"type":"string","title":"Created At"},"deployed_variant_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Deployed Variant Name"}},"type":"object","required":["id","revision","modified_by","created_at"],"title":"EnvironmentRevision"},"Error":{"properties":{"message":{"type":"string","title":"Message"},"stacktrace":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Stacktrace"}},"type":"object","required":["message"],"title":"Error"},"Evaluation":{"properties":{"id":{"type":"string","title":"Id"},"app_id":{"type":"string","title":"App Id"},"project_id":{"type":"string","title":"Project Id"},"variant_ids":{"items":{"type":"string"},"type":"array","title":"Variant Ids"},"variant_names":{"items":{"type":"string"},"type":"array","title":"Variant Names"},"variant_revision_ids":{"items":{"type":"string"},"type":"array","title":"Variant Revision Ids"},"revisions":{"items":{"type":"string"},"type":"array","title":"Revisions"},"testset_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Id"},"testset_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Testset Name"},"status":{"$ref":"#/components/schemas/Result"},"aggregated_results":{"items":{"$ref":"#/components/schemas/AggregatedResult"},"type":"array","title":"Aggregated Results"},"average_cost":{"anyOf":[{"$ref":"#/components/schemas/Result"},{"type":"null"}]},"total_cost":{"anyOf":[{"$ref":"#/components/schemas/Result"},{"type":"null"}]},"average_latency":{"anyOf":[{"$ref":"#/components/schemas/Result"},{"type":"null"}]},"created_at":{"type":"string","format":"date-time","title":"Created At"},"updated_at":{"type":"string","format":"date-time","title":"Updated At"}},"type":"object","required":["id","app_id","project_id","variant_ids","variant_names","variant_revision_ids","revisions","status","aggregated_results","created_at","updated_at"],"title":"Evaluation"},"EvaluationMetrics":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}],"default":"pending"},"data":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Data"},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"scenario_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Scenario Id"},"run_id":{"type":"string","format":"uuid","title":"Run Id"}},"type":"object","required":["run_id"],"title":"EvaluationMetrics"},"EvaluationMetricsCreate":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"version":{"type":"string","title":"Version","default":"2025.07.14"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"data":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Data"},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"scenario_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Scenario Id"},"run_id":{"type":"string","format":"uuid","title":"Run Id"}},"type":"object","required":["run_id"],"title":"EvaluationMetricsCreate"},"EvaluationMetricsCreateRequest":{"properties":{"metrics":{"items":{"$ref":"#/components/schemas/EvaluationMetricsCreate"},"type":"array","title":"Metrics"}},"type":"object","required":["metrics"],"title":"EvaluationMetricsCreateRequest"},"EvaluationMetricsEdit":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"data":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Data"}},"type":"object","title":"EvaluationMetricsEdit"},"EvaluationMetricsEditRequest":{"properties":{"metrics":{"items":{"$ref":"#/components/schemas/EvaluationMetricsEdit"},"type":"array","title":"Metrics"}},"type":"object","required":["metrics"],"title":"EvaluationMetricsEditRequest"},"EvaluationMetricsIdsRequest":{"properties":{"metrics_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Metrics Ids"}},"type":"object","required":["metrics_ids"],"title":"EvaluationMetricsIdsRequest"},"EvaluationMetricsIdsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"metrics_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Metrics Ids","default":[]}},"type":"object","title":"EvaluationMetricsIdsResponse"},"EvaluationMetricsQuery":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"statuses":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationStatus"},"type":"array"},{"type":"null"}],"title":"Statuses"},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"intervals":{"anyOf":[{"items":{"type":"integer"},"type":"array"},{"type":"null"}],"title":"Intervals"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"timestamps":{"anyOf":[{"items":{"type":"string","format":"date-time"},"type":"array"},{"type":"null"}],"title":"Timestamps"},"scenario_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Scenario Id"},"scenario_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Scenario Ids"},"run_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Run Id"},"run_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Run Ids"},"ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Ids"}},"type":"object","title":"EvaluationMetricsQuery"},"EvaluationMetricsQueryRequest":{"properties":{"metrics":{"anyOf":[{"$ref":"#/components/schemas/EvaluationMetricsQuery"},{"type":"null"}]},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"EvaluationMetricsQueryRequest"},"EvaluationMetricsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"metrics":{"items":{"$ref":"#/components/schemas/EvaluationMetrics"},"type":"array","title":"Metrics","default":[]}},"type":"object","title":"EvaluationMetricsResponse"},"EvaluationQueue":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueueFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}],"default":"pending"},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueueData"},{"type":"null"}]},"run_id":{"type":"string","format":"uuid","title":"Run Id"}},"type":"object","required":["run_id"],"title":"EvaluationQueue"},"EvaluationQueueCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueueFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"version":{"type":"string","title":"Version","default":"2025.07.14"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueueData"},{"type":"null"}]},"run_id":{"type":"string","format":"uuid","title":"Run Id"}},"type":"object","required":["run_id"],"title":"EvaluationQueueCreate"},"EvaluationQueueData":{"properties":{"user_ids":{"anyOf":[{"items":{"items":{"type":"string","format":"uuid"},"type":"array"},"type":"array"},{"type":"null"}],"title":"User Ids"},"scenario_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Scenario Ids"},"step_keys":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Step Keys"}},"type":"object","title":"EvaluationQueueData"},"EvaluationQueueEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueueFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueueData"},{"type":"null"}]}},"type":"object","title":"EvaluationQueueEdit"},"EvaluationQueueEditRequest":{"properties":{"queue":{"$ref":"#/components/schemas/EvaluationQueueEdit"}},"type":"object","required":["queue"],"title":"EvaluationQueueEditRequest"},"EvaluationQueueFlags":{"properties":{"is_sequential":{"type":"boolean","title":"Is Sequential","default":false}},"type":"object","title":"EvaluationQueueFlags"},"EvaluationQueueIdResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"queue_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Queue Id"}},"type":"object","title":"EvaluationQueueIdResponse"},"EvaluationQueueIdsRequest":{"properties":{"queue_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Queue Ids"}},"type":"object","required":["queue_ids"],"title":"EvaluationQueueIdsRequest"},"EvaluationQueueIdsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"queue_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Queue Ids","default":[]}},"type":"object","title":"EvaluationQueueIdsResponse"},"EvaluationQueueQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueueFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"user_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"User Id"},"user_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"User Ids"},"run_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Run Id"},"run_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Run Ids"},"ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Ids"}},"type":"object","title":"EvaluationQueueQuery"},"EvaluationQueueQueryRequest":{"properties":{"queue":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueueQuery"},{"type":"null"}]},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"EvaluationQueueQueryRequest"},"EvaluationQueueResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"queue":{"anyOf":[{"$ref":"#/components/schemas/EvaluationQueue"},{"type":"null"}]}},"type":"object","title":"EvaluationQueueResponse"},"EvaluationQueueScenarioIdsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"scenario_ids":{"items":{"items":{"type":"string","format":"uuid"},"type":"array"},"type":"array","title":"Scenario Ids","default":[]}},"type":"object","title":"EvaluationQueueScenarioIdsResponse"},"EvaluationQueuesCreateRequest":{"properties":{"queues":{"items":{"$ref":"#/components/schemas/EvaluationQueueCreate"},"type":"array","title":"Queues"}},"type":"object","required":["queues"],"title":"EvaluationQueuesCreateRequest"},"EvaluationQueuesEditRequest":{"properties":{"queues":{"items":{"$ref":"#/components/schemas/EvaluationQueueEdit"},"type":"array","title":"Queues"}},"type":"object","required":["queues"],"title":"EvaluationQueuesEditRequest"},"EvaluationQueuesResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"queues":{"items":{"$ref":"#/components/schemas/EvaluationQueue"},"type":"array","title":"Queues","default":[]}},"type":"object","title":"EvaluationQueuesResponse"},"EvaluationResult":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"hash_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Hash Id"},"trace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trace Id"},"testcase_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testcase Id"},"error":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Error"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}],"default":"pending"},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"repeat_idx":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Repeat Idx","default":0},"step_key":{"type":"string","title":"Step Key"},"scenario_id":{"type":"string","format":"uuid","title":"Scenario Id"},"run_id":{"type":"string","format":"uuid","title":"Run Id"}},"type":"object","required":["step_key","scenario_id","run_id"],"title":"EvaluationResult"},"EvaluationResultCreate":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"version":{"type":"string","title":"Version","default":"2025.07.14"},"hash_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Hash Id"},"trace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trace Id"},"testcase_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testcase Id"},"error":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Error"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"repeat_idx":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Repeat Idx","default":0},"step_key":{"type":"string","title":"Step Key"},"scenario_id":{"type":"string","format":"uuid","title":"Scenario Id"},"run_id":{"type":"string","format":"uuid","title":"Run Id"}},"type":"object","required":["step_key","scenario_id","run_id"],"title":"EvaluationResultCreate"},"EvaluationResultEdit":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"hash_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Hash Id"},"trace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trace Id"},"testcase_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testcase Id"},"error":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Error"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]}},"type":"object","title":"EvaluationResultEdit"},"EvaluationResultEditRequest":{"properties":{"result":{"$ref":"#/components/schemas/EvaluationResultEdit"}},"type":"object","required":["result"],"title":"EvaluationResultEditRequest"},"EvaluationResultIdResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"result_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Result Id"}},"type":"object","title":"EvaluationResultIdResponse"},"EvaluationResultIdsRequest":{"properties":{"result_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Result Ids"}},"type":"object","required":["result_ids"],"title":"EvaluationResultIdsRequest"},"EvaluationResultIdsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"result_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Result Ids","default":[]}},"type":"object","title":"EvaluationResultIdsResponse"},"EvaluationResultQuery":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"statuses":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationStatus"},"type":"array"},{"type":"null"}],"title":"Statuses"},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"intervals":{"anyOf":[{"items":{"type":"integer"},"type":"array"},{"type":"null"}],"title":"Intervals"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"timestamps":{"anyOf":[{"items":{"type":"string","format":"date-time"},"type":"array"},{"type":"null"}],"title":"Timestamps"},"repeat_idx":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Repeat Idx"},"repeat_idxs":{"anyOf":[{"items":{"type":"integer"},"type":"array"},{"type":"null"}],"title":"Repeat Idxs"},"step_key":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Step Key"},"step_keys":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Step Keys"},"scenario_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Scenario Id"},"scenario_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Scenario Ids"},"run_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Run Id"},"run_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Run Ids"},"ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Ids"}},"type":"object","title":"EvaluationResultQuery"},"EvaluationResultQueryRequest":{"properties":{"result":{"anyOf":[{"$ref":"#/components/schemas/EvaluationResultQuery"},{"type":"null"}]},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"EvaluationResultQueryRequest"},"EvaluationResultResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"result":{"anyOf":[{"$ref":"#/components/schemas/EvaluationResult"},{"type":"null"}]}},"type":"object","title":"EvaluationResultResponse"},"EvaluationResultsCreateRequest":{"properties":{"results":{"items":{"$ref":"#/components/schemas/EvaluationResultCreate"},"type":"array","title":"Results"}},"type":"object","required":["results"],"title":"EvaluationResultsCreateRequest"},"EvaluationResultsEditRequest":{"properties":{"results":{"items":{"$ref":"#/components/schemas/EvaluationResultEdit"},"type":"array","title":"Results"}},"type":"object","required":["results"],"title":"EvaluationResultsEditRequest"},"EvaluationResultsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"results":{"items":{"$ref":"#/components/schemas/EvaluationResult"},"type":"array","title":"Results","default":[]}},"type":"object","title":"EvaluationResultsResponse"},"EvaluationRun":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}],"default":"pending"},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunData-Output"},{"type":"null"}]}},"type":"object","title":"EvaluationRun"},"EvaluationRunCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"version":{"type":"string","title":"Version","default":"2025.07.14"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunData-Input"},{"type":"null"}]}},"type":"object","title":"EvaluationRunCreate"},"EvaluationRunData-Input":{"properties":{"steps":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationRunDataStep"},"type":"array"},{"type":"null"}],"title":"Steps"},"repeats":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Repeats","default":1},"mappings":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationRunDataMapping"},"type":"array"},{"type":"null"}],"title":"Mappings"}},"type":"object","title":"EvaluationRunData"},"EvaluationRunData-Output":{"properties":{"steps":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationRunDataStep"},"type":"array"},{"type":"null"}],"title":"Steps"},"repeats":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Repeats","default":1},"mappings":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationRunDataMapping"},"type":"array"},{"type":"null"}],"title":"Mappings"}},"type":"object","title":"EvaluationRunData"},"EvaluationRunDataMapping":{"properties":{"column":{"$ref":"#/components/schemas/EvaluationRunDataMappingColumn"},"step":{"$ref":"#/components/schemas/EvaluationRunDataMappingStep"}},"type":"object","required":["column","step"],"title":"EvaluationRunDataMapping"},"EvaluationRunDataMappingColumn":{"properties":{"kind":{"type":"string","title":"Kind"},"name":{"type":"string","title":"Name"}},"type":"object","required":["kind","name"],"title":"EvaluationRunDataMappingColumn"},"EvaluationRunDataMappingStep":{"properties":{"key":{"type":"string","title":"Key"},"path":{"type":"string","title":"Path"}},"type":"object","required":["key","path"],"title":"EvaluationRunDataMappingStep"},"EvaluationRunDataStep":{"properties":{"key":{"type":"string","title":"Key"},"type":{"type":"string","enum":["input","invocation","annotation"],"title":"Type"},"origin":{"type":"string","enum":["custom","human","auto"],"title":"Origin"},"references":{"additionalProperties":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"object","title":"References"},"inputs":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationRunDataStepInput"},"type":"array"},{"type":"null"}],"title":"Inputs"}},"type":"object","required":["key","type","origin","references"],"title":"EvaluationRunDataStep"},"EvaluationRunDataStepInput":{"properties":{"key":{"type":"string","title":"Key"}},"type":"object","required":["key"],"title":"EvaluationRunDataStepInput"},"EvaluationRunEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunData-Input"},{"type":"null"}]}},"type":"object","title":"EvaluationRunEdit"},"EvaluationRunEditRequest":{"properties":{"run":{"$ref":"#/components/schemas/EvaluationRunEdit"}},"type":"object","required":["run"],"title":"EvaluationRunEditRequest"},"EvaluationRunFlags":{"properties":{"is_closed":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Closed"},"is_live":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Live"},"is_active":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Active"}},"type":"object","title":"EvaluationRunFlags"},"EvaluationRunIdResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"run_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Run Id"}},"type":"object","title":"EvaluationRunIdResponse"},"EvaluationRunIdsRequest":{"properties":{"run_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Run Ids"}},"type":"object","required":["run_ids"],"title":"EvaluationRunIdsRequest"},"EvaluationRunIdsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"run_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Run Ids","default":[]}},"type":"object","title":"EvaluationRunIdsResponse"},"EvaluationRunQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"statuses":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationStatus"},"type":"array"},{"type":"null"}],"title":"Statuses"},"references":{"anyOf":[{"items":{"additionalProperties":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"object"},"type":"array"},{"type":"null"}],"title":"References"},"ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Ids"}},"type":"object","title":"EvaluationRunQuery"},"EvaluationRunQueryRequest":{"properties":{"run":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunQuery"},{"type":"null"}]},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"EvaluationRunQueryRequest"},"EvaluationRunResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"run":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRun"},{"type":"null"}]}},"type":"object","title":"EvaluationRunResponse"},"EvaluationRunsCreateRequest":{"properties":{"runs":{"items":{"$ref":"#/components/schemas/EvaluationRunCreate"},"type":"array","title":"Runs"}},"type":"object","required":["runs"],"title":"EvaluationRunsCreateRequest"},"EvaluationRunsEditRequest":{"properties":{"runs":{"items":{"$ref":"#/components/schemas/EvaluationRunEdit"},"type":"array","title":"Runs"}},"type":"object","required":["runs"],"title":"EvaluationRunsEditRequest"},"EvaluationRunsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"runs":{"items":{"$ref":"#/components/schemas/EvaluationRun"},"type":"array","title":"Runs","default":[]}},"type":"object","title":"EvaluationRunsResponse"},"EvaluationScenarioCreate":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"version":{"type":"string","title":"Version","default":"2025.07.14"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"run_id":{"type":"string","format":"uuid","title":"Run Id"}},"type":"object","required":["run_id"],"title":"EvaluationScenarioCreate"},"EvaluationScenarioEdit":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]}},"type":"object","title":"EvaluationScenarioEdit"},"EvaluationScenarioEditRequest":{"properties":{"scenario":{"$ref":"#/components/schemas/EvaluationScenarioEdit"}},"type":"object","required":["scenario"],"title":"EvaluationScenarioEditRequest"},"EvaluationScenarioIdResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"scenario_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Scenario Id"}},"type":"object","title":"EvaluationScenarioIdResponse"},"EvaluationScenarioIdsRequest":{"properties":{"scenario_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Scenario Ids"}},"type":"object","required":["scenario_ids"],"title":"EvaluationScenarioIdsRequest"},"EvaluationScenarioIdsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"scenario_ids":{"items":{"type":"string","format":"uuid"},"type":"array","title":"Scenario Ids","default":[]}},"type":"object","title":"EvaluationScenarioIdsResponse"},"EvaluationScenarioInput":{"properties":{"name":{"type":"string","title":"Name"},"type":{"type":"string","title":"Type"},"value":{"title":"Value"}},"type":"object","required":["name","type","value"],"title":"EvaluationScenarioInput"},"EvaluationScenarioOutput":{"properties":{"result":{"$ref":"#/components/schemas/Result"},"cost":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Cost"},"latency":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Latency"}},"type":"object","required":["result"],"title":"EvaluationScenarioOutput"},"EvaluationScenarioQuery":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"statuses":{"anyOf":[{"items":{"$ref":"#/components/schemas/EvaluationStatus"},"type":"array"},{"type":"null"}],"title":"Statuses"},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"intervals":{"anyOf":[{"items":{"type":"integer"},"type":"array"},{"type":"null"}],"title":"Intervals"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"timestamps":{"anyOf":[{"items":{"type":"string","format":"date-time"},"type":"array"},{"type":"null"}],"title":"Timestamps"},"run_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Run Id"},"run_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Run Ids"},"ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Ids"}},"type":"object","title":"EvaluationScenarioQuery"},"EvaluationScenarioQueryRequest":{"properties":{"scenario":{"anyOf":[{"$ref":"#/components/schemas/EvaluationScenarioQuery"},{"type":"null"}]},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"EvaluationScenarioQueryRequest"},"EvaluationScenarioResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"scenario":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__evaluations__types__EvaluationScenario"},{"type":"null"}]}},"type":"object","title":"EvaluationScenarioResponse"},"EvaluationScenarioResult":{"properties":{"evaluator_config":{"type":"string","title":"Evaluator Config"},"result":{"$ref":"#/components/schemas/Result"}},"type":"object","required":["evaluator_config","result"],"title":"EvaluationScenarioResult"},"EvaluationScenarioScoreUpdate":{"properties":{"score":{"type":"number","title":"Score"}},"type":"object","required":["score"],"title":"EvaluationScenarioScoreUpdate"},"EvaluationScenariosCreateRequest":{"properties":{"scenarios":{"items":{"$ref":"#/components/schemas/EvaluationScenarioCreate"},"type":"array","title":"Scenarios"}},"type":"object","required":["scenarios"],"title":"EvaluationScenariosCreateRequest"},"EvaluationScenariosEditRequest":{"properties":{"scenarios":{"items":{"$ref":"#/components/schemas/EvaluationScenarioEdit"},"type":"array","title":"Scenarios"}},"type":"object","required":["scenarios"],"title":"EvaluationScenariosEditRequest"},"EvaluationScenariosResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"scenarios":{"items":{"$ref":"#/components/schemas/oss__src__core__evaluations__types__EvaluationScenario"},"type":"array","title":"Scenarios","default":[]}},"type":"object","title":"EvaluationScenariosResponse"},"EvaluationStatus":{"type":"string","enum":["pending","queued","running","success","failure","errors","cancelled"],"title":"EvaluationStatus"},"EvaluationStatusEnum":{"type":"string","enum":["EVALUATION_INITIALIZED","EVALUATION_STARTED","EVALUATION_FINISHED","EVALUATION_FINISHED_WITH_ERRORS","EVALUATION_FAILED","EVALUATION_AGGREGATION_FAILED"],"title":"EvaluationStatusEnum"},"EvaluationType":{"type":"string","enum":["human_a_b_testing","single_model_test"],"title":"EvaluationType"},"Evaluator":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"Evaluator"},"EvaluatorConfig":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"project_id":{"type":"string","title":"Project Id"},"evaluator_key":{"type":"string","title":"Evaluator Key"},"settings_values":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Settings Values"},"created_at":{"type":"string","title":"Created At"},"updated_at":{"type":"string","title":"Updated At"}},"type":"object","required":["id","name","project_id","evaluator_key","created_at","updated_at"],"title":"EvaluatorConfig"},"EvaluatorCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"EvaluatorCreate"},"EvaluatorCreateRequest":{"properties":{"evaluator":{"$ref":"#/components/schemas/EvaluatorCreate"}},"type":"object","required":["evaluator"],"title":"EvaluatorCreateRequest"},"EvaluatorEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"EvaluatorEdit"},"EvaluatorEditRequest":{"properties":{"evaluator":{"$ref":"#/components/schemas/EvaluatorEdit"}},"type":"object","required":["evaluator"],"title":"EvaluatorEditRequest"},"EvaluatorFlags":{"properties":{"is_custom":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Custom"},"is_evaluator":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Evaluator"},"is_human":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Human"}},"type":"object","title":"EvaluatorFlags"},"EvaluatorFork":{"properties":{"evaluator_revision":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorRevisionFork"},{"type":"null"}]},"revision":{"anyOf":[{"$ref":"#/components/schemas/RevisionFork"},{"type":"null"}]},"evaluator_revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Revision Id"},"workflow_revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Revision Id"},"evaluator_variant":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorVariantFork"},{"type":"null"}]},"variant":{"anyOf":[{"$ref":"#/components/schemas/VariantFork"},{"type":"null"}]},"evaluator_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Variant Id"},"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"evaluator_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"workflow_revision":{"anyOf":[{"$ref":"#/components/schemas/WorkflowRevisionFork"},{"type":"null"}]},"revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Revision Id"},"workflow_variant":{"anyOf":[{"$ref":"#/components/schemas/WorkflowVariantFork"},{"type":"null"}]},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"depth":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Depth"}},"type":"object","title":"EvaluatorFork"},"EvaluatorForkRequest":{"properties":{"evaluator":{"$ref":"#/components/schemas/EvaluatorFork"}},"type":"object","required":["evaluator"],"title":"EvaluatorForkRequest"},"EvaluatorInputInterface":{"properties":{"inputs":{"additionalProperties":true,"type":"object","title":"Inputs"},"settings":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Settings"},"credentials":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Credentials"}},"type":"object","title":"EvaluatorInputInterface"},"EvaluatorMappingInputInterface":{"properties":{"inputs":{"additionalProperties":true,"type":"object","title":"Inputs"},"mapping":{"additionalProperties":true,"type":"object","title":"Mapping"}},"type":"object","required":["inputs","mapping"],"title":"EvaluatorMappingInputInterface"},"EvaluatorMappingOutputInterface":{"properties":{"outputs":{"additionalProperties":true,"type":"object","title":"Outputs"}},"type":"object","required":["outputs"],"title":"EvaluatorMappingOutputInterface"},"EvaluatorOutputInterface":{"properties":{"outputs":{"additionalProperties":true,"type":"object","title":"Outputs"}},"type":"object","required":["outputs"],"title":"EvaluatorOutputInterface"},"EvaluatorQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},"type":"object","title":"EvaluatorQuery"},"EvaluatorQueryRequest":{"properties":{"evaluator":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorQuery"},{"type":"null"}]},"evaluator_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Evaluator Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"EvaluatorQueryRequest"},"EvaluatorResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluator":{"anyOf":[{"$ref":"#/components/schemas/Evaluator"},{"type":"null"}]}},"type":"object","title":"EvaluatorResponse"},"EvaluatorRevision":{"properties":{"evaluator_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Variant Id"},"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"evaluator_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"author":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Author"},"date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Date"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorRevisionData-Output"},{"type":"null"}]}},"type":"object","title":"EvaluatorRevision"},"EvaluatorRevisionCommit":{"properties":{"evaluator_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Variant Id"},"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"evaluator_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorRevisionData-Input"},{"type":"null"}]},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"EvaluatorRevisionCommit"},"EvaluatorRevisionCommitRequest":{"properties":{"evaluator_revision_commit":{"$ref":"#/components/schemas/EvaluatorRevisionCommit"}},"type":"object","required":["evaluator_revision_commit"],"title":"EvaluatorRevisionCommitRequest"},"EvaluatorRevisionCreate":{"properties":{"evaluator_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Variant Id"},"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"evaluator_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"EvaluatorRevisionCreate"},"EvaluatorRevisionCreateRequest":{"properties":{"evaluator_revision":{"$ref":"#/components/schemas/EvaluatorRevisionCreate"}},"type":"object","required":["evaluator_revision"],"title":"EvaluatorRevisionCreateRequest"},"EvaluatorRevisionData-Input":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"EvaluatorRevisionData"},"EvaluatorRevisionData-Output":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"EvaluatorRevisionData"},"EvaluatorRevisionEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"EvaluatorRevisionEdit"},"EvaluatorRevisionEditRequest":{"properties":{"evaluator_revision":{"$ref":"#/components/schemas/EvaluatorRevisionEdit"}},"type":"object","required":["evaluator_revision"],"title":"EvaluatorRevisionEditRequest"},"EvaluatorRevisionFork":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorRevisionData-Input"},{"type":"null"}]},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"EvaluatorRevisionFork"},"EvaluatorRevisionQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"author":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Author"},"authors":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Authors"},"date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Date"},"dates":{"anyOf":[{"items":{"type":"string","format":"date-time"},"type":"array"},{"type":"null"}],"title":"Dates"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"EvaluatorRevisionQuery"},"EvaluatorRevisionQueryRequest":{"properties":{"evaluator_revision":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorRevisionQuery"},{"type":"null"}]},"evaluator_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Evaluator Refs"},"evaluator_variant_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Evaluator Variant Refs"},"evaluator_revision_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Evaluator Revision Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"EvaluatorRevisionQueryRequest"},"EvaluatorRevisionResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluator_revision":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorRevision"},{"type":"null"}]}},"type":"object","title":"EvaluatorRevisionResponse"},"EvaluatorRevisionRetrieveRequest":{"properties":{"evaluator_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"evaluator_variant_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"evaluator_revision_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]}},"type":"object","title":"EvaluatorRevisionRetrieveRequest"},"EvaluatorRevisionsLog":{"properties":{"evaluator_revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Revision Id"},"workflow_revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Revision Id"},"evaluator_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Variant Id"},"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"evaluator_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Revision Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"depth":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Depth"}},"type":"object","title":"EvaluatorRevisionsLog"},"EvaluatorRevisionsLogRequest":{"properties":{"evaluator":{"$ref":"#/components/schemas/EvaluatorRevisionsLog"}},"type":"object","required":["evaluator"],"title":"EvaluatorRevisionsLogRequest"},"EvaluatorRevisionsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluator_revisions":{"items":{"$ref":"#/components/schemas/EvaluatorRevision"},"type":"array","title":"Evaluator Revisions","default":[]}},"type":"object","title":"EvaluatorRevisionsResponse"},"EvaluatorVariant":{"properties":{"evaluator_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"EvaluatorVariant"},"EvaluatorVariantCreate":{"properties":{"evaluator_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluator Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"EvaluatorVariantCreate"},"EvaluatorVariantCreateRequest":{"properties":{"evaluator_variant":{"$ref":"#/components/schemas/EvaluatorVariantCreate"}},"type":"object","required":["evaluator_variant"],"title":"EvaluatorVariantCreateRequest"},"EvaluatorVariantEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"EvaluatorVariantEdit"},"EvaluatorVariantEditRequest":{"properties":{"evaluator_variant":{"$ref":"#/components/schemas/EvaluatorVariantEdit"}},"type":"object","required":["evaluator_variant"],"title":"EvaluatorVariantEditRequest"},"EvaluatorVariantFork":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"EvaluatorVariantFork"},"EvaluatorVariantResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluator_variant":{"anyOf":[{"$ref":"#/components/schemas/EvaluatorVariant"},{"type":"null"}]}},"type":"object","title":"EvaluatorVariantResponse"},"EvaluatorVariantsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluator_variants":{"items":{"$ref":"#/components/schemas/EvaluatorVariant"},"type":"array","title":"Evaluator Variants","default":[]}},"type":"object","title":"EvaluatorVariantsResponse"},"EvaluatorsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluators":{"items":{"$ref":"#/components/schemas/Evaluator"},"type":"array","title":"Evaluators","default":[]}},"type":"object","title":"EvaluatorsResponse"},"ExceptionDTO":{"properties":{"timestamp":{"type":"string","format":"date-time","title":"Timestamp"},"type":{"type":"string","title":"Type"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"stacktrace":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Stacktrace"},"attributes":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","required":["timestamp","type"],"title":"ExceptionDTO"},"ExistenceOperator":{"type":"string","enum":["exists","not_exists"],"title":"ExistenceOperator"},"Filtering-Input":{"properties":{"operator":{"$ref":"#/components/schemas/LogicalOperator","default":"and"},"conditions":{"items":{"anyOf":[{"$ref":"#/components/schemas/Condition"},{"$ref":"#/components/schemas/Filtering-Input"}]},"type":"array","title":"Conditions","default":[]}},"type":"object","title":"Filtering"},"Filtering-Output":{"properties":{"operator":{"$ref":"#/components/schemas/LogicalOperator","default":"and"},"conditions":{"items":{"anyOf":[{"$ref":"#/components/schemas/Condition"},{"$ref":"#/components/schemas/Filtering-Output"}]},"type":"array","title":"Conditions","default":[]}},"type":"object","title":"Filtering"},"Focus":{"type":"string","enum":["trace","span"],"title":"Focus"},"Format":{"type":"string","enum":["agenta","opentelemetry"],"title":"Format"},"Formatting":{"properties":{"focus":{"anyOf":[{"$ref":"#/components/schemas/Focus"},{"type":"null"}]},"format":{"anyOf":[{"$ref":"#/components/schemas/Format"},{"type":"null"}]}},"type":"object","title":"Formatting"},"FullJson-Input":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"boolean"},{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"items":{"$ref":"#/components/schemas/FullJson-Input"},"type":"array"},{"type":"null"}]},"FullJson-Output":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"boolean"},{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"items":{"$ref":"#/components/schemas/FullJson-Output"},"type":"array"},{"type":"null"}]},"GetConfigResponse":{"properties":{"config_name":{"type":"string","title":"Config Name"},"current_version":{"type":"integer","title":"Current Version"},"parameters":{"additionalProperties":true,"type":"object","title":"Parameters"}},"type":"object","required":["config_name","current_version","parameters"],"title":"GetConfigResponse"},"HTTPValidationError":{"properties":{"detail":{"items":{"$ref":"#/components/schemas/ValidationError"},"type":"array","title":"Detail"}},"type":"object","title":"HTTPValidationError"},"Header":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},"type":"object","title":"Header"},"HumanEvaluation":{"properties":{"id":{"type":"string","title":"Id"},"app_id":{"type":"string","title":"App Id"},"project_id":{"type":"string","title":"Project Id"},"evaluation_type":{"type":"string","title":"Evaluation Type"},"variant_ids":{"items":{"type":"string"},"type":"array","title":"Variant Ids"},"variant_names":{"items":{"type":"string"},"type":"array","title":"Variant Names"},"variants_revision_ids":{"items":{"type":"string"},"type":"array","title":"Variants Revision Ids"},"revisions":{"items":{"type":"string"},"type":"array","title":"Revisions"},"testset_id":{"type":"string","title":"Testset Id"},"testset_name":{"type":"string","title":"Testset Name"},"status":{"type":"string","title":"Status"},"created_at":{"type":"string","title":"Created At"},"updated_at":{"type":"string","title":"Updated At"}},"type":"object","required":["id","app_id","project_id","evaluation_type","variant_ids","variant_names","variants_revision_ids","revisions","testset_id","testset_name","status","created_at","updated_at"],"title":"HumanEvaluation"},"HumanEvaluationScenario":{"properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Id"},"evaluation_id":{"type":"string","title":"Evaluation Id"},"inputs":{"items":{"$ref":"#/components/schemas/HumanEvaluationScenarioInput"},"type":"array","title":"Inputs"},"outputs":{"items":{"$ref":"#/components/schemas/HumanEvaluationScenarioOutput"},"type":"array","title":"Outputs"},"vote":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vote"},"score":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"null"}],"title":"Score"},"correct_answer":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Correct Answer"},"is_pinned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Pinned"},"note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Note"}},"type":"object","required":["evaluation_id","inputs","outputs"],"title":"HumanEvaluationScenario"},"HumanEvaluationScenarioInput":{"properties":{"input_name":{"type":"string","title":"Input Name"},"input_value":{"type":"string","title":"Input Value"}},"type":"object","required":["input_name","input_value"],"title":"HumanEvaluationScenarioInput"},"HumanEvaluationScenarioOutput":{"properties":{"variant_id":{"type":"string","title":"Variant Id"},"variant_output":{"type":"string","title":"Variant Output"}},"type":"object","required":["variant_id","variant_output"],"title":"HumanEvaluationScenarioOutput"},"HumanEvaluationScenarioUpdate":{"properties":{"vote":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Vote"},"score":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"null"}],"title":"Score"},"correct_answer":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Correct Answer"},"outputs":{"anyOf":[{"items":{"$ref":"#/components/schemas/HumanEvaluationScenarioOutput"},"type":"array"},{"type":"null"}],"title":"Outputs"},"inputs":{"anyOf":[{"items":{"$ref":"#/components/schemas/HumanEvaluationScenarioInput"},"type":"array"},{"type":"null"}],"title":"Inputs"},"is_pinned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Pinned"},"note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Note"}},"type":"object","title":"HumanEvaluationScenarioUpdate"},"HumanEvaluationUpdate":{"properties":{"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatusEnum"},{"type":"null"}]}},"type":"object","title":"HumanEvaluationUpdate"},"InviteRequest":{"properties":{"email":{"type":"string","title":"Email"},"roles":{"anyOf":[{"items":{"type":"string"},"type":"array"},{"type":"null"}],"title":"Roles"}},"type":"object","required":["email"],"title":"InviteRequest"},"InviteToken":{"properties":{"token":{"type":"string","title":"Token"},"email":{"type":"string","title":"Email"}},"type":"object","required":["token","email"],"title":"InviteToken"},"Invocation":{"properties":{"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"span_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"},"trace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trace Id"},"origin":{"$ref":"#/components/schemas/SimpleTraceOrigin","default":"custom"},"kind":{"$ref":"#/components/schemas/SimpleTraceKind","default":"adhoc"},"channel":{"$ref":"#/components/schemas/SimpleTraceChannel","default":"api"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object","title":"Data"},"references":{"$ref":"#/components/schemas/SimpleTraceReferences"},"links":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/Link"},"type":"object"},{"items":{"$ref":"#/components/schemas/Link"},"type":"array"},{"type":"null"}],"title":"Links"}},"type":"object","required":["data","references","links"],"title":"Invocation"},"InvocationCreate":{"properties":{"origin":{"$ref":"#/components/schemas/SimpleTraceOrigin","default":"custom"},"kind":{"$ref":"#/components/schemas/SimpleTraceKind","default":"adhoc"},"channel":{"$ref":"#/components/schemas/SimpleTraceChannel","default":"api"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object","title":"Data"},"references":{"$ref":"#/components/schemas/SimpleTraceReferences"},"links":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/Link"},"type":"object"},{"items":{"$ref":"#/components/schemas/Link"},"type":"array"},{"type":"null"}],"title":"Links"}},"type":"object","required":["data","references","links"],"title":"InvocationCreate"},"InvocationCreateRequest":{"properties":{"invocation":{"$ref":"#/components/schemas/InvocationCreate"}},"type":"object","required":["invocation"],"title":"InvocationCreateRequest"},"InvocationEdit":{"properties":{"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object","title":"Data"}},"type":"object","required":["data"],"title":"InvocationEdit"},"InvocationEditRequest":{"properties":{"invocation":{"$ref":"#/components/schemas/InvocationEdit"}},"type":"object","required":["invocation"],"title":"InvocationEditRequest"},"InvocationLinkResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"invocation_link":{"anyOf":[{"$ref":"#/components/schemas/Link"},{"type":"null"}]}},"type":"object","title":"InvocationLinkResponse"},"InvocationQuery":{"properties":{"origin":{"anyOf":[{"$ref":"#/components/schemas/SimpleTraceOrigin"},{"type":"null"}]},"kind":{"anyOf":[{"$ref":"#/components/schemas/SimpleTraceKind"},{"type":"null"}]},"channel":{"anyOf":[{"$ref":"#/components/schemas/SimpleTraceChannel"},{"type":"null"}]},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"references":{"anyOf":[{"$ref":"#/components/schemas/SimpleTraceReferences"},{"type":"null"}]},"links":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/Link"},"type":"object"},{"items":{"$ref":"#/components/schemas/Link"},"type":"array"},{"type":"null"}],"title":"Links"}},"type":"object","title":"InvocationQuery"},"InvocationQueryRequest":{"properties":{"invocation":{"anyOf":[{"$ref":"#/components/schemas/InvocationQuery"},{"type":"null"}]},"invocation_links":{"anyOf":[{"items":{"$ref":"#/components/schemas/Link"},"type":"array"},{"type":"null"}],"title":"Invocation Links"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"InvocationQueryRequest"},"InvocationResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"invocation":{"anyOf":[{"$ref":"#/components/schemas/Invocation"},{"type":"null"}]}},"type":"object","title":"InvocationResponse"},"InvocationsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"invocations":{"items":{"$ref":"#/components/schemas/Invocation"},"type":"array","title":"Invocations","default":[]}},"type":"object","title":"InvocationsResponse"},"LLMRunRateLimit":{"properties":{"batch_size":{"type":"integer","title":"Batch Size"},"max_retries":{"type":"integer","title":"Max Retries"},"retry_delay":{"type":"integer","title":"Retry Delay"},"delay_between_batches":{"type":"integer","title":"Delay Between Batches"}},"type":"object","required":["batch_size","max_retries","retry_delay","delay_between_batches"],"title":"LLMRunRateLimit"},"LegacyAnalyticsResponse":{"properties":{"total_count":{"type":"integer","title":"Total Count"},"failure_rate":{"type":"number","title":"Failure Rate"},"total_cost":{"type":"number","title":"Total Cost"},"avg_cost":{"type":"number","title":"Avg Cost"},"avg_latency":{"type":"number","title":"Avg Latency"},"total_tokens":{"type":"integer","title":"Total Tokens"},"avg_tokens":{"type":"number","title":"Avg Tokens"},"data":{"items":{"$ref":"#/components/schemas/LegacyDataPoint"},"type":"array","title":"Data"}},"type":"object","required":["total_count","failure_rate","total_cost","avg_cost","avg_latency","total_tokens","avg_tokens","data"],"title":"LegacyAnalyticsResponse"},"LegacyApplication":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/LegacyApplicationFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/LegacyApplicationData-Output"},{"type":"null"}]}},"type":"object","title":"LegacyApplication"},"LegacyApplicationCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/LegacyApplicationFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/LegacyApplicationData-Input"},{"type":"null"}]}},"type":"object","title":"LegacyApplicationCreate"},"LegacyApplicationCreateRequest":{"properties":{"application":{"$ref":"#/components/schemas/LegacyApplicationCreate"}},"type":"object","required":["application"],"title":"LegacyApplicationCreateRequest"},"LegacyApplicationData-Input":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"LegacyApplicationData"},"LegacyApplicationData-Output":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"LegacyApplicationData"},"LegacyApplicationEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/LegacyApplicationFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/LegacyApplicationData-Input"},{"type":"null"}]}},"type":"object","title":"LegacyApplicationEdit"},"LegacyApplicationEditRequest":{"properties":{"application":{"$ref":"#/components/schemas/LegacyApplicationEdit"}},"type":"object","required":["application"],"title":"LegacyApplicationEditRequest"},"LegacyApplicationFlags":{"properties":{"is_custom":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Custom"},"is_evaluator":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Evaluator"},"is_human":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Human"}},"type":"object","title":"LegacyApplicationFlags"},"LegacyApplicationResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"application":{"anyOf":[{"$ref":"#/components/schemas/LegacyApplication"},{"type":"null"}]}},"type":"object","title":"LegacyApplicationResponse"},"LegacyDataPoint":{"properties":{"timestamp":{"type":"string","format":"date-time","title":"Timestamp"},"success_count":{"type":"integer","title":"Success Count"},"failure_count":{"type":"integer","title":"Failure Count"},"cost":{"type":"number","title":"Cost"},"latency":{"type":"number","title":"Latency"},"total_tokens":{"type":"integer","title":"Total Tokens"}},"type":"object","required":["timestamp","success_count","failure_count","cost","latency","total_tokens"],"title":"LegacyDataPoint"},"LegacyEvaluator":{"properties":{"name":{"type":"string","title":"Name"},"key":{"type":"string","title":"Key"},"direct_use":{"type":"boolean","title":"Direct Use"},"settings_template":{"additionalProperties":true,"type":"object","title":"Settings Template"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"oss":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Oss","default":false},"requires_llm_api_keys":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Requires Llm Api Keys","default":false},"tags":{"items":{"type":"string"},"type":"array","title":"Tags"}},"type":"object","required":["name","key","direct_use","settings_template","tags"],"title":"LegacyEvaluator"},"LegacyLifecycleDTO":{"properties":{"created_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Updated At"},"updated_by_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Updated By Id"},"updated_by":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Updated By"}},"type":"object","title":"LegacyLifecycleDTO"},"LegacyScopeRequest":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"}},"type":"object","title":"LegacyScopeRequest"},"LegacyScopesResponse":{"properties":{"organization_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Organization Id"},"organization_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization Name"},"workspace_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workspace Id"},"workspace_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workspace Name"},"project_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Project Id"},"project_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Project Name"},"is_demo":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Demo"},"user_role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"User Role"},"credentials":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Credentials"}},"type":"object","title":"LegacyScopesResponse"},"LegacySubscriptionRequest":{"properties":{"plan":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Plan"}},"type":"object","title":"LegacySubscriptionRequest"},"LegacyUserRequest":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"email":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Email"}},"type":"object","title":"LegacyUserRequest"},"LegacyUserResponse":{"properties":{"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"LegacyUserResponse"},"Link":{"properties":{"span_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Id"},"trace_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Trace Id"}},"type":"object","title":"Link"},"LinkDTO":{"properties":{"type":{"$ref":"#/components/schemas/TreeType"},"id":{"type":"string","format":"uuid","title":"Id"},"tree_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Tree Id"}},"type":"object","required":["type","id"],"title":"LinkDTO"},"ListAPIKeysResponse":{"properties":{"prefix":{"type":"string","title":"Prefix"},"created_at":{"type":"string","title":"Created At"},"last_used_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Last Used At"},"expiration_date":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Expiration Date"}},"type":"object","required":["prefix","created_at"],"title":"ListAPIKeysResponse"},"ListOperator":{"type":"string","enum":["in","not_in"],"title":"ListOperator"},"ListOptions":{"properties":{"all":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"All","default":false}},"type":"object","title":"ListOptions"},"LogicalOperator":{"type":"string","enum":["and","or","not","nand","nor"],"title":"LogicalOperator"},"MetricSpec":{"properties":{"type":{"$ref":"#/components/schemas/MetricType","default":"none"},"path":{"type":"string","title":"Path","default":"*"},"bins":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Bins"},"vmin":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Vmin"},"vmax":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Vmax"},"edge":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Edge"}},"type":"object","title":"MetricSpec"},"MetricType":{"type":"string","enum":["numeric/continuous","numeric/discrete","binary","categorical/single","categorical/multiple","string","json","none","*"],"title":"MetricType"},"MetricsBucket":{"properties":{"timestamp":{"type":"string","format":"date-time","title":"Timestamp"},"interval":{"type":"integer","title":"Interval"},"metrics":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Metrics"}},"type":"object","required":["timestamp","interval"],"title":"MetricsBucket"},"MetricsDTO":{"properties":{"count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Count","default":0},"duration":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Duration","default":0.0},"cost":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Cost","default":0.0},"tokens":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Tokens","default":0}},"type":"object","title":"MetricsDTO"},"NewEvaluation":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"revisions_ids":{"items":{"type":"string"},"type":"array","title":"Revisions Ids"},"evaluators_configs":{"items":{"type":"string"},"type":"array","title":"Evaluators Configs"},"testset_id":{"type":"string","title":"Testset Id"},"rate_limit":{"$ref":"#/components/schemas/LLMRunRateLimit"},"correct_answer_column":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Correct Answer Column"}},"type":"object","required":["revisions_ids","evaluators_configs","testset_id","rate_limit"],"title":"NewEvaluation"},"NewEvaluatorConfig":{"properties":{"name":{"type":"string","title":"Name"},"evaluator_key":{"type":"string","title":"Evaluator Key"},"settings_values":{"additionalProperties":true,"type":"object","title":"Settings Values"}},"type":"object","required":["name","evaluator_key","settings_values"],"title":"NewEvaluatorConfig"},"NewHumanEvaluation":{"properties":{"app_id":{"type":"string","title":"App Id"},"variant_ids":{"items":{"type":"string"},"type":"array","title":"Variant Ids"},"evaluation_type":{"$ref":"#/components/schemas/EvaluationType"},"inputs":{"items":{"type":"string"},"type":"array","title":"Inputs"},"testset_id":{"type":"string","title":"Testset Id"},"status":{"type":"string","title":"Status"}},"type":"object","required":["app_id","variant_ids","evaluation_type","inputs","testset_id","status"],"title":"NewHumanEvaluation"},"NewTestset":{"properties":{"name":{"type":"string","title":"Name"},"csvdata":{"items":{"additionalProperties":true,"type":"object"},"type":"array","title":"Csvdata"}},"type":"object","required":["name","csvdata"],"title":"NewTestset"},"NoListJson-Input":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"boolean"},{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}]},"NoListJson-Output":{"anyOf":[{"type":"string"},{"type":"integer"},{"type":"number"},{"type":"boolean"},{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}]},"NodeDTO":{"properties":{"id":{"type":"string","format":"uuid","title":"Id"},"name":{"type":"string","title":"Name"},"type":{"anyOf":[{"$ref":"#/components/schemas/NodeType"},{"type":"null"}]}},"type":"object","required":["id","name"],"title":"NodeDTO"},"NodeType":{"type":"string","enum":["agent","workflow","chain","task","tool","embedding","query","completion","chat","rerank"],"title":"NodeType"},"NumericOperator":{"type":"string","enum":["eq","neq","gt","lt","gte","lte","btwn"],"title":"NumericOperator"},"OTelContextDTO":{"properties":{"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"}},"type":"object","required":["trace_id","span_id"],"title":"OTelContextDTO"},"OTelEvent-Input":{"properties":{"name":{"type":"string","title":"Name"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"}],"title":"Timestamp"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","required":["name","timestamp"],"title":"OTelEvent"},"OTelEvent-Output":{"properties":{"name":{"type":"string","title":"Name"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"}],"title":"Timestamp"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","required":["name","timestamp"],"title":"OTelEvent"},"OTelEventDTO":{"properties":{"name":{"type":"string","title":"Name"},"timestamp":{"type":"string","title":"Timestamp"},"attributes":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","required":["name","timestamp"],"title":"OTelEventDTO"},"OTelExtraDTO-Input":{"properties":{"kind":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Kind"},"attributes":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Attributes"},"events":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelEventDTO"},"type":"array"},{"type":"null"}],"title":"Events"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelLinkDTO"},"type":"array"},{"type":"null"}],"title":"Links"}},"type":"object","title":"OTelExtraDTO"},"OTelExtraDTO-Output":{"properties":{"kind":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Kind"},"attributes":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Attributes"},"events":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelEventDTO"},"type":"array"},{"type":"null"}],"title":"Events"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelLinkDTO"},"type":"array"},{"type":"null"}],"title":"Links"}},"type":"object","title":"OTelExtraDTO"},"OTelFlatSpan-Input":{"properties":{"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"},"parent_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Parent Id"},"trace_type":{"anyOf":[{"$ref":"#/components/schemas/TraceType"},{"type":"null"}]},"span_type":{"anyOf":[{"$ref":"#/components/schemas/SpanType"},{"type":"null"}]},"span_kind":{"anyOf":[{"$ref":"#/components/schemas/OTelSpanKind"},{"type":"null"}]},"span_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Name"},"start_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"},{"type":"null"}],"title":"Start Time"},"end_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"},{"type":"null"}],"title":"End Time"},"status_code":{"anyOf":[{"$ref":"#/components/schemas/OTelStatusCode-Input"},{"type":"null"}]},"status_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status Message"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Attributes"},"references":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelReference-Input"},"type":"array"},{"type":"null"}],"title":"References"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelLink-Input"},"type":"array"},{"type":"null"}],"title":"Links"},"hashes":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelHash-Input"},"type":"array"},{"type":"null"}],"title":"Hashes"},"exception":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Exception"},"events":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelEvent-Input"},"type":"array"},{"type":"null"}],"title":"Events"}},"type":"object","required":["trace_id","span_id"],"title":"OTelFlatSpan"},"OTelFlatSpan-Output":{"properties":{"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"},"parent_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Parent Id"},"trace_type":{"anyOf":[{"$ref":"#/components/schemas/TraceType"},{"type":"null"}]},"span_type":{"anyOf":[{"$ref":"#/components/schemas/SpanType"},{"type":"null"}]},"span_kind":{"anyOf":[{"$ref":"#/components/schemas/OTelSpanKind"},{"type":"null"}]},"span_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Name"},"start_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"},{"type":"null"}],"title":"Start Time"},"end_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"},{"type":"null"}],"title":"End Time"},"status_code":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__tracing__dtos__OTelStatusCode"},{"type":"null"}]},"status_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status Message"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Attributes"},"references":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelReference-Output"},"type":"array"},{"type":"null"}],"title":"References"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelLink-Output"},"type":"array"},{"type":"null"}],"title":"Links"},"hashes":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelHash-Output"},"type":"array"},{"type":"null"}],"title":"Hashes"},"exception":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Exception"},"events":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelEvent-Output"},"type":"array"},{"type":"null"}],"title":"Events"}},"type":"object","required":["trace_id","span_id"],"title":"OTelFlatSpan"},"OTelHash-Input":{"properties":{"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","title":"OTelHash"},"OTelHash-Output":{"properties":{"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","title":"OTelHash"},"OTelLink-Input":{"properties":{"span_id":{"type":"string","title":"Span Id"},"trace_id":{"type":"string","title":"Trace Id"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","required":["span_id","trace_id"],"title":"OTelLink"},"OTelLink-Output":{"properties":{"span_id":{"type":"string","title":"Span Id"},"trace_id":{"type":"string","title":"Trace Id"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","required":["span_id","trace_id"],"title":"OTelLink"},"OTelLinkDTO":{"properties":{"context":{"$ref":"#/components/schemas/OTelContextDTO"},"attributes":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","required":["context"],"title":"OTelLinkDTO"},"OTelLinksResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelLink-Output"},"type":"array"},{"type":"null"}],"title":"Links"}},"type":"object","title":"OTelLinksResponse"},"OTelReference-Input":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","title":"OTelReference"},"OTelReference-Output":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Attributes"}},"type":"object","title":"OTelReference"},"OTelSpan-Input":{"properties":{"spans":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/OTelSpan-Input"},{"items":{"$ref":"#/components/schemas/OTelSpan-Input"},"type":"array"}]},"type":"object"},{"type":"null"}],"title":"Spans"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"},"parent_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Parent Id"},"trace_type":{"anyOf":[{"$ref":"#/components/schemas/TraceType"},{"type":"null"}]},"span_type":{"anyOf":[{"$ref":"#/components/schemas/SpanType"},{"type":"null"}]},"span_kind":{"anyOf":[{"$ref":"#/components/schemas/OTelSpanKind"},{"type":"null"}]},"span_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Name"},"start_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"},{"type":"null"}],"title":"Start Time"},"end_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"},{"type":"null"}],"title":"End Time"},"status_code":{"anyOf":[{"$ref":"#/components/schemas/OTelStatusCode-Input"},{"type":"null"}]},"status_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status Message"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Attributes"},"references":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelReference-Input"},"type":"array"},{"type":"null"}],"title":"References"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelLink-Input"},"type":"array"},{"type":"null"}],"title":"Links"},"hashes":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelHash-Input"},"type":"array"},{"type":"null"}],"title":"Hashes"},"exception":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Exception"},"events":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelEvent-Input"},"type":"array"},{"type":"null"}],"title":"Events"}},"type":"object","required":["trace_id","span_id"],"title":"OTelSpan"},"OTelSpan-Output":{"properties":{"spans":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/OTelSpan-Output"},{"items":{"$ref":"#/components/schemas/OTelSpan-Output"},"type":"array"}]},"type":"object"},{"type":"null"}],"title":"Spans"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"},"parent_id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Parent Id"},"trace_type":{"anyOf":[{"$ref":"#/components/schemas/TraceType"},{"type":"null"}]},"span_type":{"anyOf":[{"$ref":"#/components/schemas/SpanType"},{"type":"null"}]},"span_kind":{"anyOf":[{"$ref":"#/components/schemas/OTelSpanKind"},{"type":"null"}]},"span_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Span Name"},"start_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"},{"type":"null"}],"title":"Start Time"},"end_time":{"anyOf":[{"type":"string","format":"date-time"},{"type":"integer"},{"type":"null"}],"title":"End Time"},"status_code":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__tracing__dtos__OTelStatusCode"},{"type":"null"}]},"status_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status Message"},"attributes":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Attributes"},"references":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelReference-Output"},"type":"array"},{"type":"null"}],"title":"References"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelLink-Output"},"type":"array"},{"type":"null"}],"title":"Links"},"hashes":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelHash-Output"},"type":"array"},{"type":"null"}],"title":"Hashes"},"exception":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Exception"},"events":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelEvent-Output"},"type":"array"},{"type":"null"}],"title":"Events"}},"type":"object","required":["trace_id","span_id"],"title":"OTelSpan"},"OTelSpanDTO":{"properties":{"context":{"$ref":"#/components/schemas/OTelContextDTO"},"name":{"type":"string","title":"Name"},"kind":{"$ref":"#/components/schemas/OTelSpanKind","default":"SPAN_KIND_UNSPECIFIED"},"start_time":{"type":"string","format":"date-time","title":"Start Time"},"end_time":{"type":"string","format":"date-time","title":"End Time"},"status_code":{"$ref":"#/components/schemas/oss__src__core__observability__dtos__OTelStatusCode","default":"STATUS_CODE_UNSET"},"status_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Status Message"},"attributes":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Attributes"},"events":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelEventDTO"},"type":"array"},{"type":"null"}],"title":"Events"},"parent":{"anyOf":[{"$ref":"#/components/schemas/OTelContextDTO"},{"type":"null"}]},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelLinkDTO"},"type":"array"},{"type":"null"}],"title":"Links"}},"type":"object","required":["context","name","start_time","end_time"],"title":"OTelSpanDTO"},"OTelSpanKind":{"type":"string","enum":["SPAN_KIND_UNSPECIFIED","SPAN_KIND_INTERNAL","SPAN_KIND_SERVER","SPAN_KIND_CLIENT","SPAN_KIND_PRODUCER","SPAN_KIND_CONSUMER"],"title":"OTelSpanKind"},"OTelSpansTree-Input":{"properties":{"spans":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/OTelSpan-Input"},{"items":{"$ref":"#/components/schemas/OTelSpan-Input"},"type":"array"}]},"type":"object"},{"type":"null"}],"title":"Spans"}},"type":"object","title":"OTelSpansTree"},"OTelSpansTree-Output":{"properties":{"spans":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/OTelSpan-Output"},{"items":{"$ref":"#/components/schemas/OTelSpan-Output"},"type":"array"}]},"type":"object"},{"type":"null"}],"title":"Spans"}},"type":"object","title":"OTelSpansTree"},"OTelStatusCode-Input":{"type":"string","enum":["STATUS_CODE_UNSET","STATUS_CODE_OK","STATUS_CODE_ERROR"],"title":"OTelStatusCode"},"OTelTracingRequest":{"properties":{"spans":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelFlatSpan-Input"},"type":"array"},{"type":"null"}],"title":"Spans"},"traces":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/OTelSpansTree-Input"},"type":"object"},{"type":"null"}],"title":"Traces"}},"type":"object","title":"OTelTracingRequest"},"Organization":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"owner":{"type":"string","title":"Owner"},"description":{"type":"string","title":"Description"},"type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Type"},"workspaces":{"items":{"type":"string"},"type":"array","title":"Workspaces"}},"type":"object","required":["id","name","owner","description"],"title":"Organization"},"OrganizationDetails":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"owner":{"type":"string","title":"Owner"},"description":{"type":"string","title":"Description"},"type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Type"},"workspaces":{"items":{"type":"string"},"type":"array","title":"Workspaces"},"default_workspace":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Default Workspace"}},"type":"object","required":["id","name","owner","description"],"title":"OrganizationDetails"},"OrganizationMembershipRequest":{"properties":{"role":{"type":"string","enum":["owner","viewer","editor","evaluator","workspace_admin","deployment_manager"],"title":"Role"},"is_demo":{"type":"boolean","title":"Is Demo"},"user_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"},"organization_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"}},"type":"object","required":["role","is_demo","user_ref","organization_ref"],"title":"OrganizationMembershipRequest"},"OrganizationOutput":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"}},"type":"object","required":["id","name"],"title":"OrganizationOutput"},"OrganizationRequest":{"properties":{"name":{"type":"string","title":"Name"},"description":{"type":"string","title":"Description"},"is_paying":{"type":"boolean","title":"Is Paying"}},"type":"object","required":["name","description","is_paying"],"title":"OrganizationRequest"},"OrganizationUpdate":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"updated_at":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Updated At"}},"type":"object","title":"OrganizationUpdate"},"ParentDTO":{"properties":{"id":{"type":"string","format":"uuid","title":"Id"}},"type":"object","required":["id"],"title":"ParentDTO"},"Permission":{"type":"string","enum":["read_system","view_applications","edit_application","create_app_variant","delete_app_variant","modify_variant_configurations","delete_application_variant","run_service","create_secret","view_secret","update_secret","delete_secret","view_app_environment_deployment","edit_app_environment_deployment","create_app_environment_deployment","view_testset","edit_testset","create_testset","delete_testset","view_evaluation","run_evaluations","edit_evaluation","create_evaluation","delete_evaluation","deploy_application","view_workspace","edit_workspace","create_workspace","delete_workspace","modify_user_roles","add_new_user_to_workspace","edit_organization","delete_organization","add_new_user_to_organization","reset_password","view_billing","edit_billing","view_workflows","edit_workflows","run_workflows","view_evaluators","edit_evaluators","view_queries","edit_queries","view_testsets","edit_testsets","view_annotations","edit_annotations","view_invocations","edit_invocations","view_evaluation_runs","edit_evaluation_runs","view_evaluation_scenarios","edit_evaluation_scenarios","view_evaluation_results","edit_evaluation_results","view_evaluation_metrics","edit_evaluation_metrics","view_evaluation_queues","edit_evaluation_queues"],"title":"Permission"},"Plan":{"type":"string","enum":["cloud_v0_hobby","cloud_v0_pro","cloud_v0_business","cloud_v0_humanity_labs","cloud_v0_x_labs","cloud_v0_agenta_ai"],"title":"Plan"},"ProjectMembershipRequest":{"properties":{"role":{"type":"string","enum":["owner","viewer","editor","evaluator","workspace_admin","deployment_manager"],"title":"Role"},"is_demo":{"type":"boolean","title":"Is Demo"},"user_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"},"project_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"}},"type":"object","required":["role","is_demo","user_ref","project_ref"],"title":"ProjectMembershipRequest"},"ProjectRequest":{"properties":{"name":{"type":"string","title":"Name"},"description":{"type":"string","title":"Description"},"is_default":{"type":"boolean","title":"Is Default"},"workspace_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"},"organization_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"}},"type":"object","required":["name","description","is_default","workspace_ref","organization_ref"],"title":"ProjectRequest"},"ProjectScope":{"properties":{"credentials":{"type":"string","title":"Credentials"},"role":{"type":"string","enum":["owner","viewer","editor","evaluator","workspace_admin","deployment_manager"],"title":"Role"},"tier":{"type":"string","title":"Tier"},"user":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"},"project":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"},"workspace":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"},"organization":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"}},"type":"object","required":["credentials","role","tier","user","project","workspace","organization"],"title":"ProjectScope"},"ProjectsResponse":{"properties":{"organization_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Organization Id"},"organization_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Organization Name"},"workspace_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workspace Id"},"workspace_name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Workspace Name"},"project_id":{"type":"string","format":"uuid","title":"Project Id"},"project_name":{"type":"string","title":"Project Name"},"user_role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"User Role"},"is_demo":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Demo"}},"type":"object","required":["project_id","project_name"],"title":"ProjectsResponse"},"QueriesResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"queries":{"items":{"$ref":"#/components/schemas/Query"},"type":"array","title":"Queries","default":[]}},"type":"object","title":"QueriesResponse"},"Query":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"Query"},"QueryCreate":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"QueryCreate"},"QueryCreateRequest":{"properties":{"query":{"$ref":"#/components/schemas/QueryCreate"}},"type":"object","required":["query"],"title":"QueryCreateRequest"},"QueryEdit":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"QueryEdit"},"QueryEditRequest":{"properties":{"query":{"$ref":"#/components/schemas/QueryEdit"}},"type":"object","required":["query"],"title":"QueryEditRequest"},"QueryResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"query":{"anyOf":[{"$ref":"#/components/schemas/Query"},{"type":"null"}]}},"type":"object","title":"QueryResponse"},"QueryRevision":{"properties":{"query_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"query_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"author":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Author"},"date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Date"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/QueryRevisionData-Output"},{"type":"null"}]}},"type":"object","title":"QueryRevision"},"QueryRevisionCommit":{"properties":{"query_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"query_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/QueryRevisionData-Input"},{"type":"null"}]},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"QueryRevisionCommit"},"QueryRevisionCommitRequest":{"properties":{"query_revision_commit":{"$ref":"#/components/schemas/QueryRevisionCommit"}},"type":"object","required":["query_revision_commit"],"title":"QueryRevisionCommitRequest"},"QueryRevisionCreate":{"properties":{"query_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"query_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"QueryRevisionCreate"},"QueryRevisionCreateRequest":{"properties":{"query_revision":{"$ref":"#/components/schemas/QueryRevisionCreate"}},"type":"object","required":["query_revision"],"title":"QueryRevisionCreateRequest"},"QueryRevisionData-Input":{"properties":{"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]},"filtering":{"anyOf":[{"$ref":"#/components/schemas/Filtering-Input"},{"type":"null"}]}},"type":"object","title":"QueryRevisionData"},"QueryRevisionData-Output":{"properties":{"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]},"filtering":{"anyOf":[{"$ref":"#/components/schemas/Filtering-Output"},{"type":"null"}]}},"type":"object","title":"QueryRevisionData"},"QueryRevisionEdit":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"QueryRevisionEdit"},"QueryRevisionEditRequest":{"properties":{"query_revision":{"$ref":"#/components/schemas/QueryRevisionEdit"}},"type":"object","required":["query_revision"],"title":"QueryRevisionEditRequest"},"QueryRevisionQuery":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"author":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Author"},"authors":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Authors"},"date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Date"},"dates":{"anyOf":[{"items":{"type":"string","format":"date-time"},"type":"array"},{"type":"null"}],"title":"Dates"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"QueryRevisionQuery"},"QueryRevisionQueryRequest":{"properties":{"query_revision":{"anyOf":[{"$ref":"#/components/schemas/QueryRevisionQuery"},{"type":"null"}]},"query_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Query Refs"},"query_variant_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Query Variant Refs"},"query_revision_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Query Revision Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"QueryRevisionQueryRequest"},"QueryRevisionResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"query_revision":{"anyOf":[{"$ref":"#/components/schemas/QueryRevision"},{"type":"null"}]}},"type":"object","title":"QueryRevisionResponse"},"QueryRevisionRetrieveRequest":{"properties":{"query_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"query_variant_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"query_revision_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]}},"type":"object","title":"QueryRevisionRetrieveRequest"},"QueryRevisionsLog":{"properties":{"query_revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Revision Id"},"revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Revision Id"},"query_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"query_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Query Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"depth":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Depth"}},"type":"object","title":"QueryRevisionsLog"},"QueryRevisionsLogRequest":{"properties":{"query_revisions":{"$ref":"#/components/schemas/QueryRevisionsLog"}},"type":"object","required":["query_revisions"],"title":"QueryRevisionsLogRequest"},"QueryRevisionsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"query_revisions":{"items":{"$ref":"#/components/schemas/QueryRevision"},"type":"array","title":"Query Revisions","default":[]}},"type":"object","title":"QueryRevisionsResponse"},"ReadAppOutput":{"properties":{"app_id":{"type":"string","title":"App Id"},"app_name":{"type":"string","title":"App Name"}},"type":"object","required":["app_id","app_name"],"title":"ReadAppOutput"},"ReferenceDTO":{"properties":{"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"version":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Version"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","required":["id"],"title":"ReferenceDTO"},"ReferenceRequest":{"properties":{"application_ref":{"$ref":"#/components/schemas/ReferenceDTO"}},"type":"object","required":["application_ref"],"title":"ReferenceRequest"},"ReferenceRequestModel":{"properties":{"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"version":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Version"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"ReferenceRequestModel"},"ResendInviteRequest":{"properties":{"email":{"type":"string","title":"Email"}},"type":"object","required":["email"],"title":"ResendInviteRequest"},"Result":{"properties":{"type":{"type":"string","title":"Type"},"value":{"anyOf":[{},{"type":"null"}],"title":"Value"},"error":{"anyOf":[{"$ref":"#/components/schemas/Error"},{"type":"null"}]}},"type":"object","required":["type"],"title":"Result"},"RevisionFork":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Data"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"RevisionFork"},"RootDTO":{"properties":{"id":{"type":"string","format":"uuid","title":"Id"}},"type":"object","required":["id"],"title":"RootDTO"},"ScopesResponseModel":{"properties":{"projects":{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/ProjectScope"},"type":"object"},"type":"object","title":"Projects","default":{}}},"type":"object","title":"ScopesResponseModel"},"SecretDTO":{"properties":{"kind":{"$ref":"#/components/schemas/SecretKind"},"data":{"anyOf":[{"$ref":"#/components/schemas/StandardProviderDTO"},{"$ref":"#/components/schemas/CustomProviderDTO"}],"title":"Data"}},"type":"object","required":["kind","data"],"title":"SecretDTO"},"SecretKind":{"type":"string","enum":["provider_key","custom_provider"],"title":"SecretKind"},"SecretResponseDTO":{"properties":{"kind":{"$ref":"#/components/schemas/SecretKind"},"data":{"anyOf":[{"$ref":"#/components/schemas/StandardProviderDTO"},{"$ref":"#/components/schemas/CustomProviderDTO"}],"title":"Data"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"header":{"$ref":"#/components/schemas/Header"},"lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]}},"type":"object","required":["kind","data","header"],"title":"SecretResponseDTO"},"SimpleEvaluation":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"data":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluationData"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluation"},"SimpleEvaluationCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"version":{"type":"string","title":"Version","default":"2025.07.14"},"data":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluationData"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluationCreate"},"SimpleEvaluationCreateRequest":{"properties":{"evaluation":{"$ref":"#/components/schemas/SimpleEvaluationCreate"}},"type":"object","required":["evaluation"],"title":"SimpleEvaluationCreateRequest"},"SimpleEvaluationData":{"properties":{"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}]},"query_steps":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"additionalProperties":{"type":"string","enum":["custom","human","auto"]},"propertyNames":{"format":"uuid"},"type":"object"},{"type":"null"}],"title":"Query Steps"},"testset_steps":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"additionalProperties":{"type":"string","enum":["custom","human","auto"]},"propertyNames":{"format":"uuid"},"type":"object"},{"type":"null"}],"title":"Testset Steps"},"application_steps":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"additionalProperties":{"type":"string","enum":["custom","human","auto"]},"propertyNames":{"format":"uuid"},"type":"object"},{"type":"null"}],"title":"Application Steps"},"evaluator_steps":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"additionalProperties":{"type":"string","enum":["custom","human","auto"]},"propertyNames":{"format":"uuid"},"type":"object"},{"type":"null"}],"title":"Evaluator Steps"},"repeats":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Repeats"}},"type":"object","title":"SimpleEvaluationData"},"SimpleEvaluationEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"data":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluationData"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluationEdit"},"SimpleEvaluationEditRequest":{"properties":{"evaluation":{"$ref":"#/components/schemas/SimpleEvaluationEdit"}},"type":"object","required":["evaluation"],"title":"SimpleEvaluationEditRequest"},"SimpleEvaluationIdResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluation_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Evaluation Id"}},"type":"object","title":"SimpleEvaluationIdResponse"},"SimpleEvaluationOutput":{"properties":{"id":{"type":"string","title":"Id"},"variant_ids":{"items":{"type":"string"},"type":"array","title":"Variant Ids"},"app_id":{"type":"string","title":"App Id"},"status":{"type":"string","title":"Status"},"evaluation_type":{"$ref":"#/components/schemas/EvaluationType"}},"type":"object","required":["id","variant_ids","app_id","status","evaluation_type"],"title":"SimpleEvaluationOutput"},"SimpleEvaluationQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/EvaluationRunFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Ids"}},"type":"object","title":"SimpleEvaluationQuery"},"SimpleEvaluationQueryRequest":{"properties":{"evaluation":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluationQuery"},{"type":"null"}]},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluationQueryRequest"},"SimpleEvaluationResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluation":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluation"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluationResponse"},"SimpleEvaluationsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluations":{"items":{"$ref":"#/components/schemas/SimpleEvaluation"},"type":"array","title":"Evaluations","default":[]}},"type":"object","title":"SimpleEvaluationsResponse"},"SimpleEvaluator":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluatorData-Output"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluator"},"SimpleEvaluatorCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluatorData-Input"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluatorCreate"},"SimpleEvaluatorCreateRequest":{"properties":{"evaluator":{"$ref":"#/components/schemas/SimpleEvaluatorCreate"}},"type":"object","required":["evaluator"],"title":"SimpleEvaluatorCreateRequest"},"SimpleEvaluatorData-Input":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"SimpleEvaluatorData"},"SimpleEvaluatorData-Output":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"SimpleEvaluatorData"},"SimpleEvaluatorEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluatorData-Input"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluatorEdit"},"SimpleEvaluatorEditRequest":{"properties":{"evaluator":{"$ref":"#/components/schemas/SimpleEvaluatorEdit"}},"type":"object","required":["evaluator"],"title":"SimpleEvaluatorEditRequest"},"SimpleEvaluatorFlags":{"properties":{"is_custom":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Custom"},"is_evaluator":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Evaluator"},"is_human":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Human"}},"type":"object","title":"SimpleEvaluatorFlags"},"SimpleEvaluatorQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluatorFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"}},"type":"object","title":"SimpleEvaluatorQuery"},"SimpleEvaluatorQueryRequest":{"properties":{"evaluator":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluatorQuery"},{"type":"null"}]},"evaluator_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Evaluator Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived","default":false},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluatorQueryRequest"},"SimpleEvaluatorResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluator":{"anyOf":[{"$ref":"#/components/schemas/SimpleEvaluator"},{"type":"null"}]}},"type":"object","title":"SimpleEvaluatorResponse"},"SimpleEvaluatorsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"evaluators":{"items":{"$ref":"#/components/schemas/SimpleEvaluator"},"type":"array","title":"Evaluators","default":[]}},"type":"object","title":"SimpleEvaluatorsResponse"},"SimpleQueriesResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"queries":{"items":{"$ref":"#/components/schemas/SimpleQuery"},"type":"array","title":"Queries","default":[]}},"type":"object","title":"SimpleQueriesResponse"},"SimpleQuery":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"anyOf":[{"$ref":"#/components/schemas/QueryRevisionData-Output"},{"type":"null"}]}},"type":"object","title":"SimpleQuery"},"SimpleQueryCreate":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"anyOf":[{"$ref":"#/components/schemas/QueryRevisionData-Input"},{"type":"null"}]}},"type":"object","title":"SimpleQueryCreate"},"SimpleQueryCreateRequest":{"properties":{"query":{"$ref":"#/components/schemas/SimpleQueryCreate"}},"type":"object","required":["query"],"title":"SimpleQueryCreateRequest"},"SimpleQueryEdit":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"anyOf":[{"$ref":"#/components/schemas/QueryRevisionData-Input"},{"type":"null"}]}},"type":"object","title":"SimpleQueryEdit"},"SimpleQueryEditRequest":{"properties":{"query":{"$ref":"#/components/schemas/SimpleQueryEdit"}},"type":"object","required":["query"],"title":"SimpleQueryEditRequest"},"SimpleQueryQuery":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"}},"type":"object","title":"SimpleQueryQuery"},"SimpleQueryQueryRequest":{"properties":{"query":{"anyOf":[{"$ref":"#/components/schemas/SimpleQueryQuery"},{"type":"null"}]},"query_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Query Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived","default":false},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"SimpleQueryQueryRequest"},"SimpleQueryResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"query":{"anyOf":[{"$ref":"#/components/schemas/SimpleQuery"},{"type":"null"}]}},"type":"object","title":"SimpleQueryResponse"},"SimpleTestset":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/TestsetRevisionData-Output"},{"type":"null"}]}},"type":"object","title":"SimpleTestset"},"SimpleTestsetCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/TestsetRevisionData-Input"},{"type":"null"}]}},"type":"object","title":"SimpleTestsetCreate"},"SimpleTestsetCreateRequest":{"properties":{"testset":{"$ref":"#/components/schemas/SimpleTestsetCreate"}},"type":"object","required":["testset"],"title":"SimpleTestsetCreateRequest"},"SimpleTestsetEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/TestsetRevisionData-Input"},{"type":"null"}]}},"type":"object","title":"SimpleTestsetEdit"},"SimpleTestsetEditRequest":{"properties":{"testset":{"$ref":"#/components/schemas/SimpleTestsetEdit"}},"type":"object","required":["testset"],"title":"SimpleTestsetEditRequest"},"SimpleTestsetQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"}},"type":"object","title":"SimpleTestsetQuery"},"SimpleTestsetQueryRequest":{"properties":{"testset":{"anyOf":[{"$ref":"#/components/schemas/SimpleTestsetQuery"},{"type":"null"}]},"testset_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Testset Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"SimpleTestsetQueryRequest"},"SimpleTestsetResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testset":{"anyOf":[{"$ref":"#/components/schemas/SimpleTestset"},{"type":"null"}]}},"type":"object","title":"SimpleTestsetResponse"},"SimpleTestsetsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testsets":{"items":{"$ref":"#/components/schemas/SimpleTestset"},"type":"array","title":"Testsets","default":[]}},"type":"object","title":"SimpleTestsetsResponse"},"SimpleTraceChannel":{"type":"string","enum":["otlp","web","sdk","api"],"title":"SimpleTraceChannel"},"SimpleTraceKind":{"type":"string","enum":["adhoc","eval","play"],"title":"SimpleTraceKind"},"SimpleTraceOrigin":{"type":"string","enum":["custom","human","auto"],"title":"SimpleTraceOrigin"},"SimpleTraceReferences":{"properties":{"query":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"query_variant":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"query_revision":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"testset":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"testset_variant":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"testset_revision":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"application":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"application_variant":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"application_revision":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"evaluator":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"evaluator_variant":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"evaluator_revision":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"testcase":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]}},"type":"object","title":"SimpleTraceReferences"},"SpanDTO-Input":{"properties":{"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"},"lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"root":{"$ref":"#/components/schemas/RootDTO"},"tree":{"$ref":"#/components/schemas/TreeDTO"},"node":{"$ref":"#/components/schemas/NodeDTO"},"parent":{"anyOf":[{"$ref":"#/components/schemas/ParentDTO"},{"type":"null"}]},"time":{"$ref":"#/components/schemas/TimeDTO"},"status":{"$ref":"#/components/schemas/StatusDTO"},"exception":{"anyOf":[{"$ref":"#/components/schemas/ExceptionDTO"},{"type":"null"}]},"data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Data"},"metrics":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Metrics"},"meta":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Meta"},"refs":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Refs"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/LinkDTO"},"type":"array"},{"type":"null"}],"title":"Links"},"otel":{"anyOf":[{"$ref":"#/components/schemas/OTelExtraDTO-Input"},{"type":"null"}]},"nodes":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/SpanDTO-Input"},{"items":{"$ref":"#/components/schemas/SpanDTO-Input"},"type":"array"}]},"type":"object"},{"type":"null"}],"title":"Nodes"}},"type":"object","required":["trace_id","span_id","root","tree","node","time","status"],"title":"SpanDTO"},"SpanDTO-Output":{"properties":{"trace_id":{"type":"string","title":"Trace Id"},"span_id":{"type":"string","title":"Span Id"},"lifecycle":{"anyOf":[{"$ref":"#/components/schemas/LegacyLifecycleDTO"},{"type":"null"}]},"root":{"$ref":"#/components/schemas/RootDTO"},"tree":{"$ref":"#/components/schemas/TreeDTO"},"node":{"$ref":"#/components/schemas/NodeDTO"},"parent":{"anyOf":[{"$ref":"#/components/schemas/ParentDTO"},{"type":"null"}]},"time":{"$ref":"#/components/schemas/TimeDTO"},"status":{"$ref":"#/components/schemas/StatusDTO"},"exception":{"anyOf":[{"$ref":"#/components/schemas/ExceptionDTO"},{"type":"null"}]},"data":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Data"},"metrics":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Metrics"},"meta":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Meta"},"refs":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Refs"},"links":{"anyOf":[{"items":{"$ref":"#/components/schemas/LinkDTO"},"type":"array"},{"type":"null"}],"title":"Links"},"otel":{"anyOf":[{"$ref":"#/components/schemas/OTelExtraDTO-Output"},{"type":"null"}]},"nodes":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/SpanDTO-Output"},{"items":{"$ref":"#/components/schemas/SpanDTO-Output"},"type":"array"}]},"type":"object"},{"type":"null"}],"title":"Nodes"}},"type":"object","required":["trace_id","span_id","root","tree","node","time","status"],"title":"SpanDTO"},"SpanType":{"type":"string","enum":["agent","chain","workflow","task","tool","embedding","query","llm","completion","chat","rerank","unknown"],"title":"SpanType"},"StandardProviderDTO":{"properties":{"kind":{"$ref":"#/components/schemas/StandardProviderKind"},"provider":{"$ref":"#/components/schemas/StandardProviderSettingsDTO"}},"type":"object","required":["kind","provider"],"title":"StandardProviderDTO"},"StandardProviderKind":{"type":"string","enum":["openai","cohere","anyscale","deepinfra","alephalpha","groq","mistralai","anthropic","perplexityai","together_ai","openrouter","gemini"],"title":"StandardProviderKind"},"StandardProviderSettingsDTO":{"properties":{"key":{"type":"string","title":"Key"}},"type":"object","required":["key"],"title":"StandardProviderSettingsDTO"},"Status":{"properties":{"code":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Code","default":500},"type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Type"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message","default":"An unexpected error occurred. Please try again later."},"stacktrace":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Stacktrace"}},"type":"object","title":"Status"},"StatusCode":{"type":"string","enum":["UNSET","OK","ERROR"],"title":"StatusCode"},"StatusDTO":{"properties":{"code":{"$ref":"#/components/schemas/StatusCode"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","required":["code"],"title":"StatusDTO"},"StringOperator":{"type":"string","enum":["startswith","endswith","contains","matches","like"],"title":"StringOperator"},"TestSetOutputResponse":{"properties":{"_id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"created_at":{"type":"string","title":"Created At"},"updated_at":{"type":"string","title":"Updated At"}},"type":"object","required":["_id","name","created_at","updated_at"],"title":"TestSetOutputResponse"},"TestSetSimpleResponse":{"properties":{"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"created_at":{"type":"string","title":"Created At"}},"type":"object","required":["id","name","created_at"],"title":"TestSetSimpleResponse"},"Testcase-Input":{"properties":{"testset_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"},"set_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Set Id"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Data"}},"type":"object","title":"Testcase"},"Testcase-Output":{"properties":{"testset_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"},"set_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Set Id"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"data":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Data"}},"type":"object","title":"Testcase"},"TestcaseResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testcase":{"anyOf":[{"$ref":"#/components/schemas/Testcase-Output"},{"type":"null"}]}},"type":"object","title":"TestcaseResponse"},"TestcasesQueryRequest":{"properties":{"testcase_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Testcase Ids"},"testset_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"TestcasesQueryRequest"},"TestcasesResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testcases":{"items":{"$ref":"#/components/schemas/Testcase-Output"},"type":"array","title":"Testcases","default":[]}},"type":"object","title":"TestcasesResponse"},"Testset":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"Testset"},"TestsetCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"TestsetCreate"},"TestsetCreateRequest":{"properties":{"testset":{"$ref":"#/components/schemas/TestsetCreate"}},"type":"object","required":["testset"],"title":"TestsetCreateRequest"},"TestsetEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"TestsetEdit"},"TestsetEditRequest":{"properties":{"testset":{"$ref":"#/components/schemas/TestsetEdit"}},"type":"object","required":["testset"],"title":"TestsetEditRequest"},"TestsetFlags":{"properties":{"has_testcases":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Testcases"},"has_traces":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Has Traces"}},"type":"object","title":"TestsetFlags"},"TestsetLog":{"properties":{"testset_revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Revision Id"},"revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Revision Id"},"testset_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"depth":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Depth"}},"type":"object","title":"TestsetLog"},"TestsetLogRequest":{"properties":{"testset":{"$ref":"#/components/schemas/TestsetLog"}},"type":"object","required":["testset"],"title":"TestsetLogRequest"},"TestsetQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},"type":"object","title":"TestsetQuery"},"TestsetQueryRequest":{"properties":{"testset":{"anyOf":[{"$ref":"#/components/schemas/TestsetQuery"},{"type":"null"}]},"testset_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Testset Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"TestsetQueryRequest"},"TestsetResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testset":{"anyOf":[{"$ref":"#/components/schemas/Testset"},{"type":"null"}]}},"type":"object","title":"TestsetResponse"},"TestsetRevision":{"properties":{"testset_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"testset_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"author":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Author"},"date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Date"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/TestsetRevisionData-Output"},{"type":"null"}]}},"type":"object","title":"TestsetRevision"},"TestsetRevisionCommit":{"properties":{"testset_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"testset_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/TestsetRevisionData-Input"},{"type":"null"}]},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"TestsetRevisionCommit"},"TestsetRevisionCommitRequest":{"properties":{"testset_revision_commit":{"$ref":"#/components/schemas/TestsetRevisionCommit"}},"type":"object","required":["testset_revision_commit"],"title":"TestsetRevisionCommitRequest"},"TestsetRevisionCreate":{"properties":{"testset_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"testset_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"TestsetRevisionCreate"},"TestsetRevisionCreateRequest":{"properties":{"testset_revision":{"$ref":"#/components/schemas/TestsetRevisionCreate"}},"type":"object","required":["testset_revision"],"title":"TestsetRevisionCreateRequest"},"TestsetRevisionData-Input":{"properties":{"testcase_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Testcase Ids"},"testcases":{"anyOf":[{"items":{"$ref":"#/components/schemas/Testcase-Input"},"type":"array"},{"type":"null"}],"title":"Testcases"}},"type":"object","title":"TestsetRevisionData"},"TestsetRevisionData-Output":{"properties":{"testcase_ids":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Testcase Ids"},"testcases":{"anyOf":[{"items":{"$ref":"#/components/schemas/Testcase-Output"},"type":"array"},{"type":"null"}],"title":"Testcases"}},"type":"object","title":"TestsetRevisionData"},"TestsetRevisionEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"TestsetRevisionEdit"},"TestsetRevisionEditRequest":{"properties":{"testset_revision":{"$ref":"#/components/schemas/TestsetRevisionEdit"}},"type":"object","required":["testset_revision"],"title":"TestsetRevisionEditRequest"},"TestsetRevisionQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"author":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Author"},"authors":{"anyOf":[{"items":{"type":"string","format":"uuid"},"type":"array"},{"type":"null"}],"title":"Authors"},"date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Date"},"dates":{"anyOf":[{"items":{"type":"string","format":"date-time"},"type":"array"},{"type":"null"}],"title":"Dates"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"TestsetRevisionQuery"},"TestsetRevisionQueryRequest":{"properties":{"testset_revision":{"anyOf":[{"$ref":"#/components/schemas/TestsetRevisionQuery"},{"type":"null"}]},"testset_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Testset Refs"},"testset_variant_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Testset Variant Refs"},"testset_revision_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Testset Revision Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"TestsetRevisionQueryRequest"},"TestsetRevisionResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testset_revision":{"anyOf":[{"$ref":"#/components/schemas/TestsetRevision"},{"type":"null"}]}},"type":"object","title":"TestsetRevisionResponse"},"TestsetRevisionRetrieveRequest":{"properties":{"testset_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"testset_variant_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"testset_revision_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]}},"type":"object","title":"TestsetRevisionRetrieveRequest"},"TestsetRevisionsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testset_revisions":{"items":{"$ref":"#/components/schemas/TestsetRevision"},"type":"array","title":"Testset Revisions","default":[]}},"type":"object","title":"TestsetRevisionsResponse"},"TestsetVariant":{"properties":{"testset_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"TestsetVariant"},"TestsetVariantCreate":{"properties":{"testset_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Testset Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"TestsetVariantCreate"},"TestsetVariantCreateRequest":{"properties":{"testset_variant":{"$ref":"#/components/schemas/TestsetVariantCreate"}},"type":"object","required":["testset_variant"],"title":"TestsetVariantCreateRequest"},"TestsetVariantEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"TestsetVariantEdit"},"TestsetVariantEditRequest":{"properties":{"testset_variant":{"$ref":"#/components/schemas/TestsetVariantEdit"}},"type":"object","required":["testset_variant"],"title":"TestsetVariantEditRequest"},"TestsetVariantQuery":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/TestsetFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"}},"type":"object","title":"TestsetVariantQuery"},"TestsetVariantQueryRequest":{"properties":{"testset_variant":{"anyOf":[{"$ref":"#/components/schemas/TestsetVariantQuery"},{"type":"null"}]},"testset_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Testset Refs"},"testset_variant_refs":{"anyOf":[{"items":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"array"},{"type":"null"}],"title":"Testset Variant Refs"},"include_archived":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Include Archived"},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]}},"type":"object","title":"TestsetVariantQueryRequest"},"TestsetVariantResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testset_variant":{"anyOf":[{"$ref":"#/components/schemas/TestsetVariant"},{"type":"null"}]}},"type":"object","title":"TestsetVariantResponse"},"TestsetVariantsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testset_variants":{"items":{"$ref":"#/components/schemas/TestsetVariant"},"type":"array","title":"Testset Variants","default":[]}},"type":"object","title":"TestsetVariantsResponse"},"TestsetsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"testsets":{"items":{"$ref":"#/components/schemas/Testset"},"type":"array","title":"Testsets","default":[]}},"type":"object","title":"TestsetsResponse"},"TextOptions":{"properties":{"case_sensitive":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Case Sensitive","default":false},"exact_match":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Exact Match","default":false}},"type":"object","title":"TextOptions"},"TimeDTO":{"properties":{"start":{"type":"string","format":"date-time","title":"Start"},"end":{"type":"string","format":"date-time","title":"End"}},"type":"object","required":["start","end"],"title":"TimeDTO"},"TraceType":{"type":"string","enum":["invocation","annotation","unknown"],"title":"TraceType"},"TracingQuery":{"properties":{"formatting":{"anyOf":[{"$ref":"#/components/schemas/Formatting"},{"type":"null"}]},"windowing":{"anyOf":[{"$ref":"#/components/schemas/Windowing"},{"type":"null"}]},"filtering":{"anyOf":[{"$ref":"#/components/schemas/Filtering-Output"},{"type":"null"}]}},"type":"object","title":"TracingQuery"},"TreeDTO":{"properties":{"id":{"type":"string","format":"uuid","title":"Id"},"type":{"anyOf":[{"$ref":"#/components/schemas/TreeType"},{"type":"null"}]}},"type":"object","required":["id"],"title":"TreeDTO"},"TreeType":{"type":"string","enum":["invocation","annotation","unknown"],"title":"TreeType"},"UpdateApp":{"properties":{"app_name":{"type":"string","title":"App Name"}},"type":"object","required":["app_name"],"title":"UpdateApp"},"UpdateAppOutput":{"properties":{"app_id":{"type":"string","title":"App Id"},"app_name":{"type":"string","title":"App Name"}},"type":"object","required":["app_id","app_name"],"title":"UpdateAppOutput"},"UpdateEvaluatorConfig":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"evaluator_key":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Evaluator Key"},"settings_values":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Settings Values"}},"type":"object","required":["settings_values"],"title":"UpdateEvaluatorConfig"},"UpdateSecretDTO":{"properties":{"header":{"anyOf":[{"$ref":"#/components/schemas/Header"},{"type":"null"}]},"secret":{"anyOf":[{"$ref":"#/components/schemas/SecretDTO"},{"type":"null"}]}},"type":"object","title":"UpdateSecretDTO"},"UpdateVariantParameterPayload":{"properties":{"parameters":{"additionalProperties":true,"type":"object","title":"Parameters"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"}},"type":"object","required":["parameters"],"title":"UpdateVariantParameterPayload"},"UpdateVariantURLPayload":{"properties":{"url":{"type":"string","title":"Url"},"variant_id":{"type":"string","title":"Variant Id"},"commit_message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Commit Message"}},"type":"object","required":["url","variant_id"],"title":"UpdateVariantURLPayload"},"UpdateWorkspace":{"properties":{"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"}},"type":"object","title":"UpdateWorkspace"},"UserRequest":{"properties":{"name":{"type":"string","title":"Name"},"email":{"type":"string","title":"Email"}},"type":"object","required":["name","email"],"title":"UserRequest"},"UserRole":{"properties":{"email":{"type":"string","title":"Email"},"organization_id":{"type":"string","title":"Organization Id"},"role":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role"}},"type":"object","required":["email","organization_id"],"title":"UserRole"},"ValidationError":{"properties":{"loc":{"items":{"anyOf":[{"type":"string"},{"type":"integer"}]},"type":"array","title":"Location"},"msg":{"type":"string","title":"Message"},"type":{"type":"string","title":"Error Type"}},"type":"object","required":["loc","msg","type"],"title":"ValidationError"},"VariantFork":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"VariantFork"},"Windowing":{"properties":{"newest":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Newest"},"oldest":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Oldest"},"next":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Next"},"limit":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Limit"},"order":{"anyOf":[{"type":"string","enum":["ascending","descending"]},{"type":"null"}],"title":"Order"},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"rate":{"anyOf":[{"type":"number"},{"type":"null"}],"title":"Rate"}},"type":"object","title":"Windowing"},"Workflow":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"Workflow"},"WorkflowCreate":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"WorkflowCreate"},"WorkflowCreateRequest":{"properties":{"workflow":{"$ref":"#/components/schemas/WorkflowCreate"}},"type":"object","required":["workflow"],"title":"WorkflowCreateRequest"},"WorkflowEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"WorkflowEdit"},"WorkflowEditRequest":{"properties":{"workflow":{"$ref":"#/components/schemas/WorkflowEdit"}},"type":"object","required":["workflow"],"title":"WorkflowEditRequest"},"WorkflowFlags":{"properties":{"is_custom":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Custom"},"is_evaluator":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Evaluator"},"is_human":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Human"}},"type":"object","title":"WorkflowFlags"},"WorkflowFork":{"properties":{"workflow_revision":{"anyOf":[{"$ref":"#/components/schemas/WorkflowRevisionFork"},{"type":"null"}]},"revision":{"anyOf":[{"$ref":"#/components/schemas/RevisionFork"},{"type":"null"}]},"workflow_revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Revision Id"},"revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Revision Id"},"workflow_variant":{"anyOf":[{"$ref":"#/components/schemas/WorkflowVariantFork"},{"type":"null"}]},"variant":{"anyOf":[{"$ref":"#/components/schemas/VariantFork"},{"type":"null"}]},"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"depth":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Depth"}},"type":"object","title":"WorkflowFork"},"WorkflowForkRequest":{"properties":{"workflow":{"$ref":"#/components/schemas/WorkflowFork"}},"type":"object","required":["workflow"],"title":"WorkflowForkRequest"},"WorkflowResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"workflow":{"anyOf":[{"$ref":"#/components/schemas/Workflow"},{"type":"null"}]}},"type":"object","title":"WorkflowResponse"},"WorkflowRevision":{"properties":{"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"author":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Author"},"date":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Date"},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"},"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/WorkflowRevisionData-Output"},{"type":"null"}]}},"type":"object","title":"WorkflowRevision"},"WorkflowRevisionCommit":{"properties":{"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/WorkflowRevisionData-Input"},{"type":"null"}]},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"WorkflowRevisionCommit"},"WorkflowRevisionCommitRequest":{"properties":{"workflow_revision":{"$ref":"#/components/schemas/WorkflowRevisionCommit"}},"type":"object","required":["workflow_revision"],"title":"WorkflowRevisionCommitRequest"},"WorkflowRevisionCreate":{"properties":{"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"WorkflowRevisionCreate"},"WorkflowRevisionCreateRequest":{"properties":{"workflow_revision":{"$ref":"#/components/schemas/WorkflowRevisionCreate"}},"type":"object","required":["workflow_revision"],"title":"WorkflowRevisionCreateRequest"},"WorkflowRevisionData-Input":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"WorkflowRevisionData"},"WorkflowRevisionData-Output":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"},"script":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Script"},"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Parameters"},"service":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Service"},"configuration":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Configuration"}},"type":"object","title":"WorkflowRevisionData"},"WorkflowRevisionEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"WorkflowRevisionEdit"},"WorkflowRevisionEditRequest":{"properties":{"workflow_revision":{"$ref":"#/components/schemas/WorkflowRevisionEdit"}},"type":"object","required":["workflow_revision"],"title":"WorkflowRevisionEditRequest"},"WorkflowRevisionFork":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"data":{"anyOf":[{"$ref":"#/components/schemas/WorkflowRevisionData-Input"},{"type":"null"}]},"message":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Message"}},"type":"object","title":"WorkflowRevisionFork"},"WorkflowRevisionResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"workflow_revision":{"anyOf":[{"$ref":"#/components/schemas/WorkflowRevision"},{"type":"null"}]}},"type":"object","title":"WorkflowRevisionResponse"},"WorkflowRevisionRetrieveRequest":{"properties":{"workflow_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"workflow_variant_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]},"workflow_revision_ref":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"null"}]}},"type":"object","title":"WorkflowRevisionRetrieveRequest"},"WorkflowRevisionsLog":{"properties":{"workflow_revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Revision Id"},"revision_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Revision Id"},"workflow_variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Variant Id"},"variant_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Variant Id"},"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"depth":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Depth"}},"type":"object","title":"WorkflowRevisionsLog"},"WorkflowRevisionsLogRequest":{"properties":{"workflow":{"$ref":"#/components/schemas/WorkflowRevisionsLog"}},"type":"object","required":["workflow"],"title":"WorkflowRevisionsLogRequest"},"WorkflowRevisionsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"workflow_revisions":{"items":{"$ref":"#/components/schemas/WorkflowRevision"},"type":"array","title":"Workflow Revisions","default":[]}},"type":"object","title":"WorkflowRevisionsResponse"},"WorkflowServiceData-Input":{"properties":{"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Parameters"},"inputs":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Inputs"},"outputs":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"string"},{"type":"null"}],"title":"Outputs"},"trace_parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Trace Parameters"},"trace_inputs":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Trace Inputs"},"trace_outputs":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"string"},{"type":"null"}],"title":"Trace Outputs"},"trace":{"anyOf":[{"$ref":"#/components/schemas/OTelSpansTree-Input"},{"type":"null"}]},"tree":{"anyOf":[{"$ref":"#/components/schemas/AgentaVersionedTreeDTO-Input"},{"type":"null"}]}},"type":"object","title":"WorkflowServiceData"},"WorkflowServiceData-Output":{"properties":{"parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Parameters"},"inputs":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Inputs"},"outputs":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"string"},{"type":"null"}],"title":"Outputs"},"trace_parameters":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Trace Parameters"},"trace_inputs":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Trace Inputs"},"trace_outputs":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"string"},{"type":"null"}],"title":"Trace Outputs"},"trace":{"anyOf":[{"$ref":"#/components/schemas/OTelSpansTree-Output"},{"type":"null"}]},"tree":{"anyOf":[{"$ref":"#/components/schemas/AgentaVersionedTreeDTO-Output"},{"type":"null"}]}},"type":"object","title":"WorkflowServiceData"},"WorkflowServiceInterface-Input":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"}},"type":"object","title":"WorkflowServiceInterface"},"WorkflowServiceInterface-Output":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"uri":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Uri"},"url":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Url"},"headers":{"anyOf":[{"additionalProperties":{"anyOf":[{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Headers"},"schemas":{"anyOf":[{"additionalProperties":{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},"type":"object"},{"type":"null"}],"title":"Schemas"},"mappings":{"anyOf":[{"additionalProperties":{"type":"string"},"type":"object"},{"type":"null"}],"title":"Mappings"}},"type":"object","title":"WorkflowServiceInterface"},"WorkflowServiceRequest":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"data":{"anyOf":[{"$ref":"#/components/schemas/WorkflowServiceData-Input"},{"type":"null"}]},"references":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/oss__src__core__shared__dtos__Reference"},"type":"object"},{"type":"null"}],"title":"References"},"links":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/Link"},"type":"object"},{"type":"null"}],"title":"Links"},"credentials":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Credentials"},"secrets":{"anyOf":[{"additionalProperties":true,"type":"object"},{"type":"null"}],"title":"Secrets"}},"type":"object","title":"WorkflowServiceRequest"},"WorkflowServiceResponse":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"data":{"anyOf":[{"$ref":"#/components/schemas/WorkflowServiceData-Output"},{"type":"null"}]},"links":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/Link"},"type":"object"},{"type":"null"}],"title":"Links"},"status":{"$ref":"#/components/schemas/Status","default":{"code":500,"message":"An unexpected error occurred. Please try again later."}}},"type":"object","title":"WorkflowServiceResponse"},"WorkflowVariant":{"properties":{"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"WorkflowVariant"},"WorkflowVariantCreate":{"properties":{"workflow_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Workflow Id"},"artifact_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Artifact Id"},"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"WorkflowVariantCreate"},"WorkflowVariantCreateRequest":{"properties":{"workflow_variant":{"$ref":"#/components/schemas/WorkflowVariantCreate"}},"type":"object","required":["workflow_variant"],"title":"WorkflowVariantCreateRequest"},"WorkflowVariantEdit":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"WorkflowVariantEdit"},"WorkflowVariantEditRequest":{"properties":{"workflow_variant":{"$ref":"#/components/schemas/WorkflowVariantEdit"}},"type":"object","required":["workflow_variant"],"title":"WorkflowVariantEditRequest"},"WorkflowVariantFork":{"properties":{"flags":{"anyOf":[{"$ref":"#/components/schemas/WorkflowFlags"},{"type":"null"}]},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Input"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Input"},"type":"object"},{"type":"null"}],"title":"Tags"},"name":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"WorkflowVariantFork"},"WorkflowVariantResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"workflow_variant":{"anyOf":[{"$ref":"#/components/schemas/WorkflowVariant"},{"type":"null"}]}},"type":"object","title":"WorkflowVariantResponse"},"WorkflowVariantsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"workflow_variants":{"items":{"$ref":"#/components/schemas/WorkflowVariant"},"type":"array","title":"Workflow Variants","default":[]}},"type":"object","title":"WorkflowVariantsResponse"},"WorkflowsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"workflows":{"items":{"$ref":"#/components/schemas/Workflow"},"type":"array","title":"Workflows","default":[]}},"type":"object","title":"WorkflowsResponse"},"Workspace":{"properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Id"},"name":{"type":"string","title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Type"}},"type":"object","required":["name","type"],"title":"Workspace"},"WorkspaceMemberResponse":{"properties":{"user":{"additionalProperties":true,"type":"object","title":"User"},"roles":{"items":{"$ref":"#/components/schemas/WorkspacePermission"},"type":"array","title":"Roles"}},"type":"object","required":["user","roles"],"title":"WorkspaceMemberResponse"},"WorkspaceMembershipRequest":{"properties":{"role":{"type":"string","enum":["owner","viewer","editor","evaluator","workspace_admin","deployment_manager"],"title":"Role"},"is_demo":{"type":"boolean","title":"Is Demo"},"user_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"},"workspace_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"}},"type":"object","required":["role","is_demo","user_ref","workspace_ref"],"title":"WorkspaceMembershipRequest"},"WorkspacePermission":{"properties":{"role_name":{"$ref":"#/components/schemas/WorkspaceRole"},"role_description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Role Description"},"permissions":{"anyOf":[{"items":{"$ref":"#/components/schemas/Permission"},"type":"array"},{"type":"null"}],"title":"Permissions"}},"type":"object","required":["role_name"],"title":"WorkspacePermission"},"WorkspaceRequest":{"properties":{"name":{"type":"string","title":"Name"},"description":{"type":"string","title":"Description"},"is_default":{"type":"boolean","title":"Is Default"},"organization_ref":{"$ref":"#/components/schemas/ee__src__services__admin_manager__Reference"}},"type":"object","required":["name","description","is_default","organization_ref"],"title":"WorkspaceRequest"},"WorkspaceResponse":{"properties":{"created_at":{"type":"string","title":"Created At","default":"2025-11-02 12:26:46.318197+00:00"},"updated_at":{"type":"string","title":"Updated At","default":"2025-11-02 12:26:46.318231+00:00"},"id":{"type":"string","title":"Id"},"name":{"type":"string","title":"Name"},"description":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Description"},"type":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Type"},"organization":{"type":"string","title":"Organization"},"members":{"anyOf":[{"items":{"$ref":"#/components/schemas/WorkspaceMemberResponse"},"type":"array"},{"type":"null"}],"title":"Members"}},"type":"object","required":["id","name","type","organization"],"title":"WorkspaceResponse"},"WorkspaceRole":{"type":"string","enum":["owner","viewer","editor","evaluator","workspace_admin","deployment_manager"],"title":"WorkspaceRole"},"ee__src__services__admin_manager__Reference":{"properties":{"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"}},"type":"object","title":"Reference"},"oss__src__apis__fastapi__observability__models__OTelTracingResponse":{"properties":{"count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Count"},"spans":{"items":{"$ref":"#/components/schemas/OTelSpanDTO"},"type":"array","title":"Spans"}},"type":"object","required":["spans"],"title":"OTelTracingDataResponse"},"oss__src__apis__fastapi__observability__models__OldAnalyticsResponse":{"properties":{"count":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Count"},"buckets":{"items":{"$ref":"#/components/schemas/BucketDTO"},"type":"array","title":"Buckets"}},"type":"object","required":["buckets"],"title":"OldAnalyticsResponse"},"oss__src__apis__fastapi__tracing__models__OTelTracingResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"spans":{"anyOf":[{"items":{"$ref":"#/components/schemas/OTelFlatSpan-Output"},"type":"array"},{"type":"null"}],"title":"Spans"},"traces":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/OTelSpansTree-Output"},"type":"object"},{"type":"null"}],"title":"Traces"}},"type":"object","title":"OTelTracingResponse"},"oss__src__apis__fastapi__tracing__models__OldAnalyticsResponse":{"properties":{"count":{"type":"integer","title":"Count","default":0},"buckets":{"items":{"$ref":"#/components/schemas/Bucket"},"type":"array","title":"Buckets","default":[]}},"type":"object","title":"OldAnalyticsResponse"},"oss__src__core__evaluations__types__EvaluationScenario":{"properties":{"flags":{"anyOf":[{"additionalProperties":{"anyOf":[{"type":"boolean"},{"type":"string"}]},"type":"object"},{"type":"null"}],"title":"Flags"},"meta":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/FullJson-Output"},"type":"object"},{"type":"null"}],"title":"Meta"},"tags":{"anyOf":[{"additionalProperties":{"$ref":"#/components/schemas/NoListJson-Output"},"type":"object"},{"type":"null"}],"title":"Tags"},"created_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Created At"},"updated_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Updated At"},"deleted_at":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Deleted At"},"created_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Created By Id"},"updated_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Updated By Id"},"deleted_by_id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Deleted By Id"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"},"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"status":{"anyOf":[{"$ref":"#/components/schemas/EvaluationStatus"},{"type":"null"}],"default":"pending"},"interval":{"anyOf":[{"type":"integer"},{"type":"null"}],"title":"Interval"},"timestamp":{"anyOf":[{"type":"string","format":"date-time"},{"type":"null"}],"title":"Timestamp"},"run_id":{"type":"string","format":"uuid","title":"Run Id"}},"type":"object","required":["run_id"],"title":"EvaluationScenario"},"oss__src__core__observability__dtos__OTelStatusCode":{"type":"string","enum":["STATUS_CODE_OK","STATUS_CODE_ERROR","STATUS_CODE_UNSET"],"title":"OTelStatusCode"},"oss__src__core__shared__dtos__Reference":{"properties":{"version":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Version"},"slug":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Slug"},"id":{"anyOf":[{"type":"string","format":"uuid"},{"type":"null"}],"title":"Id"}},"type":"object","title":"Reference"},"oss__src__core__tracing__dtos__OTelStatusCode":{"type":"string","enum":["STATUS_CODE_UNSET","STATUS_CODE_OK","STATUS_CODE_ERROR"],"title":"OTelStatusCode"},"oss__src__models__api__evaluation_model__EvaluationScenario":{"properties":{"id":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Id"},"evaluation_id":{"type":"string","title":"Evaluation Id"},"inputs":{"items":{"$ref":"#/components/schemas/EvaluationScenarioInput"},"type":"array","title":"Inputs"},"outputs":{"items":{"$ref":"#/components/schemas/EvaluationScenarioOutput"},"type":"array","title":"Outputs"},"correct_answers":{"anyOf":[{"items":{"$ref":"#/components/schemas/CorrectAnswer"},"type":"array"},{"type":"null"}],"title":"Correct Answers"},"is_pinned":{"anyOf":[{"type":"boolean"},{"type":"null"}],"title":"Is Pinned"},"note":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Note"},"results":{"items":{"$ref":"#/components/schemas/EvaluationScenarioResult"},"type":"array","title":"Results"}},"type":"object","required":["evaluation_id","inputs","outputs","results"],"title":"LegacyEvaluationScenario"}},"securitySchemes":{"APIKeyHeader":{"type":"apiKey","name":"Authorization","in":"header"}}},"tags":[{"name":"Variants"},{"name":"Evaluations"},{"name":"Evaluators"},{"name":"Apps"},{"name":"Human-Evaluations"},{"name":"Testsets"},{"name":"Containers"},{"name":"Environments"},{"name":"Observability"},{"name":"Organizations"},{"name":"Bases"},{"name":"Configs"}],"security":[{"APIKeyHeader":[]}],"servers":[{"url":"https://cloud.agenta.ai/api"}]} diff --git a/docs/docs/tutorials/cookbooks/AI-powered-code-reviews.mdx b/docs/docs/tutorials/cookbooks/_AI-powered-code-reviews.mdx similarity index 100% rename from docs/docs/tutorials/cookbooks/AI-powered-code-reviews.mdx rename to docs/docs/tutorials/cookbooks/_AI-powered-code-reviews.mdx diff --git a/docs/docs/tutorials/cookbooks/RAG-QA-docs.mdx b/docs/docs/tutorials/cookbooks/_RAG-QA-docs.mdx similarity index 100% rename from docs/docs/tutorials/cookbooks/RAG-QA-docs.mdx rename to docs/docs/tutorials/cookbooks/_RAG-QA-docs.mdx diff --git a/docs/docs/tutorials/sdk/evaluate-with-SDK.mdx b/docs/docs/tutorials/sdk/_evaluate-with-SDK.mdx similarity index 100% rename from docs/docs/tutorials/sdk/evaluate-with-SDK.mdx rename to docs/docs/tutorials/sdk/_evaluate-with-SDK.mdx diff --git a/docs/docusaurus.config.ts b/docs/docusaurus.config.ts index c748b139ed..f33bea025d 100644 --- a/docs/docusaurus.config.ts +++ b/docs/docusaurus.config.ts @@ -95,38 +95,64 @@ const config: Config = { docId: "getting-started/introduction", position: "left", label: "Docs", + customProps: { + icon: { + name: "fileText", + }, + }, }, { type: "docSidebar", sidebarId: "guidesSidebar", position: "left", label: "Tutorials", + customProps: { + icon: { + name: "bookOpen", + }, + }, }, { type: "docSidebar", sidebarId: "refrenceSidebar", position: "left", label: "Reference", + customProps: { + icon: { + name: "code", + }, + }, }, { to: "/roadmap", position: "left", label: "Roadmap", + customProps: { + icon: { + name: "route", + }, + }, }, { to: "/changelog/main", position: "left", label: "Changelog", + customProps: { + icon: { + name: "clock", + }, + }, }, { - to: "https://agenta.ai/pricing", - position: "left", - label: "Pricing", - }, - { - to: "https://agenta.ai/blog", + type: "docSidebar", + sidebarId: "selfHostSidebar", position: "left", - label: "Blog", + label: "Self-host", + customProps: { + icon: { + name: "server", + }, + }, }, // { @@ -232,6 +258,7 @@ const config: Config = { ], } satisfies Preset.ThemeConfig, algolia: { + askAi: 'I14hRlCxbWzW', appId: "0HZ4ONM2EC", apiKey: "18ab633e81d706cbda7c78d25d0fe763", indexName: "agenta", @@ -390,7 +417,7 @@ const config: Config = { }, { from: "/evaluation/sdk-evaluation", - to: "/tutorials/sdk/evaluate-with-SDK", + to: "/evaluation/concepts", }, { from: "/evaluation/configure-evaluators", @@ -442,36 +469,12 @@ const config: Config = { }, { from: "/evaluation/quick-start-sdk", - to: "/tutorials/sdk/evaluate-with-SDK", + to: "/evaluation/concepts", }, { from: "/evaluation/overview", to: "/evaluation/concepts", }, - { - from: "/evaluation/evaluation-from-sdk/quick-start", - to: "/tutorials/sdk/evaluate-with-SDK", - }, - { - from: "/evaluation/evaluation-from-sdk/setup-configuration", - to: "/tutorials/sdk/evaluate-with-SDK", - }, - { - from: "/evaluation/evaluation-from-sdk/managing-test-sets", - to: "/tutorials/sdk/evaluate-with-SDK", - }, - { - from: "/evaluation/evaluation-from-sdk/configuring-evaluators", - to: "/tutorials/sdk/evaluate-with-SDK", - }, - { - from: "/evaluation/evaluation-from-sdk/running-evaluations", - to: "/tutorials/sdk/evaluate-with-SDK", - }, - { - from: "/evaluation/evaluation-from-sdk/viewing-results", - to: "/tutorials/sdk/evaluate-with-SDK", - }, // Observability restructure redirects { from: "/observability/observability-sdk", diff --git a/docs/package-lock.json b/docs/package-lock.json index a3dcbb469d..91fe047adb 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -9,17 +9,18 @@ "version": "0.0.0", "dependencies": { "@cloudflare/stream-react": "1.9.1", - "@docusaurus/core": "3.4.0", - "@docusaurus/plugin-client-redirects": "^3.4.0", - "@docusaurus/plugin-content-docs": "^3.5.2", - "@docusaurus/plugin-ideal-image": "^3.4.0", - "@docusaurus/preset-classic": "3.4.0", - "@docusaurus/theme-search-algolia": "^3.5.2", + "@docsearch/react": "^4.2.0", + "@docusaurus/core": "^3.9.2", + "@docusaurus/plugin-client-redirects": "^3.9.2", + "@docusaurus/plugin-content-docs": "^3.9.2", + "@docusaurus/plugin-ideal-image": "^3.9.2", + "@docusaurus/preset-classic": "^3.9.2", + "@docusaurus/theme-search-algolia": "^3.9.2", "@mdx-js/react": "^3.0.0", "clsx": "^2.0.0", "docusaurus-plugin-image-zoom": "^2.0.0", - "docusaurus-plugin-openapi-docs": "3.0.1", - "docusaurus-theme-openapi-docs": "3.0.1", + "docusaurus-plugin-openapi-docs": "^4.5.1", + "docusaurus-theme-openapi-docs": "^4.5.1", "dotenv": "^16.4.5", "posthog-docusaurus": "^2.0.1", "prism-react-renderer": "^2.3.0", @@ -27,9 +28,9 @@ "react-dom": "^18.0.0" }, "devDependencies": { - "@docusaurus/module-type-aliases": "^3.5.2", - "@docusaurus/tsconfig": "^3.5.2", - "@docusaurus/types": "^3.5.2", + "@docusaurus/module-type-aliases": "^3.9.2", + "@docusaurus/tsconfig": "^3.9.2", + "@docusaurus/types": "^3.9.2", "tailwindcss": "^3.4.10", "typescript": "^5.5.4" }, @@ -37,45 +38,117 @@ "node": ">=18.0" } }, - "node_modules/@algolia/autocomplete-core": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.17.9.tgz", - "integrity": "sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==", - "license": "MIT", + "node_modules/@ai-sdk/gateway": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@ai-sdk/gateway/-/gateway-2.0.5.tgz", + "integrity": "sha512-5TTDSl0USWY6YGnb4QmJGplFZhk+p9OT7hZevAaER6OGiZ17LB1GypsGYDpNo/MiVMklk8kX4gk6p1/R/EiJ8Q==", + "license": "Apache-2.0", "dependencies": { - "@algolia/autocomplete-plugin-algolia-insights": "1.17.9", - "@algolia/autocomplete-shared": "1.17.9" + "@ai-sdk/provider": "2.0.0", + "@ai-sdk/provider-utils": "3.0.15", + "@vercel/oidc": "3.0.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.25.76 || ^4.1.8" } }, - "node_modules/@algolia/autocomplete-plugin-algolia-insights": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.9.tgz", - "integrity": "sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==", - "license": "MIT", + "node_modules/@ai-sdk/provider": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider/-/provider-2.0.0.tgz", + "integrity": "sha512-6o7Y2SeO9vFKB8lArHXehNuusnpddKPk7xqL7T2/b+OvXMRIXUO1rR4wcv1hAFUAT9avGZshty3Wlua/XA7TvA==", + "license": "Apache-2.0", + "dependencies": { + "json-schema": "^0.4.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@ai-sdk/provider-utils": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.15.tgz", + "integrity": "sha512-kOc6Pxb7CsRlNt+sLZKL7/VGQUd7ccl3/tIK+Bqf5/QhHR0Qm3qRBMz1IwU1RmjJEZA73x+KB5cUckbDl2WF7Q==", + "license": "Apache-2.0", "dependencies": { - "@algolia/autocomplete-shared": "1.17.9" + "@ai-sdk/provider": "2.0.0", + "@standard-schema/spec": "^1.0.0", + "eventsource-parser": "^3.0.6" + }, + "engines": { + "node": ">=18" }, "peerDependencies": { - "search-insights": ">= 1 < 3" + "zod": "^3.25.76 || ^4.1.8" + } + }, + "node_modules/@ai-sdk/react": { + "version": "2.0.86", + "resolved": "https://registry.npmjs.org/@ai-sdk/react/-/react-2.0.86.tgz", + "integrity": "sha512-vqxbbMOKMpYFHZy0aYEO4jtDcKaFCHL/rEtTqAIDlH14GT0uusSjN99gkDHHG3EnbyJSQmk9gqtqbd1GDwlRRg==", + "license": "Apache-2.0", + "dependencies": { + "@ai-sdk/provider-utils": "3.0.15", + "ai": "5.0.86", + "swr": "^2.2.5", + "throttleit": "2.1.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "react": "^18 || ^19 || ^19.0.0-rc", + "zod": "^3.25.76 || ^4.1.8" + }, + "peerDependenciesMeta": { + "zod": { + "optional": true + } + } + }, + "node_modules/@algolia/abtesting": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@algolia/abtesting/-/abtesting-1.8.0.tgz", + "integrity": "sha512-Hb4BkGNnvgCj3F9XzqjiFTpA5IGkjOXwGAOV13qtc27l2qNF8X9rzSp1H5hu8XewlC0DzYtQtZZIOYzRZDyuXg==", + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/autocomplete-core": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.19.2.tgz", + "integrity": "sha512-mKv7RyuAzXvwmq+0XRK8HqZXt9iZ5Kkm2huLjgn5JoCPtDy+oh9yxUMfDDaVCw0oyzZ1isdJBc7l9nuCyyR7Nw==", + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-plugin-algolia-insights": "1.19.2", + "@algolia/autocomplete-shared": "1.19.2" } }, - "node_modules/@algolia/autocomplete-preset-algolia": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.9.tgz", - "integrity": "sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==", + "node_modules/@algolia/autocomplete-plugin-algolia-insights": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.19.2.tgz", + "integrity": "sha512-TjxbcC/r4vwmnZaPwrHtkXNeqvlpdyR+oR9Wi2XyfORkiGkLTVhX2j+O9SaCCINbKoDfc+c2PB8NjfOnz7+oKg==", "license": "MIT", "dependencies": { - "@algolia/autocomplete-shared": "1.17.9" + "@algolia/autocomplete-shared": "1.19.2" }, "peerDependencies": { - "@algolia/client-search": ">= 4.9.1 < 6", - "algoliasearch": ">= 4.9.1 < 6" + "search-insights": ">= 1 < 3" } }, "node_modules/@algolia/autocomplete-shared": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.9.tgz", - "integrity": "sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==", + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@algolia/autocomplete-shared/-/autocomplete-shared-1.19.2.tgz", + "integrity": "sha512-jEazxZTVD2nLrC+wYlVHQgpBoBB5KPStrJxLzsIFl6Kqd1AlG9sIAGl39V5tECLpIQzB3Qa2T6ZPJ1ChkwMK/w==", "license": "MIT", "peerDependencies": { "@algolia/client-search": ">= 4.9.1 < 6", @@ -87,6 +160,7 @@ "resolved": "https://registry.npmjs.org/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.24.0.tgz", "integrity": "sha512-t63W9BnoXVrGy9iYHBgObNXqYXM3tYXCjDSHeNwnsc324r4o5UiVKUiAB4THQ5z9U5hTj6qUvwg/Ez43ZD85ww==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/cache-common": "4.24.0" } @@ -95,27 +169,29 @@ "version": "4.24.0", "resolved": "https://registry.npmjs.org/@algolia/cache-common/-/cache-common-4.24.0.tgz", "integrity": "sha512-emi+v+DmVLpMGhp0V9q9h5CdkURsNmFC+cOS6uK9ndeJm9J4TiqSvPYVu+THUP8P/S08rxf5x2P+p3CfID0Y4g==", - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/@algolia/cache-in-memory": { "version": "4.24.0", "resolved": "https://registry.npmjs.org/@algolia/cache-in-memory/-/cache-in-memory-4.24.0.tgz", "integrity": "sha512-gDrt2so19jW26jY3/MkFg5mEypFIPbPoXsQGQWAi6TrCPsNOSEYepBMPlucqWigsmEy/prp5ug2jy/N3PVG/8w==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/cache-common": "4.24.0" } }, "node_modules/@algolia/client-abtesting": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.24.0.tgz", - "integrity": "sha512-pNTIB5YqVVwu6UogvdX8TqsRZENaflqMMjdY7/XIPMNGrBoNH9tewINLI7+qc9tIaOLcAp3ZldqoEwAihZZ3ig==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-abtesting/-/client-abtesting-5.42.0.tgz", + "integrity": "sha512-JLyyG7bb7XOda+w/sp8ch7rEVy6LnWs3qtxr6VJJ2XIINqGsY6U+0L3aJ6QFliBRNUeEAr2QBDxSm8u9Sal5uA==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" @@ -126,6 +202,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-account/-/client-account-4.24.0.tgz", "integrity": "sha512-adcvyJ3KjPZFDybxlqnf+5KgxJtBjwTPTeyG2aOyoJvx0Y8dUQAEOEVOJ/GBxX0WWNbmaSrhDURMhc+QeevDsA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/client-common": "4.24.0", "@algolia/client-search": "4.24.0", @@ -137,6 +214,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/requester-common": "4.24.0", "@algolia/transporter": "4.24.0" @@ -147,6 +225,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/client-common": "4.24.0", "@algolia/requester-common": "4.24.0", @@ -158,6 +237,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-4.24.0.tgz", "integrity": "sha512-y8jOZt1OjwWU4N2qr8G4AxXAzaa8DBvyHTWlHzX/7Me1LX8OayfgHexqrsL4vSBcoMmVw2XnVW9MhL+Y2ZDJXg==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/client-common": "4.24.0", "@algolia/client-search": "4.24.0", @@ -170,6 +250,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/requester-common": "4.24.0", "@algolia/transporter": "4.24.0" @@ -180,6 +261,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/client-common": "4.24.0", "@algolia/requester-common": "4.24.0", @@ -187,24 +269,24 @@ } }, "node_modules/@algolia/client-common": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.24.0.tgz", - "integrity": "sha512-p8K6tiXQTebRBxbrzWIfGCvfkT+Umml+2lzI92acZjHsvl6KYH6igOfVstKqXJRei9pvRzEEvVDNDLXDVleGTA==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-5.42.0.tgz", + "integrity": "sha512-6iiFbm2tRn6B2OqFv9XDTcw5LdWPudiJWIbRk+fsTX+hkPrPm4e1/SbU+lEYBciPoaTShLkDbRge4UePEyCPMQ==", "license": "MIT", "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/client-insights": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.24.0.tgz", - "integrity": "sha512-jOHF0+tixR3IZJMhZPquFNdCVPzwzzXoiqVsbTvfKojeaY6ZXybgUiTSB8JNX+YpsUT8Ebhu3UvRy4mw2PbEzw==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-insights/-/client-insights-5.42.0.tgz", + "integrity": "sha512-iEokmw2k6FBa8g/TT7ClyEriaP/FUEmz3iczRoCklEHWSgoABMkaeYrxRXrA2yx76AN+gyZoC8FX0iCJ55dsOg==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" @@ -215,6 +297,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-4.24.0.tgz", "integrity": "sha512-l5FRFm/yngztweU0HdUzz1rC4yoWCFo3IF+dVIVTfEPg906eZg5BOd1k0K6rZx5JzyyoP4LdmOikfkfGsKVE9w==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/client-common": "4.24.0", "@algolia/requester-common": "4.24.0", @@ -226,36 +309,37 @@ "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/requester-common": "4.24.0", "@algolia/transporter": "4.24.0" } }, "node_modules/@algolia/client-query-suggestions": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.24.0.tgz", - "integrity": "sha512-F8ypOedSMhz6W7zuT5O1SXXsdXSOVhY2U6GkRbYk/mzrhs3jWFR3uQIfeQVWmsJjUwIGZmPoAr9E+T/Zm2M4wA==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-query-suggestions/-/client-query-suggestions-5.42.0.tgz", + "integrity": "sha512-9+BIw6rerUfA+eLMIS2lF4mgoeBGTCIHiqb35PLn3699Rm3CaJXz03hChdwAWcA6SwGw0haYXYJa7LF0xI6EpA==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/client-search": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.24.0.tgz", - "integrity": "sha512-k+nuciQuq7WERNNE+hsx3DX636zIy+9R4xdtvW3PANT2a2BDGOv3fv2mta8+QUMcVTVcGe/Mo3QCb4pc1HNoxA==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-5.42.0.tgz", + "integrity": "sha512-NZR7yyHj2WzK6D5X8gn+/KOxPdzYEXOqVdSaK/biU8QfYUpUuEA0sCWg/XlO05tPVEcJelF/oLrrNY3UjRbOww==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" @@ -268,15 +352,15 @@ "license": "MIT" }, "node_modules/@algolia/ingestion": { - "version": "1.24.0", - "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.24.0.tgz", - "integrity": "sha512-/lqVxmrvwoA+OyVK4XLMdz/PJaCTW4qYchX1AZ+98fdnH3K6XM/kMydQLfP0bUNGBQbmVrF88MqhqZRnZEn/MA==", + "version": "1.42.0", + "resolved": "https://registry.npmjs.org/@algolia/ingestion/-/ingestion-1.42.0.tgz", + "integrity": "sha512-MBkjRymf4BT6VOvMpJlg6kq8K+PkH9q+N+K4YMNdzTXlL40YwOa1wIWQ5LxP/Jhlz64kW5g9/oaMWY06Sy9dcw==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" @@ -286,27 +370,29 @@ "version": "4.24.0", "resolved": "https://registry.npmjs.org/@algolia/logger-common/-/logger-common-4.24.0.tgz", "integrity": "sha512-LLUNjkahj9KtKYrQhFKCzMx0BY3RnNP4FEtO+sBybCjJ73E8jNdaKJ/Dd8A/VA4imVHP5tADZ8pn5B8Ga/wTMA==", - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/@algolia/logger-console": { "version": "4.24.0", "resolved": "https://registry.npmjs.org/@algolia/logger-console/-/logger-console-4.24.0.tgz", "integrity": "sha512-X4C8IoHgHfiUROfoRCV+lzSy+LHMgkoEEU1BbKcsfnV0i0S20zyy0NLww9dwVHUWNfPPxdMU+/wKmLGYf96yTg==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/logger-common": "4.24.0" } }, "node_modules/@algolia/monitoring": { - "version": "1.24.0", - "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.24.0.tgz", - "integrity": "sha512-cRisDXQJhvfZCXL4hD22qca2CmW52TniOx6L7pvkaBDx0oQk1k9o+3w11fgfcCG+47OndMeNx5CMpu+K+COMzg==", + "version": "1.42.0", + "resolved": "https://registry.npmjs.org/@algolia/monitoring/-/monitoring-1.42.0.tgz", + "integrity": "sha512-kmLs7YfjT4cpr4FnhhRmnoSX4psh9KYZ9NAiWt/YcUV33m0B/Os5L4QId30zVXkOqAPAEpV5VbDPWep+/aoJdQ==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" @@ -317,6 +403,7 @@ "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-4.24.0.tgz", "integrity": "sha512-P9kcgerfVBpfYHDfVZDvvdJv0lEoCvzNlOy2nykyt5bK8TyieYyiD0lguIJdRZZYGre03WIAFf14pgE+V+IBlw==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/cache-browser-local-storage": "4.24.0", "@algolia/cache-common": "4.24.0", @@ -336,6 +423,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/requester-common": "4.24.0", "@algolia/transporter": "4.24.0" @@ -346,6 +434,7 @@ "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/client-common": "4.24.0", "@algolia/requester-common": "4.24.0", @@ -357,6 +446,7 @@ "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.24.0.tgz", "integrity": "sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/requester-common": "4.24.0" } @@ -366,17 +456,18 @@ "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.24.0.tgz", "integrity": "sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/requester-common": "4.24.0" } }, "node_modules/@algolia/requester-browser-xhr": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.24.0.tgz", - "integrity": "sha512-B2Gc+iSxct1WSza5CF6AgfNgmLvVb61d5bqmIWUZixtJIhyAC6lSQZuF+nvt+lmKhQwuY2gYjGGClil8onQvKQ==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.42.0.tgz", + "integrity": "sha512-EbuxgteaYBlKgc2Fs3JzoPIKAIaevAIwmv1F+fakaEXeibG4pkmVNsyTUjpOZIgJ1kXeqNvDrcjRb6g3vYBJ9A==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0" + "@algolia/client-common": "5.42.0" }, "engines": { "node": ">= 14.0.0" @@ -386,27 +477,28 @@ "version": "4.24.0", "resolved": "https://registry.npmjs.org/@algolia/requester-common/-/requester-common-4.24.0.tgz", "integrity": "sha512-k3CXJ2OVnvgE3HMwcojpvY6d9kgKMPRxs/kVohrwF5WMr2fnqojnycZkxPoEg+bXm8fi5BBfFmOqgYztRtHsQA==", - "license": "MIT" + "license": "MIT", + "peer": true }, "node_modules/@algolia/requester-fetch": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.24.0.tgz", - "integrity": "sha512-6E5+hliqGc5w8ZbyTAQ+C3IGLZ/GiX623Jl2bgHA974RPyFWzVSj4rKqkboUAxQmrFY7Z02ybJWVZS5OhPQocA==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-fetch/-/requester-fetch-5.42.0.tgz", + "integrity": "sha512-4vnFvY5Q8QZL9eDNkywFLsk/eQCRBXCBpE8HWs8iUsFNHYoamiOxAeYMin0W/nszQj6abc+jNxMChHmejO+ftQ==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0" + "@algolia/client-common": "5.42.0" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@algolia/requester-node-http": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.24.0.tgz", - "integrity": "sha512-zM+nnqZpiQj20PyAh6uvgdSz+hD7Rj7UfAZwizqNP+bLvcbGXZwABERobuilkCQqyDBBH4uv0yqIcPRl8dSBEg==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-5.42.0.tgz", + "integrity": "sha512-gkLNpU+b1pCIwk1hKTJz2NWQPT8gsfGhQasnZ5QVv4jd79fKRL/1ikd86P0AzuIQs9tbbhlMwxsSTyJmlq502w==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0" + "@algolia/client-common": "5.42.0" }, "engines": { "node": ">= 14.0.0" @@ -417,6 +509,7 @@ "resolved": "https://registry.npmjs.org/@algolia/transporter/-/transporter-4.24.0.tgz", "integrity": "sha512-86nI7w6NzWxd1Zp9q3413dRshDqAzSbsQjhcDhPIatEFiZrL1/TjnHL8S7jVKFePlIMzDsZWXAXwXzcok9c5oA==", "license": "MIT", + "peer": true, "dependencies": { "@algolia/cache-common": "4.24.0", "@algolia/logger-common": "4.24.0", @@ -2161,9 +2254,9 @@ } }, "node_modules/@csstools/cascade-layer-name-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.4.tgz", - "integrity": "sha512-7DFHlPuIxviKYZrOiwVU/PiHLm3lLUR23OMuEEtfEOQTOp9hzQ2JjdY6X5H18RVuUPJqSCI+qNnD5iOLMVE0bA==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-2.0.5.tgz", + "integrity": "sha512-p1ko5eHgV+MgXFVa4STPKpvPxr6ReS8oS2jzTukjR74i5zJNyWO1ZM1m8YKBXnzDKWfBN1ztLYlHxbVemDD88A==", "funding": [ { "type": "github", @@ -2179,14 +2272,14 @@ "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" } }, "node_modules/@csstools/color-helpers": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.2.tgz", - "integrity": "sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz", + "integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==", "funding": [ { "type": "github", @@ -2203,9 +2296,9 @@ } }, "node_modules/@csstools/css-calc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.3.tgz", - "integrity": "sha512-XBG3talrhid44BY1x3MHzUx/aTG8+x/Zi57M4aTKK9RFB4aLlF3TTSzfzn8nWVHWL3FgAXAxmupmDd6VWww+pw==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz", + "integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==", "funding": [ { "type": "github", @@ -2221,14 +2314,14 @@ "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" } }, "node_modules/@csstools/css-color-parser": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.9.tgz", - "integrity": "sha512-wILs5Zk7BU86UArYBJTPy/FMPPKVKHMj1ycCEyf3VUptol0JNRLFU/BZsJ4aiIHJEbSLiizzRrw8Pc1uAEDrXw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz", + "integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==", "funding": [ { "type": "github", @@ -2241,21 +2334,21 @@ ], "license": "MIT", "dependencies": { - "@csstools/color-helpers": "^5.0.2", - "@csstools/css-calc": "^2.1.3" + "@csstools/color-helpers": "^5.1.0", + "@csstools/css-calc": "^2.1.4" }, "engines": { "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" } }, "node_modules/@csstools/css-parser-algorithms": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz", - "integrity": "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz", + "integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==", "funding": [ { "type": "github", @@ -2271,13 +2364,13 @@ "node": ">=18" }, "peerDependencies": { - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-tokenizer": "^3.0.4" } }, "node_modules/@csstools/css-tokenizer": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz", - "integrity": "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz", + "integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==", "funding": [ { "type": "github", @@ -2294,9 +2387,9 @@ } }, "node_modules/@csstools/media-query-list-parser": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.2.tgz", - "integrity": "sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-4.0.3.tgz", + "integrity": "sha512-HAYH7d3TLRHDOUQK4mZKf9k9Ph/m8Akstg66ywKR4SFAigjs3yBiUeZtFxywiTm5moZMAp/5W/ZuFnNXXYLuuQ==", "funding": [ { "type": "github", @@ -2312,14 +2405,43 @@ "node": ">=18" }, "peerDependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" + } + }, + "node_modules/@csstools/postcss-alpha-function": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-alpha-function/-/postcss-alpha-function-1.0.1.tgz", + "integrity": "sha512-isfLLwksH3yHkFXfCI2Gcaqg7wGGHZZwunoJzEZk0yKYIokgre6hYVFibKL3SYAoR1kBXova8LB+JoO5vZzi9w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, "node_modules/@csstools/postcss-cascade-layers": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.1.tgz", - "integrity": "sha512-XOfhI7GShVcKiKwmPAnWSqd2tBR0uxt+runAxttbSp/LY2U16yAVPmAf7e9q4JJ0d+xMNmpwNDLBXnmRCl3HMQ==", + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-5.0.2.tgz", + "integrity": "sha512-nWBE08nhO8uWl6kSAeCx4im7QfVko3zLrtgWZY4/bP87zrSPpSyN/3W3TDqz1jJuH+kbKOHXg5rJnK+ZVYcFFg==", "funding": [ { "type": "github", @@ -2378,9 +2500,38 @@ } }, "node_modules/@csstools/postcss-color-function": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.9.tgz", - "integrity": "sha512-2UeQCGMO5+EeQsPQK2DqXp0dad+P6nIz6G2dI06APpBuYBKxZEq7CTH+UiztFQ8cB1f89dnO9+D/Kfr+JfI2hw==", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-4.0.12.tgz", + "integrity": "sha512-yx3cljQKRaSBc2hfh8rMZFZzChaFgwmO2JfFgFr1vMcF3C/uyy5I4RFIBOIWGq1D+XbKCG789CGkG6zzkLpagA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-color-function-display-p3-linear": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function-display-p3-linear/-/postcss-color-function-display-p3-linear-1.0.1.tgz", + "integrity": "sha512-E5qusdzhlmO1TztYzDIi8XPdPoYOjoTY6HBYBCYSj+Gn4gQRBlvjgPQXzfzuPQqt8EhkC/SzPKObg4Mbn8/xMg==", "funding": [ { "type": "github", @@ -2393,10 +2544,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -2407,9 +2558,38 @@ } }, "node_modules/@csstools/postcss-color-mix-function": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.9.tgz", - "integrity": "sha512-Enj7ZIIkLD7zkGCN31SZFx4H1gKiCs2Y4taBo/v/cqaHN7p1qGrf5UTMNSjQFZ7MgClGufHx4pddwFTGL+ipug==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-3.0.12.tgz", + "integrity": "sha512-4STERZfCP5Jcs13P1U5pTvI9SkgLgfMUMhdXW8IlJWkzOOOqhZIjcNhWtNJZes2nkBDsIKJ0CJtFtuaZ00moag==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-color-mix-variadic-function-arguments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-variadic-function-arguments/-/postcss-color-mix-variadic-function-arguments-1.0.2.tgz", + "integrity": "sha512-rM67Gp9lRAkTo+X31DUqMEq+iK+EFqsidfecmhrteErxJZb6tUoJBVQca1Vn1GpDql1s1rD1pKcuYzMsg7Z1KQ==", "funding": [ { "type": "github", @@ -2422,10 +2602,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -2436,9 +2616,37 @@ } }, "node_modules/@csstools/postcss-content-alt-text": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.5.tgz", - "integrity": "sha512-9BOS535v6YmyOYk32jAHXeddRV+iyd4vRcbrEekpwxmueAXX5J8WgbceFnE4E4Pmw/ysnB9v+n/vSWoFmcLMcA==", + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@csstools/postcss-content-alt-text/-/postcss-content-alt-text-2.0.8.tgz", + "integrity": "sha512-9SfEW9QCxEpTlNMnpSqFaHyzsiRpZ5J5+KqCu1u5/eEJAWsMhzT40qf0FIbeeglEvrGRMdDzAxMIz3wqoGSb+Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/utilities": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-contrast-color-function": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-contrast-color-function/-/postcss-contrast-color-function-2.0.12.tgz", + "integrity": "sha512-YbwWckjK3qwKjeYz/CijgcS7WDUCtKTd8ShLztm3/i5dhh4NaqzsbYnhm4bjrpFpnLZ31jVcbK8YL77z3GBPzA==", "funding": [ { "type": "github", @@ -2451,9 +2659,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -2464,9 +2673,9 @@ } }, "node_modules/@csstools/postcss-exponential-functions": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.8.tgz", - "integrity": "sha512-vHgDXtGIBPpFQnFNDftMQg4MOuXcWnK91L/7REjBNYzQ/p2Fa/6RcnehTqCRrNtQ46PNIolbRsiDdDuxiHolwQ==", + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-2.0.9.tgz", + "integrity": "sha512-abg2W/PI3HXwS/CZshSa79kNWNZHdJPMBXeZNyPQFbbj8sKO3jXxOt/wF7juJVjyDTc6JrvaUZYFcSBZBhaxjw==", "funding": [ { "type": "github", @@ -2479,9 +2688,9 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.3", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -2517,9 +2726,9 @@ } }, "node_modules/@csstools/postcss-gamut-mapping": { - "version": "2.0.9", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.9.tgz", - "integrity": "sha512-quksIsFm3DGsf8Qbr9KiSGBF2w3RwxSfOfma5wbORDB1AFF15r4EVW7sUuWw3s5IAEGMqzel/dE2rQsI7Yb8mA==", + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-2.0.11.tgz", + "integrity": "sha512-fCpCUgZNE2piVJKC76zFsgVW1apF6dpYsqGyH8SIeCcM4pTEsRTWTLCaJIMKFEundsCKwY1rwfhtrio04RJ4Dw==", "funding": [ { "type": "github", @@ -2532,9 +2741,9 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -2544,9 +2753,9 @@ } }, "node_modules/@csstools/postcss-gradients-interpolation-method": { - "version": "5.0.9", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.9.tgz", - "integrity": "sha512-duqTeUHF4ambUybAmhX9KonkicLM/WNp2JjMUbegRD4O8A/tb6fdZ7jUNdp/UUiO1FIdDkMwmNw6856bT0XF8Q==", + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-5.0.12.tgz", + "integrity": "sha512-jugzjwkUY0wtNrZlFeyXzimUL3hN4xMvoPnIXxoZqxDvjZRiSh+itgHcVUWzJ2VwD/VAMEgCLvtaJHX+4Vj3Ow==", "funding": [ { "type": "github", @@ -2559,10 +2768,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -2573,9 +2782,9 @@ } }, "node_modules/@csstools/postcss-hwb-function": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.9.tgz", - "integrity": "sha512-sDpdPsoGAhYl/PMSYfu5Ez82wXb2bVkg1Cb8vsRLhpXhAk4OSlsJN+GodAql6tqc1B2G/WToxsFU6G74vkhPvA==", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-4.0.12.tgz", + "integrity": "sha512-mL/+88Z53KrE4JdePYFJAQWFrcADEqsLprExCM04GDNgHIztwFzj0Mbhd/yxMBngq0NIlz58VVxjt5abNs1VhA==", "funding": [ { "type": "github", @@ -2588,10 +2797,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -2602,9 +2811,9 @@ } }, "node_modules/@csstools/postcss-ic-unit": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.1.tgz", - "integrity": "sha512-lECc38i1w3qU9nhrUhP6F8y4BfcQJkR1cb8N6tZNf2llM6zPkxnqt04jRCwsUgNcB3UGKDy+zLenhOYGHqCV+Q==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-4.0.4.tgz", + "integrity": "sha512-yQ4VmossuOAql65sCPppVO1yfb7hDscf4GseF0VCA/DTDaBc0Wtf8MTqVPfjGYlT5+2buokG0Gp7y0atYZpwjg==", "funding": [ { "type": "github", @@ -2617,7 +2826,7 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0", "postcss-value-parser": "^4.2.0" }, @@ -2651,9 +2860,9 @@ } }, "node_modules/@csstools/postcss-is-pseudo-class": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.1.tgz", - "integrity": "sha512-JLp3POui4S1auhDR0n8wHd/zTOWmMsmK3nQd3hhL6FhWPaox5W7j1se6zXOG/aP07wV2ww0lxbKYGwbBszOtfQ==", + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-5.0.3.tgz", + "integrity": "sha512-jS/TY4SpG4gszAtIg7Qnf3AS2pjcUM5SzxpApOrlndMeGhIbaTzWBzzP/IApXoNWEW7OhcjkRT48jnAUIFXhAQ==", "funding": [ { "type": "github", @@ -2712,9 +2921,9 @@ } }, "node_modules/@csstools/postcss-light-dark-function": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.8.tgz", - "integrity": "sha512-v8VU5WtrZIyEtk88WB4fkG22TGd8HyAfSFfZZQ1uNN0+arMJdZc++H3KYTfbYDpJRGy8GwADYH8ySXiILn+OyA==", + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@csstools/postcss-light-dark-function/-/postcss-light-dark-function-2.0.11.tgz", + "integrity": "sha512-fNJcKXJdPM3Lyrbmgw2OBbaioU7yuKZtiXClf4sGdQttitijYlZMD5K7HrC/eF83VRWRrYq6OZ0Lx92leV2LFA==", "funding": [ { "type": "github", @@ -2727,9 +2936,9 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -2831,9 +3040,9 @@ } }, "node_modules/@csstools/postcss-logical-viewport-units": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.3.tgz", - "integrity": "sha512-OC1IlG/yoGJdi0Y+7duz/kU/beCwO+Gua01sD6GtOtLi7ByQUpcIqs7UE/xuRPay4cHgOMatWdnDdsIDjnWpPw==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-3.0.4.tgz", + "integrity": "sha512-q+eHV1haXA4w9xBwZLKjVKAWn3W2CMqmpNpZUk5kRprvSiBEGMgrNH3/sJZ8UA3JgyHaOt3jwT9uFa4wLX4EqQ==", "funding": [ { "type": "github", @@ -2846,7 +3055,7 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-tokenizer": "^3.0.3", + "@csstools/css-tokenizer": "^3.0.4", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -2857,9 +3066,9 @@ } }, "node_modules/@csstools/postcss-media-minmax": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.8.tgz", - "integrity": "sha512-Skum5wIXw2+NyCQWUyfstN3c1mfSh39DRAo+Uh2zzXOglBG8xB9hnArhYFScuMZkzeM+THVa//mrByKAfumc7w==", + "version": "2.0.9", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-2.0.9.tgz", + "integrity": "sha512-af9Qw3uS3JhYLnCbqtZ9crTvvkR+0Se+bBqSr7ykAnl9yKhk6895z9rf+2F4dClIDJWxgn0iZZ1PSdkhrbs2ig==", "funding": [ { "type": "github", @@ -2872,10 +3081,10 @@ ], "license": "MIT", "dependencies": { - "@csstools/css-calc": "^2.1.3", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/media-query-list-parser": "^4.0.2" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/media-query-list-parser": "^4.0.3" }, "engines": { "node": ">=18" @@ -2885,9 +3094,9 @@ } }, "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.4.tgz", - "integrity": "sha512-AnGjVslHMm5xw9keusQYvjVWvuS7KWK+OJagaG0+m9QnIjZsrysD2kJP/tr/UJIyYtMCtu8OkUd+Rajb4DqtIQ==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-3.0.5.tgz", + "integrity": "sha512-zhAe31xaaXOY2Px8IYfoVTB3wglbJUVigGphFLj6exb7cjZRH9A6adyE22XfFK3P2PzwRk0VDeTJmaxpluyrDg==", "funding": [ { "type": "github", @@ -2900,9 +3109,9 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/media-query-list-parser": "^4.0.2" + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/media-query-list-parser": "^4.0.3" }, "engines": { "node": ">=18" @@ -2963,9 +3172,9 @@ } }, "node_modules/@csstools/postcss-oklab-function": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.9.tgz", - "integrity": "sha512-UHrnujimwtdDw8BYDcWJtBXuJ13uc/BjAddPdfMc/RsWxhg8gG8UbvTF0tnMtHrZ4i7lwy85fPEzK1AiykMyRA==", + "version": "4.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-4.0.12.tgz", + "integrity": "sha512-HhlSmnE1NKBhXsTnNGjxvhryKtO7tJd1w42DKOGFD6jSHtYOrsJTQDKPMwvOfrzUAk8t7GcpIfRyM7ssqHpFjg==", "funding": [ { "type": "github", @@ -2978,10 +3187,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -2992,9 +3201,9 @@ } }, "node_modules/@csstools/postcss-progressive-custom-properties": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.0.1.tgz", - "integrity": "sha512-Ofz81HaY8mmbP8/Qr3PZlUzjsyV5WuxWmvtYn+jhYGvvjFazTmN9R2io5W5znY1tyk2CA9uM0IPWyY4ygDytCw==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-4.2.1.tgz", + "integrity": "sha512-uPiiXf7IEKtUQXsxu6uWtOlRMXd2QWWy5fhxHDnPdXKCQckPP3E34ZgDoZ62r2iT+UOgWsSbM4NvHE5m3mAEdw==", "funding": [ { "type": "github", @@ -3017,9 +3226,9 @@ } }, "node_modules/@csstools/postcss-random-function": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-2.0.0.tgz", - "integrity": "sha512-MYZKxSr4AKfjECL8vg49BbfNNzK+t3p2OWX+Xf7rXgMaTP44oy/e8VGWu4MLnJ3NUd9tFVkisLO/sg+5wMTNsg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-random-function/-/postcss-random-function-2.0.1.tgz", + "integrity": "sha512-q+FQaNiRBhnoSNo+GzqGOIBKoHQ43lYz0ICrV+UudfWnEF6ksS6DsBIJSISKQT2Bvu3g4k6r7t0zYrk5pDlo8w==", "funding": [ { "type": "github", @@ -3032,9 +3241,9 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.3", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -3044,9 +3253,9 @@ } }, "node_modules/@csstools/postcss-relative-color-syntax": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.9.tgz", - "integrity": "sha512-+AGOcLF5PmMnTRPnOdCvY7AwvD5veIOhTWbJV6vC3hB1tt0ii/k6QOwhWfsGGg1ZPQ0JY15u+wqLR4ZTtB0luA==", + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-3.0.12.tgz", + "integrity": "sha512-0RLIeONxu/mtxRtf3o41Lq2ghLimw0w9ByLWnnEVuy89exmEEq8bynveBxNW3nyHqLAFEeNtVEmC1QK9MZ8Huw==", "funding": [ { "type": "github", @@ -3059,10 +3268,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -3111,9 +3320,9 @@ } }, "node_modules/@csstools/postcss-sign-functions": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.3.tgz", - "integrity": "sha512-4F4GRhj8xNkBtLZ+3ycIhReaDfKJByXI+cQGIps3AzCO8/CJOeoDPxpMnL5vqZrWKOceSATHEQJUO/Q/r2y7OQ==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-sign-functions/-/postcss-sign-functions-1.1.4.tgz", + "integrity": "sha512-P97h1XqRPcfcJndFdG95Gv/6ZzxUBBISem0IDqPZ7WMvc/wlO+yU0c5D/OCpZ5TJoTt63Ok3knGk64N+o6L2Pg==", "funding": [ { "type": "github", @@ -3126,9 +3335,9 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.3", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -3138,9 +3347,9 @@ } }, "node_modules/@csstools/postcss-stepped-value-functions": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.8.tgz", - "integrity": "sha512-6Y4yhL4fNhgzbZ/wUMQ4EjFUfoNNMpEXZnDw1JrlcEBHUT15gplchtFsZGk7FNi8PhLHJfCUwVKrEHzhfhKK+g==", + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-4.0.9.tgz", + "integrity": "sha512-h9btycWrsex4dNLeQfyU3y3w40LMQooJWFMm/SK9lrKguHDcFl4VMkncKKoXi2z5rM9YGWbUQABI8BT2UydIcA==", "funding": [ { "type": "github", @@ -3153,9 +3362,9 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.3", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -3165,9 +3374,9 @@ } }, "node_modules/@csstools/postcss-text-decoration-shorthand": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.2.tgz", - "integrity": "sha512-8XvCRrFNseBSAGxeaVTaNijAu+FzUvjwFXtcrynmazGb/9WUdsPCpBX+mHEHShVRq47Gy4peYAoxYs8ltUnmzA==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-4.0.3.tgz", + "integrity": "sha512-KSkGgZfx0kQjRIYnpsD7X2Om9BUXX/Kii77VBifQW9Ih929hK0KNjVngHDH0bFB9GmfWcR9vJYJJRvw/NQjkrA==", "funding": [ { "type": "github", @@ -3180,7 +3389,7 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/color-helpers": "^5.0.2", + "@csstools/color-helpers": "^5.1.0", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -3191,9 +3400,9 @@ } }, "node_modules/@csstools/postcss-trigonometric-functions": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.8.tgz", - "integrity": "sha512-YcDvYTRu7f78/91B6bX+mE1WoAO91Su7/8KSRpuWbIGUB8hmaNSRu9wziaWSLJ1lOB1aQe+bvo9BIaLKqPOo/g==", + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-4.0.9.tgz", + "integrity": "sha512-Hnh5zJUdpNrJqK9v1/E3BbrQhaDTj5YiX7P61TOvUhoDHnUmsNNxcDAgkQ32RrcWx9GVUvfUNPcUkn8R3vIX6A==", "funding": [ { "type": "github", @@ -3206,9 +3415,9 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-calc": "^2.1.3", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3" + "@csstools/css-calc": "^2.1.4", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4" }, "engines": { "node": ">=18" @@ -3271,21 +3480,24 @@ } }, "node_modules/@docsearch/css": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-3.9.0.tgz", - "integrity": "sha512-cQbnVbq0rrBwNAKegIac/t6a8nWoUAn8frnkLFW6YARaRmAQr5/Eoe6Ln2fqkUCZ40KpdrKbpSAmgrkviOxuWA==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@docsearch/css/-/css-4.2.0.tgz", + "integrity": "sha512-65KU9Fw5fGsPPPlgIghonMcndyx1bszzrDQYLfierN+Ha29yotMHzVS94bPkZS6On9LS8dE4qmW4P/fGjtCf/g==", "license": "MIT" }, "node_modules/@docsearch/react": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-3.9.0.tgz", - "integrity": "sha512-mb5FOZYZIkRQ6s/NWnM98k879vu5pscWqTLubLFBO87igYYT4VzVazh4h5o/zCvTIZgEt3PvsCOMOswOUo9yHQ==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@docsearch/react/-/react-4.2.0.tgz", + "integrity": "sha512-zSN/KblmtBcerf7Z87yuKIHZQmxuXvYc6/m0+qnjyNu+Ir67AVOagTa1zBqcxkVUVkmBqUExdcyrdo9hbGbqTw==", "license": "MIT", "dependencies": { - "@algolia/autocomplete-core": "1.17.9", - "@algolia/autocomplete-preset-algolia": "1.17.9", - "@docsearch/css": "3.9.0", - "algoliasearch": "^5.14.2" + "@ai-sdk/react": "^2.0.30", + "@algolia/autocomplete-core": "1.19.2", + "@docsearch/css": "4.2.0", + "ai": "^5.0.30", + "algoliasearch": "^5.28.0", + "marked": "^16.3.0", + "zod": "^4.1.8" }, "peerDependencies": { "@types/react": ">= 16.8.0 < 20.0.0", @@ -3309,183 +3521,187 @@ } }, "node_modules/@docsearch/react/node_modules/@algolia/client-analytics": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.24.0.tgz", - "integrity": "sha512-IF+r9RRQsIf0ylIBNFxo7c6hDxxuhIfIbffhBXEF1HD13rjhP5AVfiaea9RzbsAZoySkm318plDpH/nlGIjbRA==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.42.0.tgz", + "integrity": "sha512-SkCrvtZpdSWjNq9NGu/TtOg4TbzRuUToXlQqV6lLePa2s/WQlEyFw7QYjrz4itprWG9ASuH+StDlq7n49F2sBA==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@docsearch/react/node_modules/@algolia/client-personalization": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.24.0.tgz", - "integrity": "sha512-Fx/Fp6d8UmDBHecTt0XYF8C9TAaA3qeCQortfGSZzWp4gVmtrUCFNZ1SUwb8ULREnO9DanVrM5hGE8R8C4zZTQ==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.42.0.tgz", + "integrity": "sha512-ivVniRqX2ARd+jGvRHTxpWeOtO9VT+rK+OmiuRgkSunoTyxk0vjeDO7QkU7+lzBOXiYgakNjkZrBtIpW9c+muw==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@docsearch/react/node_modules/@algolia/recommend": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.24.0.tgz", - "integrity": "sha512-JTMz0JqN2gidvKa2QCF/rMe8LNtdHaght03px2cluZaZfBRYy8TgHgkCeBspKKvV/abWJwl7J0FzWThCshqT3w==", + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.42.0.tgz", + "integrity": "sha512-U5yZ8+Jj+A4ZC0IMfElpPcddQ9NCoawD1dKyWmjHP49nzN2Z4284IFVMAJWR6fq/0ddGf4OMjjYO9cnF8L+5tw==", "license": "MIT", "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" } }, "node_modules/@docsearch/react/node_modules/algoliasearch": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.24.0.tgz", - "integrity": "sha512-CkaUygzZ91Xbw11s0CsHMawrK3tl+Ue57725HGRgRzKgt2Z4wvXVXRCtQfvzh8K7Tp4Zp7f1pyHAtMROtTJHxg==", - "license": "MIT", - "dependencies": { - "@algolia/client-abtesting": "5.24.0", - "@algolia/client-analytics": "5.24.0", - "@algolia/client-common": "5.24.0", - "@algolia/client-insights": "5.24.0", - "@algolia/client-personalization": "5.24.0", - "@algolia/client-query-suggestions": "5.24.0", - "@algolia/client-search": "5.24.0", - "@algolia/ingestion": "1.24.0", - "@algolia/monitoring": "1.24.0", - "@algolia/recommend": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.42.0.tgz", + "integrity": "sha512-X5+PtWc9EJIPafT/cj8ZG+6IU3cjRRnlHGtqMHK/9gsiupQbAyYlH5y7qt/FtsAhfX5AICHffZy69ZAsVrxWkQ==", + "license": "MIT", + "dependencies": { + "@algolia/abtesting": "1.8.0", + "@algolia/client-abtesting": "5.42.0", + "@algolia/client-analytics": "5.42.0", + "@algolia/client-common": "5.42.0", + "@algolia/client-insights": "5.42.0", + "@algolia/client-personalization": "5.42.0", + "@algolia/client-query-suggestions": "5.42.0", + "@algolia/client-search": "5.42.0", + "@algolia/ingestion": "1.42.0", + "@algolia/monitoring": "1.42.0", + "@algolia/recommend": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { "node": ">= 14.0.0" } }, - "node_modules/@docusaurus/babel": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.7.0.tgz", - "integrity": "sha512-0H5uoJLm14S/oKV3Keihxvh8RV+vrid+6Gv+2qhuzbqHanawga8tYnsdpjEyt36ucJjqlby2/Md2ObWjA02UXQ==", - "license": "MIT", - "dependencies": { - "@babel/core": "^7.25.9", - "@babel/generator": "^7.25.9", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.25.9", - "@babel/preset-env": "^7.25.9", - "@babel/preset-react": "^7.25.9", - "@babel/preset-typescript": "^7.25.9", - "@babel/runtime": "^7.25.9", - "@babel/runtime-corejs3": "^7.25.9", - "@babel/traverse": "^7.25.9", - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "babel-plugin-dynamic-import-node": "^2.3.3", - "fs-extra": "^11.1.1", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" - } - }, - "node_modules/@docusaurus/babel/node_modules/@docusaurus/logger": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.7.0.tgz", - "integrity": "sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA==", - "license": "MIT", - "dependencies": { + "node_modules/@docusaurus/core": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.9.2.tgz", + "integrity": "sha512-HbjwKeC+pHUFBfLMNzuSjqFE/58+rLVKmOU3lxQrpsxLBOGosYco/Q0GduBb0/jEMRiyEqjNT/01rRdOMWq5pw==", + "license": "MIT", + "dependencies": { + "@docusaurus/babel": "3.9.2", + "@docusaurus/bundler": "3.9.2", + "@docusaurus/logger": "3.9.2", + "@docusaurus/mdx-loader": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-common": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "boxen": "^6.2.1", "chalk": "^4.1.2", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" - } - }, - "node_modules/@docusaurus/babel/node_modules/@docusaurus/utils": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.7.0.tgz", - "integrity": "sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==", - "license": "MIT", - "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "escape-string-regexp": "^4.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "github-slugger": "^1.5.0", - "globby": "^11.1.0", - "gray-matter": "^4.0.3", - "jiti": "^1.20.0", - "js-yaml": "^4.1.0", + "chokidar": "^3.5.3", + "cli-table3": "^0.6.3", + "combine-promises": "^1.1.0", + "commander": "^5.1.0", + "core-js": "^3.31.1", + "detect-port": "^1.5.1", + "escape-html": "^1.0.3", + "eta": "^2.2.0", + "eval": "^0.1.8", + "execa": "5.1.1", + "fs-extra": "^11.1.1", + "html-tags": "^3.3.1", + "html-webpack-plugin": "^5.6.0", + "leven": "^3.1.0", "lodash": "^4.17.21", - "micromatch": "^4.0.5", + "open": "^8.4.0", + "p-map": "^4.0.0", "prompts": "^2.4.2", - "resolve-pathname": "^3.0.0", - "shelljs": "^0.8.5", + "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", + "react-loadable": "npm:@docusaurus/react-loadable@6.0.0", + "react-loadable-ssr-addon-v5-slorber": "^1.0.1", + "react-router": "^5.3.4", + "react-router-config": "^5.1.1", + "react-router-dom": "^5.3.4", + "semver": "^7.5.4", + "serve-handler": "^6.1.6", + "tinypool": "^1.0.2", "tslib": "^2.6.0", - "url-loader": "^4.1.1", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "update-notifier": "^6.0.2", + "webpack": "^5.95.0", + "webpack-bundle-analyzer": "^4.10.2", + "webpack-dev-server": "^5.2.2", + "webpack-merge": "^6.0.1" + }, + "bin": { + "docusaurus": "bin/docusaurus.mjs" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" + }, + "peerDependencies": { + "@mdx-js/react": "^3.0.0", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/babel/node_modules/@docusaurus/utils-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.7.0.tgz", - "integrity": "sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA==", + "node_modules/@docusaurus/core/node_modules/@docusaurus/babel": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/babel/-/babel-3.9.2.tgz", + "integrity": "sha512-GEANdi/SgER+L7Japs25YiGil/AUDnFFHaCGPBbundxoWtCkA2lmy7/tFmgED4y1htAy6Oi4wkJEQdGssnw9MA==", "license": "MIT", "dependencies": { - "@docusaurus/types": "3.7.0", + "@babel/core": "^7.25.9", + "@babel/generator": "^7.25.9", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-transform-runtime": "^7.25.9", + "@babel/preset-env": "^7.25.9", + "@babel/preset-react": "^7.25.9", + "@babel/preset-typescript": "^7.25.9", + "@babel/runtime": "^7.25.9", + "@babel/runtime-corejs3": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@docusaurus/logger": "3.9.2", + "@docusaurus/utils": "3.9.2", + "babel-plugin-dynamic-import-node": "^2.3.3", + "fs-extra": "^11.1.1", "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" } }, - "node_modules/@docusaurus/bundler": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.7.0.tgz", - "integrity": "sha512-CUUT9VlSGukrCU5ctZucykvgCISivct+cby28wJwCC/fkQFgAHRp/GKv2tx38ZmXb7nacrKzFTcp++f9txUYGg==", + "node_modules/@docusaurus/core/node_modules/@docusaurus/bundler": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/bundler/-/bundler-3.9.2.tgz", + "integrity": "sha512-ZOVi6GYgTcsZcUzjblpzk3wH1Fya2VNpd5jtHoCCFcJlMQ1EYXZetfAnRHLcyiFeBABaI1ltTYbOBtH/gahGVA==", "license": "MIT", "dependencies": { "@babel/core": "^7.25.9", - "@docusaurus/babel": "3.7.0", - "@docusaurus/cssnano-preset": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", + "@docusaurus/babel": "3.9.2", + "@docusaurus/cssnano-preset": "3.9.2", + "@docusaurus/logger": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", "babel-loader": "^9.2.1", - "clean-css": "^5.3.2", + "clean-css": "^5.3.3", "copy-webpack-plugin": "^11.0.0", - "css-loader": "^6.8.1", + "css-loader": "^6.11.0", "css-minimizer-webpack-plugin": "^5.0.1", "cssnano": "^6.1.2", "file-loader": "^6.2.0", "html-minifier-terser": "^7.2.0", - "mini-css-extract-plugin": "^2.9.1", + "mini-css-extract-plugin": "^2.9.2", "null-loader": "^4.0.1", - "postcss": "^8.4.26", - "postcss-loader": "^7.3.3", - "postcss-preset-env": "^10.1.0", - "react-dev-utils": "^12.0.1", + "postcss": "^8.5.4", + "postcss-loader": "^7.3.4", + "postcss-preset-env": "^10.2.1", "terser-webpack-plugin": "^5.3.9", "tslib": "^2.6.0", "url-loader": "^4.1.1", @@ -3493,7 +3709,7 @@ "webpackbar": "^6.0.1" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { "@docusaurus/faster": "*" @@ -3504,340 +3720,241 @@ } } }, - "node_modules/@docusaurus/bundler/node_modules/@docusaurus/cssnano-preset": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.7.0.tgz", - "integrity": "sha512-X9GYgruZBSOozg4w4dzv9uOz8oK/EpPVQXkp0MM6Tsgp/nRIU9hJzJ0Pxg1aRa3xCeEQTOimZHcocQFlLwYajQ==", + "node_modules/@docusaurus/core/node_modules/@types/express-serve-static-core": { + "version": "4.19.7", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.7.tgz", + "integrity": "sha512-FvPtiIf1LfhzsaIXhv/PHan/2FeQBbtBDtfX2QfvPxdUelMDEckK08SM6nqo1MIZY3RUlfA+HV8+hFUSio78qg==", "license": "MIT", "dependencies": { - "cssnano-preset-advanced": "^6.1.2", - "postcss": "^8.4.38", - "postcss-sort-media-queries": "^5.2.0", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/@docusaurus/bundler/node_modules/@docusaurus/logger": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.7.0.tgz", - "integrity": "sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA==", + "node_modules/@docusaurus/core/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "license": "MIT" + }, + "node_modules/@docusaurus/core/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", "license": "MIT", - "dependencies": { - "chalk": "^4.1.2", - "tslib": "^2.6.0" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@docusaurus/core/node_modules/webpack-dev-server": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.2.tgz", + "integrity": "sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg==", + "license": "MIT", + "dependencies": { + "@types/bonjour": "^3.5.13", + "@types/connect-history-api-fallback": "^1.5.4", + "@types/express": "^4.17.21", + "@types/express-serve-static-core": "^4.17.21", + "@types/serve-index": "^1.9.4", + "@types/serve-static": "^1.15.5", + "@types/sockjs": "^0.3.36", + "@types/ws": "^8.5.10", + "ansi-html-community": "^0.0.8", + "bonjour-service": "^1.2.1", + "chokidar": "^3.6.0", + "colorette": "^2.0.10", + "compression": "^1.7.4", + "connect-history-api-fallback": "^2.0.0", + "express": "^4.21.2", + "graceful-fs": "^4.2.6", + "http-proxy-middleware": "^2.0.9", + "ipaddr.js": "^2.1.0", + "launch-editor": "^2.6.1", + "open": "^10.0.3", + "p-retry": "^6.2.0", + "schema-utils": "^4.2.0", + "selfsigned": "^2.4.1", + "serve-index": "^1.9.1", + "sockjs": "^0.3.24", + "spdy": "^4.0.2", + "webpack-dev-middleware": "^7.4.2", + "ws": "^8.18.0" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" }, "engines": { - "node": ">=18.0" + "node": ">= 18.12.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + }, + "webpack-cli": { + "optional": true + } } }, - "node_modules/@docusaurus/bundler/node_modules/@docusaurus/utils": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.7.0.tgz", - "integrity": "sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==", + "node_modules/@docusaurus/core/node_modules/webpack-dev-server/node_modules/open": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.2.0.tgz", + "integrity": "sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==", "license": "MIT", "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "escape-string-regexp": "^4.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "github-slugger": "^1.5.0", - "globby": "^11.1.0", - "gray-matter": "^4.0.3", - "jiti": "^1.20.0", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "micromatch": "^4.0.5", - "prompts": "^2.4.2", - "resolve-pathname": "^3.0.0", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "url-loader": "^4.1.1", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "wsl-utils": "^0.1.0" }, "engines": { - "node": ">=18.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@docusaurus/bundler/node_modules/@docusaurus/utils-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.7.0.tgz", - "integrity": "sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA==", + "node_modules/@docusaurus/core/node_modules/webpack-merge": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", + "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", "license": "MIT", "dependencies": { - "@docusaurus/types": "3.7.0", - "tslib": "^2.6.0" + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.1" }, "engines": { - "node": ">=18.0" + "node": ">=18.0.0" } }, - "node_modules/@docusaurus/bundler/node_modules/consola": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz", - "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==", + "node_modules/@docusaurus/core/node_modules/ws": { + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", "license": "MIT", "engines": { - "node": "^14.18.0 || >=16.10.0" + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/@docusaurus/bundler/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/@docusaurus/bundler/node_modules/markdown-table": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", - "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", + "node_modules/@docusaurus/cssnano-preset": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.9.2.tgz", + "integrity": "sha512-8gBKup94aGttRduABsj7bpPFTX7kbwu+xh3K9NMCF5K4bWBqTFYW+REKHF6iBVDHRJ4grZdIPbvkiHd/XNKRMQ==", "license": "MIT", "dependencies": { - "repeat-string": "^1.0.0" + "cssnano-preset-advanced": "^6.1.2", + "postcss": "^8.5.4", + "postcss-sort-media-queries": "^5.2.0", + "tslib": "^2.6.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">=20.0" } }, - "node_modules/@docusaurus/bundler/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/@docusaurus/logger": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.9.2.tgz", + "integrity": "sha512-/SVCc57ByARzGSU60c50rMyQlBuMIJCjcsJlkphxY6B0GV4UH3tcA1994N8fFfbJ9kX3jIBe/xg3XP5qBtGDbA==", "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "chalk": "^4.1.2", + "tslib": "^2.6.0" }, "engines": { - "node": ">=8" + "node": ">=20.0" } }, - "node_modules/@docusaurus/bundler/node_modules/webpackbar": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-6.0.1.tgz", - "integrity": "sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q==", + "node_modules/@docusaurus/lqip-loader": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/lqip-loader/-/lqip-loader-3.9.2.tgz", + "integrity": "sha512-Q9QO0E+HLKhcpKVOIXRVBdJ1bbxxpfSwBll5NsmGxcx1fArH0fFi68cpEztqBg7WwbFRb976MTlqlBuGrMLpuw==", "license": "MIT", "dependencies": { - "ansi-escapes": "^4.3.2", - "chalk": "^4.1.2", - "consola": "^3.2.3", - "figures": "^3.2.0", - "markdown-table": "^2.0.0", - "pretty-time": "^1.1.0", - "std-env": "^3.7.0", - "wrap-ansi": "^7.0.0" + "@docusaurus/logger": "3.9.2", + "file-loader": "^6.2.0", + "lodash": "^4.17.21", + "sharp": "^0.32.3", + "tslib": "^2.6.0" }, "engines": { - "node": ">=14.21.3" - }, - "peerDependencies": { - "webpack": "3 || 4 || 5" + "node": ">=20.0" } }, - "node_modules/@docusaurus/bundler/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/@docusaurus/mdx-loader": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.9.2.tgz", + "integrity": "sha512-wiYoGwF9gdd6rev62xDU8AAM8JuLI/hlwOtCzMmYcspEkzecKrP8J8X+KpYnTlACBUUtXNJpSoCwFWJhLRevzQ==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "@docusaurus/logger": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "@mdx-js/mdx": "^3.0.0", + "@slorber/remark-comment": "^1.0.0", + "escape-html": "^1.0.3", + "estree-util-value-to-estree": "^3.0.1", + "file-loader": "^6.2.0", + "fs-extra": "^11.1.1", + "image-size": "^2.0.2", + "mdast-util-mdx": "^3.0.0", + "mdast-util-to-string": "^4.0.0", + "rehype-raw": "^7.0.0", + "remark-directive": "^3.0.0", + "remark-emoji": "^4.0.0", + "remark-frontmatter": "^5.0.0", + "remark-gfm": "^4.0.0", + "stringify-object": "^3.3.0", + "tslib": "^2.6.0", + "unified": "^11.0.3", + "unist-util-visit": "^5.0.0", + "url-loader": "^4.1.1", + "vfile": "^6.0.1", + "webpack": "^5.88.1" }, "engines": { - "node": ">=10" + "node": ">=20.0" }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/core": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.4.0.tgz", - "integrity": "sha512-g+0wwmN2UJsBqy2fQRQ6fhXruoEa62JDeEa5d8IdTJlMoaDaEDfHh7WjwGRn4opuTQWpjAwP/fbcgyHKlE+64w==", + "node_modules/@docusaurus/module-type-aliases": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.9.2.tgz", + "integrity": "sha512-8qVe2QA9hVLzvnxP46ysuofJUIc/yYQ82tvA/rBTrnpXtCjNSFLxEZfd5U8cYZuJIVlkPxamsIgwd5tGZXfvew==", "license": "MIT", "dependencies": { - "@babel/core": "^7.23.3", - "@babel/generator": "^7.23.3", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-transform-runtime": "^7.22.9", - "@babel/preset-env": "^7.22.9", - "@babel/preset-react": "^7.22.5", - "@babel/preset-typescript": "^7.22.5", - "@babel/runtime": "^7.22.6", - "@babel/runtime-corejs3": "^7.22.6", - "@babel/traverse": "^7.22.8", - "@docusaurus/cssnano-preset": "3.4.0", - "@docusaurus/logger": "3.4.0", - "@docusaurus/mdx-loader": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "autoprefixer": "^10.4.14", - "babel-loader": "^9.1.3", - "babel-plugin-dynamic-import-node": "^2.3.3", - "boxen": "^6.2.1", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "clean-css": "^5.3.2", - "cli-table3": "^0.6.3", - "combine-promises": "^1.1.0", - "commander": "^5.1.0", - "copy-webpack-plugin": "^11.0.0", - "core-js": "^3.31.1", - "css-loader": "^6.8.1", - "css-minimizer-webpack-plugin": "^5.0.1", - "cssnano": "^6.1.2", - "del": "^6.1.1", - "detect-port": "^1.5.1", - "escape-html": "^1.0.3", - "eta": "^2.2.0", - "eval": "^0.1.8", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "html-minifier-terser": "^7.2.0", - "html-tags": "^3.3.1", - "html-webpack-plugin": "^5.5.3", - "leven": "^3.1.0", - "lodash": "^4.17.21", - "mini-css-extract-plugin": "^2.7.6", - "p-map": "^4.0.0", - "postcss": "^8.4.26", - "postcss-loader": "^7.3.3", - "prompts": "^2.4.2", - "react-dev-utils": "^12.0.1", - "react-helmet-async": "^1.3.0", - "react-loadable": "npm:@docusaurus/react-loadable@6.0.0", - "react-loadable-ssr-addon-v5-slorber": "^1.0.1", - "react-router": "^5.3.4", - "react-router-config": "^5.1.1", - "react-router-dom": "^5.3.4", - "rtl-detect": "^1.0.4", - "semver": "^7.5.4", - "serve-handler": "^6.1.5", - "shelljs": "^0.8.5", - "terser-webpack-plugin": "^5.3.9", - "tslib": "^2.6.0", - "update-notifier": "^6.0.2", - "url-loader": "^4.1.1", - "webpack": "^5.88.1", - "webpack-bundle-analyzer": "^4.9.0", - "webpack-dev-server": "^4.15.1", - "webpack-merge": "^5.9.0", - "webpackbar": "^5.0.2" - }, - "bin": { - "docusaurus": "bin/docusaurus.mjs" - }, - "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@docusaurus/cssnano-preset": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/cssnano-preset/-/cssnano-preset-3.4.0.tgz", - "integrity": "sha512-qwLFSz6v/pZHy/UP32IrprmH5ORce86BGtN0eBtG75PpzQJAzp9gefspox+s8IEOr0oZKuQ/nhzZ3xwyc3jYJQ==", - "license": "MIT", - "dependencies": { - "cssnano-preset-advanced": "^6.1.2", - "postcss": "^8.4.38", - "postcss-sort-media-queries": "^5.2.0", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" - } - }, - "node_modules/@docusaurus/logger": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.4.0.tgz", - "integrity": "sha512-bZwkX+9SJ8lB9kVRkXw+xvHYSMGG4bpYHKGXeXFvyVc79NMeeBSGgzd4TQLHH+DYeOJoCdl8flrFJVxlZ0wo/Q==", - "license": "MIT", - "dependencies": { - "chalk": "^4.1.2", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" - } - }, - "node_modules/@docusaurus/lqip-loader": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/lqip-loader/-/lqip-loader-3.4.0.tgz", - "integrity": "sha512-F//Gjqcz925zLL1l3Y3XOtQvn927GBIr9ZouvzWF4jHNKuuHBqzOPSADF5O/cT3Vq1ucPWooyhPBxYcvSGF4SA==", - "license": "MIT", - "dependencies": { - "@docusaurus/logger": "3.4.0", - "file-loader": "^6.2.0", - "lodash": "^4.17.21", - "sharp": "^0.32.3", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" - } - }, - "node_modules/@docusaurus/mdx-loader": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.4.0.tgz", - "integrity": "sha512-kSSbrrk4nTjf4d+wtBA9H+FGauf2gCax89kV8SUSJu3qaTdSIKdWERlngsiHaCFgZ7laTJ8a67UFf+xlFPtuTw==", - "license": "MIT", - "dependencies": { - "@docusaurus/logger": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "@mdx-js/mdx": "^3.0.0", - "@slorber/remark-comment": "^1.0.0", - "escape-html": "^1.0.3", - "estree-util-value-to-estree": "^3.0.1", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "image-size": "^1.0.2", - "mdast-util-mdx": "^3.0.0", - "mdast-util-to-string": "^4.0.0", - "rehype-raw": "^7.0.0", - "remark-directive": "^3.0.0", - "remark-emoji": "^4.0.0", - "remark-frontmatter": "^5.0.0", - "remark-gfm": "^4.0.0", - "stringify-object": "^3.3.0", - "tslib": "^2.6.0", - "unified": "^11.0.3", - "unist-util-visit": "^5.0.0", - "url-loader": "^4.1.1", - "vfile": "^6.0.1", - "webpack": "^5.88.1" - }, - "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@docusaurus/module-type-aliases": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.7.0.tgz", - "integrity": "sha512-g7WdPqDNaqA60CmBrr0cORTrsOit77hbsTj7xE2l71YhBn79sxdm7WMK7wfhcaafkbpIh7jv5ef5TOpf1Xv9Lg==", - "license": "MIT", - "dependencies": { - "@docusaurus/types": "3.7.0", + "@docusaurus/types": "3.9.2", "@types/history": "^4.7.11", "@types/react": "*", "@types/react-router-config": "*", "@types/react-router-dom": "*", - "react-helmet-async": "npm:@slorber/react-helmet-async@*", + "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", "react-loadable": "npm:@docusaurus/react-loadable@6.0.0" }, "peerDependencies": { @@ -3846,47 +3963,48 @@ } }, "node_modules/@docusaurus/plugin-client-redirects": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-client-redirects/-/plugin-client-redirects-3.4.0.tgz", - "integrity": "sha512-Pr8kyh/+OsmYCvdZhc60jy/FnrY6flD2TEAhl4rJxeVFxnvvRgEhoaIVX8q9MuJmaQoh6frPk94pjs7/6YgBDQ==", + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-client-redirects/-/plugin-client-redirects-3.9.2.tgz", + "integrity": "sha512-lUgMArI9vyOYMzLRBUILcg9vcPTCyyI2aiuXq/4npcMVqOr6GfmwtmBYWSbNMlIUM0147smm4WhpXD0KFboffw==", "license": "MIT", "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/logger": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", + "@docusaurus/core": "3.9.2", + "@docusaurus/logger": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-common": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", "eta": "^2.2.0", "fs-extra": "^11.1.1", "lodash": "^4.17.21", "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, "node_modules/@docusaurus/plugin-content-blog": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.4.0.tgz", - "integrity": "sha512-vv6ZAj78ibR5Jh7XBUT4ndIjmlAxkijM3Sx5MAAzC1gyv0vupDQNhzuFg1USQmQVj3P5I6bquk12etPV3LJ+Xw==", - "license": "MIT", - "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/logger": "3.4.0", - "@docusaurus/mdx-loader": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "cheerio": "^1.0.0-rc.12", + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.9.2.tgz", + "integrity": "sha512-3I2HXy3L1QcjLJLGAoTvoBnpOwa6DPUa3Q0dMK19UTY9mhPkKQg/DYhAGTiBUKcTR0f08iw7kLPqOhIgdV3eVQ==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.9.2", + "@docusaurus/logger": "3.9.2", + "@docusaurus/mdx-loader": "3.9.2", + "@docusaurus/theme-common": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-common": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "cheerio": "1.0.0-rc.12", "feed": "^4.2.2", "fs-extra": "^11.1.1", "lodash": "^4.17.21", - "reading-time": "^1.5.0", + "schema-dts": "^1.1.2", "srcset": "^4.0.0", "tslib": "^2.6.0", "unist-util-visit": "^5.0.0", @@ -3894,3782 +4012,3178 @@ "webpack": "^5.88.1" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@docusaurus/plugin-content-blog/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", - "license": "MIT", - "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "node": ">=20.0" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "@docusaurus/plugin-content-docs": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, "node_modules/@docusaurus/plugin-content-docs": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.7.0.tgz", - "integrity": "sha512-GXg5V7kC9FZE4FkUZA8oo/NrlRb06UwuICzI6tcbzj0+TVgjq/mpUXXzSgKzMS82YByi4dY2Q808njcBCyy6tQ==", - "license": "MIT", - "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/module-type-aliases": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.9.2.tgz", + "integrity": "sha512-C5wZsGuKTY8jEYsqdxhhFOe1ZDjH0uIYJ9T/jebHwkyxqnr4wW0jTkB72OMqNjsoQRcb0JN3PcSeTwFlVgzCZg==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.9.2", + "@docusaurus/logger": "3.9.2", + "@docusaurus/mdx-loader": "3.9.2", + "@docusaurus/module-type-aliases": "3.9.2", + "@docusaurus/theme-common": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-common": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", "@types/react-router-config": "^5.0.7", "combine-promises": "^1.1.0", "fs-extra": "^11.1.1", "js-yaml": "^4.1.0", "lodash": "^4.17.21", + "schema-dts": "^1.1.2", "tslib": "^2.6.0", "utility-types": "^3.10.0", "webpack": "^5.88.1" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-content-docs/node_modules/@docusaurus/core": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.7.0.tgz", - "integrity": "sha512-b0fUmaL+JbzDIQaamzpAFpTviiaU4cX3Qz8cuo14+HGBCwa0evEK0UYCBFY3n4cLzL8Op1BueeroUD2LYAIHbQ==", + "node_modules/@docusaurus/plugin-content-pages": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.9.2.tgz", + "integrity": "sha512-s4849w/p4noXUrGpPUF0BPqIAfdAe76BLaRGAGKZ1gTDNiGxGcpsLcwJ9OTi1/V8A+AzvsmI9pkjie2zjIQZKA==", "license": "MIT", "dependencies": { - "@docusaurus/babel": "3.7.0", - "@docusaurus/bundler": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "boxen": "^6.2.1", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cli-table3": "^0.6.3", - "combine-promises": "^1.1.0", - "commander": "^5.1.0", - "core-js": "^3.31.1", - "del": "^6.1.1", - "detect-port": "^1.5.1", - "escape-html": "^1.0.3", - "eta": "^2.2.0", - "eval": "^0.1.8", + "@docusaurus/core": "3.9.2", + "@docusaurus/mdx-loader": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", "fs-extra": "^11.1.1", - "html-tags": "^3.3.1", - "html-webpack-plugin": "^5.6.0", - "leven": "^3.1.0", - "lodash": "^4.17.21", - "p-map": "^4.0.0", - "prompts": "^2.4.2", - "react-dev-utils": "^12.0.1", - "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", - "react-loadable": "npm:@docusaurus/react-loadable@6.0.0", - "react-loadable-ssr-addon-v5-slorber": "^1.0.1", - "react-router": "^5.3.4", - "react-router-config": "^5.1.1", - "react-router-dom": "^5.3.4", - "semver": "^7.5.4", - "serve-handler": "^6.1.6", - "shelljs": "^0.8.5", "tslib": "^2.6.0", - "update-notifier": "^6.0.2", - "webpack": "^5.95.0", - "webpack-bundle-analyzer": "^4.10.2", - "webpack-dev-server": "^4.15.2", - "webpack-merge": "^6.0.1" - }, - "bin": { - "docusaurus": "bin/docusaurus.mjs" + "webpack": "^5.88.1" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { - "@mdx-js/react": "^3.0.0", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-content-docs/node_modules/@docusaurus/logger": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.7.0.tgz", - "integrity": "sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA==", + "node_modules/@docusaurus/plugin-css-cascade-layers": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-css-cascade-layers/-/plugin-css-cascade-layers-3.9.2.tgz", + "integrity": "sha512-w1s3+Ss+eOQbscGM4cfIFBlVg/QKxyYgj26k5AnakuHkKxH6004ZtuLe5awMBotIYF2bbGDoDhpgQ4r/kcj4rQ==", "license": "MIT", "dependencies": { - "chalk": "^4.1.2", + "@docusaurus/core": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" } }, - "node_modules/@docusaurus/plugin-content-docs/node_modules/@docusaurus/mdx-loader": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.7.0.tgz", - "integrity": "sha512-OFBG6oMjZzc78/U3WNPSHs2W9ZJ723ewAcvVJaqS0VgyeUfmzUV8f1sv+iUHA0DtwiR5T5FjOxj6nzEE8LY6VA==", + "node_modules/@docusaurus/plugin-debug": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.9.2.tgz", + "integrity": "sha512-j7a5hWuAFxyQAkilZwhsQ/b3T7FfHZ+0dub6j/GxKNFJp2h9qk/P1Bp7vrGASnvA9KNQBBL1ZXTe7jlh4VdPdA==", "license": "MIT", "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@mdx-js/mdx": "^3.0.0", - "@slorber/remark-comment": "^1.0.0", - "escape-html": "^1.0.3", - "estree-util-value-to-estree": "^3.0.1", - "file-loader": "^6.2.0", + "@docusaurus/core": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", "fs-extra": "^11.1.1", - "image-size": "^1.0.2", - "mdast-util-mdx": "^3.0.0", - "mdast-util-to-string": "^4.0.0", - "rehype-raw": "^7.0.0", - "remark-directive": "^3.0.0", - "remark-emoji": "^4.0.0", - "remark-frontmatter": "^5.0.0", - "remark-gfm": "^4.0.0", - "stringify-object": "^3.3.0", - "tslib": "^2.6.0", - "unified": "^11.0.3", - "unist-util-visit": "^5.0.0", - "url-loader": "^4.1.1", - "vfile": "^6.0.1", - "webpack": "^5.88.1" + "react-json-view-lite": "^2.3.0", + "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-content-docs/node_modules/@docusaurus/theme-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.7.0.tgz", - "integrity": "sha512-8eJ5X0y+gWDsURZnBfH0WabdNm8XMCXHv8ENy/3Z/oQKwaB/EHt5lP9VsTDTf36lKEp0V6DjzjFyFIB+CetL0A==", + "node_modules/@docusaurus/plugin-google-analytics": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.9.2.tgz", + "integrity": "sha512-mAwwQJ1Us9jL/lVjXtErXto4p4/iaLlweC54yDUK1a97WfkC6Z2k5/769JsFgwOwOP+n5mUQGACXOEQ0XDuVUw==", "license": "MIT", "dependencies": { - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/module-type-aliases": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "clsx": "^2.0.0", - "parse-numeric-range": "^1.3.0", - "prism-react-renderer": "^2.3.0", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" + "@docusaurus/core": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { - "@docusaurus/plugin-content-docs": "*", "react": "^18.0.0 || ^19.0.0", "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-content-docs/node_modules/@docusaurus/utils": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.7.0.tgz", - "integrity": "sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==", + "node_modules/@docusaurus/plugin-google-gtag": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.9.2.tgz", + "integrity": "sha512-YJ4lDCphabBtw19ooSlc1MnxtYGpjFV9rEdzjLsUnBCeis2djUyCozZaFhCg6NGEwOn7HDDyMh0yzcdRpnuIvA==", "license": "MIT", "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "escape-string-regexp": "^4.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "github-slugger": "^1.5.0", - "globby": "^11.1.0", - "gray-matter": "^4.0.3", - "jiti": "^1.20.0", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "micromatch": "^4.0.5", - "prompts": "^2.4.2", - "resolve-pathname": "^3.0.0", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "url-loader": "^4.1.1", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "@docusaurus/core": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "@types/gtag.js": "^0.0.12", + "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-content-docs/node_modules/@docusaurus/utils-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.7.0.tgz", - "integrity": "sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA==", + "node_modules/@docusaurus/plugin-google-tag-manager": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.9.2.tgz", + "integrity": "sha512-LJtIrkZN/tuHD8NqDAW1Tnw0ekOwRTfobWPsdO15YxcicBo2ykKF0/D6n0vVBfd3srwr9Z6rzrIWYrMzBGrvNw==", "license": "MIT", "dependencies": { - "@docusaurus/types": "3.7.0", + "@docusaurus/core": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-content-docs/node_modules/@docusaurus/utils-validation": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.7.0.tgz", - "integrity": "sha512-w8eiKk8mRdN+bNfeZqC4nyFoxNyI1/VExMKAzD9tqpJfLLbsa46Wfn5wcKH761g9WkKh36RtFV49iL9lh1DYBA==", + "node_modules/@docusaurus/plugin-ideal-image": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-ideal-image/-/plugin-ideal-image-3.9.2.tgz", + "integrity": "sha512-YYYbmC2wSYFd7o4//5rPXt9+DkZwfwjCUmyGi5OIVqEbwELK80o3COXs2Xd0BtVIpuRvG7pKCYrMQwVo32Y9qw==", "license": "MIT", "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "fs-extra": "^11.2.0", - "joi": "^17.9.2", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.6.0" + "@docusaurus/core": "3.9.2", + "@docusaurus/lqip-loader": "3.9.2", + "@docusaurus/responsive-loader": "^1.7.0", + "@docusaurus/theme-translations": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "sharp": "^0.32.3", + "tslib": "^2.6.0", + "webpack": "^5.88.1" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" + }, + "peerDependencies": { + "jimp": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "jimp": { + "optional": true + } } }, - "node_modules/@docusaurus/plugin-content-docs/node_modules/webpack-merge": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", - "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", + "node_modules/@docusaurus/plugin-sitemap": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.9.2.tgz", + "integrity": "sha512-WLh7ymgDXjG8oPoM/T4/zUP7KcSuFYRZAUTl8vR6VzYkfc18GBM4xLhcT+AKOwun6kBivYKUJf+vlqYJkm+RHw==", "license": "MIT", "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.1" + "@docusaurus/core": "3.9.2", + "@docusaurus/logger": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-common": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "fs-extra": "^11.1.1", + "sitemap": "^7.1.1", + "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0.0" + "node": ">=20.0" + }, + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-content-pages": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.4.0.tgz", - "integrity": "sha512-h2+VN/0JjpR8fIkDEAoadNjfR3oLzB+v1qSXbIAKjQ46JAHx3X22n9nqS+BWSQnTnp1AjkjSvZyJMekmcwxzxg==", + "node_modules/@docusaurus/plugin-svgr": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/plugin-svgr/-/plugin-svgr-3.9.2.tgz", + "integrity": "sha512-n+1DE+5b3Lnf27TgVU5jM1d4x5tUh2oW5LTsBxJX4PsAPV0JGcmI6p3yLYtEY0LRVEIJh+8RsdQmRE66wSV8mw==", "license": "MIT", "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/mdx-loader": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "fs-extra": "^11.1.1", + "@docusaurus/core": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "@svgr/core": "8.1.0", + "@svgr/webpack": "^8.1.0", "tslib": "^2.6.0", "webpack": "^5.88.1" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-content-pages/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", + "node_modules/@docusaurus/preset-classic": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.9.2.tgz", + "integrity": "sha512-IgyYO2Gvaigi21LuDIe+nvmN/dfGXAiMcV/murFqcpjnZc7jxFAxW+9LEjdPt61uZLxG4ByW/oUmX/DDK9t/8w==", "license": "MIT", "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "@docusaurus/core": "3.9.2", + "@docusaurus/plugin-content-blog": "3.9.2", + "@docusaurus/plugin-content-docs": "3.9.2", + "@docusaurus/plugin-content-pages": "3.9.2", + "@docusaurus/plugin-css-cascade-layers": "3.9.2", + "@docusaurus/plugin-debug": "3.9.2", + "@docusaurus/plugin-google-analytics": "3.9.2", + "@docusaurus/plugin-google-gtag": "3.9.2", + "@docusaurus/plugin-google-tag-manager": "3.9.2", + "@docusaurus/plugin-sitemap": "3.9.2", + "@docusaurus/plugin-svgr": "3.9.2", + "@docusaurus/theme-classic": "3.9.2", + "@docusaurus/theme-common": "3.9.2", + "@docusaurus/theme-search-algolia": "3.9.2", + "@docusaurus/types": "3.9.2" + }, + "engines": { + "node": ">=20.0" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-debug": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-debug/-/plugin-debug-3.4.0.tgz", - "integrity": "sha512-uV7FDUNXGyDSD3PwUaf5YijX91T5/H9SX4ErEcshzwgzWwBtK37nUWPU3ZLJfeTavX3fycTOqk9TglpOLaWkCg==", - "license": "MIT", + "node_modules/@docusaurus/responsive-loader": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@docusaurus/responsive-loader/-/responsive-loader-1.7.1.tgz", + "integrity": "sha512-jAebZ43f8GVpZSrijLGHVVp7Y0OMIPRaL+HhiIWQ+f/b72lTsKLkSkOVHEzvd2psNJ9lsoiM3gt6akpak6508w==", + "license": "BSD-3-Clause", "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils": "3.4.0", - "fs-extra": "^11.1.1", - "react-json-view-lite": "^1.2.0", - "tslib": "^2.6.0" + "loader-utils": "^2.0.0" }, "engines": { - "node": ">=18.0" + "node": ">=12" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@docusaurus/plugin-debug/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", - "license": "MIT", - "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "jimp": "*", + "sharp": "*" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "peerDependenciesMeta": { + "jimp": { + "optional": true + }, + "sharp": { + "optional": true + } } }, - "node_modules/@docusaurus/plugin-google-analytics": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-analytics/-/plugin-google-analytics-3.4.0.tgz", - "integrity": "sha512-mCArluxEGi3cmYHqsgpGGt3IyLCrFBxPsxNZ56Mpur0xSlInnIHoeLDH7FvVVcPJRPSQ9/MfRqLsainRw+BojA==", - "license": "MIT", - "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "tslib": "^2.6.0" + "node_modules/@docusaurus/theme-classic": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.9.2.tgz", + "integrity": "sha512-IGUsArG5hhekXd7RDb11v94ycpJpFdJPkLnt10fFQWOVxAtq5/D7hT6lzc2fhyQKaaCE62qVajOMKL7OiAFAIA==", + "license": "MIT", + "dependencies": { + "@docusaurus/core": "3.9.2", + "@docusaurus/logger": "3.9.2", + "@docusaurus/mdx-loader": "3.9.2", + "@docusaurus/module-type-aliases": "3.9.2", + "@docusaurus/plugin-content-blog": "3.9.2", + "@docusaurus/plugin-content-docs": "3.9.2", + "@docusaurus/plugin-content-pages": "3.9.2", + "@docusaurus/theme-common": "3.9.2", + "@docusaurus/theme-translations": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-common": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "@mdx-js/react": "^3.0.0", + "clsx": "^2.0.0", + "infima": "0.2.0-alpha.45", + "lodash": "^4.17.21", + "nprogress": "^0.2.0", + "postcss": "^8.5.4", + "prism-react-renderer": "^2.3.0", + "prismjs": "^1.29.0", + "react-router-dom": "^5.3.4", + "rtlcss": "^4.1.0", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-google-analytics/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", + "node_modules/@docusaurus/theme-common": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.9.2.tgz", + "integrity": "sha512-6c4DAbR6n6nPbnZhY2V3tzpnKnGL+6aOsLvFL26VRqhlczli9eWG0VDUNoCQEPnGwDMhPS42UhSAnz5pThm5Ag==", "license": "MIT", "dependencies": { - "@mdx-js/mdx": "^3.0.0", + "@docusaurus/mdx-loader": "3.9.2", + "@docusaurus/module-type-aliases": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-common": "3.9.2", "@types/history": "^4.7.11", "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "@types/react-router-config": "*", + "clsx": "^2.0.0", + "parse-numeric-range": "^1.3.0", + "prism-react-renderer": "^2.3.0", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" + }, + "engines": { + "node": ">=20.0" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "@docusaurus/plugin-content-docs": "*", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-google-gtag": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-gtag/-/plugin-google-gtag-3.4.0.tgz", - "integrity": "sha512-Dsgg6PLAqzZw5wZ4QjUYc8Z2KqJqXxHxq3vIoyoBWiLEEfigIs7wHR+oiWUQy3Zk9MIk6JTYj7tMoQU0Jm3nqA==", - "license": "MIT", - "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "@types/gtag.js": "^0.0.12", - "tslib": "^2.6.0" + "node_modules/@docusaurus/theme-search-algolia": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.9.2.tgz", + "integrity": "sha512-GBDSFNwjnh5/LdkxCKQHkgO2pIMX1447BxYUBG2wBiajS21uj64a+gH/qlbQjDLxmGrbrllBrtJkUHxIsiwRnw==", + "license": "MIT", + "dependencies": { + "@docsearch/react": "^3.9.0 || ^4.1.0", + "@docusaurus/core": "3.9.2", + "@docusaurus/logger": "3.9.2", + "@docusaurus/plugin-content-docs": "3.9.2", + "@docusaurus/theme-common": "3.9.2", + "@docusaurus/theme-translations": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-validation": "3.9.2", + "algoliasearch": "^5.37.0", + "algoliasearch-helper": "^3.26.0", + "clsx": "^2.0.0", + "eta": "^2.2.0", + "fs-extra": "^11.1.1", + "lodash": "^4.17.21", + "tslib": "^2.6.0", + "utility-types": "^3.10.0" }, "engines": { - "node": ">=18.0" + "node": ">=20.0" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-google-gtag/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", + "node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/client-analytics": { + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.42.0.tgz", + "integrity": "sha512-SkCrvtZpdSWjNq9NGu/TtOg4TbzRuUToXlQqV6lLePa2s/WQlEyFw7QYjrz4itprWG9ASuH+StDlq7n49F2sBA==", "license": "MIT", "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@docusaurus/plugin-google-tag-manager": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-google-tag-manager/-/plugin-google-tag-manager-3.4.0.tgz", - "integrity": "sha512-O9tX1BTwxIhgXpOLpFDueYA9DWk69WCbDRrjYoMQtFHSkTyE7RhNgyjSPREUWJb9i+YUg3OrsvrBYRl64FCPCQ==", + "node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/client-personalization": { + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.42.0.tgz", + "integrity": "sha512-ivVniRqX2ARd+jGvRHTxpWeOtO9VT+rK+OmiuRgkSunoTyxk0vjeDO7QkU7+lzBOXiYgakNjkZrBtIpW9c+muw==", "license": "MIT", "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "tslib": "^2.6.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "node": ">= 14.0.0" } }, - "node_modules/@docusaurus/plugin-google-tag-manager/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", + "node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/recommend": { + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.42.0.tgz", + "integrity": "sha512-U5yZ8+Jj+A4ZC0IMfElpPcddQ9NCoawD1dKyWmjHP49nzN2Z4284IFVMAJWR6fq/0ddGf4OMjjYO9cnF8L+5tw==", "license": "MIT", "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "@algolia/client-common": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "engines": { + "node": ">= 14.0.0" } }, - "node_modules/@docusaurus/plugin-ideal-image": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-ideal-image/-/plugin-ideal-image-3.4.0.tgz", - "integrity": "sha512-s8N/PRiv1R66UY+WX/2E9a+GjkRooXVcf0VJNEYA3yZ6c24Path15ivjmdMtKaSo/6OXYbejGlA4DJZ5TPLkCQ==", + "node_modules/@docusaurus/theme-search-algolia/node_modules/algoliasearch": { + "version": "5.42.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.42.0.tgz", + "integrity": "sha512-X5+PtWc9EJIPafT/cj8ZG+6IU3cjRRnlHGtqMHK/9gsiupQbAyYlH5y7qt/FtsAhfX5AICHffZy69ZAsVrxWkQ==", + "license": "MIT", + "dependencies": { + "@algolia/abtesting": "1.8.0", + "@algolia/client-abtesting": "5.42.0", + "@algolia/client-analytics": "5.42.0", + "@algolia/client-common": "5.42.0", + "@algolia/client-insights": "5.42.0", + "@algolia/client-personalization": "5.42.0", + "@algolia/client-query-suggestions": "5.42.0", + "@algolia/client-search": "5.42.0", + "@algolia/ingestion": "1.42.0", + "@algolia/monitoring": "1.42.0", + "@algolia/recommend": "5.42.0", + "@algolia/requester-browser-xhr": "5.42.0", + "@algolia/requester-fetch": "5.42.0", + "@algolia/requester-node-http": "5.42.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@docusaurus/theme-translations": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.9.2.tgz", + "integrity": "sha512-vIryvpP18ON9T9rjgMRFLr2xJVDpw1rtagEGf8Ccce4CkTrvM/fRB8N2nyWYOW5u3DdjkwKw5fBa+3tbn9P4PA==", "license": "MIT", "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/lqip-loader": "3.4.0", - "@docusaurus/responsive-loader": "^1.7.0", - "@docusaurus/theme-translations": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "@slorber/react-ideal-image": "^0.0.12", - "react-waypoint": "^10.3.0", - "sharp": "^0.32.3", - "tslib": "^2.6.0", - "webpack": "^5.88.1" + "fs-extra": "^11.1.1", + "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "jimp": "*", - "react": "^18.0.0", - "react-dom": "^18.0.0" - }, - "peerDependenciesMeta": { - "jimp": { - "optional": true - } + "node": ">=20.0" } }, - "node_modules/@docusaurus/plugin-ideal-image/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", + "node_modules/@docusaurus/tsconfig": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/tsconfig/-/tsconfig-3.9.2.tgz", + "integrity": "sha512-j6/Fp4Rlpxsc632cnRnl5HpOWeb6ZKssDj6/XzzAzVGXXfm9Eptx3rxCC+fDzySn9fHTS+CWJjPineCR1bB5WQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@docusaurus/types": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.9.2.tgz", + "integrity": "sha512-Ux1JUNswg+EfUEmajJjyhIohKceitY/yzjRUpu04WXgvVz+fbhVC0p+R0JhvEu4ytw8zIAys2hrdpQPBHRIa8Q==", "license": "MIT", "dependencies": { "@mdx-js/mdx": "^3.0.0", "@types/history": "^4.7.11", + "@types/mdast": "^4.0.2", "@types/react": "*", "commander": "^5.1.0", "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", + "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", "utility-types": "^3.10.0", - "webpack": "^5.88.1", + "webpack": "^5.95.0", "webpack-merge": "^5.9.0" }, "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" } }, - "node_modules/@docusaurus/plugin-sitemap": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-sitemap/-/plugin-sitemap-3.4.0.tgz", - "integrity": "sha512-+0VDvx9SmNrFNgwPoeoCha+tRoAjopwT0+pYO1xAbyLcewXSemq+eLxEa46Q1/aoOaJQ0qqHELuQM7iS2gp33Q==", + "node_modules/@docusaurus/utils": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.9.2.tgz", + "integrity": "sha512-lBSBiRruFurFKXr5Hbsl2thmGweAPmddhF3jb99U4EMDA5L+e5Y1rAkOS07Nvrup7HUMBDrCV45meaxZnt28nQ==", "license": "MIT", "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/logger": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", + "@docusaurus/logger": "3.9.2", + "@docusaurus/types": "3.9.2", + "@docusaurus/utils-common": "3.9.2", + "escape-string-regexp": "^4.0.0", + "execa": "5.1.1", + "file-loader": "^6.2.0", "fs-extra": "^11.1.1", - "sitemap": "^7.1.1", - "tslib": "^2.6.0" + "github-slugger": "^1.5.0", + "globby": "^11.1.0", + "gray-matter": "^4.0.3", + "jiti": "^1.20.0", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "micromatch": "^4.0.5", + "p-queue": "^6.6.2", + "prompts": "^2.4.2", + "resolve-pathname": "^3.0.0", + "tslib": "^2.6.0", + "url-loader": "^4.1.1", + "utility-types": "^3.10.0", + "webpack": "^5.88.1" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "node": ">=20.0" } }, - "node_modules/@docusaurus/plugin-sitemap/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", + "node_modules/@docusaurus/utils-common": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.9.2.tgz", + "integrity": "sha512-I53UC1QctruA6SWLvbjbhCpAw7+X7PePoe5pYcwTOEXD/PxeP8LnECAhTHHwWCblyUX5bMi4QLRkxvyZ+IT8Aw==", "license": "MIT", "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "@docusaurus/types": "3.9.2", + "tslib": "^2.6.0" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "engines": { + "node": ">=20.0" } }, - "node_modules/@docusaurus/preset-classic": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/preset-classic/-/preset-classic-3.4.0.tgz", - "integrity": "sha512-Ohj6KB7siKqZaQhNJVMBBUzT3Nnp6eTKqO+FXO3qu/n1hJl3YLwVKTWBg28LF7MWrKu46UuYavwMRxud0VyqHg==", - "license": "MIT", - "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/plugin-content-blog": "3.4.0", - "@docusaurus/plugin-content-docs": "3.4.0", - "@docusaurus/plugin-content-pages": "3.4.0", - "@docusaurus/plugin-debug": "3.4.0", - "@docusaurus/plugin-google-analytics": "3.4.0", - "@docusaurus/plugin-google-gtag": "3.4.0", - "@docusaurus/plugin-google-tag-manager": "3.4.0", - "@docusaurus/plugin-sitemap": "3.4.0", - "@docusaurus/theme-classic": "3.4.0", - "@docusaurus/theme-common": "3.4.0", - "@docusaurus/theme-search-algolia": "3.4.0", - "@docusaurus/types": "3.4.0" + "node_modules/@docusaurus/utils-validation": { + "version": "3.9.2", + "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.9.2.tgz", + "integrity": "sha512-l7yk3X5VnNmATbwijJkexdhulNsQaNDwoagiwujXoxFbWLcxHQqNQ+c/IAlzrfMMOfa/8xSBZ7KEKDesE/2J7A==", + "license": "MIT", + "dependencies": { + "@docusaurus/logger": "3.9.2", + "@docusaurus/utils": "3.9.2", + "@docusaurus/utils-common": "3.9.2", + "fs-extra": "^11.2.0", + "joi": "^17.9.2", + "js-yaml": "^4.1.0", + "lodash": "^4.17.21", + "tslib": "^2.6.0" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "node": ">=20.0" } }, - "node_modules/@docusaurus/preset-classic/node_modules/@docusaurus/module-type-aliases": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.4.0.tgz", - "integrity": "sha512-A1AyS8WF5Bkjnb8s+guTDuYmUiwJzNrtchebBHpc0gz0PyHJNMaybUlSrmJjHVcGrya0LKI4YcR3lBDQfXRYLw==", - "license": "MIT", - "dependencies": { - "@docusaurus/types": "3.4.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "@types/react-router-dom": "*", - "react-helmet-async": "*", - "react-loadable": "npm:@docusaurus/react-loadable@6.0.0" - }, - "peerDependencies": { - "react": "*", - "react-dom": "*" + "node_modules/@exodus/schemasafe": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", + "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==", + "license": "MIT" + }, + "node_modules/@faker-js/faker": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-5.5.3.tgz", + "integrity": "sha512-R11tGE6yIFwqpaIqcfkcg7AICXzFg14+5h5v0TfF/9+RMDL6jhzCy/pxHVOfbALGdtVYdt6JdR21tuxEgl34dw==", + "deprecated": "Please update to a newer version.", + "license": "MIT" + }, + "node_modules/@hapi/hoek": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", + "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/topo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", + "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^9.0.0" } }, - "node_modules/@docusaurus/preset-classic/node_modules/@docusaurus/plugin-content-docs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.4.0.tgz", - "integrity": "sha512-HkUCZffhBo7ocYheD9oZvMcDloRnGhBMOZRyVcAQRFmZPmNqSyISlXA1tQCIxW+r478fty97XXAGjNYzBjpCsg==", + "node_modules/@hookform/error-message": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@hookform/error-message/-/error-message-2.0.1.tgz", + "integrity": "sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg==", "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0", + "react-hook-form": "^7.0.0" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/logger": "3.4.0", - "@docusaurus/mdx-loader": "3.4.0", - "@docusaurus/module-type-aliases": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "@types/react-router-config": "^5.0.7", - "combine-promises": "^1.1.0", - "fs-extra": "^11.1.1", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.6.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "node": ">=12" } }, - "node_modules/@docusaurus/preset-classic/node_modules/@docusaurus/theme-classic": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.4.0.tgz", - "integrity": "sha512-0IPtmxsBYv2adr1GnZRdMkEQt1YW6tpzrUPj02YxNpvJ5+ju4E13J5tB4nfdaen/tfR1hmpSPlTFPvTf4kwy8Q==", - "license": "MIT", - "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/mdx-loader": "3.4.0", - "@docusaurus/module-type-aliases": "3.4.0", - "@docusaurus/plugin-content-blog": "3.4.0", - "@docusaurus/plugin-content-docs": "3.4.0", - "@docusaurus/plugin-content-pages": "3.4.0", - "@docusaurus/theme-common": "3.4.0", - "@docusaurus/theme-translations": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "@mdx-js/react": "^3.0.0", - "clsx": "^2.0.0", - "copy-text-to-clipboard": "^3.2.0", - "infima": "0.2.0-alpha.43", - "lodash": "^4.17.21", - "nprogress": "^0.2.0", - "postcss": "^8.4.26", - "prism-react-renderer": "^2.3.0", - "prismjs": "^1.29.0", - "react-router-dom": "^5.3.4", - "rtlcss": "^4.1.0", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" - }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", "engines": { - "node": ">=18.0" + "node": ">=12" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/@docusaurus/preset-classic/node_modules/@docusaurus/theme-search-algolia": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.4.0.tgz", - "integrity": "sha512-aiHFx7OCw4Wck1z6IoShVdUWIjntC8FHCw9c5dR8r3q4Ynh+zkS8y2eFFunN/DL6RXPzpnvKCg3vhLQYJDmT9Q==", + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "license": "MIT", "dependencies": { - "@docsearch/react": "^3.5.2", - "@docusaurus/core": "3.4.0", - "@docusaurus/logger": "3.4.0", - "@docusaurus/plugin-content-docs": "3.4.0", - "@docusaurus/theme-common": "3.4.0", - "@docusaurus/theme-translations": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "algoliasearch": "^4.18.0", - "algoliasearch-helper": "^3.13.3", - "clsx": "^2.0.0", - "eta": "^2.2.0", - "fs-extra": "^11.1.1", - "lodash": "^4.17.21", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">=18.0" + "node": ">=12" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/@docusaurus/preset-classic/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "license": "MIT", "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "@sinclair/typebox": "^0.27.8" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" - } - }, - "node_modules/@docusaurus/preset-classic/node_modules/infima": { - "version": "0.2.0-alpha.43", - "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.43.tgz", - "integrity": "sha512-2uw57LvUqW0rK/SWYnd/2rRfxNA5DDNOh33jxF7fy46VWoNhGxiUQyVZHbBMjQ33mQem0cjdDVwgWVAmlRfgyQ==", - "license": "MIT", "engines": { - "node": ">=12" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@docusaurus/responsive-loader": { - "version": "1.7.1", - "resolved": "https://registry.npmjs.org/@docusaurus/responsive-loader/-/responsive-loader-1.7.1.tgz", - "integrity": "sha512-jAebZ43f8GVpZSrijLGHVVp7Y0OMIPRaL+HhiIWQ+f/b72lTsKLkSkOVHEzvd2psNJ9lsoiM3gt6akpak6508w==", - "license": "BSD-3-Clause", + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "license": "MIT", "dependencies": { - "loader-utils": "^2.0.0" + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" }, "engines": { - "node": ">=12" - }, - "peerDependencies": { - "jimp": "*", - "sharp": "*" - }, - "peerDependenciesMeta": { - "jimp": { - "optional": true - }, - "sharp": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@docusaurus/theme-classic": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-classic/-/theme-classic-3.7.0.tgz", - "integrity": "sha512-MnLxG39WcvLCl4eUzHr0gNcpHQfWoGqzADCly54aqCofQX6UozOS9Th4RK3ARbM9m7zIRv3qbhggI53dQtx/hQ==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", "license": "MIT", - "peer": true, "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/module-type-aliases": "3.7.0", - "@docusaurus/plugin-content-blog": "3.7.0", - "@docusaurus/plugin-content-docs": "3.7.0", - "@docusaurus/plugin-content-pages": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/theme-translations": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@mdx-js/react": "^3.0.0", - "clsx": "^2.0.0", - "copy-text-to-clipboard": "^3.2.0", - "infima": "0.2.0-alpha.45", - "lodash": "^4.17.21", - "nprogress": "^0.2.0", - "postcss": "^8.4.26", - "prism-react-renderer": "^2.3.0", - "prismjs": "^1.29.0", - "react-router-dom": "^5.3.4", - "rtlcss": "^4.1.0", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "node": ">=6.0.0" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/core": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.7.0.tgz", - "integrity": "sha512-b0fUmaL+JbzDIQaamzpAFpTviiaU4cX3Qz8cuo14+HGBCwa0evEK0UYCBFY3n4cLzL8Op1BueeroUD2LYAIHbQ==", + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "license": "MIT", - "peer": true, - "dependencies": { - "@docusaurus/babel": "3.7.0", - "@docusaurus/bundler": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "boxen": "^6.2.1", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cli-table3": "^0.6.3", - "combine-promises": "^1.1.0", - "commander": "^5.1.0", - "core-js": "^3.31.1", - "del": "^6.1.1", - "detect-port": "^1.5.1", - "escape-html": "^1.0.3", - "eta": "^2.2.0", - "eval": "^0.1.8", - "fs-extra": "^11.1.1", - "html-tags": "^3.3.1", - "html-webpack-plugin": "^5.6.0", - "leven": "^3.1.0", - "lodash": "^4.17.21", - "p-map": "^4.0.0", - "prompts": "^2.4.2", - "react-dev-utils": "^12.0.1", - "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", - "react-loadable": "npm:@docusaurus/react-loadable@6.0.0", - "react-loadable-ssr-addon-v5-slorber": "^1.0.1", - "react-router": "^5.3.4", - "react-router-config": "^5.1.1", - "react-router-dom": "^5.3.4", - "semver": "^7.5.4", - "serve-handler": "^6.1.6", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "update-notifier": "^6.0.2", - "webpack": "^5.95.0", - "webpack-bundle-analyzer": "^4.10.2", - "webpack-dev-server": "^4.15.2", - "webpack-merge": "^6.0.1" - }, - "bin": { - "docusaurus": "bin/docusaurus.mjs" - }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "@mdx-js/react": "^3.0.0", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "node": ">=6.0.0" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/logger": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.7.0.tgz", - "integrity": "sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA==", + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "license": "MIT", - "peer": true, - "dependencies": { - "chalk": "^4.1.2", - "tslib": "^2.6.0" - }, "engines": { - "node": ">=18.0" + "node": ">=6.0.0" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/mdx-loader": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.7.0.tgz", - "integrity": "sha512-OFBG6oMjZzc78/U3WNPSHs2W9ZJ723ewAcvVJaqS0VgyeUfmzUV8f1sv+iUHA0DtwiR5T5FjOxj6nzEE8LY6VA==", + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "license": "MIT", - "peer": true, "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@mdx-js/mdx": "^3.0.0", - "@slorber/remark-comment": "^1.0.0", - "escape-html": "^1.0.3", - "estree-util-value-to-estree": "^3.0.1", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "image-size": "^1.0.2", - "mdast-util-mdx": "^3.0.0", - "mdast-util-to-string": "^4.0.0", - "rehype-raw": "^7.0.0", - "remark-directive": "^3.0.0", - "remark-emoji": "^4.0.0", - "remark-frontmatter": "^5.0.0", - "remark-gfm": "^4.0.0", - "stringify-object": "^3.3.0", - "tslib": "^2.6.0", - "unified": "^11.0.3", - "unist-util-visit": "^5.0.0", - "url-loader": "^4.1.1", - "vfile": "^6.0.1", - "webpack": "^5.88.1" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@jsdevtools/ono": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", + "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==", + "license": "MIT" + }, + "node_modules/@jsonjoy.com/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/buffers": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/buffers/-/buffers-1.2.1.tgz", + "integrity": "sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==", + "license": "Apache-2.0", "engines": { - "node": ">=18.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "tslib": "2" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/plugin-content-blog": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-blog/-/plugin-content-blog-3.7.0.tgz", - "integrity": "sha512-EFLgEz6tGHYWdPU0rK8tSscZwx+AsyuBW/r+tNig2kbccHYGUJmZtYN38GjAa3Fda4NU+6wqUO5kTXQSRBQD3g==", - "license": "MIT", - "peer": true, + "node_modules/@jsonjoy.com/codegen": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/codegen/-/codegen-1.0.0.tgz", + "integrity": "sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, + "node_modules/@jsonjoy.com/json-pack": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.21.0.tgz", + "integrity": "sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==", + "license": "Apache-2.0", "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "cheerio": "1.0.0-rc.12", - "feed": "^4.2.2", - "fs-extra": "^11.1.1", - "lodash": "^4.17.21", - "reading-time": "^1.5.0", - "srcset": "^4.0.0", - "tslib": "^2.6.0", - "unist-util-visit": "^5.0.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "@jsonjoy.com/base64": "^1.1.2", + "@jsonjoy.com/buffers": "^1.2.0", + "@jsonjoy.com/codegen": "^1.0.0", + "@jsonjoy.com/json-pointer": "^1.0.2", + "@jsonjoy.com/util": "^1.9.0", + "hyperdyperid": "^1.2.0", + "thingies": "^2.5.0", + "tree-dump": "^1.1.0" }, "engines": { - "node": ">=18.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@docusaurus/plugin-content-docs": "*", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "tslib": "2" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/plugin-content-pages": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-pages/-/plugin-content-pages-3.7.0.tgz", - "integrity": "sha512-YJSU3tjIJf032/Aeao8SZjFOrXJbz/FACMveSMjLyMH4itQyZ2XgUIzt4y+1ISvvk5zrW4DABVT2awTCqBkx0Q==", - "license": "MIT", - "peer": true, + "node_modules/@jsonjoy.com/json-pointer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pointer/-/json-pointer-1.0.2.tgz", + "integrity": "sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==", + "license": "Apache-2.0", "dependencies": { - "@docusaurus/core": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "fs-extra": "^11.1.1", - "tslib": "^2.6.0", - "webpack": "^5.88.1" + "@jsonjoy.com/codegen": "^1.0.0", + "@jsonjoy.com/util": "^1.9.0" }, "engines": { - "node": ">=18.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "tslib": "2" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/theme-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.7.0.tgz", - "integrity": "sha512-8eJ5X0y+gWDsURZnBfH0WabdNm8XMCXHv8ENy/3Z/oQKwaB/EHt5lP9VsTDTf36lKEp0V6DjzjFyFIB+CetL0A==", - "license": "MIT", - "peer": true, + "node_modules/@jsonjoy.com/util": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.9.0.tgz", + "integrity": "sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==", + "license": "Apache-2.0", "dependencies": { - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/module-type-aliases": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "clsx": "^2.0.0", - "parse-numeric-range": "^1.3.0", - "prism-react-renderer": "^2.3.0", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" + "@jsonjoy.com/buffers": "^1.0.0", + "@jsonjoy.com/codegen": "^1.0.0" }, "engines": { - "node": ">=18.0" + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { - "@docusaurus/plugin-content-docs": "*", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "tslib": "2" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/theme-translations": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.7.0.tgz", - "integrity": "sha512-Ewq3bEraWDmienM6eaNK7fx+/lHMtGDHQyd1O+4+3EsDxxUmrzPkV7Ct3nBWTuE0MsoZr3yNwQVKjllzCMuU3g==", + "node_modules/@leichtgewicht/ip-codec": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", + "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", + "license": "MIT" + }, + "node_modules/@mdx-js/mdx": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.0.tgz", + "integrity": "sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==", "license": "MIT", - "peer": true, "dependencies": { - "fs-extra": "^11.1.1", - "tslib": "^2.6.0" + "@types/estree": "^1.0.0", + "@types/estree-jsx": "^1.0.0", + "@types/hast": "^3.0.0", + "@types/mdx": "^2.0.0", + "collapse-white-space": "^2.0.0", + "devlop": "^1.0.0", + "estree-util-is-identifier-name": "^3.0.0", + "estree-util-scope": "^1.0.0", + "estree-walker": "^3.0.0", + "hast-util-to-jsx-runtime": "^2.0.0", + "markdown-extensions": "^2.0.0", + "recma-build-jsx": "^1.0.0", + "recma-jsx": "^1.0.0", + "recma-stringify": "^1.0.0", + "rehype-recma": "^1.0.0", + "remark-mdx": "^3.0.0", + "remark-parse": "^11.0.0", + "remark-rehype": "^11.0.0", + "source-map": "^0.7.0", + "unified": "^11.0.0", + "unist-util-position-from-estree": "^2.0.0", + "unist-util-stringify-position": "^4.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" }, - "engines": { - "node": ">=18.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/utils": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.7.0.tgz", - "integrity": "sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==", + "node_modules/@mdx-js/react": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.0.tgz", + "integrity": "sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==", "license": "MIT", - "peer": true, "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "escape-string-regexp": "^4.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "github-slugger": "^1.5.0", - "globby": "^11.1.0", - "gray-matter": "^4.0.3", - "jiti": "^1.20.0", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "micromatch": "^4.0.5", - "prompts": "^2.4.2", - "resolve-pathname": "^3.0.0", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "url-loader": "^4.1.1", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "@types/mdx": "^2.0.0" }, - "engines": { - "node": ">=18.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=16", + "react": ">=16" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/utils-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.7.0.tgz", - "integrity": "sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA==", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "license": "MIT", - "peer": true, "dependencies": { - "@docusaurus/types": "3.7.0", - "tslib": "^2.6.0" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, "engines": { - "node": ">=18.0" + "node": ">= 8" } }, - "node_modules/@docusaurus/theme-classic/node_modules/@docusaurus/utils-validation": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.7.0.tgz", - "integrity": "sha512-w8eiKk8mRdN+bNfeZqC4nyFoxNyI1/VExMKAzD9tqpJfLLbsa46Wfn5wcKH761g9WkKh36RtFV49iL9lh1DYBA==", + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "license": "MIT", - "peer": true, "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "fs-extra": "^11.2.0", - "joi": "^17.9.2", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.6.0" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" }, "engines": { - "node": ">=18.0" + "node": ">= 8" } }, - "node_modules/@docusaurus/theme-classic/node_modules/cheerio": { - "version": "1.0.0-rc.12", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", - "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", + "node_modules/@opentelemetry/api": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", + "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", + "license": "Apache-2.0", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@parcel/watcher": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", + "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", + "hasInstallScript": true, "license": "MIT", - "peer": true, + "optional": true, "dependencies": { - "cheerio-select": "^2.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "htmlparser2": "^8.0.1", - "parse5": "^7.0.0", - "parse5-htmlparser2-tree-adapter": "^7.0.0" + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" }, "engines": { - "node": ">= 6" + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.5.1", + "@parcel/watcher-darwin-arm64": "2.5.1", + "@parcel/watcher-darwin-x64": "2.5.1", + "@parcel/watcher-freebsd-x64": "2.5.1", + "@parcel/watcher-linux-arm-glibc": "2.5.1", + "@parcel/watcher-linux-arm-musl": "2.5.1", + "@parcel/watcher-linux-arm64-glibc": "2.5.1", + "@parcel/watcher-linux-arm64-musl": "2.5.1", + "@parcel/watcher-linux-x64-glibc": "2.5.1", + "@parcel/watcher-linux-x64-musl": "2.5.1", + "@parcel/watcher-win32-arm64": "2.5.1", + "@parcel/watcher-win32-ia32": "2.5.1", + "@parcel/watcher-win32-x64": "2.5.1" } }, - "node_modules/@docusaurus/theme-classic/node_modules/htmlparser2": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", - "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", + "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", + "cpu": [ + "arm64" ], "license": "MIT", - "peer": true, - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1", - "entities": "^4.4.0" + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-classic/node_modules/webpack-merge": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", - "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", + "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", + "cpu": [ + "arm64" + ], "license": "MIT", - "peer": true, - "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.1" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=18.0.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-common": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.4.0.tgz", - "integrity": "sha512-0A27alXuv7ZdCg28oPE8nH/Iz73/IUejVaCazqu9elS4ypjiLhK3KfzdSQBnL/g7YfHSlymZKdiOHEo8fJ0qMA==", - "license": "MIT", - "dependencies": { - "@docusaurus/mdx-loader": "3.4.0", - "@docusaurus/module-type-aliases": "3.4.0", - "@docusaurus/plugin-content-blog": "3.4.0", - "@docusaurus/plugin-content-docs": "3.4.0", - "@docusaurus/plugin-content-pages": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "clsx": "^2.0.0", - "parse-numeric-range": "^1.3.0", - "prism-react-renderer": "^2.3.0", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" - }, + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", + "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=18.0" + "node": ">= 10.0.0" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-common/node_modules/@docusaurus/module-type-aliases": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/module-type-aliases/-/module-type-aliases-3.4.0.tgz", - "integrity": "sha512-A1AyS8WF5Bkjnb8s+guTDuYmUiwJzNrtchebBHpc0gz0PyHJNMaybUlSrmJjHVcGrya0LKI4YcR3lBDQfXRYLw==", + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", + "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", + "cpu": [ + "x64" + ], "license": "MIT", - "dependencies": { - "@docusaurus/types": "3.4.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "@types/react-router-dom": "*", - "react-helmet-async": "*", - "react-loadable": "npm:@docusaurus/react-loadable@6.0.0" + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">= 10.0.0" }, - "peerDependencies": { - "react": "*", - "react-dom": "*" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-common/node_modules/@docusaurus/plugin-content-docs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/plugin-content-docs/-/plugin-content-docs-3.4.0.tgz", - "integrity": "sha512-HkUCZffhBo7ocYheD9oZvMcDloRnGhBMOZRyVcAQRFmZPmNqSyISlXA1tQCIxW+r478fty97XXAGjNYzBjpCsg==", + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", + "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", + "cpu": [ + "arm" + ], "license": "MIT", - "dependencies": { - "@docusaurus/core": "3.4.0", - "@docusaurus/logger": "3.4.0", - "@docusaurus/mdx-loader": "3.4.0", - "@docusaurus/module-type-aliases": "3.4.0", - "@docusaurus/types": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@docusaurus/utils-validation": "3.4.0", - "@types/react-router-config": "^5.0.7", - "combine-promises": "^1.1.0", - "fs-extra": "^11.1.1", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.6.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=18.0" + "node": ">= 10.0.0" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-common/node_modules/@docusaurus/types": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.4.0.tgz", - "integrity": "sha512-4jcDO8kXi5Cf9TcyikB/yKmz14f2RZ2qTRerbHAsS+5InE9ZgSLBNLsewtFTcTOXSVcbU3FoGOzcNWAmU1TR0A==", + "node_modules/@parcel/watcher-linux-arm-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", + "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", + "cpu": [ + "arm" + ], "license": "MIT", - "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "^1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.88.1", - "webpack-merge": "^5.9.0" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" }, - "peerDependencies": { - "react": "^18.0.0", - "react-dom": "^18.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-search-algolia": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-search-algolia/-/theme-search-algolia-3.7.0.tgz", - "integrity": "sha512-Al/j5OdzwRU1m3falm+sYy9AaB93S1XF1Lgk9Yc6amp80dNxJVplQdQTR4cYdzkGtuQqbzUA8+kaoYYO0RbK6g==", - "license": "MIT", - "dependencies": { - "@docsearch/react": "^3.8.1", - "@docusaurus/core": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/plugin-content-docs": "3.7.0", - "@docusaurus/theme-common": "3.7.0", - "@docusaurus/theme-translations": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "algoliasearch": "^5.17.1", - "algoliasearch-helper": "^3.22.6", - "clsx": "^2.0.0", - "eta": "^2.2.0", - "fs-extra": "^11.1.1", - "lodash": "^4.17.21", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" - }, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", + "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=18.0" + "node": ">= 10.0.0" }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/client-analytics": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-analytics/-/client-analytics-5.24.0.tgz", - "integrity": "sha512-IF+r9RRQsIf0ylIBNFxo7c6hDxxuhIfIbffhBXEF1HD13rjhP5AVfiaea9RzbsAZoySkm318plDpH/nlGIjbRA==", + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", + "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", + "cpu": [ + "arm64" + ], "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14.0.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/client-personalization": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-personalization/-/client-personalization-5.24.0.tgz", - "integrity": "sha512-Fx/Fp6d8UmDBHecTt0XYF8C9TAaA3qeCQortfGSZzWp4gVmtrUCFNZ1SUwb8ULREnO9DanVrM5hGE8R8C4zZTQ==", + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", + "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", + "cpu": [ + "x64" + ], "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14.0.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@algolia/recommend": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/@algolia/recommend/-/recommend-5.24.0.tgz", - "integrity": "sha512-JTMz0JqN2gidvKa2QCF/rMe8LNtdHaght03px2cluZaZfBRYy8TgHgkCeBspKKvV/abWJwl7J0FzWThCshqT3w==", - "license": "MIT", - "dependencies": { - "@algolia/client-common": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" - }, - "engines": { - "node": ">= 14.0.0" - } - }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@docusaurus/core": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/core/-/core-3.7.0.tgz", - "integrity": "sha512-b0fUmaL+JbzDIQaamzpAFpTviiaU4cX3Qz8cuo14+HGBCwa0evEK0UYCBFY3n4cLzL8Op1BueeroUD2LYAIHbQ==", + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", + "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", + "cpu": [ + "x64" + ], "license": "MIT", - "dependencies": { - "@docusaurus/babel": "3.7.0", - "@docusaurus/bundler": "3.7.0", - "@docusaurus/logger": "3.7.0", - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "boxen": "^6.2.1", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cli-table3": "^0.6.3", - "combine-promises": "^1.1.0", - "commander": "^5.1.0", - "core-js": "^3.31.1", - "del": "^6.1.1", - "detect-port": "^1.5.1", - "escape-html": "^1.0.3", - "eta": "^2.2.0", - "eval": "^0.1.8", - "fs-extra": "^11.1.1", - "html-tags": "^3.3.1", - "html-webpack-plugin": "^5.6.0", - "leven": "^3.1.0", - "lodash": "^4.17.21", - "p-map": "^4.0.0", - "prompts": "^2.4.2", - "react-dev-utils": "^12.0.1", - "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", - "react-loadable": "npm:@docusaurus/react-loadable@6.0.0", - "react-loadable-ssr-addon-v5-slorber": "^1.0.1", - "react-router": "^5.3.4", - "react-router-config": "^5.1.1", - "react-router-dom": "^5.3.4", - "semver": "^7.5.4", - "serve-handler": "^6.1.6", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "update-notifier": "^6.0.2", - "webpack": "^5.95.0", - "webpack-bundle-analyzer": "^4.10.2", - "webpack-dev-server": "^4.15.2", - "webpack-merge": "^6.0.1" - }, - "bin": { - "docusaurus": "bin/docusaurus.mjs" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=18.0" + "node": ">= 10.0.0" }, - "peerDependencies": { - "@mdx-js/react": "^3.0.0", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@docusaurus/logger": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/logger/-/logger-3.7.0.tgz", - "integrity": "sha512-z7g62X7bYxCYmeNNuO9jmzxLQG95q9QxINCwpboVcNff3SJiHJbGrarxxOVMVmAh1MsrSfxWkVGv4P41ktnFsA==", + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", + "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", + "cpu": [ + "arm64" + ], "license": "MIT", - "dependencies": { - "chalk": "^4.1.2", - "tslib": "^2.6.0" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=18.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@docusaurus/mdx-loader": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/mdx-loader/-/mdx-loader-3.7.0.tgz", - "integrity": "sha512-OFBG6oMjZzc78/U3WNPSHs2W9ZJ723ewAcvVJaqS0VgyeUfmzUV8f1sv+iUHA0DtwiR5T5FjOxj6nzEE8LY6VA==", + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", + "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", + "cpu": [ + "ia32" + ], "license": "MIT", - "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-validation": "3.7.0", - "@mdx-js/mdx": "^3.0.0", - "@slorber/remark-comment": "^1.0.0", - "escape-html": "^1.0.3", - "estree-util-value-to-estree": "^3.0.1", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "image-size": "^1.0.2", - "mdast-util-mdx": "^3.0.0", - "mdast-util-to-string": "^4.0.0", - "rehype-raw": "^7.0.0", - "remark-directive": "^3.0.0", - "remark-emoji": "^4.0.0", - "remark-frontmatter": "^5.0.0", - "remark-gfm": "^4.0.0", - "stringify-object": "^3.3.0", - "tslib": "^2.6.0", - "unified": "^11.0.3", - "unist-util-visit": "^5.0.0", - "url-loader": "^4.1.1", - "vfile": "^6.0.1", - "webpack": "^5.88.1" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=18.0" + "node": ">= 10.0.0" }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@docusaurus/theme-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-common/-/theme-common-3.7.0.tgz", - "integrity": "sha512-8eJ5X0y+gWDsURZnBfH0WabdNm8XMCXHv8ENy/3Z/oQKwaB/EHt5lP9VsTDTf36lKEp0V6DjzjFyFIB+CetL0A==", + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", + "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", + "cpu": [ + "x64" + ], "license": "MIT", - "dependencies": { - "@docusaurus/mdx-loader": "3.7.0", - "@docusaurus/module-type-aliases": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router-config": "*", - "clsx": "^2.0.0", - "parse-numeric-range": "^1.3.0", - "prism-react-renderer": "^2.3.0", - "tslib": "^2.6.0", - "utility-types": "^3.10.0" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=18.0" + "node": ">= 10.0.0" }, - "peerDependencies": { - "@docusaurus/plugin-content-docs": "*", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@docusaurus/theme-translations": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.7.0.tgz", - "integrity": "sha512-Ewq3bEraWDmienM6eaNK7fx+/lHMtGDHQyd1O+4+3EsDxxUmrzPkV7Ct3nBWTuE0MsoZr3yNwQVKjllzCMuU3g==", + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "license": "MIT", - "dependencies": { - "fs-extra": "^11.1.1", - "tslib": "^2.6.0" - }, + "optional": true, "engines": { - "node": ">=18.0" + "node": ">=14" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@docusaurus/utils": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.7.0.tgz", - "integrity": "sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==", + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", "license": "MIT", - "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/types": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "escape-string-regexp": "^4.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "github-slugger": "^1.5.0", - "globby": "^11.1.0", - "gray-matter": "^4.0.3", - "jiti": "^1.20.0", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "micromatch": "^4.0.5", - "prompts": "^2.4.2", - "resolve-pathname": "^3.0.0", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "url-loader": "^4.1.1", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" - }, "engines": { - "node": ">=18.0" + "node": ">=12.22.0" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@docusaurus/utils-common": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.7.0.tgz", - "integrity": "sha512-IZeyIfCfXy0Mevj6bWNg7DG7B8G+S6o6JVpddikZtWyxJguiQ7JYr0SIZ0qWd8pGNuMyVwriWmbWqMnK7Y5PwA==", + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", "license": "MIT", "dependencies": { - "@docusaurus/types": "3.7.0", - "tslib": "^2.6.0" + "graceful-fs": "4.2.10" }, "engines": { - "node": ">=18.0" + "node": ">=12.22.0" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/@docusaurus/utils-validation": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.7.0.tgz", - "integrity": "sha512-w8eiKk8mRdN+bNfeZqC4nyFoxNyI1/VExMKAzD9tqpJfLLbsa46Wfn5wcKH761g9WkKh36RtFV49iL9lh1DYBA==", + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "license": "ISC" + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", + "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", "license": "MIT", "dependencies": { - "@docusaurus/logger": "3.7.0", - "@docusaurus/utils": "3.7.0", - "@docusaurus/utils-common": "3.7.0", - "fs-extra": "^11.2.0", - "joi": "^17.9.2", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.6.0" + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" }, "engines": { - "node": ">=18.0" + "node": ">=12" } }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/algoliasearch": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-5.24.0.tgz", - "integrity": "sha512-CkaUygzZ91Xbw11s0CsHMawrK3tl+Ue57725HGRgRzKgt2Z4wvXVXRCtQfvzh8K7Tp4Zp7f1pyHAtMROtTJHxg==", - "license": "MIT", - "dependencies": { - "@algolia/client-abtesting": "5.24.0", - "@algolia/client-analytics": "5.24.0", - "@algolia/client-common": "5.24.0", - "@algolia/client-insights": "5.24.0", - "@algolia/client-personalization": "5.24.0", - "@algolia/client-query-suggestions": "5.24.0", - "@algolia/client-search": "5.24.0", - "@algolia/ingestion": "1.24.0", - "@algolia/monitoring": "1.24.0", - "@algolia/recommend": "5.24.0", - "@algolia/requester-browser-xhr": "5.24.0", - "@algolia/requester-fetch": "5.24.0", - "@algolia/requester-node-http": "5.24.0" - }, - "engines": { - "node": ">= 14.0.0" - } + "node_modules/@polka/url": { + "version": "1.0.0-next.29", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", + "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", + "license": "MIT" }, - "node_modules/@docusaurus/theme-search-algolia/node_modules/webpack-merge": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", - "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", + "node_modules/@redocly/ajv": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz", + "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==", "license": "MIT", "dependencies": { - "clone-deep": "^4.0.1", - "flat": "^5.0.2", - "wildcard": "^2.0.1" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js-replace": "^1.0.1" }, - "engines": { - "node": ">=18.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@docusaurus/theme-translations": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/theme-translations/-/theme-translations-3.4.0.tgz", - "integrity": "sha512-zSxCSpmQCCdQU5Q4CnX/ID8CSUUI3fvmq4hU/GNP/XoAWtXo9SAVnM3TzpU8Gb//H3WCsT8mJcTfyOk3d9ftNg==", + "node_modules/@redocly/config": { + "version": "0.22.2", + "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.22.2.tgz", + "integrity": "sha512-roRDai8/zr2S9YfmzUfNhKjOF0NdcOIqF7bhf4MVC5UxpjIysDjyudvlAiVbpPHp3eDRWbdzUgtkK1a7YiDNyQ==", + "license": "MIT" + }, + "node_modules/@redocly/openapi-core": { + "version": "1.34.2", + "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.34.2.tgz", + "integrity": "sha512-glfkQFJizLdq2fBkNvc2FJW0sxDb5exd0wIXhFk+WHaFLMREBC3CxRo2Zq7uJIdfV9U3YTceMbXJklpDfmmwFQ==", "license": "MIT", "dependencies": { - "fs-extra": "^11.1.1", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" - } - }, - "node_modules/@docusaurus/tsconfig": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/tsconfig/-/tsconfig-3.7.0.tgz", - "integrity": "sha512-vRsyj3yUZCjscgfgcFYjIsTcAru/4h4YH2/XAE8Rs7wWdnng98PgWKvP5ovVc4rmRpRg2WChVW0uOy2xHDvDBQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@docusaurus/types": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@docusaurus/types/-/types-3.7.0.tgz", - "integrity": "sha512-kOmZg5RRqJfH31m+6ZpnwVbkqMJrPOG5t0IOl4i/+3ruXyNfWzZ0lVtVrD0u4ONc/0NOsS9sWYaxxWNkH1LdLQ==", - "license": "MIT", - "dependencies": { - "@mdx-js/mdx": "^3.0.0", - "@types/history": "^4.7.11", - "@types/react": "*", - "commander": "^5.1.0", - "joi": "^17.9.2", - "react-helmet-async": "npm:@slorber/react-helmet-async@1.3.0", - "utility-types": "^3.10.0", - "webpack": "^5.95.0", - "webpack-merge": "^5.9.0" - }, - "peerDependencies": { - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" - } - }, - "node_modules/@docusaurus/utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils/-/utils-3.4.0.tgz", - "integrity": "sha512-fRwnu3L3nnWaXOgs88BVBmG1yGjcQqZNHG+vInhEa2Sz2oQB+ZjbEMO5Rh9ePFpZ0YDiDUhpaVjwmS+AU2F14g==", - "license": "MIT", - "dependencies": { - "@docusaurus/logger": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "@svgr/webpack": "^8.1.0", - "escape-string-regexp": "^4.0.0", - "file-loader": "^6.2.0", - "fs-extra": "^11.1.1", - "github-slugger": "^1.5.0", - "globby": "^11.1.0", - "gray-matter": "^4.0.3", - "jiti": "^1.20.0", + "@redocly/ajv": "^8.11.2", + "@redocly/config": "^0.22.0", + "colorette": "^1.2.0", + "https-proxy-agent": "^7.0.5", + "js-levenshtein": "^1.1.6", "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "micromatch": "^4.0.5", - "prompts": "^2.4.2", - "resolve-pathname": "^3.0.0", - "shelljs": "^0.8.5", - "tslib": "^2.6.0", - "url-loader": "^4.1.1", - "utility-types": "^3.10.0", - "webpack": "^5.88.1" + "minimatch": "^5.0.1", + "pluralize": "^8.0.0", + "yaml-ast-parser": "0.0.43" }, "engines": { - "node": ">=18.0" - }, - "peerDependencies": { - "@docusaurus/types": "*" - }, - "peerDependenciesMeta": { - "@docusaurus/types": { - "optional": true - } + "node": ">=18.17.0", + "npm": ">=9.5.0" } }, - "node_modules/@docusaurus/utils-common": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-common/-/utils-common-3.4.0.tgz", - "integrity": "sha512-NVx54Wr4rCEKsjOH5QEVvxIqVvm+9kh7q8aYTU5WzUU9/Hctd6aTrcZ3G0Id4zYJ+AeaG5K5qHA4CY5Kcm2iyQ==", + "node_modules/@reduxjs/toolkit": { + "version": "1.9.7", + "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz", + "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==", "license": "MIT", "dependencies": { - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" + "immer": "^9.0.21", + "redux": "^4.2.1", + "redux-thunk": "^2.4.2", + "reselect": "^4.1.8" }, "peerDependencies": { - "@docusaurus/types": "*" + "react": "^16.9.0 || ^17.0.0 || ^18", + "react-redux": "^7.2.1 || ^8.0.2" }, "peerDependenciesMeta": { - "@docusaurus/types": { + "react": { + "optional": true + }, + "react-redux": { "optional": true } } }, - "node_modules/@docusaurus/utils-validation": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@docusaurus/utils-validation/-/utils-validation-3.4.0.tgz", - "integrity": "sha512-hYQ9fM+AXYVTWxJOT1EuNaRnrR2WGpRdLDQG07O8UOpsvCPWUVOeo26Rbm0JWY2sGLfzAb+tvJ62yF+8F+TV0g==", - "license": "MIT", + "node_modules/@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", + "license": "BSD-3-Clause", "dependencies": { - "@docusaurus/logger": "3.4.0", - "@docusaurus/utils": "3.4.0", - "@docusaurus/utils-common": "3.4.0", - "fs-extra": "^11.2.0", - "joi": "^17.9.2", - "js-yaml": "^4.1.0", - "lodash": "^4.17.21", - "tslib": "^2.6.0" - }, - "engines": { - "node": ">=18.0" + "@hapi/hoek": "^9.0.0" } }, - "node_modules/@exodus/schemasafe": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.3.0.tgz", - "integrity": "sha512-5Aap/GaRupgNx/feGBwLLTVv8OQFfv3pq2lPRzPg9R+IOBnDgghTGW7l7EuVXOvg5cc/xSAlRW8rBrjIC3Nvqw==", - "license": "MIT" - }, - "node_modules/@faker-js/faker": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-5.5.3.tgz", - "integrity": "sha512-R11tGE6yIFwqpaIqcfkcg7AICXzFg14+5h5v0TfF/9+RMDL6jhzCy/pxHVOfbALGdtVYdt6JdR21tuxEgl34dw==", - "deprecated": "Please update to a newer version.", - "license": "MIT" + "node_modules/@sideway/formula": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", + "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", + "license": "BSD-3-Clause" }, - "node_modules/@hapi/hoek": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", - "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", + "node_modules/@sideway/pinpoint": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", + "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", "license": "BSD-3-Clause" }, - "node_modules/@hapi/topo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", - "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0" - } + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "license": "MIT" }, - "node_modules/@hookform/error-message": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@hookform/error-message/-/error-message-2.0.1.tgz", - "integrity": "sha512-U410sAr92xgxT1idlu9WWOVjndxLdgPUHEB8Schr27C9eh7/xUnITWpCMF93s+lGiG++D4JnbSnrb5A21AdSNg==", + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0", - "react-hook-form": "^7.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "license": "ISC", + "node_modules/@slorber/remark-comment": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@slorber/remark-comment/-/remark-comment-1.0.0.tgz", + "integrity": "sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==", + "license": "MIT", "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.1.0", + "micromark-util-symbol": "^1.0.1" } }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "node_modules/@standard-schema/spec": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.0.0.tgz", + "integrity": "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==", + "license": "MIT" + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", "license": "MIT", "engines": { - "node": ">=12" + "node": ">=14" }, "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, "engines": { - "node": ">=12" + "node": ">=14" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jest/schemas": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", - "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", + "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", "license": "MIT", - "dependencies": { - "@sinclair/typebox": "^0.27.8" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jest/types": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", - "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", + "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", "license": "MIT", - "dependencies": { - "@jest/schemas": "^29.6.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", - "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" + "node": ">=14" }, - "engines": { - "node": ">=6.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", + "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", "license": "MIT", "engines": { - "node": ">=6.0.0" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", + "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", "license": "MIT", "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", - "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", - "license": "MIT", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", + "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@jsdevtools/ono": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz", - "integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==", - "license": "MIT" - }, - "node_modules/@leichtgewicht/ip-codec": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", - "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", - "license": "MIT" - }, - "node_modules/@mdx-js/mdx": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.0.tgz", - "integrity": "sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==", + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", + "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "@types/estree-jsx": "^1.0.0", - "@types/hast": "^3.0.0", - "@types/mdx": "^2.0.0", - "collapse-white-space": "^2.0.0", - "devlop": "^1.0.0", - "estree-util-is-identifier-name": "^3.0.0", - "estree-util-scope": "^1.0.0", - "estree-walker": "^3.0.0", - "hast-util-to-jsx-runtime": "^2.0.0", - "markdown-extensions": "^2.0.0", - "recma-build-jsx": "^1.0.0", - "recma-jsx": "^1.0.0", - "recma-stringify": "^1.0.0", - "rehype-recma": "^1.0.0", - "remark-mdx": "^3.0.0", - "remark-parse": "^11.0.0", - "remark-rehype": "^11.0.0", - "source-map": "^0.7.0", - "unified": "^11.0.0", - "unist-util-position-from-estree": "^2.0.0", - "unist-util-stringify-position": "^4.0.0", - "unist-util-visit": "^5.0.0", - "vfile": "^6.0.0" + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@mdx-js/react": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.0.tgz", - "integrity": "sha512-QjHtSaoameoalGnKDT3FoIl4+9RwyTmo9ZJGBdLOks/YOiWHoRDI3PUwEzOE7kEmGcV3AFcp9K6dYu9rEuKLAQ==", + "node_modules/@svgr/babel-preset": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", + "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", "license": "MIT", "dependencies": { - "@types/mdx": "^2.0.0" + "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", + "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", + "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", + "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", + "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", + "@svgr/babel-plugin-transform-svg-component": "8.0.0" + }, + "engines": { + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "type": "github", + "url": "https://github.com/sponsors/gregberge" }, "peerDependencies": { - "@types/react": ">=16", - "react": ">=16" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/@svgr/core": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", + "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^8.1.3", + "snake-case": "^3.0.4" }, "engines": { - "node": ">= 8" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", + "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", "license": "MIT", + "dependencies": { + "@babel/types": "^7.21.3", + "entities": "^4.4.0" + }, "engines": { - "node": ">= 8" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/@svgr/plugin-jsx": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", + "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", "license": "MIT", "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "@svgr/hast-util-to-babel-ast": "8.0.0", + "svg-parser": "^2.0.4" }, "engines": { - "node": ">= 8" + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" } }, - "node_modules/@parcel/watcher": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.1.tgz", - "integrity": "sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==", - "hasInstallScript": true, + "node_modules/@svgr/plugin-svgo": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", + "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", "license": "MIT", - "optional": true, "dependencies": { - "detect-libc": "^1.0.3", - "is-glob": "^4.0.3", - "micromatch": "^4.0.5", - "node-addon-api": "^7.0.0" + "cosmiconfig": "^8.1.3", + "deepmerge": "^4.3.1", + "svgo": "^3.0.2" }, "engines": { - "node": ">= 10.0.0" + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "type": "github", + "url": "https://github.com/sponsors/gregberge" }, - "optionalDependencies": { - "@parcel/watcher-android-arm64": "2.5.1", - "@parcel/watcher-darwin-arm64": "2.5.1", - "@parcel/watcher-darwin-x64": "2.5.1", - "@parcel/watcher-freebsd-x64": "2.5.1", - "@parcel/watcher-linux-arm-glibc": "2.5.1", - "@parcel/watcher-linux-arm-musl": "2.5.1", - "@parcel/watcher-linux-arm64-glibc": "2.5.1", - "@parcel/watcher-linux-arm64-musl": "2.5.1", - "@parcel/watcher-linux-x64-glibc": "2.5.1", - "@parcel/watcher-linux-x64-musl": "2.5.1", - "@parcel/watcher-win32-arm64": "2.5.1", - "@parcel/watcher-win32-ia32": "2.5.1", - "@parcel/watcher-win32-x64": "2.5.1" + "peerDependencies": { + "@svgr/core": "*" } }, - "node_modules/@parcel/watcher-android-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz", - "integrity": "sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==", - "cpu": [ - "arm64" - ], + "node_modules/@svgr/webpack": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", + "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", "license": "MIT", - "optional": true, - "os": [ - "android" - ], + "dependencies": { + "@babel/core": "^7.21.3", + "@babel/plugin-transform-react-constant-elements": "^7.21.3", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.21.0", + "@svgr/core": "8.1.0", + "@svgr/plugin-jsx": "8.1.0", + "@svgr/plugin-svgo": "8.1.0" + }, "engines": { - "node": ">= 10.0.0" + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "type": "github", + "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@parcel/watcher-darwin-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz", - "integrity": "sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==", - "cpu": [ - "arm64" - ], + "node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10.0.0" + "dependencies": { + "defer-to-connect": "^2.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "engines": { + "node": ">=14.16" } }, - "node_modules/@parcel/watcher-darwin-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz", - "integrity": "sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "license": "ISC", "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "node": ">=10.13.0" } }, - "node_modules/@parcel/watcher-freebsd-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz", - "integrity": "sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==", - "cpu": [ - "x64" - ], + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/connect": "*", + "@types/node": "*" } }, - "node_modules/@parcel/watcher-linux-arm-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz", - "integrity": "sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==", - "cpu": [ - "arm" - ], + "node_modules/@types/bonjour": { + "version": "3.5.13", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", + "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@parcel/watcher-linux-arm-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz", - "integrity": "sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==", - "cpu": [ - "arm" - ], + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@parcel/watcher-linux-arm64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz", - "integrity": "sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==", - "cpu": [ - "arm64" - ], + "node_modules/@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/express-serve-static-core": "*", + "@types/node": "*" } }, - "node_modules/@parcel/watcher-linux-arm64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz", - "integrity": "sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==", - "cpu": [ - "arm64" - ], + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/ms": "*" } }, - "node_modules/@parcel/watcher-linux-x64-glibc": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz", - "integrity": "sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==", - "cpu": [ - "x64" - ], + "node_modules/@types/eslint": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", + "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" } }, - "node_modules/@parcel/watcher-linux-x64-musl": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz", - "integrity": "sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==", - "cpu": [ - "x64" - ], + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" } }, - "node_modules/@parcel/watcher-win32-arm64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz", - "integrity": "sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" - } + "node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "license": "MIT" }, - "node_modules/@parcel/watcher-win32-ia32": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz", - "integrity": "sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==", - "cpu": [ - "ia32" - ], + "node_modules/@types/estree-jsx": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", + "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/estree": "*" } }, - "node_modules/@parcel/watcher-win32-x64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz", - "integrity": "sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==", - "cpu": [ - "x64" - ], + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/parcel" + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "node_modules/@types/express-serve-static-core": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz", + "integrity": "sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==", "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/@pnpm/config.env-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", - "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "node_modules/@types/express/node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", "license": "MIT", - "engines": { - "node": ">=12.22.0" + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" } }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", - "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "node_modules/@types/gtag.js": { + "version": "0.0.12", + "resolved": "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.12.tgz", + "integrity": "sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==", + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", "license": "MIT", "dependencies": { - "graceful-fs": "4.2.10" - }, - "engines": { - "node": ">=12.22.0" + "@types/unist": "*" } }, - "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "license": "ISC" + "node_modules/@types/history": { + "version": "4.7.11", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", + "license": "MIT" }, - "node_modules/@pnpm/npm-conf": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", - "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.6.tgz", + "integrity": "sha512-lPByRJUer/iN/xa4qpyL0qmL11DqNW81iU/IG1S3uvRUq4oKagz8VCxZjiWkumgt66YT3vOdDgZ0o32sGKtCEw==", "license": "MIT", "dependencies": { - "@pnpm/config.env-replace": "^1.1.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - }, - "engines": { - "node": ">=12" + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" } }, - "node_modules/@polka/url": { - "version": "1.0.0-next.29", - "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.29.tgz", - "integrity": "sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==", + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", "license": "MIT" }, - "node_modules/@redocly/ajv": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/@redocly/ajv/-/ajv-8.11.2.tgz", - "integrity": "sha512-io1JpnwtIcvojV7QKDUSIuMN/ikdOUd1ReEnUnMKGfDVridQZ31J0MmIuqwuRjWDZfmvr+Q0MqCcfHM2gTivOg==", + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "license": "MIT" + }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "license": "MIT" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.16", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.16.tgz", + "integrity": "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==", "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js-replace": "^1.0.1" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "@types/node": "*" } }, - "node_modules/@redocly/config": { - "version": "0.22.2", - "resolved": "https://registry.npmjs.org/@redocly/config/-/config-0.22.2.tgz", - "integrity": "sha512-roRDai8/zr2S9YfmzUfNhKjOF0NdcOIqF7bhf4MVC5UxpjIysDjyudvlAiVbpPHp3eDRWbdzUgtkK1a7YiDNyQ==", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "license": "MIT" }, - "node_modules/@redocly/openapi-core": { - "version": "1.34.2", - "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.34.2.tgz", - "integrity": "sha512-glfkQFJizLdq2fBkNvc2FJW0sxDb5exd0wIXhFk+WHaFLMREBC3CxRo2Zq7uJIdfV9U3YTceMbXJklpDfmmwFQ==", + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "license": "MIT", "dependencies": { - "@redocly/ajv": "^8.11.2", - "@redocly/config": "^0.22.0", - "colorette": "^1.2.0", - "https-proxy-agent": "^7.0.5", - "js-levenshtein": "^1.1.6", - "js-yaml": "^4.1.0", - "minimatch": "^5.0.1", - "pluralize": "^8.0.0", - "yaml-ast-parser": "0.0.43" - }, - "engines": { - "node": ">=18.17.0", - "npm": ">=9.5.0" + "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@reduxjs/toolkit": { - "version": "1.9.7", - "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.7.tgz", - "integrity": "sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==", + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "license": "MIT", "dependencies": { - "immer": "^9.0.21", - "redux": "^4.2.1", - "redux-thunk": "^2.4.2", - "reselect": "^4.1.8" - }, - "peerDependencies": { - "react": "^16.9.0 || ^17.0.0 || ^18", - "react-redux": "^7.2.1 || ^8.0.2" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-redux": { - "optional": true - } + "@types/istanbul-lib-report": "*" } }, - "node_modules/@sideway/address": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", - "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", - "license": "BSD-3-Clause", - "dependencies": { - "@hapi/hoek": "^9.0.0" - } + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "license": "MIT" }, - "node_modules/@sideway/formula": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", - "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", - "license": "BSD-3-Clause" + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } }, - "node_modules/@sideway/pinpoint": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", - "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", - "license": "BSD-3-Clause" + "node_modules/@types/mdx": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", + "license": "MIT" }, - "node_modules/@sinclair/typebox": { - "version": "0.27.8", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", - "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "license": "MIT" }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.15.14", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.14.tgz", + "integrity": "sha512-BL1eyu/XWsFGTtDWOYULQEs4KR0qdtYfCxYAUYRoB7JP7h9ETYLgQTww6kH8Sj2C0pFGgrpM0XKv6/kbIzYJ1g==", "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" + "dependencies": { + "undici-types": "~6.21.0" } }, - "node_modules/@slorber/react-ideal-image": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/@slorber/react-ideal-image/-/react-ideal-image-0.0.12.tgz", - "integrity": "sha512-u8KiDTEkMA7/KAeA5ywg/P7YG4zuKhWtswfVZDH8R8HXgQsFcHIYU2WaQnGuK/Du7Wdj90I+SdFmajSGFRvoKA==", + "node_modules/@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", "license": "MIT", - "engines": { - "node": ">= 8.9.0", - "npm": "> 3" - }, - "peerDependencies": { - "prop-types": ">=15", - "react": ">=0.14.x", - "react-waypoint": ">=9.0.2" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@slorber/remark-comment": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@slorber/remark-comment/-/remark-comment-1.0.0.tgz", - "integrity": "sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==", + "node_modules/@types/parse5": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz", + "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==", + "license": "MIT" + }, + "node_modules/@types/prismjs": { + "version": "1.26.5", + "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.5.tgz", + "integrity": "sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==", + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.14", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", + "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.9.18", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.18.tgz", + "integrity": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==", + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "19.1.3", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.3.tgz", + "integrity": "sha512-dLWQ+Z0CkIvK1J8+wrDPwGxEYFA4RAyHoZPxHVGspYmFVnwGSNT24cGIhFJrtfRnWVuW8X7NO52gCXmhkVUWGQ==", "license": "MIT", "dependencies": { - "micromark-factory-space": "^1.0.0", - "micromark-util-character": "^1.1.0", - "micromark-util-symbol": "^1.0.1" + "csstype": "^3.0.2" } }, - "node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", + "node_modules/@types/react-redux": { + "version": "7.1.34", + "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.34.tgz", + "integrity": "sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==", "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" } }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", + "node_modules/@types/react-router": { + "version": "5.1.20", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz", + "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==", "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "@types/history": "^4.7.11", + "@types/react": "*" } }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", - "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", + "node_modules/@types/react-router-config": { + "version": "5.0.11", + "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.11.tgz", + "integrity": "sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==", "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router": "^5.1.0" } }, - "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", - "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", + "node_modules/@types/react-router-dom": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", + "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router": "*" } }, - "node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", - "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", + "node_modules/@types/retry": { + "version": "0.12.2", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", + "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", + "license": "MIT" + }, + "node_modules/@types/sax": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", + "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", - "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" } }, - "node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", - "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", + "node_modules/@types/serve-index": { + "version": "1.9.4", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", + "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "@types/express": "*" } }, - "node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", - "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-preset": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", - "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", + "node_modules/@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "license": "MIT", "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", - "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", - "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", - "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", - "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", - "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", - "@svgr/babel-plugin-transform-svg-component": "8.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" } }, - "node_modules/@svgr/core": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", - "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", + "node_modules/@types/sockjs": { + "version": "0.3.36", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", + "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "license": "MIT", "dependencies": { - "@babel/core": "^7.21.3", - "@svgr/babel-preset": "8.1.0", - "camelcase": "^6.2.0", - "cosmiconfig": "^8.1.3", - "snake-case": "^3.0.4" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "@types/node": "*" } }, - "node_modules/@svgr/hast-util-to-babel-ast": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", - "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "license": "MIT" + }, + "node_modules/@types/ws": { + "version": "8.18.1", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", + "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", "license": "MIT", "dependencies": { - "@babel/types": "^7.21.3", - "entities": "^4.4.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "@types/node": "*" } }, - "node_modules/@svgr/plugin-jsx": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", - "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", + "node_modules/@types/yargs": { + "version": "17.0.33", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", + "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", "license": "MIT", "dependencies": { - "@babel/core": "^7.21.3", - "@svgr/babel-preset": "8.1.0", - "@svgr/hast-util-to-babel-ast": "8.0.0", - "svg-parser": "^2.0.4" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" + "@types/yargs-parser": "*" } }, - "node_modules/@svgr/plugin-svgo": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", - "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", - "license": "MIT", - "dependencies": { - "cosmiconfig": "^8.1.3", - "deepmerge": "^4.3.1", - "svgo": "^3.0.2" - }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "license": "MIT" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "license": "ISC" + }, + "node_modules/@vercel/oidc": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@vercel/oidc/-/oidc-3.0.3.tgz", + "integrity": "sha512-yNEQvPcVrK9sIe637+I0jD6leluPxzwJKx/Haw6F4H77CdDsszUn5V3o96LPziXkSNE2B83+Z3mjqGKBK/R6Gg==", + "license": "Apache-2.0", "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" + "node": ">= 20" } }, - "node_modules/@svgr/webpack": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", - "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", + "node_modules/@webassemblyjs/ast": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", + "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "license": "MIT", "dependencies": { - "@babel/core": "^7.21.3", - "@babel/plugin-transform-react-constant-elements": "^7.21.3", - "@babel/preset-env": "^7.20.2", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.21.0", - "@svgr/core": "8.1.0", - "@svgr/plugin-jsx": "8.1.0", - "@svgr/plugin-svgo": "8.1.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "@webassemblyjs/helper-numbers": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, - "node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", + "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", + "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", + "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", + "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "license": "MIT", "dependencies": { - "defer-to-connect": "^2.0.1" - }, - "engines": { - "node": ">=14.16" + "@webassemblyjs/floating-point-hex-parser": "1.13.2", + "@webassemblyjs/helper-api-error": "1.13.2", + "@xtuc/long": "4.2.2" } }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "license": "ISC", - "engines": { - "node": ">=10.13.0" - } + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", + "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "license": "MIT" }, - "node_modules/@types/body-parser": { - "version": "1.19.5", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", - "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", + "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "license": "MIT", "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/wasm-gen": "1.14.1" } }, - "node_modules/@types/bonjour": { - "version": "3.5.13", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", - "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", + "node_modules/@webassemblyjs/ieee754": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", + "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "license": "MIT", "dependencies": { - "@types/node": "*" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/@types/connect": { - "version": "3.4.38", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", - "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", - "license": "MIT", + "node_modules/@webassemblyjs/leb128": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", + "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", + "license": "Apache-2.0", "dependencies": { - "@types/node": "*" + "@xtuc/long": "4.2.2" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", - "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", + "node_modules/@webassemblyjs/utf8": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", + "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", + "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "license": "MIT", "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/helper-wasm-section": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-opt": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1", + "@webassemblyjs/wast-printer": "1.14.1" } }, - "node_modules/@types/debug": { - "version": "4.1.12", - "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", - "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", + "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "license": "MIT", "dependencies": { - "@types/ms": "*" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, - "node_modules/@types/eslint": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", - "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", + "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "license": "MIT", "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-buffer": "1.14.1", + "@webassemblyjs/wasm-gen": "1.14.1", + "@webassemblyjs/wasm-parser": "1.14.1" } }, - "node_modules/@types/eslint-scope": { - "version": "3.7.7", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", - "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", + "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "license": "MIT", "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" + "@webassemblyjs/ast": "1.14.1", + "@webassemblyjs/helper-api-error": "1.13.2", + "@webassemblyjs/helper-wasm-bytecode": "1.13.2", + "@webassemblyjs/ieee754": "1.13.2", + "@webassemblyjs/leb128": "1.13.2", + "@webassemblyjs/utf8": "1.13.2" } }, - "node_modules/@types/estree": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", - "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", - "license": "MIT" - }, - "node_modules/@types/estree-jsx": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", - "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", + "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "license": "MIT", "dependencies": { - "@types/estree": "*" + "@webassemblyjs/ast": "1.14.1", + "@xtuc/long": "4.2.2" } }, - "node_modules/@types/express": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", - "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "license": "MIT", "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.33", - "@types/qs": "*", - "@types/serve-static": "*" + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" } }, - "node_modules/@types/express-serve-static-core": { - "version": "5.0.6", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz", - "integrity": "sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==", + "node_modules/accepts/node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "engines": { + "node": ">= 0.6" } }, - "node_modules/@types/express/node_modules/@types/express-serve-static-core": { - "version": "4.19.6", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", - "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", "license": "MIT", - "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*", - "@types/send": "*" + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "node_modules/@types/gtag.js": { - "version": "0.0.12", - "resolved": "https://registry.npmjs.org/@types/gtag.js/-/gtag.js-0.0.12.tgz", - "integrity": "sha512-YQV9bUsemkzG81Ea295/nF/5GijnD2Af7QhEofh7xu+kvCN6RdodgNwwGWXB5GMI3NoyvQo0odNctoH/qLMIpg==", - "license": "MIT" - }, - "node_modules/@types/hast": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", - "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "license": "MIT", - "dependencies": { - "@types/unist": "*" + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@types/history": { - "version": "4.7.11", - "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", - "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", - "license": "MIT" - }, - "node_modules/@types/hoist-non-react-statics": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.6.tgz", - "integrity": "sha512-lPByRJUer/iN/xa4qpyL0qmL11DqNW81iU/IG1S3uvRUq4oKagz8VCxZjiWkumgt66YT3vOdDgZ0o32sGKtCEw==", + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", "license": "MIT", "dependencies": { - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0" + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" } }, - "node_modules/@types/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", - "license": "MIT" - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", - "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", - "license": "MIT" - }, - "node_modules/@types/http-errors": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", - "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", - "license": "MIT" - }, - "node_modules/@types/http-proxy": { - "version": "1.17.16", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.16.tgz", - "integrity": "sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==", + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "license": "MIT", - "dependencies": { - "@types/node": "*" + "engines": { + "node": ">= 10.0.0" } }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "license": "MIT" - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", - "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "node_modules/agent-base": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", "license": "MIT", - "dependencies": { - "@types/istanbul-lib-coverage": "*" + "engines": { + "node": ">= 14" } }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", - "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "license": "MIT", "dependencies": { - "@types/istanbul-lib-report": "*" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "license": "MIT" - }, - "node_modules/@types/mdast": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", - "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", - "license": "MIT", + "node_modules/ai": { + "version": "5.0.86", + "resolved": "https://registry.npmjs.org/ai/-/ai-5.0.86.tgz", + "integrity": "sha512-ooHwNTkLdedFf98iQhtSc5btc/P4UuXuOpYneoifq0190vqosLunNdW8Hs6CiE0Am7YOGNplDK56JIPlHZIL4w==", + "license": "Apache-2.0", "dependencies": { - "@types/unist": "*" + "@ai-sdk/gateway": "2.0.5", + "@ai-sdk/provider": "2.0.0", + "@ai-sdk/provider-utils": "3.0.15", + "@opentelemetry/api": "1.9.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "zod": "^3.25.76 || ^4.1.8" } }, - "node_modules/@types/mdx": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz", - "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", - "license": "MIT" - }, - "node_modules/@types/mime": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", - "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", - "license": "MIT" - }, - "node_modules/@types/ms": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz", - "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "22.15.14", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.15.14.tgz", - "integrity": "sha512-BL1eyu/XWsFGTtDWOYULQEs4KR0qdtYfCxYAUYRoB7JP7h9ETYLgQTww6kH8Sj2C0pFGgrpM0XKv6/kbIzYJ1g==", + "node_modules/ajv": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", + "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", "license": "MIT", "dependencies": { - "undici-types": "~6.21.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@types/node-forge": { - "version": "1.3.11", - "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", - "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", + "node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", "license": "MIT", - "dependencies": { - "@types/node": "*" + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", - "license": "MIT" - }, - "node_modules/@types/parse5": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz", - "integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==", - "license": "MIT" - }, - "node_modules/@types/prismjs": { - "version": "1.26.5", - "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.5.tgz", - "integrity": "sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==", - "license": "MIT" - }, - "node_modules/@types/prop-types": { - "version": "15.7.14", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", - "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", - "license": "MIT" - }, - "node_modules/@types/qs": { - "version": "6.9.18", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.18.tgz", - "integrity": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==", - "license": "MIT" - }, - "node_modules/@types/range-parser": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", - "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "19.1.3", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.3.tgz", - "integrity": "sha512-dLWQ+Z0CkIvK1J8+wrDPwGxEYFA4RAyHoZPxHVGspYmFVnwGSNT24cGIhFJrtfRnWVuW8X7NO52gCXmhkVUWGQ==", + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "license": "MIT", "dependencies": { - "csstype": "^3.0.2" + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, - "node_modules/@types/react-redux": { - "version": "7.1.34", - "resolved": "https://registry.npmjs.org/@types/react-redux/-/react-redux-7.1.34.tgz", - "integrity": "sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==", + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "license": "MIT", "dependencies": { - "@types/hoist-non-react-statics": "^3.3.0", - "@types/react": "*", - "hoist-non-react-statics": "^3.3.0", - "redux": "^4.0.0" + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/@types/react-router": { - "version": "5.1.20", - "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.20.tgz", - "integrity": "sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==", + "node_modules/algoliasearch": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.24.0.tgz", + "integrity": "sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==", "license": "MIT", + "peer": true, "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*" + "@algolia/cache-browser-local-storage": "4.24.0", + "@algolia/cache-common": "4.24.0", + "@algolia/cache-in-memory": "4.24.0", + "@algolia/client-account": "4.24.0", + "@algolia/client-analytics": "4.24.0", + "@algolia/client-common": "4.24.0", + "@algolia/client-personalization": "4.24.0", + "@algolia/client-search": "4.24.0", + "@algolia/logger-common": "4.24.0", + "@algolia/logger-console": "4.24.0", + "@algolia/recommend": "4.24.0", + "@algolia/requester-browser-xhr": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/requester-node-http": "4.24.0", + "@algolia/transporter": "4.24.0" } }, - "node_modules/@types/react-router-config": { - "version": "5.0.11", - "resolved": "https://registry.npmjs.org/@types/react-router-config/-/react-router-config-5.0.11.tgz", - "integrity": "sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==", + "node_modules/algoliasearch-helper": { + "version": "3.26.0", + "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.26.0.tgz", + "integrity": "sha512-Rv2x3GXleQ3ygwhkhJubhhYGsICmShLAiqtUuJTUkr9uOCOXyF2E71LVT4XDnVffbknv8XgScP4U0Oxtgm+hIw==", "license": "MIT", "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router": "^5.1.0" + "@algolia/events": "^4.0.1" + }, + "peerDependencies": { + "algoliasearch": ">= 3.1 < 6" } }, - "node_modules/@types/react-router-dom": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", - "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", + "node_modules/algoliasearch/node_modules/@algolia/client-common": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", + "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", "license": "MIT", + "peer": true, "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router": "*" + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" } }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "license": "MIT" - }, - "node_modules/@types/sax": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@types/sax/-/sax-1.2.7.tgz", - "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", + "node_modules/algoliasearch/node_modules/@algolia/client-search": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", + "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", "license": "MIT", + "peer": true, "dependencies": { - "@types/node": "*" + "@algolia/client-common": "4.24.0", + "@algolia/requester-common": "4.24.0", + "@algolia/transporter": "4.24.0" } }, - "node_modules/@types/send": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", - "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "node_modules/algoliasearch/node_modules/@algolia/requester-browser-xhr": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.24.0.tgz", + "integrity": "sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==", "license": "MIT", + "peer": true, "dependencies": { - "@types/mime": "^1", - "@types/node": "*" + "@algolia/requester-common": "4.24.0" } }, - "node_modules/@types/serve-index": { - "version": "1.9.4", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", - "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", + "node_modules/algoliasearch/node_modules/@algolia/requester-node-http": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.24.0.tgz", + "integrity": "sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==", "license": "MIT", + "peer": true, "dependencies": { - "@types/express": "*" + "@algolia/requester-common": "4.24.0" } }, - "node_modules/@types/serve-static": { - "version": "1.15.7", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", - "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "node_modules/allof-merge": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/allof-merge/-/allof-merge-0.6.7.tgz", + "integrity": "sha512-slvjkM56OdeVkm1tllrnaumtSHwqyHrepXkAe6Am+CW4WdbHkNqdOKPF6cvY3/IouzvXk1BoLICT5LY7sCoFGw==", "license": "MIT", "dependencies": { - "@types/http-errors": "*", - "@types/node": "*", - "@types/send": "*" + "json-crawl": "^0.5.3" } }, - "node_modules/@types/sockjs": { - "version": "0.3.36", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", - "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", - "license": "MIT", + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "license": "ISC", "dependencies": { - "@types/node": "*" + "string-width": "^4.1.0" } }, - "node_modules/@types/unist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz", - "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "node_modules/ansi-align/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "license": "MIT" }, - "node_modules/@types/ws": { - "version": "8.18.1", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz", - "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==", + "node_modules/ansi-align/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", "dependencies": { - "@types/node": "*" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/@types/yargs": { - "version": "17.0.33", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz", - "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==", + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "license": "MIT", "dependencies": { - "@types/yargs-parser": "*" + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/yargs-parser": { - "version": "21.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", - "license": "MIT" + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/@ungap/structured-clone": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", - "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", - "license": "ISC" + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } }, - "node_modules/@webassemblyjs/ast": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", - "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "license": "MIT", "dependencies": { - "@webassemblyjs/helper-numbers": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", - "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", "license": "MIT" }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", - "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", - "license": "MIT" + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", - "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", "license": "MIT" }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", - "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.13.2", - "@webassemblyjs/helper-api-error": "1.13.2", - "@xtuc/long": "4.2.2" - } + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", - "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "license": "MIT" }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", - "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/wasm-gen": "1.14.1" + "engines": { + "node": ">=8" } }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", - "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", + "node_modules/astring": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", + "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", "license": "MIT", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", - "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", - "license": "Apache-2.0", - "dependencies": { - "@xtuc/long": "4.2.2" + "bin": { + "astring": "bin/astring" } }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", - "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", "license": "MIT" }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", - "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", - "license": "MIT", - "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/helper-wasm-section": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-opt": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1", - "@webassemblyjs/wast-printer": "1.14.1" + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", - "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", + "node_modules/autoprefixer": { + "version": "10.4.21", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", + "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" + "browserslist": "^4.24.4", + "caniuse-lite": "^1.0.30001702", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", - "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", + "node_modules/b4a": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", + "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", + "license": "Apache-2.0" + }, + "node_modules/babel-loader": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", + "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-buffer": "1.14.1", - "@webassemblyjs/wasm-gen": "1.14.1", - "@webassemblyjs/wasm-parser": "1.14.1" + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", - "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@webassemblyjs/helper-api-error": "1.13.2", - "@webassemblyjs/helper-wasm-bytecode": "1.13.2", - "@webassemblyjs/ieee754": "1.13.2", - "@webassemblyjs/leb128": "1.13.2", - "@webassemblyjs/utf8": "1.13.2" + "object.assign": "^4.1.0" } }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", - "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.13", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.13.tgz", + "integrity": "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==", "license": "MIT", "dependencies": { - "@webassemblyjs/ast": "1.14.1", - "@xtuc/long": "4.2.2" + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.4", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "license": "BSD-3-Clause" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "license": "Apache-2.0" + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/abort-controller": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", - "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", + "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", "license": "MIT", "dependencies": { - "event-target-shim": "^5.0.0" + "@babel/helper-define-polyfill-provider": "^0.6.3", + "core-js-compat": "^3.40.0" }, - "engines": { - "node": ">=6.5" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.4.tgz", + "integrity": "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==", "license": "MIT", "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" + "@babel/helper-define-polyfill-provider": "^0.6.4" }, - "engines": { - "node": ">= 0.6" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/accepts/node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", "license": "MIT", - "engines": { - "node": ">= 0.6" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/acorn": { - "version": "8.14.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", - "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } + "node_modules/bare-events": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz", + "integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==", + "license": "Apache-2.0", + "optional": true }, - "node_modules/acorn-walk": { - "version": "8.3.4", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", - "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", - "license": "MIT", + "node_modules/bare-fs": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.1.4.tgz", + "integrity": "sha512-r8+26Voz8dGX3AYpJdFb1ZPaUSM8XOLCZvy+YGpRTmwPHIxA7Z3Jov/oMPtV7hfRQbOnH8qGlLTzQAbgtdNN0Q==", + "license": "Apache-2.0", + "optional": true, "dependencies": { - "acorn": "^8.11.0" + "bare-events": "^2.5.4", + "bare-path": "^3.0.0", + "bare-stream": "^2.6.4" }, "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", - "license": "MIT", - "engines": { - "node": ">= 10.0.0" + "bare": ">=1.16.0" + }, + "peerDependencies": { + "bare-buffer": "*" + }, + "peerDependenciesMeta": { + "bare-buffer": { + "optional": true + } } }, - "node_modules/agent-base": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", - "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", - "license": "MIT", + "node_modules/bare-os": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.6.1.tgz", + "integrity": "sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==", + "license": "Apache-2.0", + "optional": true, "engines": { - "node": ">= 14" + "bare": ">=1.14.0" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "license": "MIT", + "node_modules/bare-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz", + "integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==", + "license": "Apache-2.0", + "optional": true, "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" + "bare-os": "^3.0.1" } }, - "node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "license": "MIT", + "node_modules/bare-stream": { + "version": "2.6.5", + "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.5.tgz", + "integrity": "sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==", + "license": "Apache-2.0", + "optional": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "streamx": "^2.21.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-draft-04": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", - "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", - "license": "MIT", "peerDependencies": { - "ajv": "^8.5.0" + "bare-buffer": "*", + "bare-events": "*" }, "peerDependenciesMeta": { - "ajv": { + "bare-buffer": { + "optional": true + }, + "bare-events": { "optional": true } } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "license": "MIT", - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } + ], + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.23", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.23.tgz", + "integrity": "sha512-616V5YX4bepJFzNyOfce5Fa8fDJMfoxzOIzDCZwaGL8MKVpFrXqfNUoIpRn9YMI5pXf/VKgzjB4htFMsFKKdiQ==", + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" } }, - "node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "license": "MIT" }, - "node_modules/algoliasearch": { - "version": "4.24.0", - "resolved": "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.24.0.tgz", - "integrity": "sha512-bf0QV/9jVejssFBmz2HQLxUadxk574t4iwjCKp5E7NBzwKkrDEhKPISIIjAU/p6K5qDx3qoeh4+26zWN1jmw3g==", + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "license": "MIT", - "dependencies": { - "@algolia/cache-browser-local-storage": "4.24.0", - "@algolia/cache-common": "4.24.0", - "@algolia/cache-in-memory": "4.24.0", - "@algolia/client-account": "4.24.0", - "@algolia/client-analytics": "4.24.0", - "@algolia/client-common": "4.24.0", - "@algolia/client-personalization": "4.24.0", - "@algolia/client-search": "4.24.0", - "@algolia/logger-common": "4.24.0", - "@algolia/logger-console": "4.24.0", - "@algolia/recommend": "4.24.0", - "@algolia/requester-browser-xhr": "4.24.0", - "@algolia/requester-common": "4.24.0", - "@algolia/requester-node-http": "4.24.0", - "@algolia/transporter": "4.24.0" + "engines": { + "node": "*" } }, - "node_modules/algoliasearch-helper": { - "version": "3.25.0", - "resolved": "https://registry.npmjs.org/algoliasearch-helper/-/algoliasearch-helper-3.25.0.tgz", - "integrity": "sha512-vQoK43U6HXA9/euCqLjvyNdM4G2Fiu/VFp4ae0Gau9sZeIKBPvUPnXfLYAe65Bg7PFuw03coeu5K6lTPSXRObw==", + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "license": "MIT", - "dependencies": { - "@algolia/events": "^4.0.1" + "engines": { + "node": ">=8" }, - "peerDependencies": { - "algoliasearch": ">= 3.1 < 6" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/algoliasearch/node_modules/@algolia/client-common": { - "version": "4.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-common/-/client-common-4.24.0.tgz", - "integrity": "sha512-bc2ROsNL6w6rqpl5jj/UywlIYC21TwSSoFHKl01lYirGMW+9Eek6r02Tocg4gZ8HAw3iBvu6XQiM3BEbmEMoiA==", + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.24.0", - "@algolia/transporter": "4.24.0" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/algoliasearch/node_modules/@algolia/client-search": { - "version": "4.24.0", - "resolved": "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.24.0.tgz", - "integrity": "sha512-uRW6EpNapmLAD0mW47OXqTP8eiIx5F6qN9/x/7HHO6owL3N1IXqydGwW5nhDFBrV+ldouro2W1VX3XlcUXEFCA==", + "node_modules/bl/node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", "dependencies": { - "@algolia/client-common": "4.24.0", - "@algolia/requester-common": "4.24.0", - "@algolia/transporter": "4.24.0" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/algoliasearch/node_modules/@algolia/requester-browser-xhr": { - "version": "4.24.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.24.0.tgz", - "integrity": "sha512-Z2NxZMb6+nVXSjF13YpjYTdvV3032YTBSGm2vnYvYPA6mMxzM3v5rsCiSspndn9rzIW4Qp1lPHBvuoKJV6jnAA==", + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.24.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/algoliasearch/node_modules/@algolia/requester-node-http": { - "version": "4.24.0", - "resolved": "https://registry.npmjs.org/@algolia/requester-node-http/-/requester-node-http-4.24.0.tgz", - "integrity": "sha512-JF18yTjNOVYvU/L3UosRcvbPMGT9B+/GQWNWnenIImglzNVGpyzChkXLnrSf6uxwVNO6ESGu6oN8MqcGQcjQJw==", + "node_modules/body-parser": { + "version": "1.20.3", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", + "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "license": "MIT", "dependencies": { - "@algolia/requester-common": "4.24.0" + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.13.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", - "license": "ISC", - "dependencies": { - "string-width": "^4.1.0" + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" } }, - "node_modules/ansi-align/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/ansi-align/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" + "ms": "2.0.0" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", "dependencies": { - "type-fest": "^0.21.3" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "license": "(MIT OR CC0-1.0)", + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/body-parser/node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, "engines": { - "node": ">=10" + "node": ">=0.6" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "engines": [ - "node >= 0.8.0" - ], - "license": "Apache-2.0", - "bin": { - "ansi-html": "bin/ansi-html" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/bonjour-service": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", + "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "license": "ISC" + }, + "node_modules/boxen": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz", + "integrity": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "ansi-align": "^3.0.1", + "camelcase": "^6.2.0", + "chalk": "^4.1.2", + "cli-boxes": "^3.0.0", + "string-width": "^5.0.1", + "type-fest": "^2.5.0", + "widest-line": "^4.0.1", + "wrap-ansi": "^8.0.1" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "license": "MIT" - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "license": "ISC", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "license": "MIT" - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "license": "Python-2.0" - }, - "node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "license": "MIT" - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", "license": "MIT", "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "balanced-match": "^1.0.0" } }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, - "node_modules/assert": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", - "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "license": "MIT", "dependencies": { - "call-bind": "^1.0.2", - "is-nan": "^1.3.2", - "object-is": "^1.1.5", - "object.assign": "^4.1.4", - "util": "^0.12.5" - } - }, - "node_modules/astring": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz", - "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==", - "license": "MIT", - "bin": { - "astring": "bin/astring" - } - }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==", - "license": "MIT" - }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "license": "ISC", + "fill-range": "^7.1.1" + }, "engines": { - "node": ">= 4.0.0" + "node": ">=8" } }, - "node_modules/autoprefixer": { - "version": "10.4.21", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz", - "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", + "node_modules/browserslist": { + "version": "4.27.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.27.0.tgz", + "integrity": "sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==", "funding": [ { "type": "opencollective", - "url": "https://opencollective.com/postcss/" + "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" + "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", @@ -7678,1041 +7192,1015 @@ ], "license": "MIT", "dependencies": { - "browserslist": "^4.24.4", - "caniuse-lite": "^1.0.30001702", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.1.1", - "postcss-value-parser": "^4.2.0" + "baseline-browser-mapping": "^2.8.19", + "caniuse-lite": "^1.0.30001751", + "electron-to-chromium": "^1.5.238", + "node-releases": "^2.0.26", + "update-browserslist-db": "^1.1.4" }, "bin": { - "autoprefixer": "bin/autoprefixer" + "browserslist": "cli.js" }, "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", "dependencies": { - "possible-typed-array-names": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, - "node_modules/b4a": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz", - "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==", - "license": "Apache-2.0" + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" }, - "node_modules/babel-loader": { - "version": "9.2.1", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", - "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "license": "MIT", "dependencies": { - "find-cache-dir": "^4.0.0", - "schema-utils": "^4.0.0" + "run-applescript": "^7.0.0" }, "engines": { - "node": ">= 14.15.0" + "node": ">=18" }, - "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/babel-plugin-dynamic-import-node": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", - "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "license": "MIT", - "dependencies": { - "object.assign": "^4.1.0" + "engines": { + "node": ">= 0.8" } }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.13", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.13.tgz", - "integrity": "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==", + "node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.4", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">=14.16" } }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", - "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", + "node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", "license": "MIT", "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.3", - "core-js-compat": "^3.40.0" + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "engines": { + "node": ">=14.16" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.4.tgz", - "integrity": "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==", + "node_modules/cacheable-request/node_modules/mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.4" + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bail": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", - "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "node_modules/call-bind": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", + "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.0", + "es-define-property": "^1.0.0", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/balanced-match": { + "node_modules/call-bind-apply-helpers": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "license": "MIT" - }, - "node_modules/bare-events": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz", - "integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==", - "license": "Apache-2.0", - "optional": true - }, - "node_modules/bare-fs": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.1.4.tgz", - "integrity": "sha512-r8+26Voz8dGX3AYpJdFb1ZPaUSM8XOLCZvy+YGpRTmwPHIxA7Z3Jov/oMPtV7hfRQbOnH8qGlLTzQAbgtdNN0Q==", - "license": "Apache-2.0", - "optional": true, + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", "dependencies": { - "bare-events": "^2.5.4", - "bare-path": "^3.0.0", - "bare-stream": "^2.6.4" - }, - "engines": { - "bare": ">=1.16.0" - }, - "peerDependencies": { - "bare-buffer": "*" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" }, - "peerDependenciesMeta": { - "bare-buffer": { - "optional": true - } - } - }, - "node_modules/bare-os": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.6.1.tgz", - "integrity": "sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==", - "license": "Apache-2.0", - "optional": true, "engines": { - "bare": ">=1.14.0" - } - }, - "node_modules/bare-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-3.0.0.tgz", - "integrity": "sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==", - "license": "Apache-2.0", - "optional": true, - "dependencies": { - "bare-os": "^3.0.1" + "node": ">= 0.4" } }, - "node_modules/bare-stream": { - "version": "2.6.5", - "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.5.tgz", - "integrity": "sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==", - "license": "Apache-2.0", - "optional": true, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "license": "MIT", "dependencies": { - "streamx": "^2.21.0" + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" }, - "peerDependencies": { - "bare-buffer": "*", - "bare-events": "*" + "engines": { + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "bare-buffer": { - "optional": true - }, - "bare-events": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "node_modules/call-me-maybe": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", + "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", "license": "MIT" }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "license": "MIT", "engines": { - "node": "*" + "node": ">=6" } }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "license": "MIT", "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "license": "MIT", "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/bl/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "node_modules/caniuse-lite": { + "version": "1.0.30001753", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001753.tgz", + "integrity": "sha512-Bj5H35MD/ebaOV4iDLqPEtiliTN29qkGtEHCwawWn4cYm+bPJM2NsaP30vtZcnERClMzp52J4+aw2UNbK4o+zw==", "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" + "type": "opencollective", + "url": "https://opencollective.com/browserslist" }, { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "github", + "url": "https://github.com/sponsors/ai" } ], + "license": "CC-BY-4.0" + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/bn.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.2.tgz", - "integrity": "sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==", - "license": "MIT" - }, - "node_modules/body-parser": { - "version": "1.20.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", - "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.5", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.13.0", - "raw-body": "2.5.2", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=10" } }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/character-entities": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", + "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", "license": "MIT", - "engines": { - "node": ">= 0.8" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", "license": "MIT", - "dependencies": { - "ms": "2.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/body-parser/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" + "node_modules/character-reference-invalid": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", + "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } }, - "node_modules/body-parser/node_modules/qs": { - "version": "6.13.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", - "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", - "license": "BSD-3-Clause", + "node_modules/charset": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz", + "integrity": "sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/cheerio": { + "version": "1.0.0-rc.12", + "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.12.tgz", + "integrity": "sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==", + "license": "MIT", "dependencies": { - "side-channel": "^1.0.6" + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1", + "htmlparser2": "^8.0.1", + "parse5": "^7.0.0", + "parse5-htmlparser2-tree-adapter": "^7.0.0" }, "engines": { - "node": ">=0.6" + "node": ">= 6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" } }, - "node_modules/bonjour-service": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", - "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", - "license": "MIT", + "node_modules/cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "license": "BSD-2-Clause", "dependencies": { - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "license": "ISC" - }, - "node_modules/boxen": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-6.2.1.tgz", - "integrity": "sha512-H4PEsJXfFI/Pt8sjDWbHlQPx4zL/bvSQjcilJmaulGt5mLDorHOHpmdXAJcBcmru7PhYSp/cDMWRko4ZUMFkSw==", + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "license": "MIT", "dependencies": { - "ansi-align": "^3.0.1", - "camelcase": "^6.2.0", - "chalk": "^4.1.2", - "cli-boxes": "^3.0.0", - "string-width": "^5.0.1", - "type-fest": "^2.5.0", - "widest-line": "^4.0.1", - "wrap-ansi": "^8.0.1" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 8.10.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/brace-expansion": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "license": "ISC" + }, + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" + "engines": { + "node": ">=6.0" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, "engines": { "node": ">=8" } }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==", - "license": "MIT" - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "license": "MIT", "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" } }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "node_modules/clean-css/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "license": "MIT", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "node_modules/cli-boxes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", + "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/browserify-rsa": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.1.tgz", - "integrity": "sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==", + "node_modules/cli-table3": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", "license": "MIT", "dependencies": { - "bn.js": "^5.2.1", - "randombytes": "^2.1.0", - "safe-buffer": "^5.2.1" + "string-width": "^4.2.0" }, "engines": { - "node": ">= 0.10" + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/browserify-sign": { + "node_modules/cli-table3/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/cli-table3/node_modules/string-width": { "version": "4.2.3", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.3.tgz", - "integrity": "sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==", - "license": "ISC", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", "dependencies": { - "bn.js": "^5.2.1", - "browserify-rsa": "^4.1.0", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.5", - "hash-base": "~3.0", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.7", - "readable-stream": "^2.3.8", - "safe-buffer": "^5.2.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">= 0.12" + "node": ">=8" } }, - "node_modules/browserify-sign/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "license": "MIT", + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" } }, - "node_modules/browserify-sign/node_modules/readable-stream/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "license": "MIT" - }, - "node_modules/browserify-sign/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/browserify-sign/node_modules/string_decoder/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "license": "MIT" }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "license": "MIT", - "dependencies": { - "pako": "~1.0.5" - } - }, - "node_modules/browserslist": { - "version": "4.24.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.5.tgz", - "integrity": "sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001716", - "electron-to-chromium": "^1.5.149", - "node-releases": "^2.0.19", - "update-browserslist-db": "^1.1.3" - }, - "bin": { - "browserslist": "cli.js" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=8" } }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "license": "MIT", "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "license": "MIT" - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==", - "license": "MIT" - }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==", - "license": "MIT" - }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "license": "MIT", + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/cacheable-lookup": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", - "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, "engines": { - "node": ">=14.16" + "node": ">=6" } }, - "node_modules/cacheable-request": { - "version": "10.2.14", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", - "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", "license": "MIT", - "dependencies": { - "@types/http-cache-semantics": "^4.0.2", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.3", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" - }, "engines": { - "node": ">=14.16" + "node": ">=6" } }, - "node_modules/cacheable-request/node_modules/mimic-response": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", - "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "node_modules/collapse-white-space": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", + "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/call-bind": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz", - "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==", + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", "license": "MIT", "dependencies": { - "call-bind-apply-helpers": "^1.0.0", - "es-define-property": "^1.0.0", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.2" + "color-convert": "^2.0.1", + "color-string": "^1.9.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12.5.0" } }, - "node_modules/call-bind-apply-helpers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", - "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "license": "MIT", "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2" + "color-name": "~1.1.4" }, "engines": { - "node": ">= 0.4" + "node": ">=7.0.0" } }, - "node_modules/call-bound": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz", - "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", "license": "MIT", "dependencies": { - "call-bind-apply-helpers": "^1.0.2", - "get-intrinsic": "^1.3.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, - "node_modules/call-me-maybe": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.2.tgz", - "integrity": "sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==", + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "license": "MIT" }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "node_modules/colorette": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", + "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "license": "MIT" + }, + "node_modules/combine-promises": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.2.0.tgz", + "integrity": "sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==", "license": "MIT", "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", "license": "MIT", - "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", "license": "MIT", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 6" } }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", + "license": "ISC" + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, "engines": { - "node": ">= 6" + "node": ">= 0.6" } }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "node_modules/compression": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", + "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", "license": "MIT", "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "bytes": "3.1.2", + "compressible": "~2.0.18", + "debug": "2.6.9", + "negotiator": "~0.6.4", + "on-headers": "~1.1.0", + "safe-buffer": "5.2.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001717", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001717.tgz", - "integrity": "sha512-auPpttCq6BDEG8ZAuHJIplGw6GODhjw+/11e7IjpnYCxZcW/ONgPs0KVBJ0d1bY3e2+7PRe5RCLyP+PfwVgkYw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" + "node_modules/compression/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } }, - "node_modules/ccount": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/compute-gcd": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz", + "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==", + "dependencies": { + "validate.io-array": "^1.0.3", + "validate.io-function": "^1.0.2", + "validate.io-integer-array": "^1.0.0" + } + }, + "node_modules/compute-lcm": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz", + "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==", + "dependencies": { + "compute-gcd": "^1.2.1", + "validate.io-array": "^1.0.3", + "validate.io-function": "^1.0.2", + "validate.io-integer-array": "^1.0.0" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "license": "MIT" + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/configstore": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", + "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", + "license": "BSD-2-Clause", + "dependencies": { + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/yeoman/configstore?sponsor=1" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "license": "MIT", "engines": { - "node": ">=10" + "node": ">=0.8" } }, - "node_modules/character-entities": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", - "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", + "node_modules/consola": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.4.2.tgz", + "integrity": "sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/character-entities-html4": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", - "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "node_modules/content-disposition": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", + "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">= 0.6" } }, - "node_modules/character-entities-legacy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", - "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">= 0.6" } }, - "node_modules/character-reference-invalid": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", - "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", + "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "engines": { + "node": ">= 0.6" } }, - "node_modules/charset": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz", - "integrity": "sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg==", + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "license": "MIT" + }, + "node_modules/copy-text-to-clipboard": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz", + "integrity": "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==", "license": "MIT", "engines": { - "node": ">=4.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cheerio": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0.tgz", - "integrity": "sha512-quS9HgjQpdaXOvsZz82Oz7uxtXiy6UIsIQcpBj7HRw2M63Skasm9qlDocAM7jNuaxdhpPU7c4kJN+gA5MCu4ww==", + "node_modules/copy-webpack-plugin": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", + "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", "license": "MIT", "dependencies": { - "cheerio-select": "^2.1.0", - "dom-serializer": "^2.0.0", - "domhandler": "^5.0.3", - "domutils": "^3.1.0", - "encoding-sniffer": "^0.2.0", - "htmlparser2": "^9.1.0", - "parse5": "^7.1.2", - "parse5-htmlparser2-tree-adapter": "^7.0.0", - "parse5-parser-stream": "^7.1.2", - "undici": "^6.19.5", - "whatwg-mimetype": "^4.0.0" + "fast-glob": "^3.2.11", + "glob-parent": "^6.0.1", + "globby": "^13.1.1", + "normalize-path": "^3.0.0", + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "engines": { - "node": ">=18.17" + "node": ">= 14.15.0" }, "funding": { - "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" } }, - "node_modules/cheerio-select": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cheerio-select/-/cheerio-select-2.1.0.tgz", - "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", - "license": "BSD-2-Clause", + "node_modules/copy-webpack-plugin/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", "dependencies": { - "boolbase": "^1.0.0", - "css-select": "^5.1.0", - "css-what": "^6.1.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3", - "domutils": "^3.0.1" + "is-glob": "^4.0.3" }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "engines": { + "node": ">=10.13.0" } }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "node_modules/copy-webpack-plugin/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", "license": "MIT", "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" }, "engines": { - "node": ">= 8.10.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "license": "ISC" - }, - "node_modules/chrome-trace-event": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", - "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "node_modules/copy-webpack-plugin/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "license": "MIT", "engines": { - "node": ">=6.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], + "node_modules/core-js": { + "version": "3.42.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.42.0.tgz", + "integrity": "sha512-Sz4PP4ZA+Rq4II21qkNqOEDTDrCvcANId3xpIgB34NDkWc3UduWj2dqEtN9yZIq8Dk3HyPI33x9sqqU5C8sr0g==", + "hasInstallScript": true, "license": "MIT", - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/cipher-base": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.6.tgz", - "integrity": "sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==", + "node_modules/core-js-compat": { + "version": "3.42.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.42.0.tgz", + "integrity": "sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==", "license": "MIT", "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1" + "browserslist": "^4.24.4" }, - "engines": { - "node": ">= 0.10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/clean-css": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", - "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "node_modules/core-js-pure": { + "version": "3.42.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.42.0.tgz", + "integrity": "sha512-007bM04u91fF4kMgwom2I5cQxAFIy8jVulgr9eozILl/SZE53QOqnW/+vviC+wQWLv+AunBG+8Q0TLoeSsSxRQ==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "license": "MIT", "dependencies": { - "source-map": "~0.6.0" + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">= 10.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/clean-css/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "node_modules/crypto-js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", + "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==", + "license": "MIT" + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "license": "MIT", + "dependencies": { + "type-fest": "^1.0.1" + }, "engines": { - "node": ">=6" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-boxes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-3.0.0.tgz", - "integrity": "sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==", - "license": "MIT", + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, @@ -8720,1709 +8208,1670 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-table3": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", - "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", - "license": "MIT", + "node_modules/css-blank-pseudo": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz", + "integrity": "sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "dependencies": { - "string-width": "^4.2.0" + "postcss-selector-parser": "^7.0.0" }, "engines": { - "node": "10.* || >= 12.*" + "node": ">=18" }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/cli-table3/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" - }, - "node_modules/cli-table3/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/css-blank-pseudo/node_modules/postcss-selector-parser": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", + "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "node_modules/css-declaration-sorter": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", + "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, "engines": { - "node": ">=12" + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" } }, - "node_modules/cliui/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "license": "MIT" + "node_modules/css-has-pseudo": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.3.tgz", + "integrity": "sha512-oG+vKuGyqe/xvEMoxAQrhi7uY16deJR3i7wwhBerVrGQKSqUC5GiOVxTpM9F9B9hw0J+eKeOWLH7E9gZ1Dr5rA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "dependencies": { + "@csstools/selector-specificity": "^5.0.0", + "postcss-selector-parser": "^7.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } }, - "node_modules/cliui/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/css-has-pseudo/node_modules/@csstools/selector-specificity": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", + "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "postcss-selector-parser": "^7.0.0" + } + }, + "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", + "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", "license": "MIT", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "node_modules/css-loader": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", + "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", "license": "MIT", "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.1.0", + "postcss-modules-local-by-default": "^4.0.5", + "postcss-modules-scope": "^3.2.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" }, "engines": { - "node": ">=10" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "@rspack/core": "0.x || 1.x", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@rspack/core": { + "optional": true + }, + "webpack": { + "optional": true + } } }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "node_modules/css-minimizer-webpack-plugin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", + "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", "license": "MIT", "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "@jridgewell/trace-mapping": "^0.3.18", + "cssnano": "^6.0.1", + "jest-worker": "^29.4.3", + "postcss": "^8.4.24", + "schema-utils": "^4.0.1", + "serialize-javascript": "^6.0.1" }, "engines": { - "node": ">=6" + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "@parcel/css": { + "optional": true + }, + "@swc/css": { + "optional": true + }, + "clean-css": { + "optional": true + }, + "csso": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "lightningcss": { + "optional": true + } } }, - "node_modules/clsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", - "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", - "license": "MIT", + "node_modules/css-prefers-color-scheme": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz", + "integrity": "sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "license": "MIT-0", "engines": { - "node": ">=6" + "node": ">=18" + }, + "peerDependencies": { + "postcss": "^8.4" } }, - "node_modules/collapse-white-space": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", - "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", - "license": "MIT", + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/color": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", - "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "license": "MIT", "dependencies": { - "color-convert": "^2.0.1", - "color-string": "^1.9.0" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">=12.5.0" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "license": "BSD-2-Clause", "engines": { - "node": ">=7.0.0" + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "license": "MIT" + "node_modules/cssdb": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.4.2.tgz", + "integrity": "sha512-PzjkRkRUS+IHDJohtxkIczlxPPZqRo0nXplsYXOMBRPjcVRjj1W4DfvRgshUYTVuUigU7ptVYkFJQ7abUB0nyg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ], + "license": "MIT-0" }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "license": "MIT", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", - "license": "MIT" - }, - "node_modules/colorette": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", - "license": "MIT" - }, - "node_modules/combine-promises": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/combine-promises/-/combine-promises-1.2.0.tgz", - "integrity": "sha512-VcQB1ziGD0NXrhKxiwyNbCDmRzs/OShMs2GqW2DlU2A/Sd0nQxE1oWDAE5O0ygSx5mgQOn9eIFh7yKPgFRVkPQ==", + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/comma-separated-tokens": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", - "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "node_modules/cssnano": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz", + "integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==", "license": "MIT", + "dependencies": { + "cssnano-preset-default": "^6.1.2", + "lilconfig": "^3.1.1" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "node_modules/cssnano-preset-advanced": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz", + "integrity": "sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==", "license": "MIT", + "dependencies": { + "autoprefixer": "^10.4.19", + "browserslist": "^4.23.0", + "cssnano-preset-default": "^6.1.2", + "postcss-discard-unused": "^6.0.5", + "postcss-merge-idents": "^6.0.3", + "postcss-reduce-idents": "^6.0.3", + "postcss-zindex": "^6.0.2" + }, "engines": { - "node": ">= 6" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", - "license": "ISC" - }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "node_modules/cssnano-preset-default": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz", + "integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==", "license": "MIT", "dependencies": { - "mime-db": ">= 1.43.0 < 2" + "browserslist": "^4.23.0", + "css-declaration-sorter": "^7.2.0", + "cssnano-utils": "^4.0.2", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.1.0", + "postcss-convert-values": "^6.1.0", + "postcss-discard-comments": "^6.0.2", + "postcss-discard-duplicates": "^6.0.3", + "postcss-discard-empty": "^6.0.3", + "postcss-discard-overridden": "^6.0.2", + "postcss-merge-longhand": "^6.0.5", + "postcss-merge-rules": "^6.1.1", + "postcss-minify-font-values": "^6.1.0", + "postcss-minify-gradients": "^6.0.3", + "postcss-minify-params": "^6.1.0", + "postcss-minify-selectors": "^6.0.4", + "postcss-normalize-charset": "^6.0.2", + "postcss-normalize-display-values": "^6.0.2", + "postcss-normalize-positions": "^6.0.2", + "postcss-normalize-repeat-style": "^6.0.2", + "postcss-normalize-string": "^6.0.2", + "postcss-normalize-timing-functions": "^6.0.2", + "postcss-normalize-unicode": "^6.1.0", + "postcss-normalize-url": "^6.0.2", + "postcss-normalize-whitespace": "^6.0.2", + "postcss-ordered-values": "^6.0.2", + "postcss-reduce-initial": "^6.1.0", + "postcss-reduce-transforms": "^6.0.2", + "postcss-svgo": "^6.0.3", + "postcss-unique-selectors": "^6.0.4" }, "engines": { - "node": ">= 0.6" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/compression": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.8.1.tgz", - "integrity": "sha512-9mAqGPHLakhCLeNyxPkK4xVo746zQ/czLH1Ky+vkitMnWfWZps8r0qXuwhwizagCRttsL4lfG4pIOvaWLpAP0w==", + "node_modules/cssnano-utils": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz", + "integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==", "license": "MIT", - "dependencies": { - "bytes": "3.1.2", - "compressible": "~2.0.18", - "debug": "2.6.9", - "negotiator": "~0.6.4", - "on-headers": "~1.1.0", - "safe-buffer": "5.2.1", - "vary": "~1.1.2" - }, "engines": { - "node": ">= 0.8.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/compression/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "license": "MIT", + "dependencies": { + "css-tree": "~2.2.0" + }, "engines": { - "node": ">= 0.8" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "license": "CC0-1.0" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", "license": "MIT" }, - "node_modules/compute-gcd": { + "node_modules/debounce": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/compute-gcd/-/compute-gcd-1.2.1.tgz", - "integrity": "sha512-TwMbxBNz0l71+8Sc4czv13h4kEqnchV9igQZBi6QUaz09dnz13juGnnaWWJTRsP3brxOoxeB4SA2WELLw1hCtg==", - "dependencies": { - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" - } + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", + "license": "MIT" }, - "node_modules/compute-lcm": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/compute-lcm/-/compute-lcm-1.1.2.tgz", - "integrity": "sha512-OFNPdQAXnQhDSKioX8/XYT6sdUlXwpeMjfd6ApxMJfyZ4GxmLR1xvMERctlYhlHwIiz6CSpBc2+qYKjHGZw4TQ==", + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "license": "MIT", "dependencies": { - "compute-gcd": "^1.2.1", - "validate.io-array": "^1.0.3", - "validate.io-function": "^1.0.2", - "validate.io-integer-array": "^1.0.0" + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "license": "MIT" - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "node_modules/decode-named-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.1.0.tgz", + "integrity": "sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==", "license": "MIT", "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" + "character-entities": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/configstore": { + "node_modules/decompress-response": { "version": "6.0.0", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", - "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", - "license": "BSD-2-Clause", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "license": "MIT", "dependencies": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" + "mimic-response": "^3.1.0" }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "url": "https://github.com/yeoman/configstore?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/connect-history-api-fallback": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", - "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "license": "MIT", "engines": { - "node": ">=0.8" + "node": ">=4.0.0" } }, - "node_modules/consola": { - "version": "2.15.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", - "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==", - "license": "MIT" - }, - "node_modules/console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - }, - "node_modules/consolidated-events": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/consolidated-events/-/consolidated-events-2.0.2.tgz", - "integrity": "sha512-2/uRVMdRypf5z/TW/ncD/66l75P5hH2vM/GR8Jf8HLc2xnfJtmina6F6du8+v4Z2vTrMo7jC+W1tmEEuuELgkQ==", - "license": "MIT" - }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", - "license": "MIT" - }, - "node_modules/content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==", + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/content-type": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", - "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", "license": "MIT", + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" + }, "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "license": "MIT" - }, - "node_modules/cookie": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", - "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "license": "MIT" - }, - "node_modules/copy-text-to-clipboard": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/copy-text-to-clipboard/-/copy-text-to-clipboard-3.2.0.tgz", - "integrity": "sha512-RnJFp1XR/LOBDckxTib5Qjr/PMfkatD0MUCQgdpqS8MdKiNUzBjAQBEN6oUy+jW7LI93BBG3DtMB2KOOKpGs2Q==", + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/copy-webpack-plugin": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", - "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "license": "MIT", "dependencies": { - "fast-glob": "^3.2.11", - "glob-parent": "^6.0.1", - "globby": "^13.1.1", - "normalize-path": "^3.0.0", - "schema-utils": "^4.0.0", - "serialize-javascript": "^6.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "license": "MIT", "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", - "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "license": "MIT", "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.3.0", - "ignore": "^5.2.4", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "license": "MIT", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8" } }, - "node_modules/core-js": { - "version": "3.42.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.42.0.tgz", - "integrity": "sha512-Sz4PP4ZA+Rq4II21qkNqOEDTDrCvcANId3xpIgB34NDkWc3UduWj2dqEtN9yZIq8Dk3HyPI33x9sqqU5C8sr0g==", - "hasInstallScript": true, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": ">=6" } }, - "node_modules/core-js-compat": { - "version": "3.42.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.42.0.tgz", - "integrity": "sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==", + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "license": "MIT", - "dependencies": { - "browserslist": "^4.24.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/core-js-pure": { - "version": "3.42.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.42.0.tgz", - "integrity": "sha512-007bM04u91fF4kMgwom2I5cQxAFIy8jVulgr9eozILl/SZE53QOqnW/+vviC+wQWLv+AunBG+8Q0TLoeSsSxRQ==", - "hasInstallScript": true, - "license": "MIT", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "license": "Apache-2.0", + "optional": true, + "bin": { + "detect-libc": "bin/detect-libc.js" + }, + "engines": { + "node": ">=0.10" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "license": "MIT" }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "node_modules/detect-package-manager": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-3.0.2.tgz", + "integrity": "sha512-8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==", "license": "MIT", "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" + "execa": "^5.1.1" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=12" } }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "node_modules/detect-port": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", + "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", "license": "MIT", "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" + "address": "^1.0.1", + "debug": "4" + }, + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" + }, + "engines": { + "node": ">= 4.0.0" } }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", "license": "MIT", "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "license": "BSD-3-Clause", "engines": { - "node": ">= 8" + "node": ">=0.3.1" } }, - "node_modules/crypto-browserify": { - "version": "3.12.1", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.1.tgz", - "integrity": "sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "license": "MIT", "dependencies": { - "browserify-cipher": "^1.0.1", - "browserify-sign": "^4.2.3", - "create-ecdh": "^4.0.4", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "diffie-hellman": "^5.0.3", - "hash-base": "~3.0.4", - "inherits": "^2.0.4", - "pbkdf2": "^3.1.2", - "public-encrypt": "^4.0.3", - "randombytes": "^2.1.0", - "randomfill": "^1.0.4" + "path-type": "^4.0.0" }, "engines": { - "node": ">= 0.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/crypto-js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", - "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==", + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true, "license": "MIT" }, - "node_modules/crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "node_modules/dns-packet": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", + "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "license": "MIT", "dependencies": { - "type-fest": "^1.0.1" + "@leichtgewicht/ip-codec": "^2.0.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6" } }, - "node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" + "node_modules/docusaurus-plugin-image-zoom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-image-zoom/-/docusaurus-plugin-image-zoom-2.0.0.tgz", + "integrity": "sha512-TWHQZeoiged+95CESlZk++lihzl3pqw34n0/fbexx2AocmFhbo9K2scYDgYB8amki4/X6mUCLTPZE1pQvT+00Q==", + "license": "MIT", + "dependencies": { + "medium-zoom": "^1.0.8", + "validate-peer-dependencies": "^2.2.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@docusaurus/theme-classic": ">=3.0.0" } }, - "node_modules/css-blank-pseudo": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-7.0.1.tgz", - "integrity": "sha512-jf+twWGDf6LDoXDUode+nc7ZlrqfaNphrBIBrcmeP3D8yw1uPaix1gCC8LUQUGQ6CycuK2opkbFFWFuq/a94ag==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "node_modules/docusaurus-plugin-openapi-docs": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-openapi-docs/-/docusaurus-plugin-openapi-docs-4.5.1.tgz", + "integrity": "sha512-3I6Sjz19D/eM86a24/nVkYfqNkl/zuXSP04XVo7qm/vlPeCpHVM4li2DLj7PzElr6dlS9RbaS4HVIQhEOPGBRQ==", + "license": "MIT", "dependencies": { - "postcss-selector-parser": "^7.0.0" + "@apidevtools/json-schema-ref-parser": "^11.5.4", + "@redocly/openapi-core": "^1.10.5", + "allof-merge": "^0.6.6", + "chalk": "^4.1.2", + "clsx": "^1.1.1", + "fs-extra": "^9.0.1", + "json-pointer": "^0.6.2", + "json5": "^2.2.3", + "lodash": "^4.17.20", + "mustache": "^4.2.0", + "openapi-to-postmanv2": "^4.21.0", + "postman-collection": "^4.4.0", + "slugify": "^1.6.5", + "swagger2openapi": "^7.0.8", + "xml-formatter": "^2.6.1" }, "engines": { - "node": ">=18" + "node": ">=14" }, "peerDependencies": { - "postcss": "^8.4" + "@docusaurus/plugin-content-docs": "^3.5.0", + "@docusaurus/utils": "^3.5.0", + "@docusaurus/utils-validation": "^3.5.0", + "react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, - "node_modules/css-blank-pseudo/node_modules/postcss-selector-parser": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", + "node_modules/docusaurus-plugin-openapi-docs/node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/css-declaration-sorter": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", - "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", - "license": "ISC", - "engines": { - "node": "^14 || ^16 || >=18" + "node_modules/docusaurus-plugin-openapi-docs/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, - "peerDependencies": { - "postcss": "^8.0.9" + "engines": { + "node": ">=10" } }, - "node_modules/css-has-pseudo": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-7.0.2.tgz", - "integrity": "sha512-nzol/h+E0bId46Kn2dQH5VElaknX2Sr0hFuB/1EomdC7j+OISt2ZzK7EHX9DZDY53WbIVAR7FYKSO2XnSf07MQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "node_modules/docusaurus-plugin-sass": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/docusaurus-plugin-sass/-/docusaurus-plugin-sass-0.2.6.tgz", + "integrity": "sha512-2hKQQDkrufMong9upKoG/kSHJhuwd+FA3iAe/qzS/BmWpbIpe7XKmq5wlz4J5CJaOPu4x+iDJbgAxZqcoQf0kg==", + "license": "MIT", + "peer": true, "dependencies": { - "@csstools/selector-specificity": "^5.0.0", - "postcss-selector-parser": "^7.0.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": ">=18" + "sass-loader": "^16.0.2" }, "peerDependencies": { - "postcss": "^8.4" + "@docusaurus/core": "^2.0.0-beta || ^3.0.0-alpha", + "sass": "^1.30.0" } }, - "node_modules/css-has-pseudo/node_modules/@csstools/selector-specificity": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-5.0.0.tgz", - "integrity": "sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", + "node_modules/docusaurus-theme-openapi-docs": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/docusaurus-theme-openapi-docs/-/docusaurus-theme-openapi-docs-4.5.1.tgz", + "integrity": "sha512-C7mYh9JC3l9jjRtqJVu0EIyOgxHB08jE0Tp5NSkNkrrBak4A13SrXCisNjvt1eaNjS+tsz7qD0bT3aI5hsRvWA==", + "license": "MIT", + "dependencies": { + "@hookform/error-message": "^2.0.1", + "@reduxjs/toolkit": "^1.7.1", + "allof-merge": "^0.6.6", + "buffer": "^6.0.3", + "clsx": "^1.1.1", + "copy-text-to-clipboard": "^3.1.0", + "crypto-js": "^4.1.1", + "file-saver": "^2.0.5", + "lodash": "^4.17.20", + "pako": "^2.1.0", + "postman-code-generators": "^1.10.1", + "postman-collection": "^4.4.0", + "prism-react-renderer": "^2.3.0", + "process": "^0.11.10", + "react-hook-form": "^7.43.8", + "react-live": "^4.0.0", + "react-magic-dropzone": "^1.0.1", + "react-markdown": "^8.0.1", + "react-modal": "^3.15.1", + "react-redux": "^7.2.0", + "rehype-raw": "^6.1.1", + "remark-gfm": "3.0.1", + "sass": "^1.80.4", + "sass-loader": "^16.0.2", + "unist-util-visit": "^5.0.0", + "url": "^0.11.1", + "xml-formatter": "^2.6.1" + }, "engines": { - "node": ">=18" + "node": ">=14" }, "peerDependencies": { - "postcss-selector-parser": "^7.0.0" + "@docusaurus/theme-common": "^3.5.0", + "docusaurus-plugin-openapi-docs": "^4.0.0", + "docusaurus-plugin-sass": "^0.2.3", + "react": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, - "node_modules/css-has-pseudo/node_modules/postcss-selector-parser": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz", - "integrity": "sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/hast": { + "version": "2.3.10", + "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", + "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", "license": "MIT", "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" + "@types/unist": "^2" } }, - "node_modules/css-loader": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", - "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/mdast": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", + "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", "license": "MIT", "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.33", - "postcss-modules-extract-imports": "^3.1.0", - "postcss-modules-local-by-default": "^4.0.5", - "postcss-modules-scope": "^3.2.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.5.4" - }, + "@types/unist": "^2" + } + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/unist": { + "version": "2.0.11", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", + "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", + "license": "MIT" + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "license": "MIT", "engines": { - "node": ">= 12.13.0" + "node": ">=6" + } + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "license": "MIT", + "engines": { + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "webpack": { - "optional": true - } + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/css-minimizer-webpack-plugin": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", - "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-from-parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz", + "integrity": "sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==", "license": "MIT", "dependencies": { - "@jridgewell/trace-mapping": "^0.3.18", - "cssnano": "^6.0.1", - "jest-worker": "^29.4.3", - "postcss": "^8.4.24", - "schema-utils": "^4.0.1", - "serialize-javascript": "^6.0.1" - }, - "engines": { - "node": ">= 14.15.0" + "@types/hast": "^2.0.0", + "@types/unist": "^2.0.0", + "hastscript": "^7.0.0", + "property-information": "^6.0.0", + "vfile": "^5.0.0", + "vfile-location": "^4.0.0", + "web-namespaces": "^2.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@parcel/css": { - "optional": true - }, - "@swc/css": { - "optional": true - }, - "clean-css": { - "optional": true - }, - "csso": { - "optional": true - }, - "esbuild": { - "optional": true - }, - "lightningcss": { - "optional": true - } + "url": "https://opencollective.com/unified" } }, - "node_modules/css-prefers-color-scheme": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-10.0.0.tgz", - "integrity": "sha512-VCtXZAWivRglTZditUfB4StnsWr6YVZ2PRtuxQLKTNRdtAf8tpzaVPE9zXIF3VaSc7O70iK/j1+NXxyQCqdPjQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "license": "MIT-0", - "engines": { - "node": ">=18" + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-parse-selector": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", + "integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "license": "BSD-2-Clause", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-raw": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-7.2.3.tgz", + "integrity": "sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==", + "license": "MIT", "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" + "@types/hast": "^2.0.0", + "@types/parse5": "^6.0.0", + "hast-util-from-parse5": "^7.0.0", + "hast-util-to-parse5": "^7.0.0", + "html-void-elements": "^2.0.0", + "parse5": "^6.0.0", + "unist-util-position": "^4.0.0", + "unist-util-visit": "^4.0.0", + "vfile": "^5.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-to-parse5": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz", + "integrity": "sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==", "license": "MIT", "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0", + "web-namespaces": "^2.0.0", + "zwitch": "^2.0.0" }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" + "node_modules/docusaurus-theme-openapi-docs/node_modules/hastscript": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", + "integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==", + "license": "MIT", + "dependencies": { + "@types/hast": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^3.0.0", + "property-information": "^6.0.0", + "space-separated-tokens": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/cssdb": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-8.2.5.tgz", - "integrity": "sha512-leAt8/hdTCtzql9ZZi86uYAmCLzVKpJMMdjbvOGVnXFXz/BWFpBmM1MHEHU/RqtPyRYmabVmEW1DtX3YGLuuLA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - } - ], - "license": "MIT-0" - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/html-void-elements": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz", + "integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==", "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/cssnano": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz", - "integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-find-and-replace": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.2.tgz", + "integrity": "sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==", "license": "MIT", "dependencies": { - "cssnano-preset-default": "^6.1.2", - "lilconfig": "^3.1.1" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" + "@types/mdast": "^3.0.0", + "escape-string-regexp": "^5.0.0", + "unist-util-is": "^5.0.0", + "unist-util-visit-parents": "^5.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "url": "https://opencollective.com/unified" } }, - "node_modules/cssnano-preset-advanced": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-advanced/-/cssnano-preset-advanced-6.1.2.tgz", - "integrity": "sha512-Nhao7eD8ph2DoHolEzQs5CfRpiEP0xa1HBdnFZ82kvqdmbwVBUr2r1QuQ4t1pi+D1ZpqpcO4T+wy/7RxzJ/WPQ==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-from-markdown": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz", + "integrity": "sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==", "license": "MIT", "dependencies": { - "autoprefixer": "^10.4.19", - "browserslist": "^4.23.0", - "cssnano-preset-default": "^6.1.2", - "postcss-discard-unused": "^6.0.5", - "postcss-merge-idents": "^6.0.3", - "postcss-reduce-idents": "^6.0.3", - "postcss-zindex": "^6.0.2" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/cssnano-preset-default": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz", - "integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==", - "license": "MIT", - "dependencies": { - "browserslist": "^4.23.0", - "css-declaration-sorter": "^7.2.0", - "cssnano-utils": "^4.0.2", - "postcss-calc": "^9.0.1", - "postcss-colormin": "^6.1.0", - "postcss-convert-values": "^6.1.0", - "postcss-discard-comments": "^6.0.2", - "postcss-discard-duplicates": "^6.0.3", - "postcss-discard-empty": "^6.0.3", - "postcss-discard-overridden": "^6.0.2", - "postcss-merge-longhand": "^6.0.5", - "postcss-merge-rules": "^6.1.1", - "postcss-minify-font-values": "^6.1.0", - "postcss-minify-gradients": "^6.0.3", - "postcss-minify-params": "^6.1.0", - "postcss-minify-selectors": "^6.0.4", - "postcss-normalize-charset": "^6.0.2", - "postcss-normalize-display-values": "^6.0.2", - "postcss-normalize-positions": "^6.0.2", - "postcss-normalize-repeat-style": "^6.0.2", - "postcss-normalize-string": "^6.0.2", - "postcss-normalize-timing-functions": "^6.0.2", - "postcss-normalize-unicode": "^6.1.0", - "postcss-normalize-url": "^6.0.2", - "postcss-normalize-whitespace": "^6.0.2", - "postcss-ordered-values": "^6.0.2", - "postcss-reduce-initial": "^6.1.0", - "postcss-reduce-transforms": "^6.0.2", - "postcss-svgo": "^6.0.3", - "postcss-unique-selectors": "^6.0.4" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/cssnano-utils": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz", - "integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==", - "license": "MIT", - "engines": { - "node": "^14 || ^16 || >=18.0" + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "decode-named-character-reference": "^1.0.0", + "mdast-util-to-string": "^3.1.0", + "micromark": "^3.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-decode-string": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "unist-util-stringify-position": "^3.0.0", + "uvu": "^0.5.0" }, - "peerDependencies": { - "postcss": "^8.4.31" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-2.0.2.tgz", + "integrity": "sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==", "license": "MIT", "dependencies": { - "css-tree": "~2.2.0" + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-gfm-autolink-literal": "^1.0.0", + "mdast-util-gfm-footnote": "^1.0.0", + "mdast-util-gfm-strikethrough": "^1.0.0", + "mdast-util-gfm-table": "^1.0.0", + "mdast-util-gfm-task-list-item": "^1.0.0", + "mdast-util-to-markdown": "^1.0.0" }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-autolink-literal": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz", + "integrity": "sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==", "license": "MIT", "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" + "@types/mdast": "^3.0.0", + "ccount": "^2.0.0", + "mdast-util-find-and-replace": "^2.0.0", + "micromark-util-character": "^1.0.0" }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", - "license": "CC0-1.0" - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", - "license": "MIT" - }, - "node_modules/debounce": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", - "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", - "license": "MIT" - }, - "node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-footnote": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.2.tgz", + "integrity": "sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==", "license": "MIT", "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0", + "micromark-util-normalize-identifier": "^1.0.0" }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/decode-named-character-reference": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.1.0.tgz", - "integrity": "sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-strikethrough": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.3.tgz", + "integrity": "sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==", "license": "MIT", "dependencies": { - "character-entities": "^2.0.0" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-table": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.7.tgz", + "integrity": "sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==", "license": "MIT", "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" + "@types/mdast": "^3.0.0", + "markdown-table": "^3.0.0", + "mdast-util-from-markdown": "^1.0.0", + "mdast-util-to-markdown": "^1.3.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "license": "MIT", - "engines": { - "node": ">=4.0.0" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-gfm-task-list-item": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.2.tgz", + "integrity": "sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==", "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", - "license": "BSD-2-Clause", "dependencies": { - "execa": "^5.0.0" + "@types/mdast": "^3.0.0", + "mdast-util-to-markdown": "^1.3.0" }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", - "license": "MIT", - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-phrasing": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz", + "integrity": "sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==", "license": "MIT", "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" + "@types/mdast": "^3.0.0", + "unist-util-is": "^5.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "license": "MIT", - "engines": { - "node": ">=8" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-markdown": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz", + "integrity": "sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==", "license": "MIT", "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" + "@types/mdast": "^3.0.0", + "@types/unist": "^2.0.0", + "longest-streak": "^3.0.0", + "mdast-util-phrasing": "^3.0.0", + "mdast-util-to-string": "^3.0.0", + "micromark-util-decode-string": "^1.0.0", + "unist-util-visit": "^4.0.0", + "zwitch": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/del": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", - "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/mdast-util-to-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", + "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", "license": "MIT", "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" + "@types/mdast": "^3.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "license": "MIT", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-3.2.0.tgz", + "integrity": "sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", - "engines": { - "node": ">=6" + "dependencies": { + "@types/debug": "^4.0.0", + "debug": "^4.0.0", + "decode-named-character-reference": "^1.0.0", + "micromark-core-commonmark": "^1.0.1", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" } }, - "node_modules/des.js": { + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-core-commonmark": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz", + "integrity": "sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" + "decode-named-character-reference": "^1.0.0", + "micromark-factory-destination": "^1.0.0", + "micromark-factory-label": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-factory-title": "^1.0.0", + "micromark-factory-whitespace": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-html-tag-name": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-subtokenize": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.1", + "uvu": "^0.5.0" } }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-2.0.3.tgz", + "integrity": "sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==", "license": "MIT", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-libc": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", - "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", - "license": "Apache-2.0", - "optional": true, - "bin": { - "detect-libc": "bin/detect-libc.js" + "dependencies": { + "micromark-extension-gfm-autolink-literal": "^1.0.0", + "micromark-extension-gfm-footnote": "^1.0.0", + "micromark-extension-gfm-strikethrough": "^1.0.0", + "micromark-extension-gfm-table": "^1.0.0", + "micromark-extension-gfm-tagfilter": "^1.0.0", + "micromark-extension-gfm-task-list-item": "^1.0.0", + "micromark-util-combine-extensions": "^1.0.0", + "micromark-util-types": "^1.0.0" }, - "engines": { - "node": ">=0.10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-node": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "license": "MIT" - }, - "node_modules/detect-package-manager": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-3.0.2.tgz", - "integrity": "sha512-8JFjJHutStYrfWwzfretQoyNGoZVW1Fsrp4JO9spa7h/fBfwgTMEIy4/LBzRDGsxwVPHU0q+T9YvwLDJoOApLQ==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-autolink-literal": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.5.tgz", + "integrity": "sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==", "license": "MIT", "dependencies": { - "execa": "^5.1.1" + "micromark-util-character": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" }, - "engines": { - "node": ">=12" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-port": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.6.1.tgz", - "integrity": "sha512-CmnVc+Hek2egPx1PeTFVta2W78xy2K/9Rkf6cC4T59S50tVnzKj+tnx5mmx5lwvCkujZ4uRrpRSuV+IVs3f90Q==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-footnote": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.1.2.tgz", + "integrity": "sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==", "license": "MIT", "dependencies": { - "address": "^1.0.1", - "debug": "4" - }, - "bin": { - "detect": "bin/detect-port.js", - "detect-port": "bin/detect-port.js" + "micromark-core-commonmark": "^1.0.0", + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-normalize-identifier": "^1.0.0", + "micromark-util-sanitize-uri": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, - "engines": { - "node": ">= 4.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-port-alt": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", - "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-strikethrough": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.7.tgz", + "integrity": "sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==", "license": "MIT", "dependencies": { - "address": "^1.0.1", - "debug": "^2.6.0" - }, - "bin": { - "detect": "bin/detect-port", - "detect-port": "bin/detect-port" + "micromark-util-chunked": "^1.0.0", + "micromark-util-classify-character": "^1.0.0", + "micromark-util-resolve-all": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" }, - "engines": { - "node": ">= 4.2.1" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-port-alt/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-table": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.7.tgz", + "integrity": "sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==", "license": "MIT", "dependencies": { - "ms": "2.0.0" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/detect-port-alt/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "license": "MIT" - }, - "node_modules/devlop": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", - "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-tagfilter": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.2.tgz", + "integrity": "sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==", "license": "MIT", "dependencies": { - "dequal": "^2.0.0" + "micromark-util-types": "^1.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/diff": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", - "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-extension-gfm-task-list-item": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.5.tgz", + "integrity": "sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==", "license": "MIT", "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-destination": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz", + "integrity": "sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true, - "license": "MIT" - }, - "node_modules/dns-packet": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", - "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", - "license": "MIT", - "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/docusaurus-plugin-image-zoom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/docusaurus-plugin-image-zoom/-/docusaurus-plugin-image-zoom-2.0.0.tgz", - "integrity": "sha512-TWHQZeoiged+95CESlZk++lihzl3pqw34n0/fbexx2AocmFhbo9K2scYDgYB8amki4/X6mUCLTPZE1pQvT+00Q==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-label": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz", + "integrity": "sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "medium-zoom": "^1.0.8", - "validate-peer-dependencies": "^2.2.0" - }, - "peerDependencies": { - "@docusaurus/theme-classic": ">=3.0.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, - "node_modules/docusaurus-plugin-openapi-docs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/docusaurus-plugin-openapi-docs/-/docusaurus-plugin-openapi-docs-3.0.1.tgz", - "integrity": "sha512-6SRqwey/TXMNu2G02mbWgxrifhpjGOjDr30N+58AR0Ytgc+HXMqlPAUIvTe+e7sOBfAtBbiNlmOWv5KSYIjf3w==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-title": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz", + "integrity": "sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@apidevtools/json-schema-ref-parser": "^11.5.4", - "@docusaurus/plugin-content-docs": "^3.0.1", - "@docusaurus/utils": "^3.0.1", - "@docusaurus/utils-validation": "^3.0.1", - "@redocly/openapi-core": "^1.10.5", - "chalk": "^4.1.2", - "clsx": "^1.1.1", - "fs-extra": "^9.0.1", - "json-pointer": "^0.6.2", - "json-schema-merge-allof": "^0.8.1", - "json5": "^2.2.3", - "lodash": "^4.17.20", - "mustache": "^4.2.0", - "openapi-to-postmanv2": "^4.21.0", - "postman-collection": "^4.4.0", - "slugify": "^1.6.5", - "swagger2openapi": "^7.0.8", - "xml-formatter": "^2.6.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": "^16.8.4 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", - "license": "MIT", - "engines": { - "node": ">=6" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus-plugin-openapi-docs/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-factory-whitespace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz", + "integrity": "sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" + "micromark-factory-space": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus-plugin-sass": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/docusaurus-plugin-sass/-/docusaurus-plugin-sass-0.2.6.tgz", - "integrity": "sha512-2hKQQDkrufMong9upKoG/kSHJhuwd+FA3iAe/qzS/BmWpbIpe7XKmq5wlz4J5CJaOPu4x+iDJbgAxZqcoQf0kg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-chunked": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz", + "integrity": "sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "sass-loader": "^16.0.2" - }, - "peerDependencies": { - "@docusaurus/core": "^2.0.0-beta || ^3.0.0-alpha", - "sass": "^1.30.0" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus-plugin-sass/node_modules/sass-loader": { - "version": "16.0.5", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.5.tgz", - "integrity": "sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==", - "license": "MIT", - "dependencies": { - "neo-async": "^2.6.2" - }, - "engines": { - "node": ">= 18.12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "@rspack/core": "0.x || 1.x", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", - "sass": "^1.3.0", - "sass-embedded": "*", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@rspack/core": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-classify-character": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz", + "integrity": "sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" }, - "webpack": { - "optional": true + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" } - } - }, - "node_modules/docusaurus-theme-openapi-docs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/docusaurus-theme-openapi-docs/-/docusaurus-theme-openapi-docs-3.0.1.tgz", - "integrity": "sha512-tqypV91tC3wuWj9O+4n0M/e5AgHOeMT2nvPj1tjlPkC7/dLinZvpwQStT4YDUPYSoHRseqxd7lhivFQHcmlryg==", + ], "license": "MIT", "dependencies": { - "@docusaurus/theme-common": "^3.0.1", - "@hookform/error-message": "^2.0.1", - "@reduxjs/toolkit": "^1.7.1", - "clsx": "^1.1.1", - "copy-text-to-clipboard": "^3.1.0", - "crypto-js": "^4.1.1", - "docusaurus-plugin-openapi-docs": "^3.0.1", - "docusaurus-plugin-sass": "^0.2.3", - "file-saver": "^2.0.5", - "lodash": "^4.17.20", - "node-polyfill-webpack-plugin": "^2.0.1", - "postman-code-generators": "^1.10.1", - "postman-collection": "^4.4.0", - "prism-react-renderer": "^2.3.0", - "react-hook-form": "^7.43.8", - "react-live": "^4.0.0", - "react-magic-dropzone": "^1.0.1", - "react-markdown": "^8.0.1", - "react-modal": "^3.15.1", - "react-redux": "^7.2.0", - "rehype-raw": "^6.1.1", - "sass": "^1.58.1", - "sass-loader": "^13.3.2", - "webpack": "^5.61.0", - "xml-formatter": "^2.6.1" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "react": "^16.8.4 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.4 || ^17.0.0 || ^18.0.0" + "micromark-util-character": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/hast": { - "version": "2.3.10", - "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz", - "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-combine-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz", + "integrity": "sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@types/unist": "^2" - } - }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/@types/unist": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz", - "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==", - "license": "MIT" - }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/clsx": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", - "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", - "license": "MIT", - "engines": { - "node": ">=6" + "micromark-util-chunked": "^1.0.0", + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-from-parse5": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.2.tgz", - "integrity": "sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-decode-numeric-character-reference": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz", + "integrity": "sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "@types/unist": "^2.0.0", - "hastscript": "^7.0.0", - "property-information": "^6.0.0", - "vfile": "^5.0.0", - "vfile-location": "^4.0.0", - "web-namespaces": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-parse-selector": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz", - "integrity": "sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-decode-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz", + "integrity": "sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "decode-named-character-reference": "^1.0.0", + "micromark-util-character": "^1.0.0", + "micromark-util-decode-numeric-character-reference": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-raw": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/hast-util-raw/-/hast-util-raw-7.2.3.tgz", - "integrity": "sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz", + "integrity": "sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-html-tag-name": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz", + "integrity": "sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-normalize-identifier": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz", + "integrity": "sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "@types/parse5": "^6.0.0", - "hast-util-from-parse5": "^7.0.0", - "hast-util-to-parse5": "^7.0.0", - "html-void-elements": "^2.0.0", - "parse5": "^6.0.0", - "unist-util-position": "^4.0.0", - "unist-util-visit": "^4.0.0", - "vfile": "^5.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/hast-util-to-parse5": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/hast-util-to-parse5/-/hast-util-to-parse5-7.1.0.tgz", - "integrity": "sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-resolve-all": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz", + "integrity": "sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0", - "web-namespaces": "^2.0.0", - "zwitch": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "micromark-util-types": "^1.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/hastscript": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz", - "integrity": "sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-sanitize-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz", + "integrity": "sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", "dependencies": { - "@types/hast": "^2.0.0", - "comma-separated-tokens": "^2.0.0", - "hast-util-parse-selector": "^3.0.0", - "property-information": "^6.0.0", - "space-separated-tokens": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "micromark-util-character": "^1.0.0", + "micromark-util-encode": "^1.0.0", + "micromark-util-symbol": "^1.0.0" } }, - "node_modules/docusaurus-theme-openapi-docs/node_modules/html-void-elements": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-void-elements/-/html-void-elements-2.0.1.tgz", - "integrity": "sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==", + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-subtokenize": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz", + "integrity": "sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" + "dependencies": { + "micromark-util-chunked": "^1.0.0", + "micromark-util-symbol": "^1.0.0", + "micromark-util-types": "^1.0.0", + "uvu": "^0.5.0" } }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/micromark-util-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-1.1.0.tgz", + "integrity": "sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==", + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, "node_modules/docusaurus-theme-openapi-docs/node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", @@ -10454,6 +9903,22 @@ "url": "https://opencollective.com/unified" } }, + "node_modules/docusaurus-theme-openapi-docs/node_modules/remark-gfm": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-3.0.1.tgz", + "integrity": "sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==", + "license": "MIT", + "dependencies": { + "@types/mdast": "^3.0.0", + "mdast-util-gfm": "^2.0.0", + "micromark-extension-gfm": "^2.0.0", + "unified": "^10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, "node_modules/docusaurus-theme-openapi-docs/node_modules/unified": { "version": "10.1.2", "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", @@ -10608,18 +10073,6 @@ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/domain-browser": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-4.23.0.tgz", - "integrity": "sha512-ArzcM/II1wCCujdCNyQjXrAFwS4mrLh4C7DZWlaI8mdh7h3BfKdNd3bKXITfl2PT9FtfQqaGvhi1vPRQPimjGA==", - "license": "Artistic-2.0", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://bevry.me/fund" - } - }, "node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", @@ -10740,32 +10193,11 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.150", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.150.tgz", - "integrity": "sha512-rOOkP2ZUMx1yL4fCxXQKDHQ8ZXwisb2OycOQVKHgvB3ZI4CvehOd4y2tfnnLDieJ3Zs1RL1Dlp3cMkyIn7nnXA==", + "version": "1.5.244", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.244.tgz", + "integrity": "sha512-OszpBN7xZX4vWMPJwB9illkN/znA8M36GQqQxi6MNy9axWxhOfJyZZJtSLQCpEFLHP2xK33BiWx9aIuIEXVCcw==", "license": "ISC" }, - "node_modules/elliptic": { - "version": "6.6.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.6.1.tgz", - "integrity": "sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, "node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", @@ -10806,19 +10238,6 @@ "node": ">= 0.8" } }, - "node_modules/encoding-sniffer": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/encoding-sniffer/-/encoding-sniffer-0.2.0.tgz", - "integrity": "sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==", - "license": "MIT", - "dependencies": { - "iconv-lite": "^0.6.3", - "whatwg-encoding": "^3.1.1" - }, - "funding": { - "url": "https://github.com/fb55/encoding-sniffer?sponsor=1" - } - }, "node_modules/end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", @@ -11176,15 +10595,6 @@ "node": ">= 0.8" } }, - "node_modules/event-target-shim": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", - "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/eventemitter3": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", @@ -11200,14 +10610,13 @@ "node": ">=0.8.x" } }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "node_modules/eventsource-parser": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz", + "integrity": "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==", "license": "MIT", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" + "engines": { + "node": ">=18.0.0" } }, "node_modules/execa": { @@ -11557,15 +10966,6 @@ "node": ">=0.10.0" } }, - "node_modules/filesize": { - "version": "8.0.7", - "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", - "integrity": "sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==", - "license": "BSD-3-Clause", - "engines": { - "node": ">= 0.4.0" - } - }, "node_modules/fill-range": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", @@ -11578,15 +10978,6 @@ "node": ">=8" } }, - "node_modules/filter-obj": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/filter-obj/-/filter-obj-2.0.2.tgz", - "integrity": "sha512-lO3ttPjHZRfjMcxWKb1j1eDhTFsu4meeR3lnMcnBFhk6RuLhvEiuALu2TlfL310ph4lCYYwgF/ElIjdP739tdg==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/finalhandler": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", @@ -11638,246 +11029,81 @@ }, "node_modules/find-up": { "version": "6.3.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", - "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", - "license": "MIT", - "dependencies": { - "locate-path": "^7.1.0", - "path-exists": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "license": "BSD-3-Clause", - "bin": { - "flat": "cli.js" - } - }, - "node_modules/follow-redirects": { - "version": "1.15.9", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", - "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "license": "MIT", - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz", - "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==", - "license": "MIT", - "dependencies": { - "is-callable": "^1.2.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/foreach": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", - "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==", - "license": "MIT" - }, - "node_modules/foreground-child": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", - "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", - "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.6", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-6.5.3.tgz", - "integrity": "sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.8.3", - "@types/json-schema": "^7.0.5", - "chalk": "^4.1.0", - "chokidar": "^3.4.2", - "cosmiconfig": "^6.0.0", - "deepmerge": "^4.2.2", - "fs-extra": "^9.0.0", - "glob": "^7.1.6", - "memfs": "^3.1.2", - "minimatch": "^3.0.4", - "schema-utils": "2.7.0", - "semver": "^7.3.2", - "tapable": "^1.0.0" - }, - "engines": { - "node": ">=10", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "eslint": ">= 6", - "typescript": ">= 2.7", - "vue-template-compiler": "*", - "webpack": ">= 4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - }, - "vue-template-compiler": { - "optional": true - } - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/cosmiconfig": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", - "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "license": "MIT", "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.1.0", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.7.2" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "license": "BSD-3-Clause", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], "license": "MIT", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, "engines": { - "node": ">=10" + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "node_modules/foreach": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.6.tgz", + "integrity": "sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==", "license": "MIT" }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", "license": "ISC", "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", - "integrity": "sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.4", - "ajv": "^6.12.2", - "ajv-keywords": "^3.4.1" + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" }, "engines": { - "node": ">= 8.9.0" + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "license": "MIT", + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", "engines": { - "node": ">=6" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/form-data-encoder": { @@ -11948,12 +11174,6 @@ "node": ">=14.14" } }, - "node_modules/fs-monkey": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.6.tgz", - "integrity": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==", - "license": "Unlicense" - }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -12101,6 +11321,22 @@ "node": ">= 6" } }, + "node_modules/glob-to-regex.js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/glob-to-regex.js/-/glob-to-regex.js-1.2.0.tgz", + "integrity": "sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", @@ -12153,44 +11389,6 @@ "node": ">=10" } }, - "node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "license": "MIT", - "dependencies": { - "global-prefix": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "license": "MIT", - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, "node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", @@ -12375,21 +11573,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", - "license": "MIT", - "dependencies": { - "has-symbols": "^1.0.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/has-yarn": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-yarn/-/has-yarn-3.0.0.tgz", @@ -12402,29 +11585,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/hash-base": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.5.tgz", - "integrity": "sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, "node_modules/hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", @@ -12632,17 +11792,6 @@ "value-equal": "^1.0.1" } }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "license": "MIT", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", @@ -12694,22 +11843,6 @@ "safe-buffer": "~5.1.0" } }, - "node_modules/html-entities": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.6.0.tgz", - "integrity": "sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ], - "license": "MIT" - }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", @@ -12831,9 +11964,9 @@ } }, "node_modules/htmlparser2": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-9.1.0.tgz", - "integrity": "sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==", + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", + "integrity": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==", "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { @@ -12845,8 +11978,8 @@ "dependencies": { "domelementtype": "^2.3.0", "domhandler": "^5.0.3", - "domutils": "^3.1.0", - "entities": "^4.5.0" + "domutils": "^3.0.1", + "entities": "^4.4.0" } }, "node_modules/http-cache-semantics": { @@ -12958,12 +12091,6 @@ "node": ">=10.19.0" } }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==", - "license": "MIT" - }, "node_modules/https-proxy-agent": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", @@ -12986,6 +12113,15 @@ "node": ">=10.17.0" } }, + "node_modules/hyperdyperid": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", + "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", + "license": "MIT", + "engines": { + "node": ">=10.18" + } + }, "node_modules/iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", @@ -13040,13 +12176,10 @@ } }, "node_modules/image-size": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/image-size/-/image-size-1.2.1.tgz", - "integrity": "sha512-rH+46sQJ2dlwfjfhCyNx5thzrv+dtmBIhPHk0zgRUukHzZ/kRueTJXoYYsclBaKcSMBWuGbOFXtioLpzTb5euw==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-2.0.2.tgz", + "integrity": "sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==", "license": "MIT", - "dependencies": { - "queue": "6.0.2" - }, "bin": { "image-size": "bin/image-size.js" }, @@ -13118,7 +12251,6 @@ "resolved": "https://registry.npmjs.org/infima/-/infima-0.2.0-alpha.45.tgz", "integrity": "sha512-uyH0zfr1erU1OohLk0fT4Rrb94AOhguWNOcD9uGrSpRvNB+6gZXUoJX5J0NtvzBO10YZ9PgvA4NFgt+fYg8ojw==", "license": "MIT", - "peer": true, "engines": { "node": ">=12" } @@ -13203,22 +12335,6 @@ "url": "https://github.com/sponsors/wooorm" } }, - "node_modules/is-arguments": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz", - "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==", - "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -13260,18 +12376,6 @@ "node": ">=4" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-ci": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", @@ -13351,24 +12455,6 @@ "node": ">=8" } }, - "node_modules/is-generator-function": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz", - "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==", - "license": "MIT", - "dependencies": { - "call-bound": "^1.0.3", - "get-proto": "^1.0.0", - "has-tostringtag": "^1.0.2", - "safe-regex-test": "^1.1.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -13391,6 +12477,39 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "license": "MIT", + "dependencies": { + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/is-installed-globally": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", @@ -13407,20 +12526,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-nan": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", - "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "node_modules/is-network-error": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.3.0.tgz", + "integrity": "sha512-6oIwpsgRfnDiyEDLMay/GqCl3HoAtH5+RUKW29gYkL0QA+ipzpDLA16yQs7/RHCSu+BwgbJaOUqa4A99qNVQVw==", "license": "MIT", - "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" - }, "engines": { - "node": ">= 0.4" + "node": ">=16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-npm": { @@ -13445,21 +12560,12 @@ } }, "node_modules/is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==", "license": "MIT", "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, "node_modules/is-path-inside": { @@ -13495,24 +12601,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-regex": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz", - "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==", - "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "gopd": "^1.2.0", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-regexp": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", @@ -13522,15 +12610,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-root": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", - "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", - "license": "MIT", - "engines": { - "node": ">=6" - } - }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -13543,21 +12622,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-typed-array": { - "version": "1.1.15", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz", - "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==", - "license": "MIT", - "dependencies": { - "which-typed-array": "^1.1.16" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", @@ -13735,6 +12799,15 @@ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "license": "MIT" }, + "node_modules/json-crawl": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/json-crawl/-/json-crawl-0.5.3.tgz", + "integrity": "sha512-BEjjCw8c7SxzNK4orhlWD5cXQh8vCk2LqDr4WgQq4CV+5dvopeYwt1Tskg67SuSLKvoFH5g0yuYtg7rcfKV6YA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -13750,6 +12823,12 @@ "foreach": "^2.0.4" } }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "license": "(AFL-2.1 OR BSD-3-Clause)" + }, "node_modules/json-schema-compare": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/json-schema-compare/-/json-schema-compare-0.2.2.tgz", @@ -14027,6 +13106,18 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/marked": { + "version": "16.4.1", + "resolved": "https://registry.npmjs.org/marked/-/marked-16.4.1.tgz", + "integrity": "sha512-ntROs7RaN3EvWfy3EZi14H4YxmT6A5YvywfhO+0pm+cH/dnSQRmdAmoFIc3B9aiwTehyk7pESH4ofyBY+V5hZg==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 20" + } + }, "node_modules/math-intrinsics": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", @@ -14036,17 +13127,6 @@ "node": ">= 0.4" } }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, "node_modules/mdast-util-definitions": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz", @@ -14543,15 +13623,21 @@ "license": "MIT" }, "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", - "license": "Unlicense", + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.50.0.tgz", + "integrity": "sha512-N0LUYQMUA1yS5tJKmMtU9yprPm6ZIg24yr/OVv/7t6q0kKDIho4cBbXRi1XKttUmNYDYgF/q45qrKE/UhGO0CA==", + "license": "Apache-2.0", "dependencies": { - "fs-monkey": "^1.0.4" + "@jsonjoy.com/json-pack": "^1.11.0", + "@jsonjoy.com/util": "^1.9.0", + "glob-to-regex.js": "^1.0.1", + "thingies": "^2.5.0", + "tree-dump": "^1.0.3", + "tslib": "^2.0.0" }, - "engines": { - "node": ">= 4.0.0" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" } }, "node_modules/merge-descriptors": { @@ -16384,25 +15470,6 @@ "node": ">=8.6" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - }, - "bin": { - "miller-rabin": "bin/miller-rabin" - } - }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, "node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", @@ -16492,12 +15559,6 @@ "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "license": "ISC" }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==", - "license": "MIT" - }, "node_modules/minimatch": { "version": "5.1.6", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", @@ -16724,45 +15785,6 @@ "node": ">= 6.13.0" } }, - "node_modules/node-polyfill-webpack-plugin": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/node-polyfill-webpack-plugin/-/node-polyfill-webpack-plugin-2.0.1.tgz", - "integrity": "sha512-ZUMiCnZkP1LF0Th2caY6J/eKKoA0TefpoVa68m/LQU1I/mE8rGt4fNYGgNuCcK+aG8P8P43nbeJ2RqJMOL/Y1A==", - "license": "MIT", - "dependencies": { - "assert": "^2.0.0", - "browserify-zlib": "^0.2.0", - "buffer": "^6.0.3", - "console-browserify": "^1.2.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.12.0", - "domain-browser": "^4.22.0", - "events": "^3.3.0", - "filter-obj": "^2.0.2", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "^1.0.1", - "process": "^0.11.10", - "punycode": "^2.1.1", - "querystring-es3": "^0.2.1", - "readable-stream": "^4.0.0", - "stream-browserify": "^3.0.0", - "stream-http": "^3.2.0", - "string_decoder": "^1.3.0", - "timers-browserify": "^2.0.12", - "tty-browserify": "^0.0.1", - "type-fest": "^2.14.0", - "url": "^0.11.0", - "util": "^0.12.4", - "vm-browserify": "^1.1.2" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "webpack": ">=5" - } - }, "node_modules/node-readfiles": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/node-readfiles/-/node-readfiles-0.2.0.tgz", @@ -16773,9 +15795,9 @@ } }, "node_modules/node-releases": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", - "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", "license": "MIT" }, "node_modules/normalize-path": { @@ -17027,22 +16049,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object-is": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz", - "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==", - "license": "MIT", - "dependencies": { - "call-bind": "^1.0.7", - "define-properties": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", @@ -17186,12 +16192,6 @@ "opener": "bin/opener-bin.js" } }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==", - "license": "MIT" - }, "node_modules/p-cancelable": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", @@ -17201,6 +16201,15 @@ "node": ">=12.20" } }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/p-limit": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", @@ -17246,26 +16255,49 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/p-queue": { + "version": "6.6.2", + "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz", + "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.4", + "p-timeout": "^3.2.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.1.tgz", + "integrity": "sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==", "license": "MIT", "dependencies": { - "@types/retry": "0.12.0", + "@types/retry": "0.12.2", + "is-network-error": "^1.0.0", "retry": "^0.13.1" }, "engines": { - "node": ">=8" + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "node_modules/p-timeout": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz", + "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==", "license": "MIT", + "dependencies": { + "p-finally": "^1.0.0" + }, "engines": { - "node": ">=6" + "node": ">=8" } }, "node_modules/package-json": { @@ -17293,9 +16325,9 @@ "license": "BlueOak-1.0.0" }, "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz", + "integrity": "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==", "license": "(MIT AND Zlib)" }, "node_modules/param-case": { @@ -17320,23 +16352,6 @@ "node": ">=6" } }, - "node_modules/parse-asn1": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.7.tgz", - "integrity": "sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==", - "license": "ISC", - "dependencies": { - "asn1.js": "^4.10.1", - "browserify-aes": "^1.2.0", - "evp_bytestokey": "^1.0.3", - "hash-base": "~3.0", - "pbkdf2": "^3.1.2", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/parse-entities": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz", @@ -17411,18 +16426,6 @@ "url": "https://github.com/inikulin/parse5?sponsor=1" } }, - "node_modules/parse5-parser-stream": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz", - "integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==", - "license": "MIT", - "dependencies": { - "parse5": "^7.0.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, "node_modules/parse5/node_modules/entities": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.0.tgz", @@ -17582,54 +16585,6 @@ "inherits": "2.0.3" } }, - "node_modules/pbkdf2": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.3.tgz", - "integrity": "sha512-wfRLBZ0feWRhCIkoMB6ete7czJcnNnqRpcoWQBLqatqXXmelSRqfdDK4F3u9T2s2cXas/hQJcryI/4lAL+XTlA==", - "license": "MIT", - "dependencies": { - "create-hash": "~1.1.3", - "create-hmac": "^1.1.7", - "ripemd160": "=2.0.1", - "safe-buffer": "^5.2.1", - "sha.js": "^2.4.11", - "to-buffer": "^1.2.0" - }, - "engines": { - "node": ">=0.12" - } - }, - "node_modules/pbkdf2/node_modules/create-hash": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz", - "integrity": "sha512-snRpch/kwQhcdlnZKYanNF1m0RDlrCdSKQaH87w1FCFPVPNCQ/Il9QJKAX2jVBZddRdaHBMC+zXa9Gw9tmkNUA==", - "license": "MIT", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "sha.js": "^2.4.0" - } - }, - "node_modules/pbkdf2/node_modules/hash-base": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz", - "integrity": "sha512-0TROgQ1/SxE6KmxWSvXHvRj90/Xo1JvZShofnYF+f6ZsGtR4eES7WfrQzPalmyagfKZCXpVnitiRebZulWsbiw==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1" - } - }, - "node_modules/pbkdf2/node_modules/ripemd160": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz", - "integrity": "sha512-J7f4wutN8mdbV08MJnXibYpCOPHR+yzy+iQ/AsjMv2j8cLavQ8VGagDFUwwTAdF8FmRKVeNpbTTEwNHCW1g94w==", - "license": "MIT", - "dependencies": { - "hash-base": "^2.0.0", - "inherits": "^2.0.1" - } - }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -17682,79 +16637,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pkg-up": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", - "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", - "license": "MIT", - "dependencies": { - "find-up": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-up/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "license": "MIT", - "dependencies": { - "locate-path": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "license": "MIT", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-up/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "license": "MIT", - "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/pkg-up/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "license": "MIT", - "engines": { - "node": ">=4" - } - }, "node_modules/pluralize": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", @@ -17764,19 +16646,10 @@ "node": ">=4" } }, - "node_modules/possible-typed-array-names": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", - "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==", - "license": "MIT", - "engines": { - "node": ">= 0.4" - } - }, "node_modules/postcss": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", - "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", "funding": [ { "type": "opencollective", @@ -17793,7 +16666,7 @@ ], "license": "MIT", "dependencies": { - "nanoid": "^3.3.8", + "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, @@ -17871,9 +16744,9 @@ } }, "node_modules/postcss-color-functional-notation": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.9.tgz", - "integrity": "sha512-WScwD3pSsIz+QP97sPkGCeJm7xUH0J18k6zV5o8O2a4cQJyv15vLUx/WFQajuJVgZhmJL5awDu8zHnqzAzm4lw==", + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-7.0.12.tgz", + "integrity": "sha512-TLCW9fN5kvO/u38/uesdpbx3e8AkTYhMvDZYa9JpmImWuTE99bDQ7GU7hdOADIZsiI9/zuxfAJxny/khknp1Zw==", "funding": [ { "type": "github", @@ -17886,10 +16759,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -17986,9 +16859,9 @@ } }, "node_modules/postcss-custom-media": { - "version": "11.0.5", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.5.tgz", - "integrity": "sha512-SQHhayVNgDvSAdX9NQ/ygcDQGEY+aSF4b/96z7QUX6mqL5yl/JgG/DywcF6fW9XbnCRE+aVYk+9/nqGuzOPWeQ==", + "version": "11.0.6", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-11.0.6.tgz", + "integrity": "sha512-C4lD4b7mUIw+RZhtY7qUbf4eADmb7Ey8BFA2px9jUbwg7pjTZDl4KY4bvlUV+/vXQvzQRfiGEVJyAbtOsCMInw==", "funding": [ { "type": "github", @@ -18001,10 +16874,10 @@ ], "license": "MIT", "dependencies": { - "@csstools/cascade-layer-name-parser": "^2.0.4", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/media-query-list-parser": "^4.0.2" + "@csstools/cascade-layer-name-parser": "^2.0.5", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/media-query-list-parser": "^4.0.3" }, "engines": { "node": ">=18" @@ -18014,9 +16887,9 @@ } }, "node_modules/postcss-custom-properties": { - "version": "14.0.4", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.4.tgz", - "integrity": "sha512-QnW8FCCK6q+4ierwjnmXF9Y9KF8q0JkbgVfvQEMa93x1GT8FvOiUevWCN2YLaOWyByeDX8S6VFbZEeWoAoXs2A==", + "version": "14.0.6", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-14.0.6.tgz", + "integrity": "sha512-fTYSp3xuk4BUeVhxCSJdIPhDLpJfNakZKoiTDx7yRGCdlZrSJR7mWKVOBS4sBF+5poPQFMj2YdXx1VHItBGihQ==", "funding": [ { "type": "github", @@ -18029,9 +16902,9 @@ ], "license": "MIT", "dependencies": { - "@csstools/cascade-layer-name-parser": "^2.0.4", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", + "@csstools/cascade-layer-name-parser": "^2.0.5", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", "@csstools/utilities": "^2.0.0", "postcss-value-parser": "^4.2.0" }, @@ -18043,9 +16916,9 @@ } }, "node_modules/postcss-custom-selectors": { - "version": "8.0.4", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.4.tgz", - "integrity": "sha512-ASOXqNvDCE0dAJ/5qixxPeL1aOVGHGW2JwSy7HyjWNbnWTQCl+fDc968HY1jCmZI0+BaYT5CxsOiUhavpG/7eg==", + "version": "8.0.5", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-8.0.5.tgz", + "integrity": "sha512-9PGmckHQswiB2usSO6XMSswO2yFWVoCAuih1yl9FVcwkscLjRKjwsjM3t+NIWpSU2Jx3eOiK2+t4vVTQaoCHHg==", "funding": [ { "type": "github", @@ -18058,9 +16931,9 @@ ], "license": "MIT", "dependencies": { - "@csstools/cascade-layer-name-parser": "^2.0.4", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", + "@csstools/cascade-layer-name-parser": "^2.0.5", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", "postcss-selector-parser": "^7.0.0" }, "engines": { @@ -18185,9 +17058,9 @@ } }, "node_modules/postcss-double-position-gradients": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.1.tgz", - "integrity": "sha512-ZitCwmvOR4JzXmKw6sZblTgwV1dcfLvClcyjADuqZ5hU0Uk4SVNpvSN9w8NcJ7XuxhRYxVA8m8AB3gy+HNBQOA==", + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-6.0.4.tgz", + "integrity": "sha512-m6IKmxo7FxSP5nF2l63QbCC3r+bWpFUWmZXZf096WxG0m7Vl1Q1+ruFOhpdDRmKrRS+S3Jtk+TVk/7z0+BVK6g==", "funding": [ { "type": "github", @@ -18200,7 +17073,7 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0", "postcss-value-parser": "^4.2.0" }, @@ -18383,9 +17256,9 @@ } }, "node_modules/postcss-lab-function": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.9.tgz", - "integrity": "sha512-IGbsIXbqMDusymJAKYX+f9oakPo89wL9Pzd/qRBQOVf3EIQWT9hgvqC4Me6Dkzxp3KPuIBf6LPkjrLHe/6ZMIQ==", + "version": "7.0.12", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-7.0.12.tgz", + "integrity": "sha512-tUcyRk1ZTPec3OuKFsqtRzW2Go5lehW29XA21lZ65XmzQkz43VY2tyWEC202F7W3mILOjw0voOiuxRGTsN+J9w==", "funding": [ { "type": "github", @@ -18398,10 +17271,10 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/css-color-parser": "^3.0.9", - "@csstools/css-parser-algorithms": "^3.0.4", - "@csstools/css-tokenizer": "^3.0.3", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", + "@csstools/css-color-parser": "^3.1.0", + "@csstools/css-parser-algorithms": "^3.0.5", + "@csstools/css-tokenizer": "^3.0.4", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", "@csstools/utilities": "^2.0.0" }, "engines": { @@ -18733,9 +17606,9 @@ } }, "node_modules/postcss-nesting": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.1.tgz", - "integrity": "sha512-VbqqHkOBOt4Uu3G8Dm8n6lU5+9cJFxiuty9+4rcoyRPO9zZS1JIs6td49VIoix3qYqELHlJIn46Oih9SAKo+yQ==", + "version": "13.0.2", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-13.0.2.tgz", + "integrity": "sha512-1YCI290TX+VP0U/K/aFxzHzQWHWURL+CtHMSbex1lCdpXD1SoR2sYuxDu5aNI9lPoXpKTCggFZiDJbwylU0LEQ==", "funding": [ { "type": "github", @@ -18748,7 +17621,7 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/selector-resolve-nested": "^3.0.0", + "@csstools/selector-resolve-nested": "^3.1.0", "@csstools/selector-specificity": "^5.0.0", "postcss-selector-parser": "^7.0.0" }, @@ -18760,9 +17633,9 @@ } }, "node_modules/postcss-nesting/node_modules/@csstools/selector-resolve-nested": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.0.0.tgz", - "integrity": "sha512-ZoK24Yku6VJU1gS79a5PFmC8yn3wIapiKmPgun0hZgEI5AOqgH2kiPRsPz1qkGv4HL+wuDLH83yQyk6inMYrJQ==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@csstools/selector-resolve-nested/-/selector-resolve-nested-3.1.0.tgz", + "integrity": "sha512-mf1LEW0tJLKfWyvn5KdDrhpxHyuxpbNwTIwOYLIvsTffeyOf85j5oIzfG0yosxDgx/sswlqBnESYUcQH0vgZ0g==", "funding": [ { "type": "github", @@ -19047,9 +17920,9 @@ } }, "node_modules/postcss-preset-env": { - "version": "10.1.6", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.1.6.tgz", - "integrity": "sha512-1jRD7vttKLJ7o0mcmmYWKRLm7W14rI8K1I7Y41OeXUPEVc/CAzfTssNUeJ0zKbR+zMk4boqct/gwS/poIFF5Lg==", + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-10.4.0.tgz", + "integrity": "sha512-2kqpOthQ6JhxqQq1FSAAZGe9COQv75Aw8WbsOvQVNJ2nSevc9Yx/IKZGuZ7XJ+iOTtVon7LfO7ELRzg8AZ+sdw==", "funding": [ { "type": "github", @@ -19062,62 +17935,66 @@ ], "license": "MIT-0", "dependencies": { - "@csstools/postcss-cascade-layers": "^5.0.1", - "@csstools/postcss-color-function": "^4.0.9", - "@csstools/postcss-color-mix-function": "^3.0.9", - "@csstools/postcss-content-alt-text": "^2.0.5", - "@csstools/postcss-exponential-functions": "^2.0.8", + "@csstools/postcss-alpha-function": "^1.0.1", + "@csstools/postcss-cascade-layers": "^5.0.2", + "@csstools/postcss-color-function": "^4.0.12", + "@csstools/postcss-color-function-display-p3-linear": "^1.0.1", + "@csstools/postcss-color-mix-function": "^3.0.12", + "@csstools/postcss-color-mix-variadic-function-arguments": "^1.0.2", + "@csstools/postcss-content-alt-text": "^2.0.8", + "@csstools/postcss-contrast-color-function": "^2.0.12", + "@csstools/postcss-exponential-functions": "^2.0.9", "@csstools/postcss-font-format-keywords": "^4.0.0", - "@csstools/postcss-gamut-mapping": "^2.0.9", - "@csstools/postcss-gradients-interpolation-method": "^5.0.9", - "@csstools/postcss-hwb-function": "^4.0.9", - "@csstools/postcss-ic-unit": "^4.0.1", + "@csstools/postcss-gamut-mapping": "^2.0.11", + "@csstools/postcss-gradients-interpolation-method": "^5.0.12", + "@csstools/postcss-hwb-function": "^4.0.12", + "@csstools/postcss-ic-unit": "^4.0.4", "@csstools/postcss-initial": "^2.0.1", - "@csstools/postcss-is-pseudo-class": "^5.0.1", - "@csstools/postcss-light-dark-function": "^2.0.8", + "@csstools/postcss-is-pseudo-class": "^5.0.3", + "@csstools/postcss-light-dark-function": "^2.0.11", "@csstools/postcss-logical-float-and-clear": "^3.0.0", "@csstools/postcss-logical-overflow": "^2.0.0", "@csstools/postcss-logical-overscroll-behavior": "^2.0.0", "@csstools/postcss-logical-resize": "^3.0.0", - "@csstools/postcss-logical-viewport-units": "^3.0.3", - "@csstools/postcss-media-minmax": "^2.0.8", - "@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.4", + "@csstools/postcss-logical-viewport-units": "^3.0.4", + "@csstools/postcss-media-minmax": "^2.0.9", + "@csstools/postcss-media-queries-aspect-ratio-number-values": "^3.0.5", "@csstools/postcss-nested-calc": "^4.0.0", "@csstools/postcss-normalize-display-values": "^4.0.0", - "@csstools/postcss-oklab-function": "^4.0.9", - "@csstools/postcss-progressive-custom-properties": "^4.0.1", - "@csstools/postcss-random-function": "^2.0.0", - "@csstools/postcss-relative-color-syntax": "^3.0.9", + "@csstools/postcss-oklab-function": "^4.0.12", + "@csstools/postcss-progressive-custom-properties": "^4.2.1", + "@csstools/postcss-random-function": "^2.0.1", + "@csstools/postcss-relative-color-syntax": "^3.0.12", "@csstools/postcss-scope-pseudo-class": "^4.0.1", - "@csstools/postcss-sign-functions": "^1.1.3", - "@csstools/postcss-stepped-value-functions": "^4.0.8", - "@csstools/postcss-text-decoration-shorthand": "^4.0.2", - "@csstools/postcss-trigonometric-functions": "^4.0.8", + "@csstools/postcss-sign-functions": "^1.1.4", + "@csstools/postcss-stepped-value-functions": "^4.0.9", + "@csstools/postcss-text-decoration-shorthand": "^4.0.3", + "@csstools/postcss-trigonometric-functions": "^4.0.9", "@csstools/postcss-unset-value": "^4.0.0", "autoprefixer": "^10.4.21", - "browserslist": "^4.24.4", + "browserslist": "^4.26.0", "css-blank-pseudo": "^7.0.1", - "css-has-pseudo": "^7.0.2", + "css-has-pseudo": "^7.0.3", "css-prefers-color-scheme": "^10.0.0", - "cssdb": "^8.2.5", + "cssdb": "^8.4.2", "postcss-attribute-case-insensitive": "^7.0.1", "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^7.0.9", + "postcss-color-functional-notation": "^7.0.12", "postcss-color-hex-alpha": "^10.0.0", "postcss-color-rebeccapurple": "^10.0.0", - "postcss-custom-media": "^11.0.5", - "postcss-custom-properties": "^14.0.4", - "postcss-custom-selectors": "^8.0.4", + "postcss-custom-media": "^11.0.6", + "postcss-custom-properties": "^14.0.6", + "postcss-custom-selectors": "^8.0.5", "postcss-dir-pseudo-class": "^9.0.1", - "postcss-double-position-gradients": "^6.0.1", + "postcss-double-position-gradients": "^6.0.4", "postcss-focus-visible": "^10.0.1", "postcss-focus-within": "^9.0.1", "postcss-font-variant": "^5.0.0", "postcss-gap-properties": "^6.0.0", "postcss-image-set-function": "^7.0.0", - "postcss-lab-function": "^7.0.9", + "postcss-lab-function": "^7.0.12", "postcss-logical": "^8.1.0", - "postcss-nesting": "^13.0.1", + "postcss-nesting": "^13.0.2", "postcss-opacity-percentage": "^3.0.0", "postcss-overflow-shorthand": "^6.0.0", "postcss-page-break": "^3.0.4", @@ -19615,26 +18492,6 @@ "node": ">= 0.10" } }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "license": "MIT", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.2", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", - "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==", - "license": "MIT" - }, "node_modules/pump": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", @@ -19684,23 +18541,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", - "engines": { - "node": ">=0.4.x" - } - }, - "node_modules/queue": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/queue/-/queue-6.0.2.tgz", - "integrity": "sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==", - "license": "MIT", - "dependencies": { - "inherits": "~2.0.3" - } - }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -19733,22 +18573,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "license": "MIT", "dependencies": { - "randombytes": "^2.0.5", "safe-buffer": "^5.1.0" } }, @@ -19833,132 +18663,6 @@ "node": ">=0.10.0" } }, - "node_modules/react-dev-utils": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", - "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.0", - "address": "^1.1.2", - "browserslist": "^4.18.1", - "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", - "detect-port-alt": "^1.1.6", - "escape-string-regexp": "^4.0.0", - "filesize": "^8.0.6", - "find-up": "^5.0.0", - "fork-ts-checker-webpack-plugin": "^6.5.0", - "global-modules": "^2.0.0", - "globby": "^11.0.4", - "gzip-size": "^6.0.0", - "immer": "^9.0.7", - "is-root": "^2.1.0", - "loader-utils": "^3.2.0", - "open": "^8.4.0", - "pkg-up": "^3.1.0", - "prompts": "^2.4.2", - "react-error-overlay": "^6.0.11", - "recursive-readdir": "^2.2.2", - "shell-quote": "^1.7.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/react-dev-utils/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/loader-utils": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.3.1.tgz", - "integrity": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==", - "license": "MIT", - "engines": { - "node": ">= 12.13.0" - } - }, - "node_modules/react-dev-utils/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/react-dev-utils/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/react-dev-utils/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/react-dom": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", @@ -19972,12 +18676,6 @@ "react": "^18.3.1" } }, - "node_modules/react-error-overlay": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.1.0.tgz", - "integrity": "sha512-SN/U6Ytxf1QGkw/9ve5Y+NxBbZM6Ht95tuXNMKs8EJyFa/Vy/+Co3stop3KBHARfn/giv+Lj1uUnTfOJ3moFEQ==", - "license": "MIT" - }, "node_modules/react-fast-compare": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", @@ -20024,15 +18722,15 @@ "license": "MIT" }, "node_modules/react-json-view-lite": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-1.5.0.tgz", - "integrity": "sha512-nWqA1E4jKPklL2jvHWs6s+7Na0qNgw9HCP6xehdQJeg6nPBTFZgGwyko9Q0oj+jQWKTTVRS30u0toM5wiuL3iw==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/react-json-view-lite/-/react-json-view-lite-2.5.0.tgz", + "integrity": "sha512-tk7o7QG9oYyELWHL8xiMQ8x4WzjCzbWNyig3uexmkLb54r8jO0yH3WCWx8UZS0c49eSA4QUmG5caiRJ8fAn58g==", "license": "MIT", "engines": { - "node": ">=14" + "node": ">=18" }, "peerDependencies": { - "react": "^16.13.1 || ^17.0.0 || ^18.0.0" + "react": "^18.0.0 || ^19.0.0" } }, "node_modules/react-lifecycles-compat": { @@ -20865,27 +19563,6 @@ "react": ">=15" } }, - "node_modules/react-waypoint": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/react-waypoint/-/react-waypoint-10.3.0.tgz", - "integrity": "sha512-iF1y2c1BsoXuEGz08NoahaLFIGI9gTUAAOKip96HUmylRT6DUtpgoBPjk/Y8dfcFVmfVDvUzWjNXpZyKTOV0SQ==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "consolidated-events": "^1.1.0 || ^2.0.0", - "prop-types": "^15.0.0", - "react-is": "^17.0.1 || ^18.0.0" - }, - "peerDependencies": { - "react": "^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-waypoint/node_modules/react-is": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", - "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", - "license": "MIT" - }, "node_modules/read-cache": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", @@ -20896,22 +19573,6 @@ "pify": "^2.3.0" } }, - "node_modules/readable-stream": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz", - "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==", - "license": "MIT", - "dependencies": { - "abort-controller": "^3.0.0", - "buffer": "^6.0.3", - "events": "^3.3.0", - "process": "^0.11.10", - "string_decoder": "^1.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } - }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", @@ -20924,12 +19585,6 @@ "node": ">=8.10.0" } }, - "node_modules/reading-time": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz", - "integrity": "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==", - "license": "MIT" - }, "node_modules/rechoir": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", @@ -21005,40 +19660,6 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/recursive-readdir": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.3.tgz", - "integrity": "sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==", - "license": "MIT", - "dependencies": { - "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/recursive-readdir/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/recursive-readdir/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/redux": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", @@ -21559,38 +20180,6 @@ "node": ">=0.10.0" } }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "license": "MIT", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "node_modules/rtl-detect": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/rtl-detect/-/rtl-detect-1.1.2.tgz", - "integrity": "sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==", - "license": "BSD-3-Clause" - }, "node_modules/rtlcss": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-4.3.0.tgz", @@ -21609,6 +20198,18 @@ "node": ">=12.0.0" } }, + "node_modules/run-applescript": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz", + "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -21664,23 +20265,6 @@ ], "license": "MIT" }, - "node_modules/safe-regex-test": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz", - "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==", - "license": "MIT", - "dependencies": { - "call-bound": "^1.0.2", - "es-errors": "^1.3.0", - "is-regex": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", @@ -21708,29 +20292,29 @@ } }, "node_modules/sass-loader": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.3.3.tgz", - "integrity": "sha512-mt5YN2F1MOZr3d/wBRcZxeFgwgkH44wVc2zohO2YF6JiOMkiXe4BYRZpSu2sO1g71mo/j16txzUhsKZlqjVGzA==", + "version": "16.0.6", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-16.0.6.tgz", + "integrity": "sha512-sglGzId5gmlfxNs4gK2U3h7HlVRfx278YK6Ono5lwzuvi1jxig80YiuHkaDBVsYIKFhx8wN7XSCI0M2IDS/3qA==", "license": "MIT", "dependencies": { "neo-async": "^2.6.2" }, "engines": { - "node": ">= 14.15.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "fibers": ">= 3.1.0", + "@rspack/core": "0.x || 1.x", "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", "sass": "^1.3.0", "sass-embedded": "*", "webpack": "^5.0.0" }, "peerDependenciesMeta": { - "fibers": { + "@rspack/core": { "optional": true }, "node-sass": { @@ -21741,6 +20325,9 @@ }, "sass-embedded": { "optional": true + }, + "webpack": { + "optional": true } } }, @@ -21787,6 +20374,12 @@ "loose-envify": "^1.1.0" } }, + "node_modules/schema-dts": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/schema-dts/-/schema-dts-1.1.5.tgz", + "integrity": "sha512-RJr9EaCmsLzBX2NDiO5Z3ux2BVosNZN5jo0gWgsyKvxKIUL5R3swNvoorulAeL9kLB0iTSX7V6aokhla2m7xbg==", + "license": "Apache-2.0" + }, "node_modules/schema-utils": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.2.tgz", @@ -22106,38 +20699,12 @@ "node": ">= 0.4" } }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", - "license": "MIT" - }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "license": "ISC" }, - "node_modules/sha.js": { - "version": "2.4.12", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.12.tgz", - "integrity": "sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==", - "license": "(MIT AND BSD-3-Clause)", - "dependencies": { - "inherits": "^2.0.4", - "safe-buffer": "^5.2.1", - "to-buffer": "^1.2.0" - }, - "bin": { - "sha.js": "bin.js" - }, - "engines": { - "node": ">= 0.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", @@ -22660,61 +21227,11 @@ } }, "node_modules/std-env": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.9.0.tgz", - "integrity": "sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==", + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", "license": "MIT" }, - "node_modules/stream-browserify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-3.0.0.tgz", - "integrity": "sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==", - "license": "MIT", - "dependencies": { - "inherits": "~2.0.4", - "readable-stream": "^3.5.0" - } - }, - "node_modules/stream-browserify/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/stream-http": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-3.2.0.tgz", - "integrity": "sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==", - "license": "MIT", - "dependencies": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "xtend": "^4.0.2" - } - }, - "node_modules/stream-http/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/streamx": { "version": "2.22.0", "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.0.tgz", @@ -23091,6 +21608,19 @@ "url": "https://github.com/Mermade/oas-kit?sponsor=1" } }, + "node_modules/swr": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/swr/-/swr-2.3.6.tgz", + "integrity": "sha512-wfHRmHWk/isGNMwlLGlZX5Gzz/uTgo0o2IRuTMcf4CPuPFJZlq0rDaKUx+ozB5nBOReNV1kiOyzMfj+MBMikLw==", + "license": "MIT", + "dependencies": { + "dequal": "^2.0.3", + "use-sync-external-store": "^1.4.0" + }, + "peerDependencies": { + "react": "^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, "node_modules/tailwindcss": { "version": "3.4.17", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", @@ -23269,14 +21799,8 @@ "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==", "license": "Apache-2.0", "dependencies": { - "b4a": "^1.6.4" - } - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "license": "MIT" + "b4a": "^1.6.4" + } }, "node_modules/thenify": { "version": "3.3.1", @@ -23299,24 +21823,40 @@ "node": ">=0.8" } }, + "node_modules/thingies": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/thingies/-/thingies-2.5.0.tgz", + "integrity": "sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw==", + "license": "MIT", + "engines": { + "node": ">=10.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "^2" + } + }, + "node_modules/throttleit": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-2.1.0.tgz", + "integrity": "sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "license": "MIT" }, - "node_modules/timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", - "license": "MIT", - "dependencies": { - "setimmediate": "^1.0.4" - }, - "engines": { - "node": ">=0.6.0" - } - }, "node_modules/tiny-invariant": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", @@ -23329,26 +21869,15 @@ "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==", "license": "MIT" }, - "node_modules/to-buffer": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.2.1.tgz", - "integrity": "sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==", + "node_modules/tinypool": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", + "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", "license": "MIT", - "dependencies": { - "isarray": "^2.0.5", - "safe-buffer": "^5.2.1", - "typed-array-buffer": "^1.0.3" - }, "engines": { - "node": ">= 0.4" + "node": "^18.0.0 || >=20.0.0" } }, - "node_modules/to-buffer/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "license": "MIT" - }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -23385,6 +21914,22 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "license": "MIT" }, + "node_modules/tree-dump": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.1.0.tgz", + "integrity": "sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==", + "license": "Apache-2.0", + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/streamich" + }, + "peerDependencies": { + "tslib": "2" + } + }, "node_modules/trim-lines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz", @@ -23417,12 +21962,6 @@ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "license": "0BSD" }, - "node_modules/tty-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.1.tgz", - "integrity": "sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==", - "license": "MIT" - }, "node_modules/tunnel-agent": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", @@ -23460,20 +21999,6 @@ "node": ">= 0.6" } }, - "node_modules/typed-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz", - "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==", - "license": "MIT", - "dependencies": { - "call-bound": "^1.0.3", - "es-errors": "^1.3.0", - "is-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" - } - }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -23487,6 +22012,7 @@ "version": "5.8.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "devOptional": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", @@ -23496,15 +22022,6 @@ "node": ">=14.17" } }, - "node_modules/undici": { - "version": "6.21.2", - "resolved": "https://registry.npmjs.org/undici/-/undici-6.21.2.tgz", - "integrity": "sha512-uROZWze0R0itiAKVPsYhFov9LxrPMHLMEQFszeI2gCN6bnIIZ8twzBCJcN2LJrBBLfrP0t1FW0g+JmKVl8Vk1g==", - "license": "MIT", - "engines": { - "node": ">=18.17" - } - }, "node_modules/undici-types": { "version": "6.21.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", @@ -23704,9 +22221,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", - "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz", + "integrity": "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==", "funding": [ { "type": "opencollective", @@ -23926,17 +22443,13 @@ "react": ">= 16.8.0" } }, - "node_modules/util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", + "node_modules/use-sync-external-store": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" } }, "node_modules/util-deprecate": { @@ -24108,12 +22621,6 @@ "url": "https://opencollective.com/unified" } }, - "node_modules/vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", - "license": "MIT" - }, "node_modules/warning": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", @@ -24244,26 +22751,32 @@ } }, "node_modules/webpack-dev-middleware": { - "version": "5.3.4", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz", - "integrity": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==", + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.5.tgz", + "integrity": "sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==", "license": "MIT", "dependencies": { "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", + "memfs": "^4.43.1", + "mime-types": "^3.0.1", + "on-finished": "^2.4.1", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } } }, "node_modules/webpack-dev-middleware/node_modules/colorette": { @@ -24272,99 +22785,34 @@ "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "license": "MIT" }, - "node_modules/webpack-dev-middleware/node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "node_modules/webpack-dev-middleware/node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", "license": "MIT", "engines": { "node": ">= 0.6" } }, - "node_modules/webpack-dev-server": { - "version": "4.15.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.2.tgz", - "integrity": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==", + "node_modules/webpack-dev-middleware/node_modules/mime-types": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz", + "integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==", "license": "MIT", "dependencies": { - "@types/bonjour": "^3.5.9", - "@types/connect-history-api-fallback": "^1.3.5", - "@types/express": "^4.17.13", - "@types/serve-index": "^1.9.1", - "@types/serve-static": "^1.13.10", - "@types/sockjs": "^0.3.33", - "@types/ws": "^8.5.5", - "ansi-html-community": "^0.0.8", - "bonjour-service": "^1.0.11", - "chokidar": "^3.5.3", - "colorette": "^2.0.10", - "compression": "^1.7.4", - "connect-history-api-fallback": "^2.0.0", - "default-gateway": "^6.0.3", - "express": "^4.17.3", - "graceful-fs": "^4.2.6", - "html-entities": "^2.3.2", - "http-proxy-middleware": "^2.0.3", - "ipaddr.js": "^2.0.1", - "launch-editor": "^2.6.0", - "open": "^8.0.9", - "p-retry": "^4.5.0", - "rimraf": "^3.0.2", - "schema-utils": "^4.0.0", - "selfsigned": "^2.1.1", - "serve-index": "^1.9.1", - "sockjs": "^0.3.24", - "spdy": "^4.0.2", - "webpack-dev-middleware": "^5.3.4", - "ws": "^8.13.0" - }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" + "mime-db": "^1.54.0" }, "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } + "node": ">= 0.6" } }, - "node_modules/webpack-dev-server/node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "license": "MIT" - }, - "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.18.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz", - "integrity": "sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==", + "node_modules/webpack-dev-middleware/node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "license": "MIT", "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "node": ">= 0.6" } }, "node_modules/webpack-merge": { @@ -24391,23 +22839,77 @@ } }, "node_modules/webpackbar": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz", - "integrity": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-6.0.1.tgz", + "integrity": "sha512-TnErZpmuKdwWBdMoexjio3KKX6ZtoKHRVvLIU0A47R0VVBDtx3ZyOJDktgYixhoJokZTYTt1Z37OkO9pnGJa9Q==", "license": "MIT", "dependencies": { - "chalk": "^4.1.0", - "consola": "^2.15.3", + "ansi-escapes": "^4.3.2", + "chalk": "^4.1.2", + "consola": "^3.2.3", + "figures": "^3.2.0", + "markdown-table": "^2.0.0", "pretty-time": "^1.1.0", - "std-env": "^3.0.1" + "std-env": "^3.7.0", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=12" + "node": ">=14.21.3" }, "peerDependencies": { "webpack": "3 || 4 || 5" } }, + "node_modules/webpackbar/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/webpackbar/node_modules/markdown-table": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-2.0.0.tgz", + "integrity": "sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A==", + "license": "MIT", + "dependencies": { + "repeat-string": "^1.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/webpackbar/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/webpackbar/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", @@ -24431,27 +22933,6 @@ "node": ">=0.8.0" } }, - "node_modules/whatwg-encoding": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", - "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", - "license": "MIT", - "dependencies": { - "iconv-lite": "0.6.3" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/whatwg-mimetype": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", - "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", - "license": "MIT", - "engines": { - "node": ">=18" - } - }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", @@ -24477,27 +22958,6 @@ "node": ">= 8" } }, - "node_modules/which-typed-array": { - "version": "1.1.19", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz", - "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==", - "license": "MIT", - "dependencies": { - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.8", - "call-bound": "^1.0.4", - "for-each": "^0.3.5", - "get-proto": "^1.0.1", - "gopd": "^1.2.0", - "has-tostringtag": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/widest-line": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-4.0.1.tgz", @@ -24652,6 +23112,36 @@ } } }, + "node_modules/wsl-utils": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.1.0.tgz", + "integrity": "sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==", + "license": "MIT", + "dependencies": { + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/wsl-utils/node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", + "license": "MIT", + "dependencies": { + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/xdg-basedir": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-5.1.0.tgz", @@ -24697,15 +23187,6 @@ "node": ">= 10" } }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "license": "MIT", - "engines": { - "node": ">=0.4" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -24795,6 +23276,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/zod": { + "version": "4.1.12", + "resolved": "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz", + "integrity": "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, "node_modules/zwitch": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", diff --git a/docs/package.json b/docs/package.json index 58d713fb80..efc2de4bf3 100644 --- a/docs/package.json +++ b/docs/package.json @@ -19,17 +19,18 @@ }, "dependencies": { "@cloudflare/stream-react": "1.9.1", - "@docusaurus/core": "3.4.0", - "@docusaurus/plugin-client-redirects": "^3.4.0", - "@docusaurus/plugin-content-docs": "^3.5.2", - "@docusaurus/plugin-ideal-image": "^3.4.0", - "@docusaurus/preset-classic": "3.4.0", - "@docusaurus/theme-search-algolia": "^3.5.2", + "@docsearch/react": "^4.2.0", + "@docusaurus/core": "^3.9.2", + "@docusaurus/plugin-client-redirects": "^3.9.2", + "@docusaurus/plugin-content-docs": "^3.9.2", + "@docusaurus/plugin-ideal-image": "^3.9.2", + "@docusaurus/preset-classic": "^3.9.2", + "@docusaurus/theme-search-algolia": "^3.9.2", "@mdx-js/react": "^3.0.0", "clsx": "^2.0.0", "docusaurus-plugin-image-zoom": "^2.0.0", - "docusaurus-plugin-openapi-docs": "3.0.1", - "docusaurus-theme-openapi-docs": "3.0.1", + "docusaurus-plugin-openapi-docs": "^4.5.1", + "docusaurus-theme-openapi-docs": "^4.5.1", "dotenv": "^16.4.5", "posthog-docusaurus": "^2.0.1", "prism-react-renderer": "^2.3.0", @@ -37,9 +38,9 @@ "react-dom": "^18.0.0" }, "devDependencies": { - "@docusaurus/module-type-aliases": "^3.5.2", - "@docusaurus/tsconfig": "^3.5.2", - "@docusaurus/types": "^3.5.2", + "@docusaurus/module-type-aliases": "^3.9.2", + "@docusaurus/tsconfig": "^3.9.2", + "@docusaurus/types": "^3.9.2", "tailwindcss": "^3.4.10", "typescript": "^5.5.4" }, diff --git a/docs/sidebars.ts b/docs/sidebars.ts index 88a12d2078..229a6d9e31 100644 --- a/docs/sidebars.ts +++ b/docs/sidebars.ts @@ -36,8 +36,7 @@ const sidebars: SidebarsConfig = { collapsed: true, collapsible: true, label: "Tutorials", - items: ["tutorials/cookbooks/capture-user-feedback", - "tutorials/sdk/evaluate-with-SDK"] + items: ["tutorials/cookbooks/capture-user-feedback"] }], }, { @@ -70,11 +69,6 @@ const sidebars: SidebarsConfig = { ...CATEGORY_UTILITIES, items: [{ type: "autogenerated", dirName: "misc" }], }, - { - label: "Self-host", - ...CATEGORY_UTILITIES, - items: [{ type: "autogenerated", dirName: "self-host" }], - }, ], guidesSidebar: [ @@ -113,6 +107,13 @@ const sidebars: SidebarsConfig = { items: require("./docs/reference/api/sidebar.js"), }, ], + selfHostSidebar: [ + { + label: "Self-host", + ...CATEGORY_UTILITIES, + items: [{ type: "autogenerated", dirName: "self-host" }], + }, + ], }; export default sidebars; diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css index 2ee23fd496..ac810733c1 100644 --- a/docs/src/css/custom.css +++ b/docs/src/css/custom.css @@ -49,7 +49,7 @@ --ifm-h2-font-weight: 500; --ifm-h3-font-weight: 500; --ifm-h4-font-weight: 500; - --ifm-navbar-height: 3.9rem; + --ifm-navbar-height: 6.5rem; --ifm-link-color: var(--ifm-color-primary-darker); --ifm-heading-color: var(--ifm-color-primary-darkest); --ifm-heading-h1-font-size: 32px; @@ -426,6 +426,25 @@ a[class*="cardContainer"]:hover { /** Navbar **/ +/* Two-row navbar layout */ +.two-row-navbar { + --ifm-navbar-height: 6.5rem; + padding: 0 !important; +} + +.two-row-navbar .navbar__inner { + flex-direction: column; + align-items: stretch; + padding: 0 !important; +} + +/* Hide mobile toggle on desktop for bottom row */ +@media (min-width: 997px) { + .two-row-navbar .navbar__toggle { + display: none; + } +} + @media (min-width: 1851px) { .main-wrapper, @@ -462,6 +481,35 @@ a[class*="cardContainer"]:hover { } } +/* Target CSS module classes properly - these override the module's own styles */ +.two-row-navbar :global(.navbarTopRow) { + padding: 10px 0 0 0 !important; +} + +.two-row-navbar :global(.navbarBottomRow) { + padding: 0 !important; + margin-top: 17px !important; +} + +/* Add left margin to logo in desktop two-row mode */ +@media (min-width: 997px) { + .two-row-navbar .navbar__logo { + margin-left: 8px; + } +} + +/* Mobile: reset to single row with normal navbar height */ +@media (max-width: 996px) { + .two-row-navbar { + --ifm-navbar-height: 3.5rem; + padding: 8px 16px !important; + } + + .two-row-navbar :global(.navbarTopRow) { + padding: 0 !important; + } +} + .navbar__link { font-size: 14px; padding: 0px 8px; @@ -604,10 +652,20 @@ a[class*="cardContainer"]:hover { padding: 0 2px 0px 8px !important; } -@media (min-width: 1350px) { - .DocSearch-Button { - width: 250px; - } +/* Search bar in two-row navbar should be wider */ +.two-row-navbar .navbar__search { + width: auto !important; + flex: 1 1 auto !important; +} + +.two-row-navbar .DocSearch { + width: 100% !important; +} + +.two-row-navbar .DocSearch-Button { + min-width: 400px !important; + max-width: 740px !important; + width: 100% !important; } @media (max-width: 768px) { @@ -632,6 +690,7 @@ a[class*="cardContainer"]:hover { } /*************************** Sidebar ***************************/ + @media (min-width: 1350px) { .theme-doc-sidebar-container { margin-right: 40px; @@ -712,6 +771,11 @@ li.sidebar-section-title>div.menu__list-item-collapsible a { .menu__list { padding-right: 5px; + padding-left: 4px; +} + +.menu { + padding-left: 0px !important; } /* Sidebar container - always hide border */ diff --git a/docs/src/data/roadmap.ts b/docs/src/data/roadmap.ts index 5bb39ab461..5d4d37a7bc 100644 --- a/docs/src/data/roadmap.ts +++ b/docs/src/data/roadmap.ts @@ -1,417 +1,440 @@ export type Label = { - name: string; - color?: string; // hex without '#' + name: string; + color?: string; // hex without '#' }; export type ShippedFeature = { - id: string; - title: string; - description?: string; - changelogPath: string; // e.g. "/changelog/2025-06-18-feature-name" - shippedAt: string; // ISO date string or any displayable date - labels?: Label[]; + id: string; + title: string; + description?: string; + changelogPath: string; // e.g. "/changelog/2025-06-18-feature-name" + shippedAt: string; // ISO date string or any displayable date + labels?: Label[]; }; export type PlannedFeature = { - id: string; - title: string; - description: string; - githubUrl: string; // issue or discussion URL - labels?: Label[]; + id: string; + title: string; + description: string; + githubUrl: string; // issue or discussion URL + labels?: Label[]; }; export const shippedFeatures: ShippedFeature[] = [ - // Playground: BCFF78 - // Observability: DE74FF - // Evaluation: 86B7FF - // Integration: FFA500 - { - id: "vertex-ai-provider-support", - title: "Vertex AI Provider Support", - description: "Use Google Cloud's Vertex AI models including Gemini and partner models in the playground, Model Hub, and through Gateway endpoints.", - changelogPath: "/changelog/vertex-ai-provider-support", - shippedAt: "2025-10-24", - labels: [ - { - name: "Integration", - color: "FFA500", - }, - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "filtering-by-annotation", - title: "Filtering Traces by Annotation", - description: "Filter and search for traces based on their annotations. Find traces with low scores or feedback quickly using the rebuilt filtering system.", - changelogPath: "/changelog/filtering-traces-by-annotation", - shippedAt: "2025-10-14", - labels: [ - { - name: "Observability", - color: "DE74FF", - }, - ], - }, - { - id: "evaluation-results-dashboard", - title: "New Evaluation Results Dashboard", - description: "Completely redesigned evaluation results dashboard with performance plots, side-by-side comparison, improved test cases view, focused detail view, configuration visibility, and run naming.", - changelogPath: "/changelog/new-evaluation-results-dashboard", - shippedAt: "2025-09-26", - labels: [ - { - name: "Evaluation", - color: "86B7FF", - }, - ], - }, - { - id: "deep-url-support", - title: "Deep URL Support for Sharable Links", - description: "URLs now include workspace context, making them shareable between team members. Fixed workspace bugs with page refresh and workspace selection.", - changelogPath: "/changelog/deep-url-support-for-sharable-links", - shippedAt: "2025-09-24", - labels: [ - { - name: "Misc", - color: "000000", - }, - ], - }, - { - id: "speed-improvements-playground", - title: "Speed Improvements in the Playground", - description: "We improved the speed of the playground (creation of prompts, navigation, etc.) especially with hundreds of revisions.", - changelogPath: "/changelog/speed-improvements-in-the-playground", - shippedAt: "2025-09-19", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "markdown-support", - title: "Markdown support ", - description: "You can view prompt and messages in markdown both in the playground and in the observability drawer.", - changelogPath: "/changelog/major-playground-improvements-and-enhancements", - shippedAt: "2025-08-07", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - { - name: "Observability", - color: "DE74FF", - }, - - ], - }, - { - id: "images-in-playground", - title: "Image Support in playground", - description: "You can now upload images to the playground and use them in your prompts.", - changelogPath: "/changelog/support-for-images-in-playground", - shippedAt: "2025-07-29", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - - ], - }, - { - id: "llamaindex-integration", - title: "LLamaIndex Integration", - description: "You can trace your calls from LlamaIndex in one line.", - changelogPath: "/changelog/llamaindex-integration", - shippedAt: "2025-06-17", - labels: [ - { - name: "Observability", - color: "DE74FF", - }, - ], - }, - { - id: "annotate-llm-response", - title: "Endpoint to Capture User Feedback for Traces", - description: "You can now use the annotation API to add annotations (e.g. scores, feedback) to LLM responses traced in Agenta.", - changelogPath: "/changelog/annotate-your-llm-response-preview", - shippedAt: "2025-05-15", - labels: [ - { - name: "Observability", - color: "DE74FF", - }, - ], - }, - { - id: "tool-support-playground", - title: "Tool Support in the Playground", - description: "You can now define and test tools in the playground. You can save tool definitions as part of your prompts.", - changelogPath: "/changelog/tool-support-in-the-playground", - shippedAt: "2025-05-10", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "structured-output-playground", - title: "Structured Output Support in the Playground", - description: "We support now structured output in the playground. You can now define and validate structured output formats and save them as part of your prompt.", - changelogPath: "/changelog/structured-output-support-in-the-playground", - shippedAt: "2025-04-15", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, + // Playground: BCFF78 + // Observability: DE74FF + // Evaluation: 86B7FF + // Integration: FFA500 + { + id: "vertex-ai-provider-support", + title: "Vertex AI Provider Support", + description: + "Use Google Cloud's Vertex AI models including Gemini and partner models in the playground, Model Hub, and through Gateway endpoints.", + changelogPath: "/changelog/vertex-ai-provider-support", + shippedAt: "2025-10-24", + labels: [ + { + name: "Integration", + color: "FFA500", + }, + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "filtering-by-annotation", + title: "Filtering Traces by Annotation", + description: + "Filter and search for traces based on their annotations. Find traces with low scores or feedback quickly using the rebuilt filtering system.", + changelogPath: "/changelog/filtering-traces-by-annotation", + shippedAt: "2025-10-14", + labels: [ + { + name: "Observability", + color: "DE74FF", + }, + ], + }, + { + id: "evaluation-results-dashboard", + title: "New Evaluation Results Dashboard", + description: + "Completely redesigned evaluation results dashboard with performance plots, side-by-side comparison, improved testcases view, focused detail view, configuration visibility, and run naming.", + changelogPath: "/changelog/new-evaluation-results-dashboard", + shippedAt: "2025-09-26", + labels: [ + { + name: "Evaluation", + color: "86B7FF", + }, + ], + }, + { + id: "deep-url-support", + title: "Deep URL Support for Sharable Links", + description: + "URLs now include workspace context, making them shareable between team members. Fixed workspace bugs with page refresh and workspace selection.", + changelogPath: "/changelog/deep-url-support-for-sharable-links", + shippedAt: "2025-09-24", + labels: [ + { + name: "Misc", + color: "000000", + }, + ], + }, + { + id: "speed-improvements-playground", + title: "Speed Improvements in the Playground", + description: + "We improved the speed of the playground (creation of prompts, navigation, etc.) especially with hundreds of revisions.", + changelogPath: "/changelog/speed-improvements-in-the-playground", + shippedAt: "2025-09-19", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "markdown-support", + title: "Markdown support ", + description: + "You can view prompt and messages in markdown both in the playground and in the observability drawer.", + changelogPath: "/changelog/major-playground-improvements-and-enhancements", + shippedAt: "2025-08-07", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + { + name: "Observability", + color: "DE74FF", + }, + ], + }, + { + id: "images-in-playground", + title: "Image Support in playground", + description: + "You can now upload images to the playground and use them in your prompts.", + changelogPath: "/changelog/support-for-images-in-playground", + shippedAt: "2025-07-29", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "llamaindex-integration", + title: "LLamaIndex Integration", + description: "You can trace your calls from LlamaIndex in one line.", + changelogPath: "/changelog/llamaindex-integration", + shippedAt: "2025-06-17", + labels: [ + { + name: "Observability", + color: "DE74FF", + }, + ], + }, + { + id: "annotate-llm-response", + title: "Endpoint to Capture User Feedback for Traces", + description: + "You can now use the annotation API to add annotations (e.g. scores, feedback) to LLM responses traced in Agenta.", + changelogPath: "/changelog/annotate-your-llm-response-preview", + shippedAt: "2025-05-15", + labels: [ + { + name: "Observability", + color: "DE74FF", + }, + ], + }, + { + id: "tool-support-playground", + title: "Tool Support in the Playground", + description: + "You can now define and test tools in the playground. You can save tool definitions as part of your prompts.", + changelogPath: "/changelog/tool-support-in-the-playground", + shippedAt: "2025-05-10", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "structured-output-playground", + title: "Structured Output Support in the Playground", + description: + "We support now structured output in the playground. You can now define and validate structured output formats and save them as part of your prompt.", + changelogPath: "/changelog/structured-output-support-in-the-playground", + shippedAt: "2025-04-15", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, ]; export const inProgressFeatures: PlannedFeature[] = [ - { - id: "llm-judge-structured-output", - title: "Structured Output and Multiple Outputs in LLM-as-a-Judge Evaluators", - description: "Use structured output formats and generate multiple output fields (explanation, confidence, suggestions, issue categories) in LLM-as-a-judge evaluators.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2855", - labels: [ - { - name: "Evaluation", - color: "86B7FF", - }, - ], - }, - { - id: "jinja2-playground", - title: "Jinja2 Template Support in the Playground", - description: "Add Jinja2 template support to enable conditional logic, filters, and template blocks in prompts. The prompt type will be stored in the schema, and the SDK will handle rendering.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2856", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "pdf-support-playground", - title: "PDF Support in the Playground", - description: "Add PDF support for models that support it (OpenAI, Gemini, etc.) through base64 encoding, URLs, or file IDs. Support extends to human evaluation for reviewing model responses on PDF inputs.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2857", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "prompt-snippets", - title: "Prompt Snippets", - description: "Create reusable prompt snippets that can be referenced across multiple prompts. Reference specific versions or always use the latest version to maintain consistency across prompt variants.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2858", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "online-evaluation", - title: "Online Evaluation", - description: "Adding the ability to configure evaluators (llm-as-a-judge or custom) and run them automatically on new traces.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2721", - labels: [ - { - name: "Evaluation", - color: "86B7FF", - }, - ], - }, - { - id: "evaluation-sdk", - title: "Programmatic Evaluation through the SDK", - description: "Until now evaluations were only available as managed by Agenta. We are now adding the ability to run evaluations programmatically through the SDK.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2725", - labels: [ - { - name: "Evaluation", - color: "86B7FF", - }, - ], - }, - { - id: "date-range-filtering", - title: "Date Range Filtering in Metrics Dashboard", - description: "We are adding the ability to filter traces by date range in the metrics dashboard.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2774", - labels: [ - { - name: "Observability", - color: "DE74FF", - }, - ], - }, - + { + id: "llm-judge-structured-output", + title: + "Structured Output and Multiple Outputs in LLM-as-a-Judge Evaluators", + description: + "Use structured output formats and generate multiple output fields (explanation, confidence, suggestions, issue categories) in LLM-as-a-judge evaluators.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2855", + labels: [ + { + name: "Evaluation", + color: "86B7FF", + }, + ], + }, + { + id: "jinja2-playground", + title: "Jinja2 Template Support in the Playground", + description: + "Add Jinja2 template support to enable conditional logic, filters, and template blocks in prompts. The prompt type will be stored in the schema, and the SDK will handle rendering.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2856", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "pdf-support-playground", + title: "PDF Support in the Playground", + description: + "Add PDF support for models that support it (OpenAI, Gemini, etc.) through base64 encoding, URLs, or file IDs. Support extends to human evaluation for reviewing model responses on PDF inputs.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2857", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "prompt-snippets", + title: "Prompt Snippets", + description: + "Create reusable prompt snippets that can be referenced across multiple prompts. Reference specific versions or always use the latest version to maintain consistency across prompt variants.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2858", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "online-evaluation", + title: "Online Evaluation", + description: + "Adding the ability to configure evaluators (llm-as-a-judge or custom) and run them automatically on new traces.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2721", + labels: [ + { + name: "Evaluation", + color: "86B7FF", + }, + ], + }, + { + id: "evaluation-sdk", + title: "Programmatic Evaluation through the SDK", + description: + "Until now evaluations were only available as managed by Agenta. We are now adding the ability to run evaluations programmatically through the SDK.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2725", + labels: [ + { + name: "Evaluation", + color: "86B7FF", + }, + ], + }, + { + id: "date-range-filtering", + title: "Date Range Filtering in Metrics Dashboard", + description: + "We are adding the ability to filter traces by date range in the metrics dashboard.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2774", + labels: [ + { + name: "Observability", + color: "DE74FF", + }, + ], + }, ]; export const plannedFeatures: PlannedFeature[] = [ - { - id: "prompt-folders", - title: "Folders for Prompt Organization", - description: "Create folders and subfolders to organize prompts in the playground. Move prompts between folders and search within specific folders to structure prompt libraries.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2859", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "projects-workspaces", - title: "Projects and Workspaces", - description: "Improve organization structure by adding projects and workspaces. Create projects for different products, set up workspaces for different environments or teams, and scope resources to specific workspaces.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2860", - labels: [ - { - name: "Misc", - color: "000000", - }, - ], - }, - { - id: "ai-prompt-refinement", - title: "AI-Powered Prompt Refinement in the Playground", - description: "Analyze prompts and suggest improvements based on best practices. Identify issues, propose refined versions, and allow users to accept, modify, or reject suggestions.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2861", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "open-spans-playground", - title: "Open Observability Spans Directly in the Playground", - description: "Add a button in observability to open any chat span directly in the playground. Creates a stateless playground session pre-filled with the exact prompt, configuration, and inputs for immediate iteration.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2862", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - { - name: "Observability", - color: "DE74FF", - }, - ], - }, - { - id: "navigation-in-the-playground", - title: "Improving Navigation between Test Sets in the Playground", - description: "We are making it easy to use and navigate in the playground with large test sets .", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2731", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "appending-single-test-cases", - title: "Appending Single Test Cases in the Playground", - description: "Using test cases from different test sets is not possible right now in the Playground. We are adding the ability to append a single test case to a test set.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2732", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, - { - id: "test-set-view", - title: "Improving Test Set View", - description: "We are reworking the test set view to make it easier to visualize and edit test sets.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2733", - labels: [ - { - name: "Evaluation", - color: "86B7FF", - }, - ], - }, - { - id: "prompt-caching-sdk", - title: "Prompt Caching in the SDK", - description: "We are adding the ability to cache prompts in the SDK.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2734", - labels: [ - { - name: "SDK", - color: "DE74FF", - }, - ], - }, - { - id: "test-set-versioning", - title: "Test Set Versioning", - description: "We are adding the ability to version test sets. This is useful for correctly comparing evaluation results.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2735", - labels: [ - { - name: "Evaluation", - color: "86B7FF", - }, - ], - }, - { - id: "tagging", - title: "Tagging Traces, Test Sets, Evaluations and Prompts", - description: "We are adding the ability to tag traces, test sets, evaluations and prompts. This is useful for organizing and filtering your data.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2736", - labels: [ - { - name: "Evaluation", - color: "86B7FF", - }, - ], - }, - { - id: "tools-playground", - title: "Support for built-in LLM Tools (e.g. web search) in the Playground", - description: "We are adding the ability to use built-in LLM tools (e.g. web search) in the playground.", - githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2577", - labels: [ - { - name: "Playground", - color: "BCFF78", - }, - ], - }, + { + id: "prompt-folders", + title: "Folders for Prompt Organization", + description: + "Create folders and subfolders to organize prompts in the playground. Move prompts between folders and search within specific folders to structure prompt libraries.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2859", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "projects-workspaces", + title: "Projects and Workspaces", + description: + "Improve organization structure by adding projects and workspaces. Create projects for different products, set up workspaces for different environments or teams, and scope resources to specific workspaces.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2860", + labels: [ + { + name: "Misc", + color: "000000", + }, + ], + }, + { + id: "ai-prompt-refinement", + title: "AI-Powered Prompt Refinement in the Playground", + description: + "Analyze prompts and suggest improvements based on best practices. Identify issues, propose refined versions, and allow users to accept, modify, or reject suggestions.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2861", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "open-spans-playground", + title: "Open Observability Spans Directly in the Playground", + description: + "Add a button in observability to open any chat span directly in the playground. Creates a stateless playground session pre-filled with the exact prompt, configuration, and inputs for immediate iteration.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2862", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + { + name: "Observability", + color: "DE74FF", + }, + ], + }, + { + id: "navigation-in-the-playground", + title: "Improving Navigation between Testsets in the Playground", + description: + "We are making it easy to use and navigate in the playground with large testsets .", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2731", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "appending-single-test-cases", + title: "Appending Single Testcases in the Playground", + description: + "Using testcases from different testsets is not possible right now in the Playground. We are adding the ability to append a single testcase to a testset.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2732", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, + { + id: "test-set-view", + title: "Improving Testset View", + description: + "We are reworking the testset view to make it easier to visualize and edit testsets.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2733", + labels: [ + { + name: "Evaluation", + color: "86B7FF", + }, + ], + }, + { + id: "prompt-caching-sdk", + title: "Prompt Caching in the SDK", + description: "We are adding the ability to cache prompts in the SDK.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2734", + labels: [ + { + name: "SDK", + color: "DE74FF", + }, + ], + }, + { + id: "test-set-versioning", + title: "Testset Versioning", + description: + "We are adding the ability to version testsets. This is useful for correctly comparing evaluation results.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2735", + labels: [ + { + name: "Evaluation", + color: "86B7FF", + }, + ], + }, + { + id: "tagging", + title: "Tagging Traces, Testsets, Evaluations and Prompts", + description: + "We are adding the ability to tag traces, testsets, evaluations and prompts. This is useful for organizing and filtering your data.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2736", + labels: [ + { + name: "Evaluation", + color: "86B7FF", + }, + ], + }, + { + id: "tools-playground", + title: "Support for built-in LLM Tools (e.g. web search) in the Playground", + description: + "We are adding the ability to use built-in LLM tools (e.g. web search) in the playground.", + githubUrl: "https://github.com/Agenta-AI/agenta/discussions/2577", + labels: [ + { + name: "Playground", + color: "BCFF78", + }, + ], + }, - // Example: - // { - // id: "plg-cost-dashboard", - // title: "Cost Dashboard", - // description: "Track token usage and cost across environments and models.", - // githubUrl: "https://github.com/Agenta-AI/agenta/discussions/5678", - // }, + // Example: + // { + // id: "plg-cost-dashboard", + // title: "Cost Dashboard", + // description: "Track token usage and cost across environments and models.", + // githubUrl: "https://github.com/Agenta-AI/agenta/discussions/5678", + // }, ]; - - diff --git a/docs/src/icons/library.tsx b/docs/src/icons/library.tsx new file mode 100644 index 0000000000..9713461ae3 --- /dev/null +++ b/docs/src/icons/library.tsx @@ -0,0 +1,253 @@ +import React from "react"; +import clsx from "clsx"; +import {useColorMode} from '@docusaurus/theme-common'; + +type IconComponent = React.ComponentType>; + +export type IconDescriptor = { + name: string; + library?: string; +}; + +type IconLibrary = Record; + +// Base props for stroke-based icons (light mode) +const strokeSvgProps: React.SVGProps = { + viewBox: "0 0 24 24", + fill: "none", + stroke: "currentColor", + strokeWidth: 2, + strokeLinecap: "square", + xmlns: "http://www.w3.org/2000/svg", +}; + +// Base props for filled icons (dark mode) +const filledSvgProps: React.SVGProps = { + viewBox: "0 0 24 24", + fill: "currentColor", + xmlns: "http://www.w3.org/2000/svg", +}; + +const FileTextIcon: IconComponent = (props) => { + const {colorMode} = useColorMode(); + const isDark = colorMode === 'dark'; + + return isDark ? ( + // Dark mode - filled + + + + ) : ( + // Light mode - stroke + + + + ); +}; + +const LayersIcon: IconComponent = (props) => ( + + + + + +); + +const CodeIcon: IconComponent = (props) => { + const {colorMode} = useColorMode(); + const isDark = colorMode === 'dark'; + + return isDark ? ( + // Dark mode - filled + + + + ) : ( + // Light mode - stroke + + + + ); +}; + +const BookOpenIcon: IconComponent = (props) => { + const {colorMode} = useColorMode(); + const isDark = colorMode === 'dark'; + + return isDark ? ( + // Dark mode - filled + + + + + ) : ( + // Light mode - stroke + + + + ); +}; + +const RouteIcon: IconComponent = (props) => { + const {colorMode} = useColorMode(); + const isDark = colorMode === 'dark'; + + return isDark ? ( + // Dark mode - filled + + + + ) : ( + // Light mode - stroke + + + + ); +}; + +const HistoryIcon: IconComponent = (props) => ( + + + + + +); + +const ClockIcon: IconComponent = (props) => { + const {colorMode} = useColorMode(); + const isDark = colorMode === 'dark'; + + return isDark ? ( + // Dark mode - filled + + + + ) : ( + // Light mode - stroke + + + + ); +}; + +const CookbookIcon: IconComponent = (props) => ( + + + + + + + + +); + +const SettingsIcon: IconComponent = (props) => ( + + + + +); + +const ServerIcon: IconComponent = (props) => { + const {colorMode} = useColorMode(); + const isDark = colorMode === 'dark'; + + return isDark ? ( + // Dark mode - filled + + + + + ) : ( + // Light mode - stroke + + + + + ); +}; + +const SunIcon: IconComponent = (props) => ( + + + + + + + + + + + +); + +const MoonIcon: IconComponent = (props) => ( + + + +); + +const ICON_LIBRARIES: Record = { + lucide: { + fileText: FileTextIcon, + layers: LayersIcon, + code: CodeIcon, + bookOpen: BookOpenIcon, + route: RouteIcon, + history: HistoryIcon, + clock: ClockIcon, + cookbook: CookbookIcon, + settings: SettingsIcon, + server: ServerIcon, + sun: SunIcon, + moon: MoonIcon, + }, +}; + +const DEFAULT_LIBRARY = "lucide"; +const DEFAULT_SIZE = 18; + +export type NavIconProps = IconDescriptor & { + className?: string; + size?: number; +}; + +function resolveIcon(descriptor: IconDescriptor): IconComponent | null { + const libraryName = descriptor.library ?? DEFAULT_LIBRARY; + const library = ICON_LIBRARIES[libraryName]; + + if (!library) { + return null; + } + + return library[descriptor.name] ?? null; +} + +export function NavIcon({ + className, + size = DEFAULT_SIZE, + ...descriptor +}: NavIconProps) { + const Icon = resolveIcon(descriptor); + + if (!Icon) { + return null; + } + + return ( +