letta-client 0.1.31__py3-none-any.whl → 0.1.32__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 letta-client might be problematic. Click here for more details.
- letta_client/core/client_wrapper.py +1 -1
- letta_client/types/action_parameters_model.py +1 -0
- letta_client/types/action_response_model.py +1 -0
- letta_client/types/app_auth_scheme_auth_mode.py +1 -1
- {letta_client-0.1.31.dist-info → letta_client-0.1.32.dist-info}/METADATA +1 -1
- {letta_client-0.1.31.dist-info → letta_client-0.1.32.dist-info}/RECORD +7 -7
- {letta_client-0.1.31.dist-info → letta_client-0.1.32.dist-info}/WHEEL +0 -0
|
@@ -16,7 +16,7 @@ class BaseClientWrapper:
|
|
|
16
16
|
headers: typing.Dict[str, str] = {
|
|
17
17
|
"X-Fern-Language": "Python",
|
|
18
18
|
"X-Fern-SDK-Name": "letta-client",
|
|
19
|
-
"X-Fern-SDK-Version": "0.1.
|
|
19
|
+
"X-Fern-SDK-Version": "0.1.32",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
|
@@ -15,6 +15,7 @@ class ActionParametersModel(UncheckedBaseModel):
|
|
|
15
15
|
title: str
|
|
16
16
|
type: str
|
|
17
17
|
required: typing.Optional[typing.List[str]] = None
|
|
18
|
+
examples: typing.Optional[typing.List[typing.Optional[typing.Any]]] = None
|
|
18
19
|
|
|
19
20
|
if IS_PYDANTIC_V2:
|
|
20
21
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -15,6 +15,7 @@ class ActionResponseModel(UncheckedBaseModel):
|
|
|
15
15
|
title: str
|
|
16
16
|
type: str
|
|
17
17
|
required: typing.Optional[typing.List[str]] = None
|
|
18
|
+
examples: typing.Optional[typing.List[typing.Optional[typing.Any]]] = None
|
|
18
19
|
|
|
19
20
|
if IS_PYDANTIC_V2:
|
|
20
21
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
5
|
AppAuthSchemeAuthMode = typing.Union[
|
|
6
|
-
typing.Literal["OAUTH2", "OAUTH1", "API_KEY", "BASIC", "BEARER_TOKEN", "BASIC_WITH_JWT"], typing.Any
|
|
6
|
+
typing.Literal["OAUTH2", "OAUTH1", "API_KEY", "BASIC", "BEARER_TOKEN", "BASIC_WITH_JWT", "NO_AUTH"], typing.Any
|
|
7
7
|
]
|
|
@@ -200,7 +200,7 @@ letta_client/blocks/client.py,sha256=AeQQ-IdYhV-zqLTt3PTrJOtJ6XtBZcXNC108Y5EogVU
|
|
|
200
200
|
letta_client/client.py,sha256=y2cXN0ApFul2Lz-fVh5TbeYbQ8oUjnXcwJ6wUczEf2c,2457
|
|
201
201
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
202
202
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
203
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
203
|
+
letta_client/core/client_wrapper.py,sha256=GXgTomv3OnqNOqldyopK8bFVCb9eUB7R87_9Mj_g8ww,1997
|
|
204
204
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
205
205
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
206
206
|
letta_client/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
@@ -406,14 +406,14 @@ letta_client/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_p
|
|
|
406
406
|
letta_client/tools/client.py,sha256=nv4PKwwlBsyGYm9B_3okgaiNFbbMYfZ53bzeoaAhVfU,53219
|
|
407
407
|
letta_client/types/__init__.py,sha256=lIEkIkJF2CxdYemPIZ1zOQrX-pHHreQWEr4OcMZOOUM,14904
|
|
408
408
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
409
|
-
letta_client/types/action_parameters_model.py,sha256=
|
|
410
|
-
letta_client/types/action_response_model.py,sha256=
|
|
409
|
+
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
410
|
+
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
411
411
|
letta_client/types/agent_environment_variable.py,sha256=vutZLcR0yETltgOZ7E_o9kR4vOdBxybVL9lzXSux75w,1698
|
|
412
412
|
letta_client/types/agent_state.py,sha256=KcNV8abv5azSBeOnZPIBE-XXUx9jYaGkVTzIHfN3r4I,4869
|
|
413
413
|
letta_client/types/agent_state_tool_rules_item.py,sha256=-1gMhEZOThSYXXTWxZXtSNpkANOTws0bZcEXf-PQCJA,375
|
|
414
414
|
letta_client/types/agent_type.py,sha256=iZ3Wa4BUddDeFSgcK3Z0WUKCQYDRCEo0aJICKsc3HL0,220
|
|
415
415
|
letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
|
|
416
|
-
letta_client/types/app_auth_scheme_auth_mode.py,sha256=
|
|
416
|
+
letta_client/types/app_auth_scheme_auth_mode.py,sha256=4zgUPTye_olDGcfbwpyCAbwU-11WPGaAxO_PeA-0I0c,236
|
|
417
417
|
letta_client/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
|
|
418
418
|
letta_client/types/assistant_message.py,sha256=OWJz-tAsuiA1bZguDbvIBJezzjYiQWt8kWCxwxK-zN4,779
|
|
419
419
|
letta_client/types/assistant_message_content.py,sha256=2XtIgU1tzCHgp-NwWIkUFohOd1GClieiRk9OATTEcew,188
|
|
@@ -561,6 +561,6 @@ letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wD
|
|
|
561
561
|
letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
562
562
|
letta_client/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
563
563
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
564
|
-
letta_client-0.1.
|
|
565
|
-
letta_client-0.1.
|
|
566
|
-
letta_client-0.1.
|
|
564
|
+
letta_client-0.1.32.dist-info/METADATA,sha256=u45UceFt5vwBP_fwuVNlLDVKO01Qa3N8v-B7PHLBZPE,4942
|
|
565
|
+
letta_client-0.1.32.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
566
|
+
letta_client-0.1.32.dist-info/RECORD,,
|
|
File without changes
|