agenta 0.9.0__py3-none-any.whl → 0.10.0__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/client/backend/__init__.py +32 -14
- agenta/client/backend/client.py +1462 -654
- agenta/client/backend/types/__init__.py +32 -14
- agenta/client/backend/types/aggregated_result.py +39 -0
- agenta/client/backend/types/app_variant_output.py +0 -1
- agenta/client/backend/types/app_variant_output_extended.py +50 -0
- agenta/client/backend/types/app_variant_revision.py +40 -0
- agenta/client/backend/types/{custom_evaluation_output.py → config_db.py} +3 -5
- agenta/client/backend/types/{custom_evaluation_names.py → delete_evaluation.py} +2 -3
- agenta/client/backend/types/environment_output.py +2 -0
- agenta/client/backend/types/evaluation.py +4 -4
- agenta/client/backend/types/evaluation_scenario.py +2 -3
- agenta/client/backend/types/evaluation_scenario_input.py +3 -2
- agenta/client/backend/types/evaluation_scenario_output.py +2 -2
- agenta/client/backend/types/evaluation_scenario_result.py +38 -0
- agenta/client/backend/types/evaluation_status_enum.py +4 -4
- agenta/client/backend/types/evaluation_type.py +0 -28
- agenta/client/backend/types/evaluator.py +39 -0
- agenta/client/backend/types/{custom_evaluation_detail.py → evaluator_config.py} +4 -4
- agenta/client/backend/types/human_evaluation.py +49 -0
- agenta/client/backend/types/human_evaluation_scenario.py +48 -0
- agenta/client/backend/types/{create_custom_evaluation.py → human_evaluation_scenario_input.py} +3 -4
- agenta/client/backend/types/human_evaluation_scenario_output.py +37 -0
- agenta/client/backend/types/{evaluation_scenario_score.py → human_evaluation_scenario_score.py} +1 -1
- agenta/client/backend/types/{evaluation_scenario_update_score.py → human_evaluation_scenario_update_score.py} +1 -1
- agenta/client/backend/types/llm_run_rate_limit.py +39 -0
- agenta/client/backend/types/result.py +37 -0
- {agenta-0.9.0.dist-info → agenta-0.10.0.dist-info}/METADATA +1 -1
- {agenta-0.9.0.dist-info → agenta-0.10.0.dist-info}/RECORD +31 -22
- agenta/client/backend/types/evaluation_type_settings.py +0 -42
- {agenta-0.9.0.dist-info → agenta-0.10.0.dist-info}/WHEEL +0 -0
- {agenta-0.9.0.dist-info → agenta-0.10.0.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,37 @@
|
|
|
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 HumanEvaluationScenarioOutput(pydantic.BaseModel):
|
|
15
|
+
variant_id: str
|
|
16
|
+
variant_output: str
|
|
17
|
+
|
|
18
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
19
|
+
kwargs_with_defaults: typing.Any = {
|
|
20
|
+
"by_alias": True,
|
|
21
|
+
"exclude_unset": True,
|
|
22
|
+
**kwargs,
|
|
23
|
+
}
|
|
24
|
+
return super().json(**kwargs_with_defaults)
|
|
25
|
+
|
|
26
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
27
|
+
kwargs_with_defaults: typing.Any = {
|
|
28
|
+
"by_alias": True,
|
|
29
|
+
"exclude_unset": True,
|
|
30
|
+
**kwargs,
|
|
31
|
+
}
|
|
32
|
+
return super().dict(**kwargs_with_defaults)
|
|
33
|
+
|
|
34
|
+
class Config:
|
|
35
|
+
frozen = True
|
|
36
|
+
smart_union = True
|
|
37
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -0,0 +1,39 @@
|
|
|
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 LlmRunRateLimit(pydantic.BaseModel):
|
|
15
|
+
batch_size: int
|
|
16
|
+
max_retries: int
|
|
17
|
+
retry_delay: int
|
|
18
|
+
delay_between_batches: int
|
|
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}
|
|
@@ -0,0 +1,37 @@
|
|
|
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 Result(pydantic.BaseModel):
|
|
15
|
+
type: str
|
|
16
|
+
value: typing.Optional[typing.Any]
|
|
17
|
+
|
|
18
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
19
|
+
kwargs_with_defaults: typing.Any = {
|
|
20
|
+
"by_alias": True,
|
|
21
|
+
"exclude_unset": True,
|
|
22
|
+
**kwargs,
|
|
23
|
+
}
|
|
24
|
+
return super().json(**kwargs_with_defaults)
|
|
25
|
+
|
|
26
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
27
|
+
kwargs_with_defaults: typing.Any = {
|
|
28
|
+
"by_alias": True,
|
|
29
|
+
"exclude_unset": True,
|
|
30
|
+
**kwargs,
|
|
31
|
+
}
|
|
32
|
+
return super().dict(**kwargs_with_defaults)
|
|
33
|
+
|
|
34
|
+
class Config:
|
|
35
|
+
frozen = True
|
|
36
|
+
smart_union = True
|
|
37
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -9,8 +9,8 @@ agenta/client/Readme.md,sha256=zWJ6VMYCG124op5RcqgWBdJdlGkGQ2rPLk9F32rWvqo,2756
|
|
|
9
9
|
agenta/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
agenta/client/api.py,sha256=8TrD-whQidlUnqfPuTctDGZlEco_aTGofNJFsQIi7VY,2429
|
|
11
11
|
agenta/client/api_models.py,sha256=zebfE2-0-SW1SvzyarzmSJMXqyiCLKrX2sHpzoX-RnU,623
|
|
12
|
-
agenta/client/backend/__init__.py,sha256=
|
|
13
|
-
agenta/client/backend/client.py,sha256=
|
|
12
|
+
agenta/client/backend/__init__.py,sha256=NylxeIc-3GdneW6REp3XrpYpMuuDnbcnjJ5E-yo7R5o,2666
|
|
13
|
+
agenta/client/backend/client.py,sha256=7rEmUSde3RREO4fX8osFobk6MqwTQ-2fPX1WPGK4-84,259068
|
|
14
14
|
agenta/client/backend/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
|
|
15
15
|
agenta/client/backend/core/api_error.py,sha256=TtMtCdxXjd7Tasc9c8ooFg124nPrb2MXG-tKOXV4u9I,440
|
|
16
16
|
agenta/client/backend/core/client_wrapper.py,sha256=kQEqxdm31r7V9x--mMliWOdMujD3dtPZyYBNzxgNdrs,972
|
|
@@ -19,39 +19,48 @@ agenta/client/backend/core/jsonable_encoder.py,sha256=ePEZ-ty4uISZv_wVpA7ldkdLfw
|
|
|
19
19
|
agenta/client/backend/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
|
|
20
20
|
agenta/client/backend/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
|
|
21
21
|
agenta/client/backend/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
22
|
-
agenta/client/backend/types/__init__.py,sha256=
|
|
22
|
+
agenta/client/backend/types/__init__.py,sha256=4kxWtinbbNAmNGByicOnxy8hoscndlVbUKp46hYS4Xw,4008
|
|
23
23
|
agenta/client/backend/types/add_variant_from_base_and_config_response.py,sha256=DxAM5QXWoJhJN2mj1Lik1Uf_Vl8rT2K5j4ET03RP1WU,211
|
|
24
|
+
agenta/client/backend/types/aggregated_result.py,sha256=8D3AXhLBhwegHRyPzAuo_eFuBsnLh7BptZt5z-VWZ8U,1083
|
|
24
25
|
agenta/client/backend/types/app.py,sha256=PLCQN6kqpkAMpAZ2Tk5s1FesewOZmkMv18eASzQ14gg,974
|
|
25
|
-
agenta/client/backend/types/app_variant_output.py,sha256=
|
|
26
|
+
agenta/client/backend/types/app_variant_output.py,sha256=ec2KDbxiTd7eCWIBAM0VUva5ukUkrXFNxnplNr0pgy0,1268
|
|
27
|
+
agenta/client/backend/types/app_variant_output_extended.py,sha256=hzPYdWfE6yHAMJtINAT23dOYwV87uD5p-W0jqmf74Bc,1394
|
|
28
|
+
agenta/client/backend/types/app_variant_revision.py,sha256=FO3d6hPOqjz5uPSCk_9f2UipfkiIHKvK4jlpV84EWHo,1075
|
|
26
29
|
agenta/client/backend/types/base_output.py,sha256=ynXhDBQKrkR6Lnkx-yv6Q8xW4wXmzXur0T-hzmkjBpc,983
|
|
27
30
|
agenta/client/backend/types/body_import_testset.py,sha256=7dVF3mv3VO0Co8F0qxLAgu4jabqDPjebK4mYvcd_TuA,1061
|
|
31
|
+
agenta/client/backend/types/config_db.py,sha256=P0cSYvVOn0ZxpYMIdvhWpQVjRuBS5APe6qlc69AXaF4,1028
|
|
28
32
|
agenta/client/backend/types/container_templates_response.py,sha256=YJm-MmLNa5vC8oDi-vuZEHYdK_pVOpnjnY81FGO-VSM,182
|
|
29
33
|
agenta/client/backend/types/create_app_output.py,sha256=pgnTnfZx35Q-8wZ1yTZBQ0ydYacGzFC9kyLug_UvymM,986
|
|
30
|
-
agenta/client/backend/types/
|
|
31
|
-
agenta/client/backend/types/custom_evaluation_detail.py,sha256=vgimLw-AyEj4hyr6NAdMi1PWLMSvwRrQ6rf_A-2aslw,1089
|
|
32
|
-
agenta/client/backend/types/custom_evaluation_names.py,sha256=bRDkWpy0D3B-Aht1YodiY8UqME-yhxYVGtfANz7b6MU,995
|
|
33
|
-
agenta/client/backend/types/custom_evaluation_output.py,sha256=-uv9kdayPlqCkReNM-ln3TCSb6gYSURM2PEEDm9YWu8,1040
|
|
34
|
+
agenta/client/backend/types/delete_evaluation.py,sha256=th4ld6oSB-d-0gXUoKzl_0vBjc8QRv35lg0SLclFFTA,991
|
|
34
35
|
agenta/client/backend/types/docker_env_vars.py,sha256=altCvA1k-zdAkKNYLwaCnmV48HZg9cwe2cHu_BGImac,986
|
|
35
|
-
agenta/client/backend/types/environment_output.py,sha256=
|
|
36
|
-
agenta/client/backend/types/evaluation.py,sha256=
|
|
37
|
-
agenta/client/backend/types/evaluation_scenario.py,sha256=
|
|
38
|
-
agenta/client/backend/types/evaluation_scenario_input.py,sha256=
|
|
39
|
-
agenta/client/backend/types/evaluation_scenario_output.py,sha256=
|
|
40
|
-
agenta/client/backend/types/
|
|
41
|
-
agenta/client/backend/types/
|
|
42
|
-
agenta/client/backend/types/
|
|
43
|
-
agenta/client/backend/types/evaluation_type.py,sha256=jWIE9Gb9MZcfX6CVYkTTPQEcQMUfAdF308PUSUzyZLI,1972
|
|
44
|
-
agenta/client/backend/types/evaluation_type_settings.py,sha256=zGWVAJcrn8jT7sbNIwh9Dsw_0H7KI8YCAUH8MivVnFY,1287
|
|
36
|
+
agenta/client/backend/types/environment_output.py,sha256=l66VgSkayYFQr-i7ZfE9F2CLBfIGlogSRm96CPEKRpY,1176
|
|
37
|
+
agenta/client/backend/types/evaluation.py,sha256=oU8bIbXptB8t9sJR_tn8HrbKHzDt4m9_sDM129JhV5A,1376
|
|
38
|
+
agenta/client/backend/types/evaluation_scenario.py,sha256=MqxMVliNQCGu1LCq2HMlx7YuZ1UQn4KJQtHZI6TsXoU,1497
|
|
39
|
+
agenta/client/backend/types/evaluation_scenario_input.py,sha256=cf562ry0rYNvLWx3hvQu9uNPrdrI3lRZ0IAIiCn4-Fs,1027
|
|
40
|
+
agenta/client/backend/types/evaluation_scenario_output.py,sha256=y3qLNbxZFf9bVUzD8NYQ3-Wy4VWceCl3Xc_7LSQeqro,1014
|
|
41
|
+
agenta/client/backend/types/evaluation_scenario_result.py,sha256=rKV0ZxJdbLaij9k54uq6YwzYDpaxzUa8tcYEz1bb050,1033
|
|
42
|
+
agenta/client/backend/types/evaluation_status_enum.py,sha256=LiE6_T-5vXTgOlBs5XqarXt2Ba6OHwZZVWMccHCXqqc,1102
|
|
43
|
+
agenta/client/backend/types/evaluation_type.py,sha256=WX2DlUeT3ULUQlA_yFabpiMqCBEsbjNyfdfN3EkLWR0,644
|
|
45
44
|
agenta/client/backend/types/evaluation_webhook.py,sha256=emuKpD4NQjgYkjvQUyKLzHHkMk9FwdXuYFwunTaY4gw,971
|
|
45
|
+
agenta/client/backend/types/evaluator.py,sha256=RplGMwAjgSlR0mARaB2BHaGBex6h_y8DcNSj7f0RttQ,1046
|
|
46
|
+
agenta/client/backend/types/evaluator_config.py,sha256=d3_ZxThl6ZkXTbmtBiqIg6CJIH8ha6am6fPEYcxp89A,1124
|
|
46
47
|
agenta/client/backend/types/feedback.py,sha256=aYDUHvxJ0A3Dhs8JSWYLpxef3bIaHrug6gXH5pNtuAQ,1136
|
|
47
48
|
agenta/client/backend/types/get_config_reponse.py,sha256=U7g4xXCVSXY_VToefqtW0uOZumO04pwJrOJsG9Aaavk,1063
|
|
48
49
|
agenta/client/backend/types/http_validation_error.py,sha256=YhAPLKvuWLcgHn-uVWiZdWInseMiIS5eymdHKDqAB6Y,1060
|
|
50
|
+
agenta/client/backend/types/human_evaluation.py,sha256=fSSO8Li0pAPcYe6lVUvJfrBTeGlJ8srdSw478vxXwW0,1305
|
|
51
|
+
agenta/client/backend/types/human_evaluation_scenario.py,sha256=CSymn8m3bwLjrh1V0aviujP0Ji9DmpxQKmznabbLPFA,1580
|
|
52
|
+
agenta/client/backend/types/human_evaluation_scenario_input.py,sha256=10bnX4xbKSxIBveDr8g3lhNIYOcfTingDh7o55kT-F4,1006
|
|
53
|
+
agenta/client/backend/types/human_evaluation_scenario_output.py,sha256=dA4hN-SeTcoHvNCaKwDvJrwsTw9DY5EeCWz2P2YmF34,1010
|
|
54
|
+
agenta/client/backend/types/human_evaluation_scenario_score.py,sha256=P3RxQ2U_u8KNq2yVegZdxJizofuTF20vIe2aS45ezWU,134
|
|
55
|
+
agenta/client/backend/types/human_evaluation_scenario_update_score.py,sha256=FSwW5jl2rNa4y0NTsMP2NRNOrKJi4q2I6zBEu5FU6MU,140
|
|
49
56
|
agenta/client/backend/types/image.py,sha256=wbaOeFV166Zp-ZqcMdksCNk9h2puTwWppW_E2_Co7fo,1048
|
|
50
57
|
agenta/client/backend/types/invite_request.py,sha256=A0ssjAQfHW6pd0EYNWGbNhVB67Y-jnjRjkg6L-Iw8Ok,965
|
|
51
58
|
agenta/client/backend/types/list_api_keys_output.py,sha256=DR21I8iYeRO8LDy20CQR1kjm-5PIS30_1EpT9lTlsVg,1095
|
|
59
|
+
agenta/client/backend/types/llm_run_rate_limit.py,sha256=mfT4lTczPxrJvd8ZCOAjPvw58QoM151p_uZT0PWNOJ4,1045
|
|
52
60
|
agenta/client/backend/types/new_testset.py,sha256=9NOC1-f_UZASy4ptzidLNcRU6Odq609ayvSQxEva-40,1009
|
|
53
61
|
agenta/client/backend/types/organization.py,sha256=9YCqgM6kZg93VI8S5ziQxqmw42fDS9dRGZdJ00eFnr4,1181
|
|
54
62
|
agenta/client/backend/types/organization_output.py,sha256=QNAKwQl6QkHIS0QKx8po2JU3mu14UrbcX2rU7VsAdqY,981
|
|
63
|
+
agenta/client/backend/types/result.py,sha256=7XCjzrjCcdYzjmeotrpYsKrGKjI14OJGbZZMNFsdm8w,996
|
|
55
64
|
agenta/client/backend/types/simple_evaluation_output.py,sha256=gRLOCps1hhXPgioADjD2DfabNJf9WgmmhPI6lJY00q4,1117
|
|
56
65
|
agenta/client/backend/types/span.py,sha256=3qrYxC5WJfKDiPwiTOhihDjzJc7bGDC5TIQ2hh5t8X8,1546
|
|
57
66
|
agenta/client/backend/types/template.py,sha256=mInivp-YnXqt28mWM9y4zqNezOfvUEPcmtM6CHePkyk,1037
|
|
@@ -99,7 +108,7 @@ agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR
|
|
|
99
108
|
agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
|
|
100
109
|
agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
|
|
101
110
|
agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
|
|
102
|
-
agenta-0.
|
|
103
|
-
agenta-0.
|
|
104
|
-
agenta-0.
|
|
105
|
-
agenta-0.
|
|
111
|
+
agenta-0.10.0.dist-info/METADATA,sha256=oAcCBLqZqUXCKD1y1MTwDxHuyXwz_cw8hTAfEupgg3M,27296
|
|
112
|
+
agenta-0.10.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
113
|
+
agenta-0.10.0.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
|
|
114
|
+
agenta-0.10.0.dist-info/RECORD,,
|
|
@@ -1,42 +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 EvaluationTypeSettings(pydantic.BaseModel):
|
|
15
|
-
similarity_threshold: typing.Optional[float]
|
|
16
|
-
regex_pattern: typing.Optional[str]
|
|
17
|
-
regex_should_match: typing.Optional[bool]
|
|
18
|
-
webhook_url: typing.Optional[str]
|
|
19
|
-
custom_code_evaluation_id: typing.Optional[str]
|
|
20
|
-
llm_app_prompt_template: typing.Optional[str]
|
|
21
|
-
evaluation_prompt_template: typing.Optional[str]
|
|
22
|
-
|
|
23
|
-
def json(self, **kwargs: typing.Any) -> str:
|
|
24
|
-
kwargs_with_defaults: typing.Any = {
|
|
25
|
-
"by_alias": True,
|
|
26
|
-
"exclude_unset": True,
|
|
27
|
-
**kwargs,
|
|
28
|
-
}
|
|
29
|
-
return super().json(**kwargs_with_defaults)
|
|
30
|
-
|
|
31
|
-
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
32
|
-
kwargs_with_defaults: typing.Any = {
|
|
33
|
-
"by_alias": True,
|
|
34
|
-
"exclude_unset": True,
|
|
35
|
-
**kwargs,
|
|
36
|
-
}
|
|
37
|
-
return super().dict(**kwargs_with_defaults)
|
|
38
|
-
|
|
39
|
-
class Config:
|
|
40
|
-
frozen = True
|
|
41
|
-
smart_union = True
|
|
42
|
-
json_encoders = {dt.datetime: serialize_datetime}
|
|
File without changes
|
|
File without changes
|