letta-client 0.1.83__py3-none-any.whl → 0.1.84__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
@@ -139,6 +139,7 @@ from .types import (
139
139
  OpenaiTypesChatCompletionCreateParamsFunction,
140
140
  Organization,
141
141
  OrganizationCreate,
142
+ OrganizationUpdate,
142
143
  ParameterProperties,
143
144
  ParametersSchema,
144
145
  Passage,
@@ -629,7 +630,7 @@ from .tools import (
629
630
  ListMcpServersResponseValue,
630
631
  )
631
632
  from .version import __version__
632
- from .voice import CreateVoiceChatCompletionsRequest
633
+ from .voice import CreateVoiceChatCompletionsRequestBody
633
634
 
634
635
  __all__ = [
635
636
  "ActionModel",
@@ -909,7 +910,7 @@ __all__ = [
909
910
  "CoreMemoryBlockSchema",
910
911
  "CreateAgentRequestToolRulesItem",
911
912
  "CreateBlock",
912
- "CreateVoiceChatCompletionsRequest",
913
+ "CreateVoiceChatCompletionsRequestBody",
913
914
  "DeleteMcpServerResponseItem",
914
915
  "DynamicManager",
915
916
  "E2BSandboxConfig",
@@ -979,6 +980,7 @@ __all__ = [
979
980
  "OpenaiTypesChatCompletionCreateParamsFunction",
980
981
  "Organization",
981
982
  "OrganizationCreate",
983
+ "OrganizationUpdate",
982
984
  "ParameterProperties",
983
985
  "ParametersSchema",
984
986
  "Passage",
@@ -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.83",
19
+ "X-Fern-SDK-Version": "0.1.84",
20
20
  }
21
21
  if self.token is not None:
22
22
  headers["Authorization"] = f"Bearer {self.token}"
@@ -659,12 +659,16 @@ class ToolsClient:
659
659
  raise ApiError(status_code=_response.status_code, body=_response.text)
660
660
  raise ApiError(status_code=_response.status_code, body=_response_json)
661
661
 
662
- def list_composio_apps(self, *, request_options: typing.Optional[RequestOptions] = None) -> typing.List[AppModel]:
662
+ def list_composio_apps(
663
+ self, *, user_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
664
+ ) -> typing.List[AppModel]:
663
665
  """
664
666
  Get a list of all Composio apps
665
667
 
666
668
  Parameters
667
669
  ----------
670
+ user_id : typing.Optional[str]
671
+
668
672
  request_options : typing.Optional[RequestOptions]
669
673
  Request-specific configuration.
670
674
 
@@ -685,6 +689,9 @@ class ToolsClient:
685
689
  _response = self._client_wrapper.httpx_client.request(
686
690
  "v1/tools/composio/apps",
687
691
  method="GET",
692
+ headers={
693
+ "user-id": str(user_id) if user_id is not None else None,
694
+ },
688
695
  request_options=request_options,
689
696
  )
690
697
  try:
@@ -828,13 +835,15 @@ class ToolsClient:
828
835
  raise ApiError(status_code=_response.status_code, body=_response_json)
829
836
 
830
837
  def list_mcp_servers(
831
- self, *, request_options: typing.Optional[RequestOptions] = None
838
+ self, *, user_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
832
839
  ) -> typing.Dict[str, ListMcpServersResponseValue]:
833
840
  """
834
841
  Get a list of all configured MCP servers
835
842
 
836
843
  Parameters
837
844
  ----------
845
+ user_id : typing.Optional[str]
846
+
838
847
  request_options : typing.Optional[RequestOptions]
839
848
  Request-specific configuration.
840
849
 
@@ -855,6 +864,9 @@ class ToolsClient:
855
864
  _response = self._client_wrapper.httpx_client.request(
856
865
  "v1/tools/mcp/servers",
857
866
  method="GET",
867
+ headers={
868
+ "user-id": str(user_id) if user_id is not None else None,
869
+ },
858
870
  request_options=request_options,
859
871
  )
860
872
  try:
@@ -1824,13 +1836,15 @@ class AsyncToolsClient:
1824
1836
  raise ApiError(status_code=_response.status_code, body=_response_json)
1825
1837
 
1826
1838
  async def list_composio_apps(
1827
- self, *, request_options: typing.Optional[RequestOptions] = None
1839
+ self, *, user_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
1828
1840
  ) -> typing.List[AppModel]:
1829
1841
  """
1830
1842
  Get a list of all Composio apps
1831
1843
 
1832
1844
  Parameters
1833
1845
  ----------
1846
+ user_id : typing.Optional[str]
1847
+
1834
1848
  request_options : typing.Optional[RequestOptions]
1835
1849
  Request-specific configuration.
1836
1850
 
@@ -1859,6 +1873,9 @@ class AsyncToolsClient:
1859
1873
  _response = await self._client_wrapper.httpx_client.request(
1860
1874
  "v1/tools/composio/apps",
1861
1875
  method="GET",
1876
+ headers={
1877
+ "user-id": str(user_id) if user_id is not None else None,
1878
+ },
1862
1879
  request_options=request_options,
1863
1880
  )
1864
1881
  try:
@@ -2018,13 +2035,15 @@ class AsyncToolsClient:
2018
2035
  raise ApiError(status_code=_response.status_code, body=_response_json)
2019
2036
 
2020
2037
  async def list_mcp_servers(
2021
- self, *, request_options: typing.Optional[RequestOptions] = None
2038
+ self, *, user_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
2022
2039
  ) -> typing.Dict[str, ListMcpServersResponseValue]:
2023
2040
  """
2024
2041
  Get a list of all configured MCP servers
2025
2042
 
2026
2043
  Parameters
2027
2044
  ----------
2045
+ user_id : typing.Optional[str]
2046
+
2028
2047
  request_options : typing.Optional[RequestOptions]
2029
2048
  Request-specific configuration.
2030
2049
 
@@ -2053,6 +2072,9 @@ class AsyncToolsClient:
2053
2072
  _response = await self._client_wrapper.httpx_client.request(
2054
2073
  "v1/tools/mcp/servers",
2055
2074
  method="GET",
2075
+ headers={
2076
+ "user-id": str(user_id) if user_id is not None else None,
2077
+ },
2056
2078
  request_options=request_options,
2057
2079
  )
2058
2080
  try:
@@ -142,6 +142,7 @@ from .openai_types_chat_chat_completion_named_tool_choice_param_function import
142
142
  from .openai_types_chat_completion_create_params_function import OpenaiTypesChatCompletionCreateParamsFunction
143
143
  from .organization import Organization
144
144
  from .organization_create import OrganizationCreate
145
+ from .organization_update import OrganizationUpdate
145
146
  from .parameter_properties import ParameterProperties
146
147
  from .parameters_schema import ParametersSchema
147
148
  from .passage import Passage
@@ -349,6 +350,7 @@ __all__ = [
349
350
  "OpenaiTypesChatCompletionCreateParamsFunction",
350
351
  "Organization",
351
352
  "OrganizationCreate",
353
+ "OrganizationUpdate",
352
354
  "ParameterProperties",
353
355
  "ParametersSchema",
354
356
  "Passage",
@@ -12,11 +12,6 @@ CompletionCreateParamsNonStreamingModel = typing.Union[
12
12
  typing.Literal["o1-preview-2024-09-12"],
13
13
  typing.Literal["o1-mini"],
14
14
  typing.Literal["o1-mini-2024-09-12"],
15
- typing.Literal["computer-use-preview"],
16
- typing.Literal["computer-use-preview-2025-02-04"],
17
- typing.Literal["computer-use-preview-2025-03-11"],
18
- typing.Literal["gpt-4.5-preview"],
19
- typing.Literal["gpt-4.5-preview-2025-02-27"],
20
15
  typing.Literal["gpt-4o"],
21
16
  typing.Literal["gpt-4o-2024-11-20"],
22
17
  typing.Literal["gpt-4o-2024-08-06"],
@@ -26,6 +21,10 @@ CompletionCreateParamsNonStreamingModel = typing.Union[
26
21
  typing.Literal["gpt-4o-audio-preview-2024-12-17"],
27
22
  typing.Literal["gpt-4o-mini-audio-preview"],
28
23
  typing.Literal["gpt-4o-mini-audio-preview-2024-12-17"],
24
+ typing.Literal["gpt-4o-search-preview"],
25
+ typing.Literal["gpt-4o-mini-search-preview"],
26
+ typing.Literal["gpt-4o-search-preview-2025-03-11"],
27
+ typing.Literal["gpt-4o-mini-search-preview-2025-03-11"],
29
28
  typing.Literal["chatgpt-4o-latest"],
30
29
  typing.Literal["gpt-4o-mini"],
31
30
  typing.Literal["gpt-4o-mini-2024-07-18"],
@@ -12,11 +12,6 @@ CompletionCreateParamsStreamingModel = typing.Union[
12
12
  typing.Literal["o1-preview-2024-09-12"],
13
13
  typing.Literal["o1-mini"],
14
14
  typing.Literal["o1-mini-2024-09-12"],
15
- typing.Literal["computer-use-preview"],
16
- typing.Literal["computer-use-preview-2025-02-04"],
17
- typing.Literal["computer-use-preview-2025-03-11"],
18
- typing.Literal["gpt-4.5-preview"],
19
- typing.Literal["gpt-4.5-preview-2025-02-27"],
20
15
  typing.Literal["gpt-4o"],
21
16
  typing.Literal["gpt-4o-2024-11-20"],
22
17
  typing.Literal["gpt-4o-2024-08-06"],
@@ -26,6 +21,10 @@ CompletionCreateParamsStreamingModel = typing.Union[
26
21
  typing.Literal["gpt-4o-audio-preview-2024-12-17"],
27
22
  typing.Literal["gpt-4o-mini-audio-preview"],
28
23
  typing.Literal["gpt-4o-mini-audio-preview-2024-12-17"],
24
+ typing.Literal["gpt-4o-search-preview"],
25
+ typing.Literal["gpt-4o-mini-search-preview"],
26
+ typing.Literal["gpt-4o-search-preview-2025-03-11"],
27
+ typing.Literal["gpt-4o-mini-search-preview-2025-03-11"],
29
28
  typing.Literal["chatgpt-4o-latest"],
30
29
  typing.Literal["gpt-4o-mini"],
31
30
  typing.Literal["gpt-4o-mini-2024-07-18"],
@@ -9,7 +9,7 @@ import pydantic
9
9
  class FileFile(UncheckedBaseModel):
10
10
  file_data: typing.Optional[str] = None
11
11
  file_id: typing.Optional[str] = None
12
- file_name: typing.Optional[str] = None
12
+ filename: typing.Optional[str] = None
13
13
 
14
14
  if IS_PYDANTIC_V2:
15
15
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
@@ -23,6 +23,11 @@ class Organization(UncheckedBaseModel):
23
23
  The creation date of the organization.
24
24
  """
25
25
 
26
+ privileged_tools: typing.Optional[bool] = pydantic.Field(default=None)
27
+ """
28
+ Whether the organization has access to privileged tools.
29
+ """
30
+
26
31
  if IS_PYDANTIC_V2:
27
32
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
28
33
  else:
@@ -12,6 +12,11 @@ class OrganizationCreate(UncheckedBaseModel):
12
12
  The name of the organization.
13
13
  """
14
14
 
15
+ privileged_tools: typing.Optional[bool] = pydantic.Field(default=None)
16
+ """
17
+ Whether the organization has access to privileged tools.
18
+ """
19
+
15
20
  if IS_PYDANTIC_V2:
16
21
  model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
17
22
  else:
@@ -0,0 +1,27 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from ..core.unchecked_base_model import UncheckedBaseModel
4
+ import typing
5
+ import pydantic
6
+ from ..core.pydantic_utilities import IS_PYDANTIC_V2
7
+
8
+
9
+ class OrganizationUpdate(UncheckedBaseModel):
10
+ name: typing.Optional[str] = pydantic.Field(default=None)
11
+ """
12
+ The name of the organization.
13
+ """
14
+
15
+ privileged_tools: typing.Optional[bool] = pydantic.Field(default=None)
16
+ """
17
+ Whether the organization has access to privileged tools.
18
+ """
19
+
20
+ if IS_PYDANTIC_V2:
21
+ model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
22
+ else:
23
+
24
+ class Config:
25
+ frozen = True
26
+ smart_union = True
27
+ extra = pydantic.Extra.allow
@@ -1,5 +1,5 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from .types import CreateVoiceChatCompletionsRequest
3
+ from .types import CreateVoiceChatCompletionsRequestBody
4
4
 
5
- __all__ = ["CreateVoiceChatCompletionsRequest"]
5
+ __all__ = ["CreateVoiceChatCompletionsRequestBody"]
@@ -2,7 +2,7 @@
2
2
 
3
3
  import typing
4
4
  from ..core.client_wrapper import SyncClientWrapper
5
- from .types.create_voice_chat_completions_request import CreateVoiceChatCompletionsRequest
5
+ from .types.create_voice_chat_completions_request_body import CreateVoiceChatCompletionsRequestBody
6
6
  from ..core.request_options import RequestOptions
7
7
  from ..core.jsonable_encoder import jsonable_encoder
8
8
  from ..core.serialization import convert_and_respect_annotation_metadata
@@ -25,7 +25,8 @@ class VoiceClient:
25
25
  self,
26
26
  agent_id: str,
27
27
  *,
28
- request: CreateVoiceChatCompletionsRequest,
28
+ request: CreateVoiceChatCompletionsRequestBody,
29
+ user_id: typing.Optional[str] = None,
29
30
  request_options: typing.Optional[RequestOptions] = None,
30
31
  ) -> typing.Optional[typing.Any]:
31
32
  """
@@ -33,7 +34,9 @@ class VoiceClient:
33
34
  ----------
34
35
  agent_id : str
35
36
 
36
- request : CreateVoiceChatCompletionsRequest
37
+ request : CreateVoiceChatCompletionsRequestBody
38
+
39
+ user_id : typing.Optional[str]
37
40
 
38
41
  request_options : typing.Optional[RequestOptions]
39
42
  Request-specific configuration.
@@ -70,8 +73,11 @@ class VoiceClient:
70
73
  f"v1/voice-beta/{jsonable_encoder(agent_id)}/chat/completions",
71
74
  method="POST",
72
75
  json=convert_and_respect_annotation_metadata(
73
- object_=request, annotation=CreateVoiceChatCompletionsRequest, direction="write"
76
+ object_=request, annotation=CreateVoiceChatCompletionsRequestBody, direction="write"
74
77
  ),
78
+ headers={
79
+ "user-id": str(user_id) if user_id is not None else None,
80
+ },
75
81
  request_options=request_options,
76
82
  omit=OMIT,
77
83
  )
@@ -108,7 +114,8 @@ class AsyncVoiceClient:
108
114
  self,
109
115
  agent_id: str,
110
116
  *,
111
- request: CreateVoiceChatCompletionsRequest,
117
+ request: CreateVoiceChatCompletionsRequestBody,
118
+ user_id: typing.Optional[str] = None,
112
119
  request_options: typing.Optional[RequestOptions] = None,
113
120
  ) -> typing.Optional[typing.Any]:
114
121
  """
@@ -116,7 +123,9 @@ class AsyncVoiceClient:
116
123
  ----------
117
124
  agent_id : str
118
125
 
119
- request : CreateVoiceChatCompletionsRequest
126
+ request : CreateVoiceChatCompletionsRequestBody
127
+
128
+ user_id : typing.Optional[str]
120
129
 
121
130
  request_options : typing.Optional[RequestOptions]
122
131
  Request-specific configuration.
@@ -161,8 +170,11 @@ class AsyncVoiceClient:
161
170
  f"v1/voice-beta/{jsonable_encoder(agent_id)}/chat/completions",
162
171
  method="POST",
163
172
  json=convert_and_respect_annotation_metadata(
164
- object_=request, annotation=CreateVoiceChatCompletionsRequest, direction="write"
173
+ object_=request, annotation=CreateVoiceChatCompletionsRequestBody, direction="write"
165
174
  ),
175
+ headers={
176
+ "user-id": str(user_id) if user_id is not None else None,
177
+ },
166
178
  request_options=request_options,
167
179
  omit=OMIT,
168
180
  )
@@ -1,5 +1,5 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from .create_voice_chat_completions_request import CreateVoiceChatCompletionsRequest
3
+ from .create_voice_chat_completions_request_body import CreateVoiceChatCompletionsRequestBody
4
4
 
5
- __all__ = ["CreateVoiceChatCompletionsRequest"]
5
+ __all__ = ["CreateVoiceChatCompletionsRequestBody"]
@@ -4,4 +4,6 @@ import typing
4
4
  from ...types.completion_create_params_non_streaming import CompletionCreateParamsNonStreaming
5
5
  from ...types.completion_create_params_streaming import CompletionCreateParamsStreaming
6
6
 
7
- CreateVoiceChatCompletionsRequest = typing.Union[CompletionCreateParamsNonStreaming, CompletionCreateParamsStreaming]
7
+ CreateVoiceChatCompletionsRequestBody = typing.Union[
8
+ CompletionCreateParamsNonStreaming, CompletionCreateParamsStreaming
9
+ ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.83
3
+ Version: 0.1.84
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=6C8DmUhpqCPjTd_KamRBrptGiL8NnkPGO-e70sfZpiA,65901
1
+ letta_client/__init__.py,sha256=bMJ2QVwB5uaFZFCplyqr74M69gu7egtuZwIs7LOoQUA,65959
2
2
  letta_client/agents/__init__.py,sha256=5zJALonfv-KgVXgPFZjAlTSo-Fm7Fe3S7i3F8vccAvg,25764
3
3
  letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
4
4
  letta_client/agents/blocks/client.py,sha256=u5zvutxoH_DqfSLWhRtNSRBC9_ezQDx682cxkxDz3JA,23822
@@ -234,7 +234,7 @@ letta_client/blocks/client.py,sha256=LE9dsHaBxFLC3G035f0VpNDG7XKWRK8y9OXpeFCMvUw
234
234
  letta_client/client.py,sha256=k2mZqqEWciVmEQHgipjCK4kQILk74hpSqzcdNwdql9A,21212
235
235
  letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
236
236
  letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
237
- letta_client/core/client_wrapper.py,sha256=ahtzMKKVpae6lXJSin1QYu6XciJ0foI-HnQyFlG8c6Y,1997
237
+ letta_client/core/client_wrapper.py,sha256=zDW4PmX_uTU1Hjf-_FeeEad1PsKrSZMe6_xtiVes198,1997
238
238
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
239
239
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
240
240
  letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
@@ -472,13 +472,13 @@ letta_client/templates/types/templates_create_agents_response_agents_item_tools_
472
472
  letta_client/templates/types/templates_create_agents_response_agents_item_updated_at.py,sha256=Md7WfCTT1_AGvyd24EeWzUibPvnrun9rhyxqCLeAURg,439
473
473
  letta_client/templates/types/templates_create_agents_response_agents_item_updated_at_item.py,sha256=T3rYnv5m_cBAEPBnEjUkkHJLYtFZfXNMbb7a9FrIwKY,175
474
474
  letta_client/tools/__init__.py,sha256=XsuAkxHDA-Z98gLNNW_fiEwFP3fP4XQipflrK2bHl8k,353
475
- letta_client/tools/client.py,sha256=y5WTB5Wzh5gv1IWaSraU6pHYck7RBZlCnQW157OFjuw,77574
475
+ letta_client/tools/client.py,sha256=aJqW1sNecrsjBAs6eFubMo2Up0u3lJxpafo1mkj2fnQ,78344
476
476
  letta_client/tools/types/__init__.py,sha256=R11LYBi6lxkud_DRyaHFUHtlnbfnEI93-SEo7FL4tzs,478
477
477
  letta_client/tools/types/add_mcp_server_request.py,sha256=EieZjfOT95sjkpxXdqy7glpxF4J4J3fm6tlaHFnYk84,265
478
478
  letta_client/tools/types/add_mcp_server_response_item.py,sha256=TWdsKqGb1INhYtpGnAckz0Pw4nZShumSp4pfocRfxCA,270
479
479
  letta_client/tools/types/delete_mcp_server_response_item.py,sha256=MeZObU-7tMSCd-S5yuUjNDse6A1hUz1LLjbko0pXaro,273
480
480
  letta_client/tools/types/list_mcp_servers_response_value.py,sha256=AIoXu4bO8QNSU7zjL1jj0Rg4313wVtPaTt13W0aevLQ,273
481
- letta_client/types/__init__.py,sha256=p5lV9jyVA6byEwICd0TH7OqYcJOvzFa8xyv_22qr9-I,18551
481
+ letta_client/types/__init__.py,sha256=jPtbBLUzunOPB2nW-wVHYIi-PiYBOvb1EeCO5i7ulUE,18629
482
482
  letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
483
483
  letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
484
484
  letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
@@ -531,7 +531,7 @@ letta_client/types/completion_create_params_non_streaming.py,sha256=hjEJ-wJWuFuT
531
531
  letta_client/types/completion_create_params_non_streaming_function_call.py,sha256=6iCjgXwsXnflllhfDDKtHRyxzKqtLcX6-HVr7AXlyUM,329
532
532
  letta_client/types/completion_create_params_non_streaming_messages_item.py,sha256=pKMxLh1XFgMl7LqcjKJmdeKYTCwlr3FLFPTuvaLf3D0,883
533
533
  letta_client/types/completion_create_params_non_streaming_modalities_item.py,sha256=BuyCf2nTCWVhishXFk3CsQphnPwNXj-kBdPMjkb8X10,189
534
- letta_client/types/completion_create_params_non_streaming_model.py,sha256=bWeGbuTRstRZEW3AiHwZIeHFnsLWGRI5wfrpWxv91ko,1966
534
+ letta_client/types/completion_create_params_non_streaming_model.py,sha256=RhKFYjt4pgTgHfoihS1VdfIDjIlR1KCvPVMDIBY6UbY,1935
535
535
  letta_client/types/completion_create_params_non_streaming_reasoning_effort.py,sha256=f1hBX3qksGoGC6O2W5qHblCQXtoZiEhiN8LUy1Rv9Ig,198
536
536
  letta_client/types/completion_create_params_non_streaming_response_format.py,sha256=c16kBch59yhxAgMeFTxGNrEBNl4Vu3fPmZ2RqqS6bkU,407
537
537
  letta_client/types/completion_create_params_non_streaming_service_tier.py,sha256=Tfw62WLF3WSHWZy8VOVXal1INDQNtZhoB8DSA0btJ0g,188
@@ -541,7 +541,7 @@ letta_client/types/completion_create_params_streaming.py,sha256=sgazDkBKpQTk2Ntr
541
541
  letta_client/types/completion_create_params_streaming_function_call.py,sha256=cxsVe0wAIKPAsndL5vB_BCTy6oSxFph7qB1c1LWmeDw,326
542
542
  letta_client/types/completion_create_params_streaming_messages_item.py,sha256=S4E0fe3LgVyetb2PEqhGNxqMj5kgQx4q6Qk2bvvu2Ok,880
543
543
  letta_client/types/completion_create_params_streaming_modalities_item.py,sha256=o9ZU7r22WrE6z-BSJ72LJXHtVRIpK499WArVgY-ODgI,186
544
- letta_client/types/completion_create_params_streaming_model.py,sha256=ESDrTKo0396c3uH7-bxu9Xu7--e0RnBLmuVUN_0R3ho,1963
544
+ letta_client/types/completion_create_params_streaming_model.py,sha256=f80smBsCDdtc7oGKFz4sx8h_wnj_Ls4tyvjZeHdrkwc,1932
545
545
  letta_client/types/completion_create_params_streaming_reasoning_effort.py,sha256=4-JFyaD92zia-kN7bPyCWwf_AMDnG2xUXWx8GQU1EFE,195
546
546
  letta_client/types/completion_create_params_streaming_response_format.py,sha256=31sy6fKZ4r50zvjVTnoOpwNX81Bx7kFM75Mn7-obbYI,404
547
547
  letta_client/types/completion_create_params_streaming_service_tier.py,sha256=chHakgbKOYCMtxdtGmP85rcjGkyOqt2S_JJ9SabSd-o,185
@@ -559,7 +559,7 @@ letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5v
559
559
  letta_client/types/embedding_config.py,sha256=ubGDLn8_H1qOoZUUj6de0MVrQnM2umVR2vdnOolPyr4,2539
560
560
  letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=Ho1HSODi21PkzsZR58g7FlIMReFU2yf0hAS5OyUsW6Q,559
561
561
  letta_client/types/file.py,sha256=ZLCEYJqIJ1pzAJn4Pke6gVdKivKU9FrIg98P4GmFY8M,628
562
- letta_client/types/file_file.py,sha256=5hunDKL7BFz4jvXp9X2oF_YH50Veg1G19fBOQBVcuCQ,666
562
+ letta_client/types/file_file.py,sha256=jbWcPKn-fSUlq9kl8n2us9fPU6x-Z20IKScHD_pJruw,665
563
563
  letta_client/types/file_metadata.py,sha256=vORZH5WZO8AwAuKq0h0W9TTuydjmDlkZC6YyZMy2jbc,1973
564
564
  letta_client/types/function_call.py,sha256=eE6VYWK3A-2xRrIV-QKqrofvaVFcPNqSzl6lrWnopZA,576
565
565
  letta_client/types/function_definition_input.py,sha256=UpoD7ftRpHquJ5zhy28TjXPBVzxj7rOHKv3gX84Nfj8,740
@@ -615,8 +615,9 @@ letta_client/types/omitted_reasoning_content.py,sha256=TL6zor7HxJ_oIYzvdAAdrgR_P
615
615
  letta_client/types/openai_types_chat_chat_completion_message_tool_call_param_function.py,sha256=glG5tG6g2uxP4R5jwsChkf3F0sb208uEbR-25dnrTiM,621
616
616
  letta_client/types/openai_types_chat_chat_completion_named_tool_choice_param_function.py,sha256=20aPdyj3_-cD_p33yZ0ca3IbU9Apq1UrnxCSaU6OgYg,602
617
617
  letta_client/types/openai_types_chat_completion_create_params_function.py,sha256=oTjYqRv8z6SMSdFgTl4W9oI-QUQxz8Unf4yn90sByss,721
618
- letta_client/types/organization.py,sha256=vSXwqYTpxGZgpMTv8rw5jzklZnUYjS6yBTkEFNPNSrU,927
619
- letta_client/types/organization_create.py,sha256=xlF1FgDRa7zpv49kVGWYchcSEUjPEsjF5_m2xHWb9VM,661
618
+ letta_client/types/organization.py,sha256=w8D3x4fEWwXBpDKZkR7C6CjXx2WBSM-ltrslscw8HzM,1080
619
+ letta_client/types/organization_create.py,sha256=qi37VLCejxTYpJe9gC1slhENIdz6B4DchD3ZdVJciT4,814
620
+ letta_client/types/organization_update.py,sha256=uCQAcWm8az3VbMtCEidPBZLh6Qyo4Z0FQco1Hdrk4LY,814
620
621
  letta_client/types/parameter_properties.py,sha256=KVQGp_csoiNzyf9XsL083fwlX_a2Tc8GsCKyWB323C8,609
621
622
  letta_client/types/parameters_schema.py,sha256=ptXcwjuaCwqRhfizeiWAsu3pqT87Jcj_P3YaEkL4asM,748
622
623
  letta_client/types/passage.py,sha256=1OM19TyVCQEL1P3BC58hmzWfawZM4vejiKr0P11dOUk,3034
@@ -685,10 +686,10 @@ letta_client/types/web_search_options_search_context_size.py,sha256=RgJGV4rkuaCT
685
686
  letta_client/types/web_search_options_user_location.py,sha256=4aXfFcwUBu7YNA5XBjfhmD6tgRb0e8LTFexmn-rkDfw,770
686
687
  letta_client/types/web_search_options_user_location_approximate.py,sha256=Ywk01J9H67L6_498E5E6ceJ2VbJUfcLiIJWD_s92_M0,731
687
688
  letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
688
- letta_client/voice/__init__.py,sha256=ZrZEuXIukVGhsfM-i0dIFfqjeSOBMPeEgDva7VvnipE,167
689
- letta_client/voice/client.py,sha256=2KKJiteGk5HQM79ne1jOPl_ZyUTfZM_gXNdZZ_ndPU8,6485
690
- letta_client/voice/types/__init__.py,sha256=hBLJcrom99DkDxxsVRU2ni8kPx6SsCy8gtAJvNOz26w,199
691
- letta_client/voice/types/create_voice_chat_completions_request.py,sha256=K4__83rXRCshfdobyAmH-5fUDJQ_PeSQetTUeC4Abk0,381
692
- letta_client-0.1.83.dist-info/METADATA,sha256=6xzEtVHpF91M2AWDWjYp1TcD2kbdvh1K_TguJpxb9_8,5041
693
- letta_client-0.1.83.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
694
- letta_client-0.1.83.dist-info/RECORD,,
689
+ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Qw,175
690
+ letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
691
+ letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
692
+ letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
693
+ letta_client-0.1.84.dist-info/METADATA,sha256=2oxhbs4fOa6Mc7303-xWZKJ7s_LHZK19DKT9PkLBTK4,5041
694
+ letta_client-0.1.84.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
695
+ letta_client-0.1.84.dist-info/RECORD,,