letta-client 0.1.86__py3-none-any.whl → 0.1.87__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 +2 -2
- letta_client/core/client_wrapper.py +1 -1
- letta_client/tools/client.py +26 -4
- letta_client/types/completion_create_params_non_streaming_model.py +4 -5
- letta_client/types/completion_create_params_streaming_model.py +4 -5
- letta_client/types/file_file.py +1 -1
- letta_client/voice/__init__.py +2 -2
- letta_client/voice/client.py +19 -7
- letta_client/voice/types/__init__.py +2 -2
- letta_client/voice/types/{create_voice_chat_completions_request.py → create_voice_chat_completions_request_body.py} +3 -1
- {letta_client-0.1.86.dist-info → letta_client-0.1.87.dist-info}/METADATA +1 -1
- {letta_client-0.1.86.dist-info → letta_client-0.1.87.dist-info}/RECORD +13 -13
- {letta_client-0.1.86.dist-info → letta_client-0.1.87.dist-info}/WHEEL +0 -0
letta_client/__init__.py
CHANGED
|
@@ -636,7 +636,7 @@ from .tools import (
|
|
|
636
636
|
ListMcpServersResponseValue,
|
|
637
637
|
)
|
|
638
638
|
from .version import __version__
|
|
639
|
-
from .voice import
|
|
639
|
+
from .voice import CreateVoiceChatCompletionsRequestBody
|
|
640
640
|
|
|
641
641
|
__all__ = [
|
|
642
642
|
"ActionModel",
|
|
@@ -918,7 +918,7 @@ __all__ = [
|
|
|
918
918
|
"CoreMemoryBlockSchema",
|
|
919
919
|
"CreateAgentRequestToolRulesItem",
|
|
920
920
|
"CreateBlock",
|
|
921
|
-
"
|
|
921
|
+
"CreateVoiceChatCompletionsRequestBody",
|
|
922
922
|
"DeleteMcpServerResponseItem",
|
|
923
923
|
"DynamicManager",
|
|
924
924
|
"E2BSandboxConfig",
|
|
@@ -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.87",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
letta_client/tools/client.py
CHANGED
|
@@ -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(
|
|
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:
|
|
@@ -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"],
|
letta_client/types/file_file.py
CHANGED
|
@@ -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
|
-
|
|
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
|
letta_client/voice/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from .types import
|
|
3
|
+
from .types import CreateVoiceChatCompletionsRequestBody
|
|
4
4
|
|
|
5
|
-
__all__ = ["
|
|
5
|
+
__all__ = ["CreateVoiceChatCompletionsRequestBody"]
|
letta_client/voice/client.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
4
|
from ..core.client_wrapper import SyncClientWrapper
|
|
5
|
-
from .types.
|
|
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:
|
|
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 :
|
|
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=
|
|
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:
|
|
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 :
|
|
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=
|
|
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 .
|
|
3
|
+
from .create_voice_chat_completions_request_body import CreateVoiceChatCompletionsRequestBody
|
|
4
4
|
|
|
5
|
-
__all__ = ["
|
|
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
|
-
|
|
7
|
+
CreateVoiceChatCompletionsRequestBody = typing.Union[
|
|
8
|
+
CompletionCreateParamsNonStreaming, CompletionCreateParamsStreaming
|
|
9
|
+
]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=riWzZSKXFaVAqdWeMV2wHbuOnJjMJHgSLGoZKP0g7mc,66617
|
|
2
2
|
letta_client/agents/__init__.py,sha256=EZeH7kHAWnifaPd0MwY_sD3BCchrB29ZprJzqwKeTMM,26012
|
|
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
|
|
@@ -236,7 +236,7 @@ letta_client/blocks/client.py,sha256=LE9dsHaBxFLC3G035f0VpNDG7XKWRK8y9OXpeFCMvUw
|
|
|
236
236
|
letta_client/client.py,sha256=k2mZqqEWciVmEQHgipjCK4kQILk74hpSqzcdNwdql9A,21212
|
|
237
237
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
238
238
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
239
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
239
|
+
letta_client/core/client_wrapper.py,sha256=BfXpd4jATWfekgl2Js-WLWc-_nDoz0QPA-FR-AUnCL8,1997
|
|
240
240
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
241
241
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
242
242
|
letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
|
|
@@ -476,7 +476,7 @@ letta_client/templates/types/templates_create_agents_response_agents_item_tools_
|
|
|
476
476
|
letta_client/templates/types/templates_create_agents_response_agents_item_updated_at.py,sha256=Md7WfCTT1_AGvyd24EeWzUibPvnrun9rhyxqCLeAURg,439
|
|
477
477
|
letta_client/templates/types/templates_create_agents_response_agents_item_updated_at_item.py,sha256=T3rYnv5m_cBAEPBnEjUkkHJLYtFZfXNMbb7a9FrIwKY,175
|
|
478
478
|
letta_client/tools/__init__.py,sha256=XsuAkxHDA-Z98gLNNW_fiEwFP3fP4XQipflrK2bHl8k,353
|
|
479
|
-
letta_client/tools/client.py,sha256=
|
|
479
|
+
letta_client/tools/client.py,sha256=aJqW1sNecrsjBAs6eFubMo2Up0u3lJxpafo1mkj2fnQ,78344
|
|
480
480
|
letta_client/tools/types/__init__.py,sha256=R11LYBi6lxkud_DRyaHFUHtlnbfnEI93-SEo7FL4tzs,478
|
|
481
481
|
letta_client/tools/types/add_mcp_server_request.py,sha256=EieZjfOT95sjkpxXdqy7glpxF4J4J3fm6tlaHFnYk84,265
|
|
482
482
|
letta_client/tools/types/add_mcp_server_response_item.py,sha256=TWdsKqGb1INhYtpGnAckz0Pw4nZShumSp4pfocRfxCA,270
|
|
@@ -535,7 +535,7 @@ letta_client/types/completion_create_params_non_streaming.py,sha256=hjEJ-wJWuFuT
|
|
|
535
535
|
letta_client/types/completion_create_params_non_streaming_function_call.py,sha256=6iCjgXwsXnflllhfDDKtHRyxzKqtLcX6-HVr7AXlyUM,329
|
|
536
536
|
letta_client/types/completion_create_params_non_streaming_messages_item.py,sha256=pKMxLh1XFgMl7LqcjKJmdeKYTCwlr3FLFPTuvaLf3D0,883
|
|
537
537
|
letta_client/types/completion_create_params_non_streaming_modalities_item.py,sha256=BuyCf2nTCWVhishXFk3CsQphnPwNXj-kBdPMjkb8X10,189
|
|
538
|
-
letta_client/types/completion_create_params_non_streaming_model.py,sha256=
|
|
538
|
+
letta_client/types/completion_create_params_non_streaming_model.py,sha256=RhKFYjt4pgTgHfoihS1VdfIDjIlR1KCvPVMDIBY6UbY,1935
|
|
539
539
|
letta_client/types/completion_create_params_non_streaming_reasoning_effort.py,sha256=f1hBX3qksGoGC6O2W5qHblCQXtoZiEhiN8LUy1Rv9Ig,198
|
|
540
540
|
letta_client/types/completion_create_params_non_streaming_response_format.py,sha256=c16kBch59yhxAgMeFTxGNrEBNl4Vu3fPmZ2RqqS6bkU,407
|
|
541
541
|
letta_client/types/completion_create_params_non_streaming_service_tier.py,sha256=Tfw62WLF3WSHWZy8VOVXal1INDQNtZhoB8DSA0btJ0g,188
|
|
@@ -545,7 +545,7 @@ letta_client/types/completion_create_params_streaming.py,sha256=sgazDkBKpQTk2Ntr
|
|
|
545
545
|
letta_client/types/completion_create_params_streaming_function_call.py,sha256=cxsVe0wAIKPAsndL5vB_BCTy6oSxFph7qB1c1LWmeDw,326
|
|
546
546
|
letta_client/types/completion_create_params_streaming_messages_item.py,sha256=S4E0fe3LgVyetb2PEqhGNxqMj5kgQx4q6Qk2bvvu2Ok,880
|
|
547
547
|
letta_client/types/completion_create_params_streaming_modalities_item.py,sha256=o9ZU7r22WrE6z-BSJ72LJXHtVRIpK499WArVgY-ODgI,186
|
|
548
|
-
letta_client/types/completion_create_params_streaming_model.py,sha256=
|
|
548
|
+
letta_client/types/completion_create_params_streaming_model.py,sha256=f80smBsCDdtc7oGKFz4sx8h_wnj_Ls4tyvjZeHdrkwc,1932
|
|
549
549
|
letta_client/types/completion_create_params_streaming_reasoning_effort.py,sha256=4-JFyaD92zia-kN7bPyCWwf_AMDnG2xUXWx8GQU1EFE,195
|
|
550
550
|
letta_client/types/completion_create_params_streaming_response_format.py,sha256=31sy6fKZ4r50zvjVTnoOpwNX81Bx7kFM75Mn7-obbYI,404
|
|
551
551
|
letta_client/types/completion_create_params_streaming_service_tier.py,sha256=chHakgbKOYCMtxdtGmP85rcjGkyOqt2S_JJ9SabSd-o,185
|
|
@@ -563,7 +563,7 @@ letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5v
|
|
|
563
563
|
letta_client/types/embedding_config.py,sha256=ubGDLn8_H1qOoZUUj6de0MVrQnM2umVR2vdnOolPyr4,2539
|
|
564
564
|
letta_client/types/embedding_config_embedding_endpoint_type.py,sha256=Ho1HSODi21PkzsZR58g7FlIMReFU2yf0hAS5OyUsW6Q,559
|
|
565
565
|
letta_client/types/file.py,sha256=ZLCEYJqIJ1pzAJn4Pke6gVdKivKU9FrIg98P4GmFY8M,628
|
|
566
|
-
letta_client/types/file_file.py,sha256=
|
|
566
|
+
letta_client/types/file_file.py,sha256=jbWcPKn-fSUlq9kl8n2us9fPU6x-Z20IKScHD_pJruw,665
|
|
567
567
|
letta_client/types/file_metadata.py,sha256=vORZH5WZO8AwAuKq0h0W9TTuydjmDlkZC6YyZMy2jbc,1973
|
|
568
568
|
letta_client/types/function_call.py,sha256=eE6VYWK3A-2xRrIV-QKqrofvaVFcPNqSzl6lrWnopZA,576
|
|
569
569
|
letta_client/types/function_definition_input.py,sha256=UpoD7ftRpHquJ5zhy28TjXPBVzxj7rOHKv3gX84Nfj8,740
|
|
@@ -692,10 +692,10 @@ letta_client/types/web_search_options_search_context_size.py,sha256=RgJGV4rkuaCT
|
|
|
692
692
|
letta_client/types/web_search_options_user_location.py,sha256=4aXfFcwUBu7YNA5XBjfhmD6tgRb0e8LTFexmn-rkDfw,770
|
|
693
693
|
letta_client/types/web_search_options_user_location_approximate.py,sha256=Ywk01J9H67L6_498E5E6ceJ2VbJUfcLiIJWD_s92_M0,731
|
|
694
694
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
695
|
-
letta_client/voice/__init__.py,sha256=
|
|
696
|
-
letta_client/voice/client.py,sha256=
|
|
697
|
-
letta_client/voice/types/__init__.py,sha256=
|
|
698
|
-
letta_client/voice/types/
|
|
699
|
-
letta_client-0.1.
|
|
700
|
-
letta_client-0.1.
|
|
701
|
-
letta_client-0.1.
|
|
695
|
+
letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Qw,175
|
|
696
|
+
letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
|
|
697
|
+
letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
|
|
698
|
+
letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
|
|
699
|
+
letta_client-0.1.87.dist-info/METADATA,sha256=6NzsfNgc_rUK5Tc9WswpPn_tAxSvdW4nZNBz6ioKKqU,5041
|
|
700
|
+
letta_client-0.1.87.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
701
|
+
letta_client-0.1.87.dist-info/RECORD,,
|
|
File without changes
|