acp-sdk 0.12.1__py3-none-any.whl → 0.12.2__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.
acp_sdk/models/models.py
CHANGED
@@ -6,6 +6,7 @@ from enum import Enum
|
|
6
6
|
from typing import Any, Literal, Optional, Union
|
7
7
|
|
8
8
|
from pydantic import AnyUrl, BaseModel, ConfigDict, Field
|
9
|
+
from pydantic.json_schema import SkipJsonSchema
|
9
10
|
|
10
11
|
from acp_sdk.models.errors import ACPError, Error
|
11
12
|
from acp_sdk.models.platform import PlatformUIAnnotation
|
@@ -336,8 +337,8 @@ class Session(BaseModel):
|
|
336
337
|
history: list[ResourceUrl] = Field(default_factory=list)
|
337
338
|
state: ResourceUrl | None = None
|
338
339
|
|
339
|
-
loader: ResourceLoader | None = Field(None, exclude=True)
|
340
|
-
store: ResourceStore | None = Field(None, exclude=True)
|
340
|
+
loader: SkipJsonSchema[ResourceLoader | None] = Field(None, exclude=True)
|
341
|
+
store: SkipJsonSchema[ResourceStore | None] = Field(None, exclude=True)
|
341
342
|
|
342
343
|
model_config = ConfigDict(arbitrary_types_allowed=True)
|
343
344
|
|
@@ -8,7 +8,7 @@ acp_sdk/client/types.py,sha256=_H6zYt-2OHOOYRtssRnbDIiwmgsl2-KIXc9lb-mJLFA,133
|
|
8
8
|
acp_sdk/client/utils.py,sha256=2jhJyrPJmVFRoDJh0q_JMqOMlC3IxCh-6HXed-PIZS8,924
|
9
9
|
acp_sdk/models/__init__.py,sha256=_XDSvUwlHeRsqUayAxHusJ5s8Z1jWXV1ZcUKlJakOt4,200
|
10
10
|
acp_sdk/models/errors.py,sha256=rEyaMVvQuBi7fwWe_d0PGGySYsD3FZTluQ-SkC0yhAs,444
|
11
|
-
acp_sdk/models/models.py,sha256
|
11
|
+
acp_sdk/models/models.py,sha256=cSVVmj8tl1CuHUVK_sq7Fcnw8s-XEaOBCWlQTIf_7lo,10889
|
12
12
|
acp_sdk/models/platform.py,sha256=qgQhBZZNPG9XLlytEZmuv1LTkejbklmlj7YpnpUV_DE,497
|
13
13
|
acp_sdk/models/schemas.py,sha256=Vu3aO-6M0IW71I9thxAiphLGXXMvyZXFMJCdj7euUmc,915
|
14
14
|
acp_sdk/models/types.py,sha256=tH79qqpW3DrPJggZD1KFlLtGE_ZKT6eLtwiR3p3x2QM,145
|
@@ -32,6 +32,6 @@ acp_sdk/server/store/store.py,sha256=jGmYy9oiuVjhYYJY8QRo4g2J2Qyt1HLTmq_eHy4aI7c
|
|
32
32
|
acp_sdk/server/store/utils.py,sha256=JumEOMs1h1uGlnHnUGeguee-srGzT7_Y2NVEYt01QuY,92
|
33
33
|
acp_sdk/shared/__init__.py,sha256=vZuhdQ6lrWVdyYPmIyXpPvs5eMnzemhNek3gfYPA3Bc,138
|
34
34
|
acp_sdk/shared/resources.py,sha256=3oPvevYv2B1YaHyoMH85B7fcHVyhgZDUaDCBVEflTlA,1592
|
35
|
-
acp_sdk-0.12.
|
36
|
-
acp_sdk-0.12.
|
37
|
-
acp_sdk-0.12.
|
35
|
+
acp_sdk-0.12.2.dist-info/METADATA,sha256=xt-XwM-eEMg2gBsR9NnbhqUbV4cYveBEMUA9gj7hvME,1713
|
36
|
+
acp_sdk-0.12.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
37
|
+
acp_sdk-0.12.2.dist-info/RECORD,,
|
File without changes
|