letta-client 0.1.85__py3-none-any.whl → 0.1.86__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 +4 -26
- letta_client/types/agent_schema.py +0 -3
- letta_client/types/completion_create_params_non_streaming_model.py +5 -4
- letta_client/types/completion_create_params_streaming_model.py +5 -4
- letta_client/types/core_memory_block_schema.py +0 -2
- letta_client/types/file_file.py +1 -1
- letta_client/types/tool_env_var_schema.py +0 -1
- letta_client/types/tool_schema.py +0 -1
- letta_client/voice/__init__.py +2 -2
- letta_client/voice/client.py +7 -19
- letta_client/voice/types/__init__.py +2 -2
- letta_client/voice/types/{create_voice_chat_completions_request_body.py → create_voice_chat_completions_request.py} +1 -3
- {letta_client-0.1.85.dist-info → letta_client-0.1.86.dist-info}/METADATA +1 -1
- {letta_client-0.1.85.dist-info → letta_client-0.1.86.dist-info}/RECORD +17 -17
- {letta_client-0.1.85.dist-info → letta_client-0.1.86.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 CreateVoiceChatCompletionsRequest
|
|
640
640
|
|
|
641
641
|
__all__ = [
|
|
642
642
|
"ActionModel",
|
|
@@ -918,7 +918,7 @@ __all__ = [
|
|
|
918
918
|
"CoreMemoryBlockSchema",
|
|
919
919
|
"CreateAgentRequestToolRulesItem",
|
|
920
920
|
"CreateBlock",
|
|
921
|
-
"
|
|
921
|
+
"CreateVoiceChatCompletionsRequest",
|
|
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.86",
|
|
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,16 +659,12 @@ 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(
|
|
663
|
-
self, *, user_id: typing.Optional[str] = None, request_options: typing.Optional[RequestOptions] = None
|
|
664
|
-
) -> typing.List[AppModel]:
|
|
662
|
+
def list_composio_apps(self, *, request_options: typing.Optional[RequestOptions] = None) -> typing.List[AppModel]:
|
|
665
663
|
"""
|
|
666
664
|
Get a list of all Composio apps
|
|
667
665
|
|
|
668
666
|
Parameters
|
|
669
667
|
----------
|
|
670
|
-
user_id : typing.Optional[str]
|
|
671
|
-
|
|
672
668
|
request_options : typing.Optional[RequestOptions]
|
|
673
669
|
Request-specific configuration.
|
|
674
670
|
|
|
@@ -689,9 +685,6 @@ class ToolsClient:
|
|
|
689
685
|
_response = self._client_wrapper.httpx_client.request(
|
|
690
686
|
"v1/tools/composio/apps",
|
|
691
687
|
method="GET",
|
|
692
|
-
headers={
|
|
693
|
-
"user-id": str(user_id) if user_id is not None else None,
|
|
694
|
-
},
|
|
695
688
|
request_options=request_options,
|
|
696
689
|
)
|
|
697
690
|
try:
|
|
@@ -835,15 +828,13 @@ class ToolsClient:
|
|
|
835
828
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
836
829
|
|
|
837
830
|
def list_mcp_servers(
|
|
838
|
-
self, *,
|
|
831
|
+
self, *, request_options: typing.Optional[RequestOptions] = None
|
|
839
832
|
) -> typing.Dict[str, ListMcpServersResponseValue]:
|
|
840
833
|
"""
|
|
841
834
|
Get a list of all configured MCP servers
|
|
842
835
|
|
|
843
836
|
Parameters
|
|
844
837
|
----------
|
|
845
|
-
user_id : typing.Optional[str]
|
|
846
|
-
|
|
847
838
|
request_options : typing.Optional[RequestOptions]
|
|
848
839
|
Request-specific configuration.
|
|
849
840
|
|
|
@@ -864,9 +855,6 @@ class ToolsClient:
|
|
|
864
855
|
_response = self._client_wrapper.httpx_client.request(
|
|
865
856
|
"v1/tools/mcp/servers",
|
|
866
857
|
method="GET",
|
|
867
|
-
headers={
|
|
868
|
-
"user-id": str(user_id) if user_id is not None else None,
|
|
869
|
-
},
|
|
870
858
|
request_options=request_options,
|
|
871
859
|
)
|
|
872
860
|
try:
|
|
@@ -1836,15 +1824,13 @@ class AsyncToolsClient:
|
|
|
1836
1824
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
1837
1825
|
|
|
1838
1826
|
async def list_composio_apps(
|
|
1839
|
-
self, *,
|
|
1827
|
+
self, *, request_options: typing.Optional[RequestOptions] = None
|
|
1840
1828
|
) -> typing.List[AppModel]:
|
|
1841
1829
|
"""
|
|
1842
1830
|
Get a list of all Composio apps
|
|
1843
1831
|
|
|
1844
1832
|
Parameters
|
|
1845
1833
|
----------
|
|
1846
|
-
user_id : typing.Optional[str]
|
|
1847
|
-
|
|
1848
1834
|
request_options : typing.Optional[RequestOptions]
|
|
1849
1835
|
Request-specific configuration.
|
|
1850
1836
|
|
|
@@ -1873,9 +1859,6 @@ class AsyncToolsClient:
|
|
|
1873
1859
|
_response = await self._client_wrapper.httpx_client.request(
|
|
1874
1860
|
"v1/tools/composio/apps",
|
|
1875
1861
|
method="GET",
|
|
1876
|
-
headers={
|
|
1877
|
-
"user-id": str(user_id) if user_id is not None else None,
|
|
1878
|
-
},
|
|
1879
1862
|
request_options=request_options,
|
|
1880
1863
|
)
|
|
1881
1864
|
try:
|
|
@@ -2035,15 +2018,13 @@ class AsyncToolsClient:
|
|
|
2035
2018
|
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
2036
2019
|
|
|
2037
2020
|
async def list_mcp_servers(
|
|
2038
|
-
self, *,
|
|
2021
|
+
self, *, request_options: typing.Optional[RequestOptions] = None
|
|
2039
2022
|
) -> typing.Dict[str, ListMcpServersResponseValue]:
|
|
2040
2023
|
"""
|
|
2041
2024
|
Get a list of all configured MCP servers
|
|
2042
2025
|
|
|
2043
2026
|
Parameters
|
|
2044
2027
|
----------
|
|
2045
|
-
user_id : typing.Optional[str]
|
|
2046
|
-
|
|
2047
2028
|
request_options : typing.Optional[RequestOptions]
|
|
2048
2029
|
Request-specific configuration.
|
|
2049
2030
|
|
|
@@ -2072,9 +2053,6 @@ class AsyncToolsClient:
|
|
|
2072
2053
|
_response = await self._client_wrapper.httpx_client.request(
|
|
2073
2054
|
"v1/tools/mcp/servers",
|
|
2074
2055
|
method="GET",
|
|
2075
|
-
headers={
|
|
2076
|
-
"user-id": str(user_id) if user_id is not None else None,
|
|
2077
|
-
},
|
|
2078
2056
|
request_options=request_options,
|
|
2079
2057
|
)
|
|
2080
2058
|
try:
|
|
@@ -22,9 +22,6 @@ class AgentSchema(UncheckedBaseModel):
|
|
|
22
22
|
created_at: str
|
|
23
23
|
description: typing.Optional[str] = None
|
|
24
24
|
embedding_config: EmbeddingConfig
|
|
25
|
-
groups: typing.List[typing.Optional[typing.Any]]
|
|
26
|
-
identities: typing.List[typing.Optional[typing.Any]]
|
|
27
|
-
is_deleted: bool
|
|
28
25
|
llm_config: LlmConfig
|
|
29
26
|
message_buffer_autoclear: bool
|
|
30
27
|
messages: typing.List[MessageSchema]
|
|
@@ -12,6 +12,11 @@ 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"],
|
|
15
20
|
typing.Literal["gpt-4o"],
|
|
16
21
|
typing.Literal["gpt-4o-2024-11-20"],
|
|
17
22
|
typing.Literal["gpt-4o-2024-08-06"],
|
|
@@ -21,10 +26,6 @@ CompletionCreateParamsNonStreamingModel = typing.Union[
|
|
|
21
26
|
typing.Literal["gpt-4o-audio-preview-2024-12-17"],
|
|
22
27
|
typing.Literal["gpt-4o-mini-audio-preview"],
|
|
23
28
|
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"],
|
|
28
29
|
typing.Literal["chatgpt-4o-latest"],
|
|
29
30
|
typing.Literal["gpt-4o-mini"],
|
|
30
31
|
typing.Literal["gpt-4o-mini-2024-07-18"],
|
|
@@ -12,6 +12,11 @@ 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"],
|
|
15
20
|
typing.Literal["gpt-4o"],
|
|
16
21
|
typing.Literal["gpt-4o-2024-11-20"],
|
|
17
22
|
typing.Literal["gpt-4o-2024-08-06"],
|
|
@@ -21,10 +26,6 @@ CompletionCreateParamsStreamingModel = typing.Union[
|
|
|
21
26
|
typing.Literal["gpt-4o-audio-preview-2024-12-17"],
|
|
22
27
|
typing.Literal["gpt-4o-mini-audio-preview"],
|
|
23
28
|
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"],
|
|
28
29
|
typing.Literal["chatgpt-4o-latest"],
|
|
29
30
|
typing.Literal["gpt-4o-mini"],
|
|
30
31
|
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
|
+
file_name: 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 CreateVoiceChatCompletionsRequest
|
|
4
4
|
|
|
5
|
-
__all__ = ["
|
|
5
|
+
__all__ = ["CreateVoiceChatCompletionsRequest"]
|
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 import CreateVoiceChatCompletionsRequest
|
|
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,8 +25,7 @@ class VoiceClient:
|
|
|
25
25
|
self,
|
|
26
26
|
agent_id: str,
|
|
27
27
|
*,
|
|
28
|
-
request:
|
|
29
|
-
user_id: typing.Optional[str] = None,
|
|
28
|
+
request: CreateVoiceChatCompletionsRequest,
|
|
30
29
|
request_options: typing.Optional[RequestOptions] = None,
|
|
31
30
|
) -> typing.Optional[typing.Any]:
|
|
32
31
|
"""
|
|
@@ -34,9 +33,7 @@ class VoiceClient:
|
|
|
34
33
|
----------
|
|
35
34
|
agent_id : str
|
|
36
35
|
|
|
37
|
-
request :
|
|
38
|
-
|
|
39
|
-
user_id : typing.Optional[str]
|
|
36
|
+
request : CreateVoiceChatCompletionsRequest
|
|
40
37
|
|
|
41
38
|
request_options : typing.Optional[RequestOptions]
|
|
42
39
|
Request-specific configuration.
|
|
@@ -73,11 +70,8 @@ class VoiceClient:
|
|
|
73
70
|
f"v1/voice-beta/{jsonable_encoder(agent_id)}/chat/completions",
|
|
74
71
|
method="POST",
|
|
75
72
|
json=convert_and_respect_annotation_metadata(
|
|
76
|
-
object_=request, annotation=
|
|
73
|
+
object_=request, annotation=CreateVoiceChatCompletionsRequest, direction="write"
|
|
77
74
|
),
|
|
78
|
-
headers={
|
|
79
|
-
"user-id": str(user_id) if user_id is not None else None,
|
|
80
|
-
},
|
|
81
75
|
request_options=request_options,
|
|
82
76
|
omit=OMIT,
|
|
83
77
|
)
|
|
@@ -114,8 +108,7 @@ class AsyncVoiceClient:
|
|
|
114
108
|
self,
|
|
115
109
|
agent_id: str,
|
|
116
110
|
*,
|
|
117
|
-
request:
|
|
118
|
-
user_id: typing.Optional[str] = None,
|
|
111
|
+
request: CreateVoiceChatCompletionsRequest,
|
|
119
112
|
request_options: typing.Optional[RequestOptions] = None,
|
|
120
113
|
) -> typing.Optional[typing.Any]:
|
|
121
114
|
"""
|
|
@@ -123,9 +116,7 @@ class AsyncVoiceClient:
|
|
|
123
116
|
----------
|
|
124
117
|
agent_id : str
|
|
125
118
|
|
|
126
|
-
request :
|
|
127
|
-
|
|
128
|
-
user_id : typing.Optional[str]
|
|
119
|
+
request : CreateVoiceChatCompletionsRequest
|
|
129
120
|
|
|
130
121
|
request_options : typing.Optional[RequestOptions]
|
|
131
122
|
Request-specific configuration.
|
|
@@ -170,11 +161,8 @@ class AsyncVoiceClient:
|
|
|
170
161
|
f"v1/voice-beta/{jsonable_encoder(agent_id)}/chat/completions",
|
|
171
162
|
method="POST",
|
|
172
163
|
json=convert_and_respect_annotation_metadata(
|
|
173
|
-
object_=request, annotation=
|
|
164
|
+
object_=request, annotation=CreateVoiceChatCompletionsRequest, direction="write"
|
|
174
165
|
),
|
|
175
|
-
headers={
|
|
176
|
-
"user-id": str(user_id) if user_id is not None else None,
|
|
177
|
-
},
|
|
178
166
|
request_options=request_options,
|
|
179
167
|
omit=OMIT,
|
|
180
168
|
)
|
|
@@ -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 import CreateVoiceChatCompletionsRequest
|
|
4
4
|
|
|
5
|
-
__all__ = ["
|
|
5
|
+
__all__ = ["CreateVoiceChatCompletionsRequest"]
|
|
@@ -4,6 +4,4 @@ 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
|
-
|
|
8
|
-
CompletionCreateParamsNonStreaming, CompletionCreateParamsStreaming
|
|
9
|
-
]
|
|
7
|
+
CreateVoiceChatCompletionsRequest = typing.Union[CompletionCreateParamsNonStreaming, CompletionCreateParamsStreaming]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=zYswZck2pupa9xTLm1OUJP0X6nLcEQVZcackwL6bEfs,66609
|
|
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=ayLcQ8UCLbGLalgukljffmnrGVi8cItr4bBLhg9L8Do,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=y5WTB5Wzh5gv1IWaSraU6pHYck7RBZlCnQW157OFjuw,77574
|
|
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
|
|
@@ -487,7 +487,7 @@ letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qV
|
|
|
487
487
|
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
488
488
|
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
489
489
|
letta_client/types/agent_environment_variable.py,sha256=vutZLcR0yETltgOZ7E_o9kR4vOdBxybVL9lzXSux75w,1698
|
|
490
|
-
letta_client/types/agent_schema.py,sha256=
|
|
490
|
+
letta_client/types/agent_schema.py,sha256=LFHhHc-aUY1-5tEBrkvkbU1GZIoGkbUor3t3jxpTdzw,1703
|
|
491
491
|
letta_client/types/agent_state.py,sha256=hogE7T9E56HzOycCGuv-jmPVsmcA3w7sGsoMnWMW3IY,5196
|
|
492
492
|
letta_client/types/agent_state_tool_rules_item.py,sha256=jrcYmhULwLq704i85rCxW2GJLdz8XnBK0HxBLSkgs6k,539
|
|
493
493
|
letta_client/types/agent_type.py,sha256=BvztKbFTW_Acvc3QPIvzK7JGwSLie1V407byu-VZHz0,195
|
|
@@ -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=bWeGbuTRstRZEW3AiHwZIeHFnsLWGRI5wfrpWxv91ko,1966
|
|
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=ESDrTKo0396c3uH7-bxu9Xu7--e0RnBLmuVUN_0R3ho,1963
|
|
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
|
|
@@ -556,14 +556,14 @@ letta_client/types/conditional_tool_rule.py,sha256=R0nzgjpqedSPUWdBQuv-doiIgYTAZ
|
|
|
556
556
|
letta_client/types/conflict_error_body.py,sha256=Mena-q1jti6nv_7-xrp6sDb_5MXNKPGobHrhpnz9kpY,787
|
|
557
557
|
letta_client/types/context_window_overview.py,sha256=9pwiObSxu-SFyQ1pxSTlQiRatVAyFgqa6t0_qrrsGfU,2815
|
|
558
558
|
letta_client/types/continue_tool_rule.py,sha256=AIKTGsQrJdSNsMCqdSqMqjKS7s610vDO8taVEbSJ6Yc,867
|
|
559
|
-
letta_client/types/core_memory_block_schema.py,sha256=
|
|
559
|
+
letta_client/types/core_memory_block_schema.py,sha256=DGHyLAcFhHBm7oXkhkGIkkckcl9S2bCaU9b3qrUeNtc,984
|
|
560
560
|
letta_client/types/create_block.py,sha256=V57mbqUkh5c-HcDxmIiFVr3tNfoqx-WJ1GRQZPobbxI,1277
|
|
561
561
|
letta_client/types/dynamic_manager.py,sha256=5DRNqtUnjeTwOe5mkNB-SXItqLOfEX0avSrwsrJt1Aw,853
|
|
562
562
|
letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5vLCcATNS3Qaeyw,957
|
|
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=5hunDKL7BFz4jvXp9X2oF_YH50Veg1G19fBOQBVcuCQ,666
|
|
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
|
|
@@ -663,7 +663,7 @@ letta_client/types/tool_call_delta.py,sha256=wGeZwJ9pwYHD5-f4Unf5-vJqefK40eHw9i0
|
|
|
663
663
|
letta_client/types/tool_call_message.py,sha256=AQxpHtGGrPSAm3wnkoaoKO-vx_fFJQWb-YRK940mrGI,1196
|
|
664
664
|
letta_client/types/tool_call_message_tool_call.py,sha256=twtq5-vZIeh1nShqm8iTCN9YFtY7LUIL-bFYuUfhF1o,219
|
|
665
665
|
letta_client/types/tool_create.py,sha256=VSMd23Kkd77SPbLv2oRHEzXqR2Eexc0ervjxXYLHiqc,1522
|
|
666
|
-
letta_client/types/tool_env_var_schema.py,sha256
|
|
666
|
+
letta_client/types/tool_env_var_schema.py,sha256=-YFJaXkjIO4BoPgyEQpaOGMNK5zBWlLkIuUjGX9DqHU,660
|
|
667
667
|
letta_client/types/tool_json_schema.py,sha256=EgCxNOxeoF4y_-BDLAp6z_qcxTc87w_uSuZdjZpn3Gk,754
|
|
668
668
|
letta_client/types/tool_return.py,sha256=f-6zaRo8Bwl0i0Q0rHl8vKOfzymFHN_tVRoC2lMWksI,984
|
|
669
669
|
letta_client/types/tool_return_content.py,sha256=0CdaO0-oM9iwGQoDX0MmzcT9liNgOOuItvDUY0QNYWA,956
|
|
@@ -671,7 +671,7 @@ letta_client/types/tool_return_message.py,sha256=tC-YbPGSIlfezC0gcNv33qWBDyTAd41
|
|
|
671
671
|
letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
|
|
672
672
|
letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
|
|
673
673
|
letta_client/types/tool_rule_schema.py,sha256=cuOWIHHG63nG-EVYz4qV9psQ8MH0ujmLGjHiPVV-3Kk,578
|
|
674
|
-
letta_client/types/tool_schema.py,sha256=
|
|
674
|
+
letta_client/types/tool_schema.py,sha256=q5iRbpiIqWpNvXeDCi7BUyDbQzBKUnTIXEIAujn1bxw,1122
|
|
675
675
|
letta_client/types/tool_type.py,sha256=v6DX7qGAbg9t4HZTa9GBuzehNDCW3NkD6Zi3Z1teEKI,336
|
|
676
676
|
letta_client/types/update_assistant_message.py,sha256=D-51o8uXk3X_2Fb2zJ4KoMeRxPiDWaCb3ugRfjBMCTI,878
|
|
677
677
|
letta_client/types/update_assistant_message_content.py,sha256=rh3DP_SpxyBNnf0EDtoaKmPIPV-cXRSFju33NbHgeF0,247
|
|
@@ -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=ZrZEuXIukVGhsfM-i0dIFfqjeSOBMPeEgDva7VvnipE,167
|
|
696
|
+
letta_client/voice/client.py,sha256=2KKJiteGk5HQM79ne1jOPl_ZyUTfZM_gXNdZZ_ndPU8,6485
|
|
697
|
+
letta_client/voice/types/__init__.py,sha256=hBLJcrom99DkDxxsVRU2ni8kPx6SsCy8gtAJvNOz26w,199
|
|
698
|
+
letta_client/voice/types/create_voice_chat_completions_request.py,sha256=K4__83rXRCshfdobyAmH-5fUDJQ_PeSQetTUeC4Abk0,381
|
|
699
|
+
letta_client-0.1.86.dist-info/METADATA,sha256=aaJcBeufHb0NMGNnG2ZKR8wdQUgF4Akzn3OVtHXv_-8,5041
|
|
700
|
+
letta_client-0.1.86.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
701
|
+
letta_client-0.1.86.dist-info/RECORD,,
|
|
File without changes
|