agenta 0.12.3__py3-none-any.whl → 0.32.0a1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of agenta might be problematic. Click here for more details.
- agenta/__init__.py +64 -7
- agenta/cli/helper.py +7 -3
- agenta/cli/main.py +15 -50
- agenta/cli/variant_commands.py +50 -29
- agenta/client/Readme.md +72 -64
- agenta/client/api.py +2 -2
- agenta/client/backend/__init__.py +193 -22
- agenta/client/backend/access_control/__init__.py +1 -0
- agenta/client/backend/access_control/client.py +167 -0
- agenta/client/backend/apps/__init__.py +1 -0
- agenta/client/backend/apps/client.py +1691 -0
- agenta/client/backend/bases/__init__.py +1 -0
- agenta/client/backend/bases/client.py +190 -0
- agenta/client/backend/client.py +2508 -5712
- agenta/client/backend/configs/__init__.py +1 -0
- agenta/client/backend/configs/client.py +604 -0
- agenta/client/backend/containers/__init__.py +5 -0
- agenta/client/backend/containers/client.py +648 -0
- agenta/client/backend/containers/types/__init__.py +5 -0
- agenta/client/backend/{types → containers/types}/container_templates_response.py +1 -2
- agenta/client/backend/core/__init__.py +30 -0
- agenta/client/backend/core/client_wrapper.py +42 -9
- agenta/client/backend/core/file.py +70 -0
- agenta/client/backend/core/http_client.py +575 -0
- agenta/client/backend/core/jsonable_encoder.py +33 -39
- agenta/client/backend/core/pydantic_utilities.py +325 -0
- agenta/client/backend/core/query_encoder.py +60 -0
- agenta/client/backend/core/remove_none_from_dict.py +2 -2
- agenta/client/backend/core/request_options.py +35 -0
- agenta/client/backend/core/serialization.py +276 -0
- agenta/client/backend/environments/__init__.py +1 -0
- agenta/client/backend/environments/client.py +196 -0
- agenta/client/backend/evaluations/__init__.py +1 -0
- agenta/client/backend/evaluations/client.py +1469 -0
- agenta/client/backend/evaluators/__init__.py +1 -0
- agenta/client/backend/evaluators/client.py +1283 -0
- agenta/client/backend/observability/__init__.py +1 -0
- agenta/client/backend/observability/client.py +1286 -0
- agenta/client/backend/observability_v_1/__init__.py +5 -0
- agenta/client/backend/observability_v_1/client.py +763 -0
- agenta/client/backend/observability_v_1/types/__init__.py +7 -0
- agenta/client/backend/observability_v_1/types/format.py +5 -0
- agenta/client/backend/observability_v_1/types/query_analytics_response.py +7 -0
- agenta/client/backend/observability_v_1/types/query_traces_response.py +11 -0
- agenta/client/backend/scopes/__init__.py +1 -0
- agenta/client/backend/scopes/client.py +114 -0
- agenta/client/backend/testsets/__init__.py +1 -0
- agenta/client/backend/testsets/client.py +1284 -0
- agenta/client/backend/types/__init__.py +154 -26
- agenta/client/backend/types/agenta_node_dto.py +48 -0
- agenta/client/backend/types/agenta_node_dto_nodes_value.py +6 -0
- agenta/client/backend/types/agenta_nodes_response.py +30 -0
- agenta/client/backend/types/agenta_root_dto.py +30 -0
- agenta/client/backend/types/agenta_roots_response.py +30 -0
- agenta/client/backend/types/agenta_tree_dto.py +30 -0
- agenta/client/backend/types/agenta_trees_response.py +30 -0
- agenta/client/backend/types/aggregated_result.py +16 -31
- agenta/client/backend/types/aggregated_result_evaluator_config.py +8 -0
- agenta/client/backend/types/analytics_response.py +24 -0
- agenta/client/backend/types/app.py +17 -30
- agenta/client/backend/types/app_variant_response.py +36 -0
- agenta/client/backend/types/app_variant_revision.py +17 -32
- agenta/client/backend/types/base_output.py +13 -28
- agenta/client/backend/types/body_import_testset.py +15 -31
- agenta/client/backend/types/bucket_dto.py +26 -0
- agenta/client/backend/types/collect_status_response.py +22 -0
- agenta/client/backend/types/config_db.py +16 -31
- agenta/client/backend/types/config_dto.py +32 -0
- agenta/client/backend/types/config_response_model.py +32 -0
- agenta/client/backend/types/correct_answer.py +22 -0
- agenta/client/backend/types/create_app_output.py +13 -28
- agenta/client/backend/types/create_span.py +45 -0
- agenta/client/backend/types/create_trace_response.py +22 -0
- agenta/client/backend/types/docker_env_vars.py +13 -28
- agenta/client/backend/types/environment_output.py +22 -34
- agenta/client/backend/types/environment_output_extended.py +31 -0
- agenta/client/backend/types/environment_revision.py +26 -0
- agenta/client/backend/types/error.py +22 -0
- agenta/client/backend/types/evaluation.py +22 -33
- agenta/client/backend/types/evaluation_scenario.py +18 -33
- agenta/client/backend/types/evaluation_scenario_input.py +16 -31
- agenta/client/backend/types/evaluation_scenario_output.py +17 -30
- agenta/client/backend/types/evaluation_scenario_result.py +14 -29
- agenta/client/backend/types/evaluation_scenario_score_update.py +21 -0
- agenta/client/backend/types/evaluation_status_enum.py +11 -29
- agenta/client/backend/types/evaluation_type.py +3 -21
- agenta/client/backend/types/evaluator.py +20 -31
- agenta/client/backend/types/evaluator_config.py +21 -33
- agenta/client/backend/types/evaluator_mapping_output_interface.py +21 -0
- agenta/client/backend/types/evaluator_output_interface.py +21 -0
- agenta/client/backend/types/exception_dto.py +26 -0
- agenta/client/backend/types/get_config_response.py +23 -0
- agenta/client/backend/types/header_dto.py +22 -0
- agenta/client/backend/types/http_validation_error.py +14 -29
- agenta/client/backend/types/human_evaluation.py +18 -34
- agenta/client/backend/types/human_evaluation_scenario.py +22 -38
- agenta/client/backend/types/human_evaluation_scenario_input.py +13 -28
- agenta/client/backend/types/human_evaluation_scenario_output.py +13 -28
- agenta/client/backend/types/human_evaluation_scenario_update.py +30 -0
- agenta/client/backend/types/human_evaluation_update.py +22 -0
- agenta/client/backend/types/image.py +18 -32
- agenta/client/backend/types/invite_request.py +16 -30
- agenta/client/backend/types/legacy_analytics_response.py +29 -0
- agenta/client/backend/types/legacy_data_point.py +27 -0
- agenta/client/backend/types/lifecycle_dto.py +24 -0
- agenta/client/backend/types/link_dto.py +24 -0
- agenta/client/backend/types/list_api_keys_response.py +24 -0
- agenta/client/backend/types/llm_run_rate_limit.py +13 -28
- agenta/client/backend/types/llm_tokens.py +23 -0
- agenta/client/backend/types/metrics_dto.py +24 -0
- agenta/client/backend/types/new_human_evaluation.py +27 -0
- agenta/client/backend/types/new_testset.py +16 -31
- agenta/client/backend/types/node_dto.py +24 -0
- agenta/client/backend/types/node_type.py +19 -0
- agenta/client/backend/types/o_tel_context_dto.py +22 -0
- agenta/client/backend/types/o_tel_event_dto.py +23 -0
- agenta/client/backend/types/o_tel_extra_dto.py +26 -0
- agenta/client/backend/types/o_tel_link_dto.py +23 -0
- agenta/client/backend/types/o_tel_span_dto.py +37 -0
- agenta/client/backend/types/o_tel_span_kind.py +15 -0
- agenta/client/backend/types/o_tel_spans_response.py +24 -0
- agenta/client/backend/types/o_tel_status_code.py +8 -0
- agenta/client/backend/types/organization.py +22 -35
- agenta/client/backend/types/organization_output.py +13 -28
- agenta/client/backend/types/outputs.py +5 -0
- agenta/client/backend/types/parent_dto.py +21 -0
- agenta/client/backend/types/permission.py +41 -0
- agenta/client/backend/types/projects_response.py +28 -0
- agenta/client/backend/types/provider_key_dto.py +23 -0
- agenta/client/backend/types/provider_kind.py +21 -0
- agenta/client/backend/types/reference_dto.py +23 -0
- agenta/client/backend/types/reference_request_model.py +23 -0
- agenta/client/backend/types/result.py +18 -31
- agenta/client/backend/types/root_dto.py +21 -0
- agenta/client/backend/types/{human_evaluation_scenario_score.py → score.py} +1 -1
- agenta/client/backend/types/secret_dto.py +24 -0
- agenta/client/backend/types/{human_evaluation_scenario_update_score.py → secret_kind.py} +1 -1
- agenta/client/backend/types/secret_response_dto.py +27 -0
- agenta/client/backend/types/simple_evaluation_output.py +13 -28
- agenta/client/backend/types/span.py +39 -49
- agenta/client/backend/types/span_detail.py +44 -0
- agenta/client/backend/types/span_dto.py +54 -0
- agenta/client/backend/types/span_dto_nodes_value.py +9 -0
- agenta/client/backend/types/span_status_code.py +5 -0
- agenta/client/backend/types/span_variant.py +23 -0
- agenta/client/backend/types/status_code.py +5 -0
- agenta/client/backend/types/status_dto.py +23 -0
- agenta/client/backend/types/template.py +14 -29
- agenta/client/backend/types/template_image_info.py +21 -35
- agenta/client/backend/types/test_set_output_response.py +20 -33
- agenta/client/backend/types/test_set_simple_response.py +13 -28
- agenta/client/backend/types/time_dto.py +23 -0
- agenta/client/backend/types/trace_detail.py +44 -0
- agenta/client/backend/types/tree_dto.py +23 -0
- agenta/client/backend/types/tree_type.py +5 -0
- agenta/client/backend/types/update_app_output.py +22 -0
- agenta/client/backend/types/uri.py +13 -28
- agenta/client/backend/types/validation_error.py +13 -28
- agenta/client/backend/types/variant_action.py +14 -29
- agenta/client/backend/types/variant_action_enum.py +1 -19
- agenta/client/backend/types/with_pagination.py +26 -0
- agenta/client/backend/types/workspace_member_response.py +23 -0
- agenta/client/backend/types/workspace_permission.py +25 -0
- agenta/client/backend/types/workspace_response.py +29 -0
- agenta/client/backend/types/workspace_role.py +15 -0
- agenta/client/backend/types/workspace_role_response.py +23 -0
- agenta/client/backend/variants/__init__.py +5 -0
- agenta/client/backend/variants/client.py +2814 -0
- agenta/client/backend/variants/types/__init__.py +7 -0
- agenta/client/backend/variants/types/add_variant_from_base_and_config_response.py +8 -0
- agenta/client/backend/vault/__init__.py +1 -0
- agenta/client/backend/vault/client.py +685 -0
- agenta/client/client.py +1 -1
- agenta/config.py +0 -2
- agenta/config.toml +0 -1
- agenta/docker/docker-assets/Dockerfile.cloud.template +2 -1
- agenta/docker/docker-assets/Dockerfile.template +2 -1
- agenta/docker/docker_utils.py +11 -12
- agenta/sdk/__init__.py +58 -7
- agenta/sdk/agenta_init.py +182 -164
- agenta/sdk/assets.py +95 -0
- agenta/sdk/client.py +56 -0
- agenta/sdk/context/__init__.py +0 -0
- agenta/sdk/context/exporting.py +25 -0
- agenta/sdk/context/routing.py +27 -0
- agenta/sdk/context/tracing.py +28 -0
- agenta/sdk/decorators/__init__.py +0 -0
- agenta/sdk/decorators/routing.py +576 -0
- agenta/sdk/decorators/tracing.py +296 -0
- agenta/sdk/litellm/__init__.py +1 -0
- agenta/sdk/litellm/litellm.py +314 -0
- agenta/sdk/litellm/mockllm.py +27 -0
- agenta/sdk/litellm/mocks/__init__.py +26 -0
- agenta/sdk/managers/__init__.py +6 -0
- agenta/sdk/managers/config.py +208 -0
- agenta/sdk/managers/deployment.py +45 -0
- agenta/sdk/managers/secrets.py +38 -0
- agenta/sdk/managers/shared.py +639 -0
- agenta/sdk/managers/variant.py +182 -0
- agenta/sdk/managers/vault.py +16 -0
- agenta/sdk/middleware/__init__.py +0 -0
- agenta/sdk/middleware/auth.py +180 -0
- agenta/sdk/middleware/cache.py +47 -0
- agenta/sdk/middleware/config.py +255 -0
- agenta/sdk/middleware/cors.py +29 -0
- agenta/sdk/middleware/inline.py +38 -0
- agenta/sdk/middleware/mock.py +33 -0
- agenta/sdk/middleware/otel.py +40 -0
- agenta/sdk/middleware/vault.py +145 -0
- agenta/sdk/router.py +0 -7
- agenta/sdk/tracing/__init__.py +1 -0
- agenta/sdk/tracing/attributes.py +141 -0
- agenta/sdk/tracing/conventions.py +49 -0
- agenta/sdk/tracing/exporters.py +103 -0
- agenta/sdk/tracing/inline.py +1146 -0
- agenta/sdk/tracing/processors.py +121 -0
- agenta/sdk/tracing/spans.py +136 -0
- agenta/sdk/tracing/tracing.py +237 -0
- agenta/sdk/types.py +478 -74
- agenta/sdk/utils/__init__.py +0 -0
- agenta/sdk/utils/constants.py +1 -0
- agenta/sdk/utils/{helper/openai_cost.py → costs.py} +3 -0
- agenta/sdk/utils/exceptions.py +59 -0
- agenta/sdk/utils/globals.py +6 -10
- agenta/sdk/utils/helpers.py +8 -0
- agenta/sdk/utils/logging.py +21 -0
- agenta/sdk/utils/singleton.py +13 -0
- agenta/sdk/utils/timing.py +58 -0
- {agenta-0.12.3.dist-info → agenta-0.32.0a1.dist-info}/METADATA +98 -151
- agenta-0.32.0a1.dist-info/RECORD +263 -0
- {agenta-0.12.3.dist-info → agenta-0.32.0a1.dist-info}/WHEEL +1 -1
- agenta/client/backend/types/add_variant_from_base_and_config_response.py +0 -7
- agenta/client/backend/types/app_variant_output.py +0 -47
- agenta/client/backend/types/app_variant_output_extended.py +0 -50
- agenta/client/backend/types/delete_evaluation.py +0 -36
- agenta/client/backend/types/evaluation_webhook.py +0 -36
- agenta/client/backend/types/feedback.py +0 -40
- agenta/client/backend/types/get_config_reponse.py +0 -39
- agenta/client/backend/types/list_api_keys_output.py +0 -39
- agenta/client/backend/types/trace.py +0 -48
- agenta/sdk/agenta_decorator.py +0 -443
- agenta/sdk/context.py +0 -41
- agenta-0.12.3.dist-info/RECORD +0 -114
- {agenta-0.12.3.dist-info → agenta-0.32.0a1.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
agenta/__init__.py,sha256=A2slx8eFxACWFIcRhm-4WZS1ineUf9cMDgxdd3QhhhQ,2216
|
|
2
|
+
agenta/cli/evaluation_commands.py,sha256=fs6492tprPId9p8eGO02Xy-NCBm2RZNJLZWcUxugwd8,474
|
|
3
|
+
agenta/cli/helper.py,sha256=P97HbNb_qzOyl5CM_MjAqWEBCdgebU6M81G_4UCmF1A,6288
|
|
4
|
+
agenta/cli/main.py,sha256=WJSp-kJ6j0bea64l5QJlnOPpLwTgNcN7Am4X2YZBP1A,7939
|
|
5
|
+
agenta/cli/telemetry.py,sha256=GaFFRsE_NtrcSSJ10r2jhgFs5Sk8gf2C09Ox3gOr3eU,1317
|
|
6
|
+
agenta/cli/variant_commands.py,sha256=HfKRZsajKOXwZD2OyzjSfNtSx1yI01wI1cfqpvoHETI,17400
|
|
7
|
+
agenta/cli/variant_configs.py,sha256=PLiuMKadVzs6Gi2uYaT0pZzyULNHDXaTMDWboqpwWdU,1293
|
|
8
|
+
agenta/client/Readme.md,sha256=K-By3bNRzUIN5VgQ98pKjw4DgCM-JlcxbW0Fsj02P6M,2903
|
|
9
|
+
agenta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
agenta/client/api.py,sha256=r5pwYD8DWppDrV4xaNYwUmwMLjWVNfVzxK_clIboEWg,2434
|
|
11
|
+
agenta/client/api_models.py,sha256=zebfE2-0-SW1SvzyarzmSJMXqyiCLKrX2sHpzoX-RnU,623
|
|
12
|
+
agenta/client/backend/__init__.py,sha256=5QDiyaf-uSCgTUUhGQHfPPPIkaRLImGO1nFQbrplASg,6229
|
|
13
|
+
agenta/client/backend/access_control/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
14
|
+
agenta/client/backend/access_control/client.py,sha256=yu5RrcXizig6zVVNPghrd4K6MHFj26-2hRIPCjS3QnY,5467
|
|
15
|
+
agenta/client/backend/apps/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
16
|
+
agenta/client/backend/apps/client.py,sha256=_Jf5yctdCpX4QCArwai70L8cz7VMJQRpTmZGngj3MUg,54674
|
|
17
|
+
agenta/client/backend/bases/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
18
|
+
agenta/client/backend/bases/client.py,sha256=BZsz5eXaa2voZdJXqgd5J5hPUuYvWwIcPCWyl49w-oY,6028
|
|
19
|
+
agenta/client/backend/client.py,sha256=oxsa_-JKAVE0HryrmBRNjMnHo7vVE8VI8VzJmO8HtCQ,104577
|
|
20
|
+
agenta/client/backend/configs/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
21
|
+
agenta/client/backend/configs/client.py,sha256=_nuh5K5D5SuCOeckXcGv6P4ZtVdTGWQ7JhcoIclmWfY,19267
|
|
22
|
+
agenta/client/backend/containers/__init__.py,sha256=Haw2PwiPhNvM26PLQN57jY0bN-QqPoDG4VA-P_uGL3A,153
|
|
23
|
+
agenta/client/backend/containers/client.py,sha256=10N3reiZmBB8539fnu58zPtaasyMfQcc48UixxWqI34,20457
|
|
24
|
+
agenta/client/backend/containers/types/__init__.py,sha256=b6yQ-p_vsI5cpKh-Qa8xNE-M5nLHjfBvfgD4JIhqEkY,176
|
|
25
|
+
agenta/client/backend/containers/types/container_templates_response.py,sha256=IFmEkCII_FebAt3ENZByzAYXMB1vgQEeIaSPTLSzG5M,189
|
|
26
|
+
agenta/client/backend/core/__init__.py,sha256=SQ85PF84B9MuKnBwHNHWemSGuy-g_515gFYNFhvEE0I,1438
|
|
27
|
+
agenta/client/backend/core/api_error.py,sha256=TtMtCdxXjd7Tasc9c8ooFg124nPrb2MXG-tKOXV4u9I,440
|
|
28
|
+
agenta/client/backend/core/client_wrapper.py,sha256=esOteB9jDmUGJkv6EotT54nPNU42TR_kjF3pPjU6lqY,1817
|
|
29
|
+
agenta/client/backend/core/datetime_utils.py,sha256=BHjt_H3WVslcuPsr6qjJoVif_SsdLvFN0c43ABE5UiQ,1069
|
|
30
|
+
agenta/client/backend/core/file.py,sha256=mUvNH6Wc-k2mSlXCJ9VoYzvgi7NcCkhTzlW2VXxSucg,2710
|
|
31
|
+
agenta/client/backend/core/http_client.py,sha256=e7jy8gDqwvdWiNGoJdY-jX73cOYFiF_p_5at82gAC6Y,21006
|
|
32
|
+
agenta/client/backend/core/jsonable_encoder.py,sha256=SHXw4G4n-f0IPgNkxj_-Fip3kN8NUAI-YrKxdZw8kl0,3662
|
|
33
|
+
agenta/client/backend/core/pydantic_utilities.py,sha256=BZTSULs3wlfRQwTtsEyKlyY6SkHCtf3WxHqfhH9YSG4,12325
|
|
34
|
+
agenta/client/backend/core/query_encoder.py,sha256=8qYl5VPl1jU4cDF0X7oSU_DXjlVWY5ayigFBpNTMGOA,2150
|
|
35
|
+
agenta/client/backend/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
36
|
+
agenta/client/backend/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
37
|
+
agenta/client/backend/core/serialization.py,sha256=1VIoFHrJZZgjx5kxsUnUDbgr2v66GFgMJ_J1mqexBXA,9643
|
|
38
|
+
agenta/client/backend/environments/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
39
|
+
agenta/client/backend/environments/client.py,sha256=AFgo2TwCq1ABPagto5c_3GuCT7YDEr86D82WqgJfC28,6216
|
|
40
|
+
agenta/client/backend/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
|
|
41
|
+
agenta/client/backend/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
42
|
+
agenta/client/backend/evaluations/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
43
|
+
agenta/client/backend/evaluations/client.py,sha256=51MkQv8b1GXrJaoDvf0cJbfAt7v_jbARcCIAY2ax5Ko,46838
|
|
44
|
+
agenta/client/backend/evaluators/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
45
|
+
agenta/client/backend/evaluators/client.py,sha256=ZYj-WMIG7ax3qoDlmVv5Pg1mOzGVuonJkOVqmJ_bUFA,41117
|
|
46
|
+
agenta/client/backend/observability/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
47
|
+
agenta/client/backend/observability/client.py,sha256=mVGRIde53T_9j7kH0fwp2Xk8zzStv6HnVK5Op3HaTXw,39877
|
|
48
|
+
agenta/client/backend/observability_v_1/__init__.py,sha256=wAH4GHiT4W6l9j0IsC6w7wJ2GbRPcj4KsefGxvsGSrI,207
|
|
49
|
+
agenta/client/backend/observability_v_1/client.py,sha256=Q1Kdb_2b8Emo5wLI5gC82naMsPKxXTb0TcdetfhLRlg,23922
|
|
50
|
+
agenta/client/backend/observability_v_1/types/__init__.py,sha256=wnukYpvztLthMEts3z74KMEZiLqa3BkBQHGRXCyfMZk,279
|
|
51
|
+
agenta/client/backend/observability_v_1/types/format.py,sha256=nXmxWCY7ZNLjzGROOBUOnjf1kBtMbv4XSboTooV-Jko,150
|
|
52
|
+
agenta/client/backend/observability_v_1/types/query_analytics_response.py,sha256=avbFvONr1YAv0IImookAPs596633xnMvFscdSTaA8uk,291
|
|
53
|
+
agenta/client/backend/observability_v_1/types/query_traces_response.py,sha256=0-4nNfKLnciOR7E1859HupWqcwunJe53OLgXRlxxeb8,452
|
|
54
|
+
agenta/client/backend/scopes/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
55
|
+
agenta/client/backend/scopes/client.py,sha256=ZMHXj0GRS-xNOLAbnjo4SNpHjOvHa-xZn8-caC508Qk,3617
|
|
56
|
+
agenta/client/backend/testsets/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
57
|
+
agenta/client/backend/testsets/client.py,sha256=sBRmbWNk9aBM87X0ZYI_JWVy-RzQyRhIXL8AWbnw-a0,39665
|
|
58
|
+
agenta/client/backend/types/__init__.py,sha256=Ea5Pxoyp4EcNmiRQ5jxrDHmkS-lyuzHBqyeaftDqhc0,8226
|
|
59
|
+
agenta/client/backend/types/agenta_node_dto.py,sha256=DLZltD_ueVOfdiSZ1u2i3mu1C3kshxhcggQFFfybBdY,1747
|
|
60
|
+
agenta/client/backend/types/agenta_node_dto_nodes_value.py,sha256=ifG7dBYLphFoCgQ70ivvDXkTSlxX8w5x_9S-Glh8FlI,180
|
|
61
|
+
agenta/client/backend/types/agenta_nodes_response.py,sha256=1EoxaqN3ioELS_9rg5Bo6Y0PqqNdX2YNRCIsdO4Q-aQ,902
|
|
62
|
+
agenta/client/backend/types/agenta_root_dto.py,sha256=rlEe4jipR2SvjAy9a24QZiPoTWGxH1mFXuZeO9k5Bi4,876
|
|
63
|
+
agenta/client/backend/types/agenta_roots_response.py,sha256=l-eC5Xfkhh-OAluRFltoz9SFmRMcZOI8EfuXxgHH-4U,902
|
|
64
|
+
agenta/client/backend/types/agenta_tree_dto.py,sha256=yDGVUqUli4SBosfICic46bDEx-DZt4H2RrSlZSiEU7o,876
|
|
65
|
+
agenta/client/backend/types/agenta_trees_response.py,sha256=oyjTlpEn4StDB1Wo1fCHSh0_IU7E_00XVn_u5qEXqTw,902
|
|
66
|
+
agenta/client/backend/types/aggregated_result.py,sha256=4WPjBzQSyPW-Q91XuBbtsicHtupzAFgnz065jpYVKi0,747
|
|
67
|
+
agenta/client/backend/types/aggregated_result_evaluator_config.py,sha256=GzU358rxyXbiDvpf9i6LqSTaHuirZV8XoodAdPKi-uY,243
|
|
68
|
+
agenta/client/backend/types/analytics_response.py,sha256=BDk2qyUHpiyE_EL32H9auokw57_ZmYy31cUztwJeoOw,694
|
|
69
|
+
agenta/client/backend/types/app.py,sha256=uBdmLWD9UAcOc6GZogVZp26IvAmXM20Uj0KCuGbmBP8,650
|
|
70
|
+
agenta/client/backend/types/app_variant_response.py,sha256=lFrl63ZTceAjMvLYQyIruRUF4ycQ4bB-OXuJtPqqQ6E,1094
|
|
71
|
+
agenta/client/backend/types/app_variant_revision.py,sha256=PlBmaus97LdGhUHcIVdNEvfsYvsKnmtoupjAvclecRY,681
|
|
72
|
+
agenta/client/backend/types/base_output.py,sha256=_cYuHdi6THNGEeDmvTb1yo82JlvV9-aCVLHcl4Q-UCY,597
|
|
73
|
+
agenta/client/backend/types/body_import_testset.py,sha256=7WmxuZe2Lt4CgdRhue6fHjzicWDfYFzN_6C3xkhjvXk,656
|
|
74
|
+
agenta/client/backend/types/bucket_dto.py,sha256=8uW9oIn4C0ke9PyiQdDT0y50s-jEAhGHsDlcKwAkDjc,705
|
|
75
|
+
agenta/client/backend/types/collect_status_response.py,sha256=Rk7Llfh2lI7U1YHRP4CffFaUKiXCXbOv7us88cMTchM,605
|
|
76
|
+
agenta/client/backend/types/config_db.py,sha256=nCM_3WKTCP3zko26wys5wTSn2cun9OYclwMp_vY5qjE,666
|
|
77
|
+
agenta/client/backend/types/config_dto.py,sha256=x13NXqJd46LDN5w5ejj93HkeZay_nYWvH-7xq3yVM90,1207
|
|
78
|
+
agenta/client/backend/types/config_response_model.py,sha256=v14K15XdzX9dSYb3I6Q0BMneGaKKbrmXsJTk6xAkr20,1217
|
|
79
|
+
agenta/client/backend/types/correct_answer.py,sha256=khEHspf9nszpzhswc7rSruCrcmvVdHFm7ti8JRdpXyI,592
|
|
80
|
+
agenta/client/backend/types/create_app_output.py,sha256=0_avs1u3pIU14P5ut1WOUrravDwpg2GkSj8kYsAMK9Y,600
|
|
81
|
+
agenta/client/backend/types/create_span.py,sha256=ZMWlTli2MNowD66D1O2e5ZKOE0BGD_-J36_A_a3rsxE,1609
|
|
82
|
+
agenta/client/backend/types/create_trace_response.py,sha256=Pr1NM9nLHiPVzCP8m7VQ1NIb92fOhJTmMlEUK6FrykI,643
|
|
83
|
+
agenta/client/backend/types/docker_env_vars.py,sha256=td2vhkHyYCwIC_TjlUu7hDuIXsfSJH2L7J_wGaNvw_c,600
|
|
84
|
+
agenta/client/backend/types/environment_output.py,sha256=L0KSiTXy4tFrrplV-YnyrsBzRB25E8QSEPTQC9BWBd0,933
|
|
85
|
+
agenta/client/backend/types/environment_output_extended.py,sha256=Sr5cVBZAKekddwQPOIsMmt9diaPTsOWpyzZzOFOFxLs,1043
|
|
86
|
+
agenta/client/backend/types/environment_revision.py,sha256=fZPYZCnXAiRZSp9trp4huruCUcaanyrXnC7WF6-GhXg,748
|
|
87
|
+
agenta/client/backend/types/error.py,sha256=9efIET--nIU5El4GNEdYvkhtqIF5LtgxniKg0SookgE,617
|
|
88
|
+
agenta/client/backend/types/evaluation.py,sha256=BtOUgIkgU-FEzVNbY2IJl0ZSVhwiIe7630hLl3f9k18,1218
|
|
89
|
+
agenta/client/backend/types/evaluation_scenario.py,sha256=AAEZS19leBYMF5ZTlXFCD5ZqAIpu1iHnN7V5KVXtKAA,1168
|
|
90
|
+
agenta/client/backend/types/evaluation_scenario_input.py,sha256=KQYQIL6RXa2C2K6JNwZXXlW9nFYw-xqCJqY5qlp8mco,648
|
|
91
|
+
agenta/client/backend/types/evaluation_scenario_output.py,sha256=-XoVgjhJryWb3XrFuEQ0s0O3TV3BsHQltehYUnxThzA,704
|
|
92
|
+
agenta/client/backend/types/evaluation_scenario_result.py,sha256=wOs3-2ucAL6rizTzhHfzIPiXIWhFX9hQn44sMgqWUv8,647
|
|
93
|
+
agenta/client/backend/types/evaluation_scenario_score_update.py,sha256=xkyk7DKj99WkuWcOTOmTZ67G_GIaBVTrGUuy7Erfjec,597
|
|
94
|
+
agenta/client/backend/types/evaluation_status_enum.py,sha256=U0yabhF9EZqb0MU13MhLsuOa2wQmUQHGWDS0qawwvfE,370
|
|
95
|
+
agenta/client/backend/types/evaluation_type.py,sha256=FaI9rLp1QBUl5EE9xKtlxFhCDdcKGOx8NPcAWn3ct5o,186
|
|
96
|
+
agenta/client/backend/types/evaluator.py,sha256=Ye9m3jEg65hKsJlqWVDxNnlSNXCJAzxFX-KG7qGCPTM,843
|
|
97
|
+
agenta/client/backend/types/evaluator_config.py,sha256=3CIFKMdXJbxixiojihQSCUenr_6UlXG_0IgoCCEvdeQ,780
|
|
98
|
+
agenta/client/backend/types/evaluator_mapping_output_interface.py,sha256=KiQzlq7UCks_32TcMeF9nqYQUJK8jpxIL7HYi5ar-7s,641
|
|
99
|
+
agenta/client/backend/types/evaluator_output_interface.py,sha256=r4aU7-fUBMvdXzbJIeQ9aoFiIhH58Ofmkn_BKpTMJko,634
|
|
100
|
+
agenta/client/backend/types/exception_dto.py,sha256=Y7eJ6ZOukbq30ZB2Vljr72YbezNsN9FGrUIJBWg4TYo,797
|
|
101
|
+
agenta/client/backend/types/get_config_response.py,sha256=uNaeYEq3VCNm3uZ1mNnxBhDzrNz0LYjuz984ASEk5Fk,676
|
|
102
|
+
agenta/client/backend/types/header_dto.py,sha256=DMxWESxcVhNFPxm2M-jPSHrO5VQdO2Jg24LovfZXHWg,643
|
|
103
|
+
agenta/client/backend/types/http_validation_error.py,sha256=bMxjckCqPguIznV-z-517GS-d2EXC9wJEg0XCcQfq_E,681
|
|
104
|
+
agenta/client/backend/types/human_evaluation.py,sha256=jUNYGW6zp4UWB-SOY1oOB6FX_HtJ32cKRjUlXQzvllk,883
|
|
105
|
+
agenta/client/backend/types/human_evaluation_scenario.py,sha256=GZFGdki4Rlfly7RUhNrWpS2x8N0fHelHdk55YtxY3l0,1127
|
|
106
|
+
agenta/client/backend/types/human_evaluation_scenario_input.py,sha256=4iT1sH_hM6gOFmVicewPONFOvz_cW-Dh6HoNU-tCC0E,620
|
|
107
|
+
agenta/client/backend/types/human_evaluation_scenario_output.py,sha256=yVEFImNXK3qSy83AL3X5qypUOgJ__fumLj1bNgXgPXk,624
|
|
108
|
+
agenta/client/backend/types/human_evaluation_scenario_update.py,sha256=eh33QTkJNZ5tdA-zPT5jeP_RAzhhtweNiduIscdB8bo,1122
|
|
109
|
+
agenta/client/backend/types/human_evaluation_update.py,sha256=PDtYJDYLEfYRaJuG6eqavgXpNhE-LDK81i9qNo7QD7s,686
|
|
110
|
+
agenta/client/backend/types/image.py,sha256=Q8mnZynlIHHwlu3XRarjJAzgfadl87qPJ-fqH2WqQBw,722
|
|
111
|
+
agenta/client/backend/types/invite_request.py,sha256=ZYcO4_O5Jjnz6uDwcFUoQ1Bn-A0F9t2S3rQTx9arwJc,607
|
|
112
|
+
agenta/client/backend/types/legacy_analytics_response.py,sha256=-dyG9jk3OwdsGiNere46p9n7BWst1orhBR_BWVxaY6g,814
|
|
113
|
+
agenta/client/backend/types/legacy_data_point.py,sha256=jsFKtbBN_HJuxEjgLU6VqWHG3eWW7eIrPr0FAXA1bdY,718
|
|
114
|
+
agenta/client/backend/types/lifecycle_dto.py,sha256=jgOgDkq5m2zQ2S2d4USivPi-sZ2J0eaadwYv2LnghYU,742
|
|
115
|
+
agenta/client/backend/types/link_dto.py,sha256=pcL3P3143CDTfpaOjq2prQNuO_AWsP73HW74MOmaD8c,677
|
|
116
|
+
agenta/client/backend/types/list_api_keys_response.py,sha256=av8nz-yhcOYiLZEfnJDxr37W7r1C8VnLLoeSgJwQSY0,701
|
|
117
|
+
agenta/client/backend/types/llm_run_rate_limit.py,sha256=XiPGznCpdS-lPDiswj6pX5aIxhMuOfGCOda7IPcB0q8,659
|
|
118
|
+
agenta/client/backend/types/llm_tokens.py,sha256=-DLWHVU6spcBAkMjRQaI7QH3D3h6w3iOeHK8RXZcuqI,704
|
|
119
|
+
agenta/client/backend/types/metrics_dto.py,sha256=2J58QUiXllp6rkgHMYfk_jXg9gddqgzg7F0OKByj4FI,724
|
|
120
|
+
agenta/client/backend/types/new_human_evaluation.py,sha256=Rp_cu_ApObG7QBT-Hkvwer604gO6P3QnVwpIfLv0Q38,764
|
|
121
|
+
agenta/client/backend/types/new_testset.py,sha256=S8ENb_fu5CeyxTvjN5ojXuVoaauNKgfwE738svFhWNY,647
|
|
122
|
+
agenta/client/backend/types/node_dto.py,sha256=-4oC4IPdsndGEaRK2woQpcuZ33GdqsM-i4MGzh90I7w,659
|
|
123
|
+
agenta/client/backend/types/node_type.py,sha256=ofQdliqdM9dBYu8_A8Uc3ALco6UkJYvnD69bePqCA2o,330
|
|
124
|
+
agenta/client/backend/types/o_tel_context_dto.py,sha256=qrowfPwbE-4ObOVy63gh38nH4HllY3dnEwm0hl04PSw,600
|
|
125
|
+
agenta/client/backend/types/o_tel_event_dto.py,sha256=jUzuHg9_FhqIJwhR6g99a4owWc3lBGx3fJhsdTIrfQ8,682
|
|
126
|
+
agenta/client/backend/types/o_tel_extra_dto.py,sha256=l8EaJ76U3DmRK1Vn16Ndr-Jy76fXrbna8RuCWeuQJ6E,891
|
|
127
|
+
agenta/client/backend/types/o_tel_link_dto.py,sha256=wvSwljJaEiQ7TGleQL7sQX4kK0H8LKC8iAD5VMfOPbg,722
|
|
128
|
+
agenta/client/backend/types/o_tel_span_dto.py,sha256=VrtAzlnfu1TxIiIcNAA7vPFxMHOciDS9RN_wppBbqU0,1306
|
|
129
|
+
agenta/client/backend/types/o_tel_span_kind.py,sha256=ePW3OWDXA1CaF0tJc06hCSN_FeQC9ULkO8qDjItu71U,333
|
|
130
|
+
agenta/client/backend/types/o_tel_spans_response.py,sha256=RcSDsp98H2qz53DPAZn7b2KrUZY85Kvda5cdRtGqnt8,700
|
|
131
|
+
agenta/client/backend/types/o_tel_status_code.py,sha256=RytIFSDMwvg3oV6BbBxE-8H5zQLwPlx2M_mw7FN8-ts,209
|
|
132
|
+
agenta/client/backend/types/organization.py,sha256=U8xVumZUcp5GnrRNJIHmaqibnxsVd9Hh6Oi0QqREuvI,900
|
|
133
|
+
agenta/client/backend/types/organization_output.py,sha256=dXkUHfNfp_ho220_sb7EX3YmE2AqYc4rlsYngV3ELBI,595
|
|
134
|
+
agenta/client/backend/types/outputs.py,sha256=iSON-p8Feeq3laC5PK3BFe20GqLGSbYU5eI8viyvw-Y,168
|
|
135
|
+
agenta/client/backend/types/parent_dto.py,sha256=eh1bH2TJe9NLS2MdKZzIFvnwfKVBU_CNNPUkq1k2HnI,572
|
|
136
|
+
agenta/client/backend/types/permission.py,sha256=ycictJkklnlUfEycMRTXXaXzXtoECNkfeaxfquuHqIw,1127
|
|
137
|
+
agenta/client/backend/types/projects_response.py,sha256=yQUrCf9vfw8zje1DaYj2p64AAYb2OcRPF3lmVTmqX98,888
|
|
138
|
+
agenta/client/backend/types/provider_key_dto.py,sha256=WkvgA8qv2ceLyLyyGSv9AFewem5fN6rB4Jmw9Grmpco,645
|
|
139
|
+
agenta/client/backend/types/provider_kind.py,sha256=pacJwolEcUxP8LXB6jhHzojac1yAcXS99PfYkpizBvQ,395
|
|
140
|
+
agenta/client/backend/types/reference_dto.py,sha256=VNLakAy13glLgEPIXH9o_3vcPflPkQJdo0o113lPURc,678
|
|
141
|
+
agenta/client/backend/types/reference_request_model.py,sha256=nhf4VUAfAJ-vf9fbOhcTrxk6uuqMFSoy0NhChY9Y0VQ,687
|
|
142
|
+
agenta/client/backend/types/result.py,sha256=6qD2kzmdzu8q4ywLtAyWLQEDHw-Cu5xN5GLCV-FI7_Y,700
|
|
143
|
+
agenta/client/backend/types/root_dto.py,sha256=F9OYWFLSCKSR-4z8BOV-eGmNkraVakxNPjsuwCUxYuY,570
|
|
144
|
+
agenta/client/backend/types/score.py,sha256=OAur_nJtRQmpboZfzFi2l1-zmNxFfETcl13C7OAvpMw,111
|
|
145
|
+
agenta/client/backend/types/secret_dto.py,sha256=X3E0zfATI_Lb5Hov8zl2RS5g9SH5qzX2mf2UyvXbpwg,704
|
|
146
|
+
agenta/client/backend/types/secret_kind.py,sha256=FfxqfDrPrHFLpEVDwfDu4YEiT6xOXddn2e1omGdEPMM,124
|
|
147
|
+
agenta/client/backend/types/secret_response_dto.py,sha256=nWUOloKLzujwG_FnOs3qVgwcHjdsiAcF-fqnhjjMOhk,808
|
|
148
|
+
agenta/client/backend/types/simple_evaluation_output.py,sha256=XBm4IVY28brTIYrRQVUK7tFmxUUnqL6nKgVW5_E9PbM,731
|
|
149
|
+
agenta/client/backend/types/span.py,sha256=z3VDnH3vN-NWyP_QLtuJ16N8JVcHt0RUm5ziQ32R1G0,1278
|
|
150
|
+
agenta/client/backend/types/span_detail.py,sha256=cHedPJi4rBouIkQmjfMBoOx9W7TP9t09wlOoqgvIEWs,1410
|
|
151
|
+
agenta/client/backend/types/span_dto.py,sha256=EcGDT_hhCIXa0NEUucGi-TZLBWvwIyp9AKvA-fQTzOU,1863
|
|
152
|
+
agenta/client/backend/types/span_dto_nodes_value.py,sha256=R62GF6K9mOkUe_4EuLrmvNFg7Fn6eOIsWf4-0orgqa8,256
|
|
153
|
+
agenta/client/backend/types/span_status_code.py,sha256=h1D60dDCfmCI10d79QXPbgpYa4Q3n6LhEsCj9dBaxpU,162
|
|
154
|
+
agenta/client/backend/types/span_variant.py,sha256=MxGbLEYlkTge7mJcvwhhZDXdHUOOH436DEoZ9To_TAk,694
|
|
155
|
+
agenta/client/backend/types/status_code.py,sha256=rcpuLXRoWh08O4jxILr5yXV_mKWD896YCja-M0o8fHs,158
|
|
156
|
+
agenta/client/backend/types/status_dto.py,sha256=toKLiaY2FOWscyxkNIEDvjR0PDuZ4p_M92BDC-oeXE8,658
|
|
157
|
+
agenta/client/backend/types/template.py,sha256=O-2LZEElxLj4LbslKqFY8EzlkCzFSwfYMXkHcfh5XM4,651
|
|
158
|
+
agenta/client/backend/types/template_image_info.py,sha256=Bodh11Vi35CNGMmtQgLMjTi8rcUB5oNERcVwHnu4V6c,860
|
|
159
|
+
agenta/client/backend/types/test_set_output_response.py,sha256=RNOj6QtQww1pXgdpWUQTV_1Rozs9eUvNQxag_W4HmWg,767
|
|
160
|
+
agenta/client/backend/types/test_set_simple_response.py,sha256=dNftvPtUnNiGJKP9VzTFnjh3ffKxPocAG4sd45ZbHkg,618
|
|
161
|
+
agenta/client/backend/types/time_dto.py,sha256=OIR33tTFvTo2xSl5MQun4ZjPPPo_7h_Xc9RuKxMLWok,624
|
|
162
|
+
agenta/client/backend/types/trace_detail.py,sha256=jGDWzpGi4bJXLs3BXIJGksUGZm6RsqgXi0Q8nvwTtoY,1413
|
|
163
|
+
agenta/client/backend/types/tree_dto.py,sha256=24o0OHCXSFwvdk59LvL4CZY1ULn600GJiUZ3lVfWR6w,645
|
|
164
|
+
agenta/client/backend/types/tree_type.py,sha256=_maP5H8vwQZ9Ps7dWbuCVg8IgBuVUOMKItvZwPUZitI,120
|
|
165
|
+
agenta/client/backend/types/update_app_output.py,sha256=VOZS9MM_eNY2tVD7cnjiP-tUodAbuaRZed7KTONi1-E,600
|
|
166
|
+
agenta/client/backend/types/uri.py,sha256=tiY_sNZOWfG2INOhsthGx9QMnN_5Ibrqi68AkPHyDvw,567
|
|
167
|
+
agenta/client/backend/types/validation_error.py,sha256=nNDCxS4lCvY-79Yfwcnth5a1RXm51EZ_tMCbxnmzbAQ,700
|
|
168
|
+
agenta/client/backend/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
169
|
+
agenta/client/backend/types/variant_action.py,sha256=m3SWsIZF9rPfFSh3ypDA5vawKiTHwI_7_SfhyQO3OoU,645
|
|
170
|
+
agenta/client/backend/types/variant_action_enum.py,sha256=KZzhy-BKA9m8zwZlmoESywDQIn-VGyI2qCRr9-tqaks,158
|
|
171
|
+
agenta/client/backend/types/with_pagination.py,sha256=NseT9aXCB-cqkDDjlxEkzb1cYqbsDQEaO6tMitToR0g,798
|
|
172
|
+
agenta/client/backend/types/workspace_member_response.py,sha256=-iF-xitcARF6FqGkQKojf06O7GU2oDRbvI0mpu2Clyk,728
|
|
173
|
+
agenta/client/backend/types/workspace_permission.py,sha256=f-e3FUDOIyTmORW2P-K38WOJy3r1g5sZVBl6VUHAt74,791
|
|
174
|
+
agenta/client/backend/types/workspace_response.py,sha256=n1884dwY4C9Gm-JCyprnLfOxAVg4j9SsXL7hQdwsUl8,924
|
|
175
|
+
agenta/client/backend/types/workspace_role.py,sha256=k-ltfq7aAWGg85tTPIf8HpFMMf4gu02_X8R2fFPmB7U,286
|
|
176
|
+
agenta/client/backend/types/workspace_role_response.py,sha256=6hlRcsMmpf6Q0ejLzRKJiZo_9rygazcbJfpPq2jQZVw,693
|
|
177
|
+
agenta/client/backend/variants/__init__.py,sha256=BMR4SvsrqXC9FU8nPVzY8M9xGrBEhEGrmbgvy3iM1aE,171
|
|
178
|
+
agenta/client/backend/variants/client.py,sha256=qSPvtGxaYD69DAwQxgMc_fHhLjlMnx2kYNvaWFPUe50,92699
|
|
179
|
+
agenta/client/backend/variants/types/__init__.py,sha256=TrRUAyPsJ1bKg2gfW0d_S1rEu6eaYnHmr2g_URTuwPU,216
|
|
180
|
+
agenta/client/backend/variants/types/add_variant_from_base_and_config_response.py,sha256=nbcakmo3eZpWmyX_DhS6F4jyhfV2t5zN-zOgDtM2rKQ,247
|
|
181
|
+
agenta/client/backend/vault/__init__.py,sha256=9mUnTDeA1TxYvkj1l01A1prqsJV0ERRY2tzkY1fA4MQ,64
|
|
182
|
+
agenta/client/backend/vault/client.py,sha256=_RTYhUUN1GoBWn3sgsjCAgHUPyWK26iuc0Ckvix0hms,21916
|
|
183
|
+
agenta/client/client.py,sha256=4knrINpRsKDHn--_IhFTZY4jjZNxDNxiCiVbRIads_0,19622
|
|
184
|
+
agenta/client/exceptions.py,sha256=cxLjjKvZKlUgBxt4Vn9J_SsezJPPNHvrZxnoq-D6zmw,94
|
|
185
|
+
agenta/config.py,sha256=0VrTqduB4g8Mt_Ll7ffFcEjKF5qjTUIxmUtTPW2ygWw,653
|
|
186
|
+
agenta/config.toml,sha256=sIORbhnyct2R9lJrquxhNL4pHul3O0R7iaipCoja5MY,193
|
|
187
|
+
agenta/docker/docker-assets/Dockerfile.cloud.template,sha256=_b3mLMgGXSFABn5VSlio29cl4guYAJc4UkSdy5nAUmg,386
|
|
188
|
+
agenta/docker/docker-assets/Dockerfile.template,sha256=aVA_okx0xXalcTvdQGhSfzSjNpQZVoLJCGYA39-2Nwk,280
|
|
189
|
+
agenta/docker/docker-assets/README.md,sha256=XHxwh2ks_ozrtAU7SLbL3J14SB2holG6buoTxwmMiZM,102
|
|
190
|
+
agenta/docker/docker-assets/entrypoint.sh,sha256=29XK8VQjQsx4hN2j-4JDy-6kQb5y4LCqZEa7PD4eqCQ,74
|
|
191
|
+
agenta/docker/docker-assets/lambda_function.py,sha256=h4UZSSfqwpfsCgERv6frqwm_4JrYu9rLz3I-LxCfeEg,83
|
|
192
|
+
agenta/docker/docker-assets/main.py,sha256=7MI-21n81U7N7A0GxebNi0cmGWtJKcR2sPB6FcH2QfA,251
|
|
193
|
+
agenta/docker/docker_utils.py,sha256=kO1q2_IR0fEAo4M-2Pt_v-zC7GxxnkLogjKFhU869Ps,3555
|
|
194
|
+
agenta/sdk/__init__.py,sha256=Kx86cuRBKOvl8VecWtDV75elDLz5teQ5qkh_CQIPz6g,2022
|
|
195
|
+
agenta/sdk/agenta_init.py,sha256=OZf-pjFyr71hfgcZC7S323t9PJLpNb-qYXOvVRmRlpA,7961
|
|
196
|
+
agenta/sdk/assets.py,sha256=co49Y8T8WWINk2p7ddQPzB39AuwtVfrsyE_AnR1n5TQ,3062
|
|
197
|
+
agenta/sdk/client.py,sha256=trKyBOYFZRk0v5Eptxvh87yPf50Y9CqY6Qgv4Fy-VH4,2142
|
|
198
|
+
agenta/sdk/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
|
+
agenta/sdk/context/exporting.py,sha256=16X8fgMhl58gehSlqANX97FiKxx4TkGiG4d2B0-7ZX0,516
|
|
200
|
+
agenta/sdk/context/routing.py,sha256=FEsjw8EttI1SMyUo96ptcUsvHJnhoKwdr1szlkxxJNU,598
|
|
201
|
+
agenta/sdk/context/tracing.py,sha256=zp7T_wLVkR-V1c0k7UAN69rwH9VV7MhoZD_IdNu-_RE,649
|
|
202
|
+
agenta/sdk/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
203
|
+
agenta/sdk/decorators/routing.py,sha256=yaSunGmK1i6QBxBkvjdA1fNff38kiDzkuMVlnwVsdRE,20325
|
|
204
|
+
agenta/sdk/decorators/tracing.py,sha256=n5tsbZ2z1G7aIPQEJjvsuVGxbNSstdf4fXUx9bOASEY,8705
|
|
205
|
+
agenta/sdk/litellm/__init__.py,sha256=Bpz1gfHQc0MN1yolWcjifLWznv6GjHggvRGQSpxpihM,37
|
|
206
|
+
agenta/sdk/litellm/litellm.py,sha256=Ke0It-jA1z0KQ2770gIlWIEgramZGmt1k0GjmpEnFV4,8793
|
|
207
|
+
agenta/sdk/litellm/mockllm.py,sha256=8PcORVRqyLLsXAbYy28-6bxuVkBEW4ehfeWl7GEK9P0,661
|
|
208
|
+
agenta/sdk/litellm/mocks/__init__.py,sha256=8wknx4kXyr8ESXrNuECPT8FTeO6qG80c7alXcCaVeK4,446
|
|
209
|
+
agenta/sdk/managers/__init__.py,sha256=SN-LRwG0pRRDV3u2Q4JiiSTigN3-mYpzGNM35RzT4mc,238
|
|
210
|
+
agenta/sdk/managers/config.py,sha256=8-TJn56SssNjfxCY7NhDwqL4in5gtPeMrsvyEf-W_u4,7421
|
|
211
|
+
agenta/sdk/managers/deployment.py,sha256=SEokjZeh6n7HRKZ92Y0WncdG49hIFx-Z3B3HAl2kmUg,1174
|
|
212
|
+
agenta/sdk/managers/secrets.py,sha256=HAXswBOTbF_LydoNGnQgHr-KVqdFUOvLujUg6S_5taM,878
|
|
213
|
+
agenta/sdk/managers/shared.py,sha256=e53jckQq5PIMpjdxADOonUj7o8aGfzmSvdeH5f43rGs,21497
|
|
214
|
+
agenta/sdk/managers/variant.py,sha256=A5ga3mq3b0weUTXa9HO72MGaspthGcu1uK9K5OnP738,4172
|
|
215
|
+
agenta/sdk/managers/vault.py,sha256=054ce9X_xKa2M4NtQWz-GugO6q_pYVWCP3IxbAJJcRw,337
|
|
216
|
+
agenta/sdk/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
|
+
agenta/sdk/middleware/auth.py,sha256=SoVnzdm5ygP03bQgXDd86aTvIdeTfr4uIoeJsPxN7No,5491
|
|
218
|
+
agenta/sdk/middleware/cache.py,sha256=-_e3_6f4cPfpuUpGRK_ZQvUx_54ez68db4SnBwfuESk,1078
|
|
219
|
+
agenta/sdk/middleware/config.py,sha256=hOIOH0aZtSPbFWAphrpe3_Bx8UMUjLT--SilWdRG_6g,7308
|
|
220
|
+
agenta/sdk/middleware/cors.py,sha256=q3r7lGkrIdMcT_vuhsburMcjG7pyl7w0ycxrIrGJ2e8,921
|
|
221
|
+
agenta/sdk/middleware/inline.py,sha256=1bNBEoen9NRF2O3ZAP7z-izaEFUI1hBT22xLPIvof3A,937
|
|
222
|
+
agenta/sdk/middleware/mock.py,sha256=G028gYDMzaHtjULl2yU-zqXrEueMNC9JYmnIqRmjtYM,794
|
|
223
|
+
agenta/sdk/middleware/otel.py,sha256=HB-JYAHejZHHlPuHtp12jIpJ6E7k4CdnMdOhyhO77tU,1030
|
|
224
|
+
agenta/sdk/middleware/vault.py,sha256=Hyz9Zuq9fm_lvm-z5Ai8-PZectXMuIyaytAlpVOpqDU,4312
|
|
225
|
+
agenta/sdk/router.py,sha256=mOguvtOwl2wmyAgOuWTsf98pQwpNiUILKIo67W_hR3A,119
|
|
226
|
+
agenta/sdk/tracing/__init__.py,sha256=rQNe5-zT5Kt7_CDhq-lnUIi1EYTBVzVf_MbfcIxVD98,41
|
|
227
|
+
agenta/sdk/tracing/attributes.py,sha256=zh8JQZSeYCLBeIRSopKJx6QQ-WEgw08Cr64DS_WOcT8,3833
|
|
228
|
+
agenta/sdk/tracing/conventions.py,sha256=JBtznBXZ3aRkGKkLl7cPwdMNh3w1G-H2Ta2YrAxbr38,950
|
|
229
|
+
agenta/sdk/tracing/exporters.py,sha256=5njI08ezWp2mUXL5mPZFU8qwM9E3RYyQlGvY5iHvEKo,2688
|
|
230
|
+
agenta/sdk/tracing/inline.py,sha256=x9volUnQItmbc19aA0_cmFy4VCbdgvXviVhQ_nhEv4o,31284
|
|
231
|
+
agenta/sdk/tracing/processors.py,sha256=d7MvJ_DRAP0RAlp8V8XrrY-m8pJ03nLxKoq15RnjedA,3334
|
|
232
|
+
agenta/sdk/tracing/spans.py,sha256=nqUOjjirBxB8Eacv8Qj4Ra_6rknGi3lbJdNyKmk5ODQ,3707
|
|
233
|
+
agenta/sdk/tracing/tracing.py,sha256=iZCIggUkR5f2zVcq0o7T8-to7pcFO349gUEBYXnBMzg,6888
|
|
234
|
+
agenta/sdk/types.py,sha256=KhYwB0A58f8ldKufExSgwxvXSRIhSgK6XIODKzVF71c,19014
|
|
235
|
+
agenta/sdk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
|
+
agenta/sdk/utils/constants.py,sha256=zW3R4rjXOo2L5lz6q84l_zYuOM9u4mpPRHw_B1Dr_hI,67
|
|
237
|
+
agenta/sdk/utils/costs.py,sha256=i8C7ud__pThLS55XkN4YW8czXtGeXr2mx7jjcOFeiXg,5955
|
|
238
|
+
agenta/sdk/utils/exceptions.py,sha256=8FQP05ecHLpq6zSj3MbfdNp9SqP0a7iC_dA5uAe0vkE,1455
|
|
239
|
+
agenta/sdk/utils/globals.py,sha256=9ixKS8aI6ZWgsjT8WngvTg4dsnP2cKErNJngHxzdK9U,256
|
|
240
|
+
agenta/sdk/utils/helpers.py,sha256=utrxDoELpR6QgFgHCEAWrWW4TYWXA10q72Gs5R78Ens,181
|
|
241
|
+
agenta/sdk/utils/logging.py,sha256=eFzEFuYpggfIhEKv09JZRqcDzkmZ482a_E2G-X0FK7Y,473
|
|
242
|
+
agenta/sdk/utils/preinit.py,sha256=YlJL7RLfel0R7DFp-jK7OV-z4ZIQJM0oupYlk7g8b5o,1278
|
|
243
|
+
agenta/sdk/utils/singleton.py,sha256=17Ph7LGnnV8HkPjImruKita2ni03Ari5jr0jqm__4sc,312
|
|
244
|
+
agenta/sdk/utils/timing.py,sha256=rmBPSBuUnIu-epocUCVk0KcM2r36HuDoxkFqOZgfPhc,1507
|
|
245
|
+
agenta/templates/compose_email/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
|
|
246
|
+
agenta/templates/compose_email/app.py,sha256=SG8QnBkC49MtvWa2z5_YQ2d8wxZxhO_hWs15j3CsWvc,2384
|
|
247
|
+
agenta/templates/compose_email/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
|
|
248
|
+
agenta/templates/compose_email/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
|
|
249
|
+
agenta/templates/compose_email/template.toml,sha256=H0y1i4t-gHgc-dbiTWcf3QiMAOU92MgkY_V9x3Tob-E,47
|
|
250
|
+
agenta/templates/extract_data_to_json/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
|
|
251
|
+
agenta/templates/extract_data_to_json/app.py,sha256=xNm9Gs2LzLujm1ox-T1Cn0JkU2tmYPqhwuAR9HnHa9Y,1320
|
|
252
|
+
agenta/templates/extract_data_to_json/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
|
|
253
|
+
agenta/templates/extract_data_to_json/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
|
|
254
|
+
agenta/templates/extract_data_to_json/template.toml,sha256=5TpnTRmvHbIzANevDCCHc8AOJXL431TN2sBor6tosUY,60
|
|
255
|
+
agenta/templates/simple_prompt/README.md,sha256=ss7vZPpI1Hg0VmYtFliwq_r5LnqbCy_S5OQDXg8UoIA,308
|
|
256
|
+
agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR9KdBQ1Yc,646
|
|
257
|
+
agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
|
|
258
|
+
agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
|
|
259
|
+
agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
|
|
260
|
+
agenta-0.32.0a1.dist-info/METADATA,sha256=icmKvNYRhzbVMwHorcgLmQjkm99MJfkkcgarUbot9i0,29189
|
|
261
|
+
agenta-0.32.0a1.dist-info/WHEEL,sha256=IYZQI976HJqqOpQU6PHkJ8fb3tMNBFjg-Cn-pwAbaFM,88
|
|
262
|
+
agenta-0.32.0a1.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
|
|
263
|
+
agenta-0.32.0a1.dist-info/RECORD,,
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import datetime as dt
|
|
4
|
-
import typing
|
|
5
|
-
|
|
6
|
-
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
|
|
8
|
-
try:
|
|
9
|
-
import pydantic.v1 as pydantic # type: ignore
|
|
10
|
-
except ImportError:
|
|
11
|
-
import pydantic # type: ignore
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class AppVariantOutput(pydantic.BaseModel):
|
|
15
|
-
app_id: str
|
|
16
|
-
app_name: str
|
|
17
|
-
variant_id: str
|
|
18
|
-
variant_name: str
|
|
19
|
-
parameters: typing.Optional[typing.Dict[str, typing.Any]]
|
|
20
|
-
previous_variant_name: typing.Optional[str]
|
|
21
|
-
organization_id: str
|
|
22
|
-
user_id: str
|
|
23
|
-
base_name: str
|
|
24
|
-
base_id: str
|
|
25
|
-
config_name: str
|
|
26
|
-
uri: typing.Optional[str]
|
|
27
|
-
|
|
28
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
29
|
-
kwargs_with_defaults: typing.Any = {
|
|
30
|
-
"by_alias": True,
|
|
31
|
-
"exclude_unset": True,
|
|
32
|
-
**kwargs,
|
|
33
|
-
}
|
|
34
|
-
return super().json(**kwargs_with_defaults)
|
|
35
|
-
|
|
36
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
37
|
-
kwargs_with_defaults: typing.Any = {
|
|
38
|
-
"by_alias": True,
|
|
39
|
-
"exclude_unset": True,
|
|
40
|
-
**kwargs,
|
|
41
|
-
}
|
|
42
|
-
return super().dict(**kwargs_with_defaults)
|
|
43
|
-
|
|
44
|
-
class Config:
|
|
45
|
-
frozen = True
|
|
46
|
-
smart_union = True
|
|
47
|
-
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import datetime as dt
|
|
4
|
-
import typing
|
|
5
|
-
|
|
6
|
-
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
from .app_variant_revision import AppVariantRevision
|
|
8
|
-
|
|
9
|
-
try:
|
|
10
|
-
import pydantic.v1 as pydantic # type: ignore
|
|
11
|
-
except ImportError:
|
|
12
|
-
import pydantic # type: ignore
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class AppVariantOutputExtended(pydantic.BaseModel):
|
|
16
|
-
app_id: str
|
|
17
|
-
app_name: str
|
|
18
|
-
variant_id: str
|
|
19
|
-
variant_name: str
|
|
20
|
-
parameters: typing.Optional[typing.Dict[str, typing.Any]]
|
|
21
|
-
previous_variant_name: typing.Optional[str]
|
|
22
|
-
organization_id: str
|
|
23
|
-
user_id: str
|
|
24
|
-
base_name: str
|
|
25
|
-
base_id: str
|
|
26
|
-
config_name: str
|
|
27
|
-
uri: typing.Optional[str]
|
|
28
|
-
revision: int
|
|
29
|
-
revisions: typing.List[AppVariantRevision]
|
|
30
|
-
|
|
31
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
32
|
-
kwargs_with_defaults: typing.Any = {
|
|
33
|
-
"by_alias": True,
|
|
34
|
-
"exclude_unset": True,
|
|
35
|
-
**kwargs,
|
|
36
|
-
}
|
|
37
|
-
return super().json(**kwargs_with_defaults)
|
|
38
|
-
|
|
39
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
40
|
-
kwargs_with_defaults: typing.Any = {
|
|
41
|
-
"by_alias": True,
|
|
42
|
-
"exclude_unset": True,
|
|
43
|
-
**kwargs,
|
|
44
|
-
}
|
|
45
|
-
return super().dict(**kwargs_with_defaults)
|
|
46
|
-
|
|
47
|
-
class Config:
|
|
48
|
-
frozen = True
|
|
49
|
-
smart_union = True
|
|
50
|
-
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import datetime as dt
|
|
4
|
-
import typing
|
|
5
|
-
|
|
6
|
-
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
|
|
8
|
-
try:
|
|
9
|
-
import pydantic.v1 as pydantic # type: ignore
|
|
10
|
-
except ImportError:
|
|
11
|
-
import pydantic # type: ignore
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class DeleteEvaluation(pydantic.BaseModel):
|
|
15
|
-
evaluations_ids: typing.List[str]
|
|
16
|
-
|
|
17
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
18
|
-
kwargs_with_defaults: typing.Any = {
|
|
19
|
-
"by_alias": True,
|
|
20
|
-
"exclude_unset": True,
|
|
21
|
-
**kwargs,
|
|
22
|
-
}
|
|
23
|
-
return super().json(**kwargs_with_defaults)
|
|
24
|
-
|
|
25
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
26
|
-
kwargs_with_defaults: typing.Any = {
|
|
27
|
-
"by_alias": True,
|
|
28
|
-
"exclude_unset": True,
|
|
29
|
-
**kwargs,
|
|
30
|
-
}
|
|
31
|
-
return super().dict(**kwargs_with_defaults)
|
|
32
|
-
|
|
33
|
-
class Config:
|
|
34
|
-
frozen = True
|
|
35
|
-
smart_union = True
|
|
36
|
-
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import datetime as dt
|
|
4
|
-
import typing
|
|
5
|
-
|
|
6
|
-
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
|
|
8
|
-
try:
|
|
9
|
-
import pydantic.v1 as pydantic # type: ignore
|
|
10
|
-
except ImportError:
|
|
11
|
-
import pydantic # type: ignore
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class EvaluationWebhook(pydantic.BaseModel):
|
|
15
|
-
score: float
|
|
16
|
-
|
|
17
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
18
|
-
kwargs_with_defaults: typing.Any = {
|
|
19
|
-
"by_alias": True,
|
|
20
|
-
"exclude_unset": True,
|
|
21
|
-
**kwargs,
|
|
22
|
-
}
|
|
23
|
-
return super().json(**kwargs_with_defaults)
|
|
24
|
-
|
|
25
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
26
|
-
kwargs_with_defaults: typing.Any = {
|
|
27
|
-
"by_alias": True,
|
|
28
|
-
"exclude_unset": True,
|
|
29
|
-
**kwargs,
|
|
30
|
-
}
|
|
31
|
-
return super().dict(**kwargs_with_defaults)
|
|
32
|
-
|
|
33
|
-
class Config:
|
|
34
|
-
frozen = True
|
|
35
|
-
smart_union = True
|
|
36
|
-
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import datetime as dt
|
|
4
|
-
import typing
|
|
5
|
-
|
|
6
|
-
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
|
|
8
|
-
try:
|
|
9
|
-
import pydantic.v1 as pydantic # type: ignore
|
|
10
|
-
except ImportError:
|
|
11
|
-
import pydantic # type: ignore
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class Feedback(pydantic.BaseModel):
|
|
15
|
-
feedback: typing.Optional[str]
|
|
16
|
-
score: typing.Optional[float]
|
|
17
|
-
meta: typing.Optional[typing.Dict[str, typing.Any]]
|
|
18
|
-
feedback_id: str
|
|
19
|
-
created_at: typing.Optional[dt.datetime]
|
|
20
|
-
|
|
21
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
22
|
-
kwargs_with_defaults: typing.Any = {
|
|
23
|
-
"by_alias": True,
|
|
24
|
-
"exclude_unset": True,
|
|
25
|
-
**kwargs,
|
|
26
|
-
}
|
|
27
|
-
return super().json(**kwargs_with_defaults)
|
|
28
|
-
|
|
29
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
30
|
-
kwargs_with_defaults: typing.Any = {
|
|
31
|
-
"by_alias": True,
|
|
32
|
-
"exclude_unset": True,
|
|
33
|
-
**kwargs,
|
|
34
|
-
}
|
|
35
|
-
return super().dict(**kwargs_with_defaults)
|
|
36
|
-
|
|
37
|
-
class Config:
|
|
38
|
-
frozen = True
|
|
39
|
-
smart_union = True
|
|
40
|
-
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import datetime as dt
|
|
4
|
-
import typing
|
|
5
|
-
|
|
6
|
-
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
|
|
8
|
-
try:
|
|
9
|
-
import pydantic.v1 as pydantic # type: ignore
|
|
10
|
-
except ImportError:
|
|
11
|
-
import pydantic # type: ignore
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class GetConfigReponse(pydantic.BaseModel):
|
|
15
|
-
config_id: str
|
|
16
|
-
config_name: str
|
|
17
|
-
current_version: int
|
|
18
|
-
parameters: typing.Dict[str, typing.Any]
|
|
19
|
-
|
|
20
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
21
|
-
kwargs_with_defaults: typing.Any = {
|
|
22
|
-
"by_alias": True,
|
|
23
|
-
"exclude_unset": True,
|
|
24
|
-
**kwargs,
|
|
25
|
-
}
|
|
26
|
-
return super().json(**kwargs_with_defaults)
|
|
27
|
-
|
|
28
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
29
|
-
kwargs_with_defaults: typing.Any = {
|
|
30
|
-
"by_alias": True,
|
|
31
|
-
"exclude_unset": True,
|
|
32
|
-
**kwargs,
|
|
33
|
-
}
|
|
34
|
-
return super().dict(**kwargs_with_defaults)
|
|
35
|
-
|
|
36
|
-
class Config:
|
|
37
|
-
frozen = True
|
|
38
|
-
smart_union = True
|
|
39
|
-
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import datetime as dt
|
|
4
|
-
import typing
|
|
5
|
-
|
|
6
|
-
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
|
|
8
|
-
try:
|
|
9
|
-
import pydantic.v1 as pydantic # type: ignore
|
|
10
|
-
except ImportError:
|
|
11
|
-
import pydantic # type: ignore
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class ListApiKeysOutput(pydantic.BaseModel):
|
|
15
|
-
prefix: str
|
|
16
|
-
created_at: dt.datetime
|
|
17
|
-
last_used_at: typing.Optional[dt.datetime]
|
|
18
|
-
expiration_date: typing.Optional[dt.datetime]
|
|
19
|
-
|
|
20
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
21
|
-
kwargs_with_defaults: typing.Any = {
|
|
22
|
-
"by_alias": True,
|
|
23
|
-
"exclude_unset": True,
|
|
24
|
-
**kwargs,
|
|
25
|
-
}
|
|
26
|
-
return super().json(**kwargs_with_defaults)
|
|
27
|
-
|
|
28
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
29
|
-
kwargs_with_defaults: typing.Any = {
|
|
30
|
-
"by_alias": True,
|
|
31
|
-
"exclude_unset": True,
|
|
32
|
-
**kwargs,
|
|
33
|
-
}
|
|
34
|
-
return super().dict(**kwargs_with_defaults)
|
|
35
|
-
|
|
36
|
-
class Config:
|
|
37
|
-
frozen = True
|
|
38
|
-
smart_union = True
|
|
39
|
-
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import datetime as dt
|
|
4
|
-
import typing
|
|
5
|
-
|
|
6
|
-
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
from .feedback import Feedback
|
|
8
|
-
|
|
9
|
-
try:
|
|
10
|
-
import pydantic.v1 as pydantic # type: ignore
|
|
11
|
-
except ImportError:
|
|
12
|
-
import pydantic # type: ignore
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class Trace(pydantic.BaseModel):
|
|
16
|
-
app_id: typing.Optional[str]
|
|
17
|
-
variant_id: typing.Optional[str]
|
|
18
|
-
cost: typing.Optional[float]
|
|
19
|
-
latency: float
|
|
20
|
-
status: str
|
|
21
|
-
token_consumption: typing.Optional[int]
|
|
22
|
-
tags: typing.Optional[typing.List[str]]
|
|
23
|
-
start_time: dt.datetime
|
|
24
|
-
end_time: dt.datetime
|
|
25
|
-
trace_id: str
|
|
26
|
-
spans: typing.List[str]
|
|
27
|
-
feedbacks: typing.Optional[typing.List[Feedback]]
|
|
28
|
-
|
|
29
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
30
|
-
kwargs_with_defaults: typing.Any = {
|
|
31
|
-
"by_alias": True,
|
|
32
|
-
"exclude_unset": True,
|
|
33
|
-
**kwargs,
|
|
34
|
-
}
|
|
35
|
-
return super().json(**kwargs_with_defaults)
|
|
36
|
-
|
|
37
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
38
|
-
kwargs_with_defaults: typing.Any = {
|
|
39
|
-
"by_alias": True,
|
|
40
|
-
"exclude_unset": True,
|
|
41
|
-
**kwargs,
|
|
42
|
-
}
|
|
43
|
-
return super().dict(**kwargs_with_defaults)
|
|
44
|
-
|
|
45
|
-
class Config:
|
|
46
|
-
frozen = True
|
|
47
|
-
smart_union = True
|
|
48
|
-
json_encoders = {dt.datetime: serialize_datetime}
|