letta-client 0.1.266__py3-none-any.whl → 0.1.267__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/__init__.py CHANGED
@@ -180,6 +180,7 @@ from .types import (
180
180
  LlmConfigCompatibilityType,
181
181
  LlmConfigModelEndpointType,
182
182
  LlmConfigReasoningEffort,
183
+ LlmConfigVerbosity,
183
184
  LocalSandboxConfig,
184
185
  ManagerType,
185
186
  MaxCountPerStepToolRule,
@@ -605,6 +606,7 @@ __all__ = [
605
606
  "LlmConfigCompatibilityType",
606
607
  "LlmConfigModelEndpointType",
607
608
  "LlmConfigReasoningEffort",
609
+ "LlmConfigVerbosity",
608
610
  "LocalSandboxConfig",
609
611
  "ManagerType",
610
612
  "MaxCountPerStepToolRule",
@@ -24,10 +24,10 @@ class BaseClientWrapper:
24
24
 
25
25
  def get_headers(self) -> typing.Dict[str, str]:
26
26
  headers: typing.Dict[str, str] = {
27
- "User-Agent": "letta-client/0.1.266",
27
+ "User-Agent": "letta-client/0.1.267",
28
28
  "X-Fern-Language": "Python",
29
29
  "X-Fern-SDK-Name": "letta-client",
30
- "X-Fern-SDK-Version": "0.1.266",
30
+ "X-Fern-SDK-Version": "0.1.267",
31
31
  **(self.get_custom_headers() or {}),
32
32
  }
33
33
  if self._project is not None:
@@ -187,6 +187,7 @@ from .llm_config import LlmConfig
187
187
  from .llm_config_compatibility_type import LlmConfigCompatibilityType
188
188
  from .llm_config_model_endpoint_type import LlmConfigModelEndpointType
189
189
  from .llm_config_reasoning_effort import LlmConfigReasoningEffort
190
+ from .llm_config_verbosity import LlmConfigVerbosity
190
191
  from .local_sandbox_config import LocalSandboxConfig
191
192
  from .manager_type import ManagerType
192
193
  from .max_count_per_step_tool_rule import MaxCountPerStepToolRule
@@ -506,6 +507,7 @@ __all__ = [
506
507
  "LlmConfigCompatibilityType",
507
508
  "LlmConfigModelEndpointType",
508
509
  "LlmConfigReasoningEffort",
510
+ "LlmConfigVerbosity",
509
511
  "LocalSandboxConfig",
510
512
  "ManagerType",
511
513
  "MaxCountPerStepToolRule",
@@ -8,6 +8,7 @@ from ..core.unchecked_base_model import UncheckedBaseModel
8
8
  from .llm_config_compatibility_type import LlmConfigCompatibilityType
9
9
  from .llm_config_model_endpoint_type import LlmConfigModelEndpointType
10
10
  from .llm_config_reasoning_effort import LlmConfigReasoningEffort
11
+ from .llm_config_verbosity import LlmConfigVerbosity
11
12
  from .provider_category import ProviderCategory
12
13
 
13
14
 
@@ -96,6 +97,11 @@ class LlmConfig(UncheckedBaseModel):
96
97
  The framework compatibility type for the model.
97
98
  """
98
99
 
100
+ verbosity: typing.Optional[LlmConfigVerbosity] = pydantic.Field(default=None)
101
+ """
102
+ Soft control for how verbose model output should be, used for GPT-5 models.
103
+ """
104
+
99
105
  if IS_PYDANTIC_V2:
100
106
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
101
107
  else:
@@ -0,0 +1,5 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import typing
4
+
5
+ LlmConfigVerbosity = typing.Union[typing.Literal["low", "medium", "high"], typing.Any]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.266
3
+ Version: 0.1.267
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -1,4 +1,4 @@
1
- letta_client/__init__.py,sha256=ZAs-VX7e5ai1m1RGR52sfH9O14OHXFlwlk0KssUAHPE,23150
1
+ letta_client/__init__.py,sha256=yYAXAoFMVYJoJsjL144IgrkKdkj3mTzJ9B5ZCVBzKIo,23200
2
2
  letta_client/agents/__init__.py,sha256=JkuWGGNJsCfnMr2DFzQ1SiqEB1tcFZnafdidODi0_DY,2166
3
3
  letta_client/agents/blocks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
4
4
  letta_client/agents/blocks/client.py,sha256=Akx-1SYEXkmdtLtytPtdFNhVts8JkjC2aMQnnWgd8Ug,14735
@@ -92,7 +92,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_list_clie
92
92
  letta_client/client_side_access_tokens/types/client_side_access_tokens_list_client_side_access_tokens_response_tokens_item_policy_data_item_access_item.py,sha256=kNHfEWFl7u71Pu8NPqutod0a2NXfvq8il05Hqm0iBB4,284
93
93
  letta_client/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
94
94
  letta_client/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
95
- letta_client/core/client_wrapper.py,sha256=66_RPvWx2L-L0i9dsyK-uEy-Iec_bkfdvRHN4nq9-Z0,2776
95
+ letta_client/core/client_wrapper.py,sha256=1cKtjO1165ACcm9Sv80JoJ_LEqnTHpypi2bPvIuKbXY,2776
96
96
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
97
97
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
98
98
  letta_client/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
@@ -228,7 +228,7 @@ letta_client/tools/types/streaming_response.py,sha256=V1qT-XAqm-z7zffJ7W1JKPCaxZ
228
228
  letta_client/tools/types/test_mcp_server_request.py,sha256=3SqjEL3EYi7iV57TjTIzuBSKv8O3Y7qSUFrCiXEvSRk,373
229
229
  letta_client/tools/types/update_mcp_server_request.py,sha256=MHouV3iyZCTROguOQP5rOYvnmvDbBeXe5VtEejRvrEs,403
230
230
  letta_client/tools/types/update_mcp_server_response.py,sha256=BJTPHWkb8hwgd4FvftQ8eZjl2QzCQT-vZAUVnLft9hw,376
231
- letta_client/types/__init__.py,sha256=kbpwpC95kchFwxyBWOGlwNabyfP2SzZ3j1N-hHcvWZQ,28840
231
+ letta_client/types/__init__.py,sha256=HtFvs-LVhtQ3OoNAsO58ssBCoH8XmfwSnOnP7b8wX8k,28919
232
232
  letta_client/types/action_model.py,sha256=VTXavHB6J2d4MjjTMEpkuEyVaiTHyj1FGfa4j8kN6hQ,1241
233
233
  letta_client/types/action_parameters_model.py,sha256=s1mJ4tycms8UmCFsxyjKr6RbghSuqv35xpa9mK42sjg,829
234
234
  letta_client/types/action_response_model.py,sha256=LcML150OvsKimVV3sP4jSFh8pVxQXn_r_ff8DADOr3c,825
@@ -402,10 +402,11 @@ letta_client/types/letta_stop_reason.py,sha256=jYkXBnAKsdPS8tmdv_xumyVVQk9OoHKFy
402
402
  letta_client/types/letta_streaming_request.py,sha256=pEq4WEzKTtKA5XdyR544D6kEQztJQxg0PSeMSHteDfg,2251
403
403
  letta_client/types/letta_usage_statistics.py,sha256=uZZq2lVOGHK6N-VhA0oknQfUjE9Zb0sMYh0mHDvl-lc,1887
404
404
  letta_client/types/letta_user_message_content_union.py,sha256=2SrcmMjvsQzCvfIUYG7PkaE4brMZcL6H437GSCLK4zg,230
405
- letta_client/types/llm_config.py,sha256=Re7XL1AV4WClySsaLtGzNnwxwHNYldl3sw2rZn3dltA,3632
405
+ letta_client/types/llm_config.py,sha256=QxVLfO04egVhKg1J3nB-FkrrMpyK124HpgAyVD-_zk0,3864
406
406
  letta_client/types/llm_config_compatibility_type.py,sha256=m6E90W-R9-Oi3EGSV_GdPIuVC2rmAH7TsUKbl79EiAQ,165
407
407
  letta_client/types/llm_config_model_endpoint_type.py,sha256=o59NDg3-3ud2mqAPYze40G7kyVD7pkRRbdT_vdTqL24,602
408
408
  letta_client/types/llm_config_reasoning_effort.py,sha256=r4I3i2c7RxkBe-xXOE_XCXwjp9Y0QoaF2SVY7WYPdg4,184
409
+ letta_client/types/llm_config_verbosity.py,sha256=MO2MK7xRvBZd7W0jF_zluQc5XDs9L1URoqiY_lPE0AI,167
409
410
  letta_client/types/local_sandbox_config.py,sha256=J_Dkqk2kkkw23AzLdDDM3r9ply-TK4HlEWIwsLKLhIQ,1388
410
411
  letta_client/types/manager_type.py,sha256=3ztXv2xWw6PIgDoqqxaHwdIcssDYqdqB0KqUDSW3Bc0,222
411
412
  letta_client/types/max_count_per_step_tool_rule.py,sha256=tl5vm0BvkHu4HHfQx14z8E0pZu3ysua1yCGMmOB-ccU,1226
@@ -538,6 +539,6 @@ letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
538
539
  letta_client/voice/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
539
540
  letta_client/voice/client.py,sha256=EbIVOQh4HXqU9McATxwga08STk-HUwPEAUr_UHqyKHg,3748
540
541
  letta_client/voice/raw_client.py,sha256=KvM_3GXuSf51bubM0RVBnxvlf20qZTFMnaA_BzhXzjQ,5938
541
- letta_client-0.1.266.dist-info/METADATA,sha256=9u6ma870t6Mcg4G-Tu-Jo7faEllCKXX7BbnrLSTnxN8,5781
542
- letta_client-0.1.266.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
543
- letta_client-0.1.266.dist-info/RECORD,,
542
+ letta_client-0.1.267.dist-info/METADATA,sha256=XMbsKsOhwVfqPCmBbbdqWHB7jiYSsvxSsVfktS9cdAs,5781
543
+ letta_client-0.1.267.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
544
+ letta_client-0.1.267.dist-info/RECORD,,