letta-client 0.1.69__py3-none-any.whl → 0.1.71__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 +36 -4
- letta_client/agents/client.py +25 -24
- letta_client/agents/messages/client.py +40 -24
- letta_client/core/client_wrapper.py +1 -1
- letta_client/groups/client.py +24 -8
- letta_client/types/__init__.py +36 -4
- letta_client/types/agent_schema.py +51 -0
- letta_client/types/assistant_message.py +3 -1
- letta_client/types/core_memory_block_schema.py +33 -0
- letta_client/types/letta_message_content_union.py +12 -0
- letta_client/types/message.py +2 -2
- letta_client/types/message_content_item.py +13 -0
- letta_client/types/message_create_content.py +2 -2
- letta_client/types/message_schema.py +30 -0
- letta_client/types/omitted_reasoning_content.py +23 -0
- letta_client/types/parameter_properties.py +20 -0
- letta_client/types/parameters_schema.py +22 -0
- letta_client/types/reasoning_content.py +33 -0
- letta_client/types/reasoning_message.py +6 -0
- letta_client/types/reasoning_message_source.py +5 -0
- letta_client/types/redacted_reasoning_content.py +23 -0
- letta_client/types/system_message.py +5 -4
- letta_client/types/tag_schema.py +19 -0
- letta_client/types/tool_call_content.py +33 -0
- letta_client/types/tool_call_message.py +2 -0
- letta_client/types/tool_env_var_schema.py +24 -0
- letta_client/types/tool_json_schema.py +24 -0
- letta_client/types/tool_return_content.py +33 -0
- letta_client/types/tool_return_message.py +2 -0
- letta_client/types/tool_rule_schema.py +20 -0
- letta_client/types/tool_schema.py +31 -0
- letta_client/types/update_system_message.py +2 -3
- letta_client/types/update_user_message.py +1 -1
- letta_client/types/user_message.py +4 -2
- {letta_client-0.1.69.dist-info → letta_client-0.1.71.dist-info}/METADATA +7 -3
- {letta_client-0.1.69.dist-info → letta_client-0.1.71.dist-info}/RECORD +37 -21
- letta_client/types/system_message_content.py +0 -6
- letta_client/types/update_system_message_content.py +0 -6
- {letta_client-0.1.69.dist-info → letta_client-0.1.71.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,33 @@
|
|
|
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 ToolReturnContent(UncheckedBaseModel):
|
|
10
|
+
type: typing.Literal["tool_return"] = "tool_return"
|
|
11
|
+
tool_call_id: str = pydantic.Field()
|
|
12
|
+
"""
|
|
13
|
+
References the ID of the ToolCallContent that initiated this tool call.
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
content: str = pydantic.Field()
|
|
17
|
+
"""
|
|
18
|
+
The content returned by the tool execution.
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
is_error: bool = pydantic.Field()
|
|
22
|
+
"""
|
|
23
|
+
Indicates whether the tool execution resulted in an error.
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
if IS_PYDANTIC_V2:
|
|
27
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
28
|
+
else:
|
|
29
|
+
|
|
30
|
+
class Config:
|
|
31
|
+
frozen = True
|
|
32
|
+
smart_union = True
|
|
33
|
+
extra = pydantic.Extra.allow
|
|
@@ -15,6 +15,7 @@ class ToolReturnMessage(UncheckedBaseModel):
|
|
|
15
15
|
Args:
|
|
16
16
|
id (str): The ID of the message
|
|
17
17
|
date (datetime): The date the message was created in ISO format
|
|
18
|
+
name (Optional[str]): The name of the sender of the message
|
|
18
19
|
tool_return (str): The return value of the tool
|
|
19
20
|
status (Literal["success", "error"]): The status of the tool call
|
|
20
21
|
tool_call_id (str): A unique identifier for the tool call that generated this message
|
|
@@ -24,6 +25,7 @@ class ToolReturnMessage(UncheckedBaseModel):
|
|
|
24
25
|
|
|
25
26
|
id: str
|
|
26
27
|
date: dt.datetime
|
|
28
|
+
name: typing.Optional[str] = None
|
|
27
29
|
message_type: typing.Literal["tool_return_message"] = "tool_return_message"
|
|
28
30
|
tool_return: str
|
|
29
31
|
status: ToolReturnMessageStatus
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
5
|
+
import typing
|
|
6
|
+
import pydantic
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class ToolRuleSchema(UncheckedBaseModel):
|
|
10
|
+
tool_name: str
|
|
11
|
+
type: str
|
|
12
|
+
|
|
13
|
+
if IS_PYDANTIC_V2:
|
|
14
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
15
|
+
else:
|
|
16
|
+
|
|
17
|
+
class Config:
|
|
18
|
+
frozen = True
|
|
19
|
+
smart_union = True
|
|
20
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
from .tool_json_schema import ToolJsonSchema
|
|
6
|
+
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
|
+
import pydantic
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class ToolSchema(UncheckedBaseModel):
|
|
11
|
+
args_json_schema: typing.Optional[typing.Any] = None
|
|
12
|
+
created_at: str
|
|
13
|
+
description: str
|
|
14
|
+
is_deleted: bool
|
|
15
|
+
json_schema: ToolJsonSchema
|
|
16
|
+
name: str
|
|
17
|
+
return_char_limit: int
|
|
18
|
+
source_code: typing.Optional[str] = None
|
|
19
|
+
source_type: str
|
|
20
|
+
tags: typing.List[str]
|
|
21
|
+
tool_type: str
|
|
22
|
+
updated_at: str
|
|
23
|
+
|
|
24
|
+
if IS_PYDANTIC_V2:
|
|
25
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
26
|
+
else:
|
|
27
|
+
|
|
28
|
+
class Config:
|
|
29
|
+
frozen = True
|
|
30
|
+
smart_union = True
|
|
31
|
+
extra = pydantic.Extra.allow
|
|
@@ -2,16 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
|
-
from .update_system_message_content import UpdateSystemMessageContent
|
|
6
5
|
import pydantic
|
|
7
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
class UpdateSystemMessage(UncheckedBaseModel):
|
|
11
10
|
message_type: typing.Optional[typing.Literal["system_message"]] = None
|
|
12
|
-
content:
|
|
11
|
+
content: str = pydantic.Field()
|
|
13
12
|
"""
|
|
14
|
-
The message content sent by the system (can be a string or an array of content parts)
|
|
13
|
+
The message content sent by the system (can be a string or an array of multi-modal content parts)
|
|
15
14
|
"""
|
|
16
15
|
|
|
17
16
|
if IS_PYDANTIC_V2:
|
|
@@ -11,7 +11,7 @@ class UpdateUserMessage(UncheckedBaseModel):
|
|
|
11
11
|
message_type: typing.Optional[typing.Literal["user_message"]] = None
|
|
12
12
|
content: UpdateUserMessageContent = pydantic.Field()
|
|
13
13
|
"""
|
|
14
|
-
The message content sent by the user (can be a string or an array of content parts)
|
|
14
|
+
The message content sent by the user (can be a string or an array of multi-modal content parts)
|
|
15
15
|
"""
|
|
16
16
|
|
|
17
17
|
if IS_PYDANTIC_V2:
|
|
@@ -15,15 +15,17 @@ class UserMessage(UncheckedBaseModel):
|
|
|
15
15
|
Args:
|
|
16
16
|
id (str): The ID of the message
|
|
17
17
|
date (datetime): The date the message was created in ISO format
|
|
18
|
-
|
|
18
|
+
name (Optional[str]): The name of the sender of the message
|
|
19
|
+
content (Union[str, List[LettaUserMessageContentUnion]]): The message content sent by the user (can be a string or an array of multi-modal content parts)
|
|
19
20
|
"""
|
|
20
21
|
|
|
21
22
|
id: str
|
|
22
23
|
date: dt.datetime
|
|
24
|
+
name: typing.Optional[str] = None
|
|
23
25
|
message_type: typing.Literal["user_message"] = "user_message"
|
|
24
26
|
content: UserMessageContent = pydantic.Field()
|
|
25
27
|
"""
|
|
26
|
-
The message content sent by the user (can be a string or an array of content parts)
|
|
28
|
+
The message content sent by the user (can be a string or an array of multi-modal content parts)
|
|
27
29
|
"""
|
|
28
30
|
|
|
29
31
|
if IS_PYDANTIC_V2:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: letta-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.71
|
|
4
4
|
Summary:
|
|
5
5
|
Requires-Python: >=3.8,<4.0
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -100,7 +100,7 @@ except ApiError as e:
|
|
|
100
100
|
The SDK supports streaming responses, as well, the response will be a generator that you can loop over.
|
|
101
101
|
|
|
102
102
|
```python
|
|
103
|
-
from letta_client import Letta, MessageCreate
|
|
103
|
+
from letta_client import Letta, MessageCreate, TextContent
|
|
104
104
|
|
|
105
105
|
client = Letta(
|
|
106
106
|
token="YOUR_TOKEN",
|
|
@@ -110,7 +110,11 @@ response = client.agents.messages.create_stream(
|
|
|
110
110
|
messages=[
|
|
111
111
|
MessageCreate(
|
|
112
112
|
role="user",
|
|
113
|
-
content=
|
|
113
|
+
content=[
|
|
114
|
+
TextContent(
|
|
115
|
+
text="text",
|
|
116
|
+
)
|
|
117
|
+
],
|
|
114
118
|
)
|
|
115
119
|
],
|
|
116
120
|
)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
letta_client/__init__.py,sha256=
|
|
1
|
+
letta_client/__init__.py,sha256=dGS3s7eJZm98AzX5yDR4d1Wh253pMpjhIWU8BfkoXLg,64277
|
|
2
2
|
letta_client/agents/__init__.py,sha256=HMLlMwIDoMSMsE99OMGYmDQbdZcYWScYF2L1bW_2zKA,25036
|
|
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
|
|
5
|
-
letta_client/agents/client.py,sha256=
|
|
5
|
+
letta_client/agents/client.py,sha256=RCq2N7aO8gk_-dVwt5tP4ppKgiZ_i7hy4rPASyx2f5o,84696
|
|
6
6
|
letta_client/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
7
7
|
letta_client/agents/context/client.py,sha256=GKKvoG4N_K8Biz9yDjeIHpFG0C8Cwc7tHmEX3pTL_9U,4815
|
|
8
8
|
letta_client/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -12,7 +12,7 @@ letta_client/agents/memory_variables/client.py,sha256=6qFVbR_tdfqj4HQ1h1HXR8DZCV
|
|
|
12
12
|
letta_client/agents/memory_variables/types/__init__.py,sha256=EoznK0WvhCyFYd4KDdU-cGDQWpSXmq79BSkqVHN-j7A,180
|
|
13
13
|
letta_client/agents/memory_variables/types/memory_variables_list_response.py,sha256=bsF__n_B4ZXEHzg--OVD6tHHXt_aM-FjHm2x1ZXPnL0,599
|
|
14
14
|
letta_client/agents/messages/__init__.py,sha256=M7Ar6Rmb8we4dfYE6jj3FCL9UvVFy1bNQIPflUXMWHA,243
|
|
15
|
-
letta_client/agents/messages/client.py,sha256=
|
|
15
|
+
letta_client/agents/messages/client.py,sha256=eFYRQUTubKq6N1CTebdLL_oT7LIkOyVEXiR6yaW7tig,36721
|
|
16
16
|
letta_client/agents/messages/types/__init__.py,sha256=Oc2j0oGOs96IEFf9xsJIkjBjoq3OMtse64YwWv3F9Io,335
|
|
17
17
|
letta_client/agents/messages/types/letta_streaming_response.py,sha256=MdE2PxQ1x1AviakHXsWVcFv97a3RchzzzIiD77w4EC8,665
|
|
18
18
|
letta_client/agents/messages/types/messages_modify_request.py,sha256=7C2X3BKye-YDSXOkdEmxxt34seI4jkLK0-govtc4nhg,475
|
|
@@ -228,7 +228,7 @@ letta_client/blocks/client.py,sha256=LE9dsHaBxFLC3G035f0VpNDG7XKWRK8y9OXpeFCMvUw
|
|
|
228
228
|
letta_client/client.py,sha256=xdSrD4IkWokZHujowd1r7zESBoVgKGNvo6RqgZ3f0Fg,12808
|
|
229
229
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
230
230
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
231
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
231
|
+
letta_client/core/client_wrapper.py,sha256=f7ga-thRWR6NBeA9bApbqIDMvneEIfORwEkFOiHirGo,1997
|
|
232
232
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
233
233
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
234
234
|
letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
|
|
@@ -246,7 +246,7 @@ letta_client/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXv
|
|
|
246
246
|
letta_client/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
|
|
247
247
|
letta_client/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
248
248
|
letta_client/groups/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
249
|
-
letta_client/groups/client.py,sha256=
|
|
249
|
+
letta_client/groups/client.py,sha256=lSPGSgnEHG--tcKgbJuH-y4LAgdxe2e0V0Nul6YGpx8,44048
|
|
250
250
|
letta_client/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
251
251
|
letta_client/health/client.py,sha256=6BjXH83ZhsLt_MD4QA2hiTsvgfeIgxMT1KSN0Oj6e1I,3242
|
|
252
252
|
letta_client/identities/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -466,18 +466,19 @@ letta_client/tools/types/add_mcp_server_request.py,sha256=EieZjfOT95sjkpxXdqy7gl
|
|
|
466
466
|
letta_client/tools/types/add_mcp_server_response_item.py,sha256=pb3A4IoP7Qpen0UDDniXrASYEJZWnYnnrZThtPkvZt4,270
|
|
467
467
|
letta_client/tools/types/delete_mcp_server_response_item.py,sha256=hKc4uehqcubO8BzpgMlvk2jJAjHXOWRM_zmWsCz_vZE,273
|
|
468
468
|
letta_client/tools/types/list_mcp_servers_response_value.py,sha256=AIoXu4bO8QNSU7zjL1jj0Rg4313wVtPaTt13W0aevLQ,273
|
|
469
|
-
letta_client/types/__init__.py,sha256=
|
|
469
|
+
letta_client/types/__init__.py,sha256=TWfCMqSPdEGEfBWiy5EVmqL2tRr8vMPSWZzU_pgtqm4,18454
|
|
470
470
|
letta_client/types/action_model.py,sha256=y1e2XMv3skFaNJIBdYoBKgiORzGh05aOVvu-qVR9uHg,1240
|
|
471
471
|
letta_client/types/action_parameters_model.py,sha256=LgKf5aPZG3-OHGxFdXiSokIDgce8c02xPYIAY05VgW8,828
|
|
472
472
|
letta_client/types/action_response_model.py,sha256=yq2Fd9UU8j7vvtE3VqXUoRRvDzWcfJPj_95ynGdeHCs,824
|
|
473
473
|
letta_client/types/agent_environment_variable.py,sha256=vutZLcR0yETltgOZ7E_o9kR4vOdBxybVL9lzXSux75w,1698
|
|
474
|
+
letta_client/types/agent_schema.py,sha256=qo2okN6LjB65jpN-RmFYemi50aWV4DOOaWyB_Qz7z8Y,1786
|
|
474
475
|
letta_client/types/agent_state.py,sha256=hogE7T9E56HzOycCGuv-jmPVsmcA3w7sGsoMnWMW3IY,5196
|
|
475
476
|
letta_client/types/agent_state_tool_rules_item.py,sha256=qWQIVi8G-ulUjHJqkUDOZQdSN7aajyOxwg3Y7rBBrOs,448
|
|
476
477
|
letta_client/types/agent_type.py,sha256=BvztKbFTW_Acvc3QPIvzK7JGwSLie1V407byu-VZHz0,195
|
|
477
478
|
letta_client/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
|
|
478
479
|
letta_client/types/app_auth_scheme_auth_mode.py,sha256=KfJ8AQVxlvWo2DgDGak9yXtx5F2lvRULB2KVGy2aSJo,412
|
|
479
480
|
letta_client/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
|
|
480
|
-
letta_client/types/assistant_message.py,sha256=
|
|
481
|
+
letta_client/types/assistant_message.py,sha256=AsvwJO6FH96-wgLaErxUeT2gN6_9DrIPBXX8rTh0FA4,1387
|
|
481
482
|
letta_client/types/assistant_message_content.py,sha256=yKC7GsSHadzc-ye0Zp7TOqq_UBExULCXxdNn5CXJMsQ,241
|
|
482
483
|
letta_client/types/audio.py,sha256=aCgzL9SmkmM4yU7hy2IWwPrC-wtllplo3dQF9mjk7Fg,548
|
|
483
484
|
letta_client/types/auth_request.py,sha256=q63VMj39aCmljDuzUeAClXEqyaoa_HKv5IraSv8ry9M,683
|
|
@@ -539,6 +540,7 @@ letta_client/types/conditional_tool_rule.py,sha256=R0nzgjpqedSPUWdBQuv-doiIgYTAZ
|
|
|
539
540
|
letta_client/types/conflict_error_body.py,sha256=Mena-q1jti6nv_7-xrp6sDb_5MXNKPGobHrhpnz9kpY,787
|
|
540
541
|
letta_client/types/context_window_overview.py,sha256=9pwiObSxu-SFyQ1pxSTlQiRatVAyFgqa6t0_qrrsGfU,2815
|
|
541
542
|
letta_client/types/continue_tool_rule.py,sha256=AIKTGsQrJdSNsMCqdSqMqjKS7s610vDO8taVEbSJ6Yc,867
|
|
543
|
+
letta_client/types/core_memory_block_schema.py,sha256=FAKcmH4B8EiJ6vltX6-dVstVzgznYUU4sOPUVnlFBOY,1062
|
|
542
544
|
letta_client/types/create_block.py,sha256=V57mbqUkh5c-HcDxmIiFVr3tNfoqx-WJ1GRQZPobbxI,1277
|
|
543
545
|
letta_client/types/dynamic_manager.py,sha256=5DRNqtUnjeTwOe5mkNB-SXItqLOfEX0avSrwsrJt1Aw,853
|
|
544
546
|
letta_client/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5vLCcATNS3Qaeyw,957
|
|
@@ -573,6 +575,7 @@ letta_client/types/job.py,sha256=VJBdFIY0rwqh4hObTchlU2jrloTjZwUEA44pNtY_JBg,232
|
|
|
573
575
|
letta_client/types/job_status.py,sha256=0Gu5Tku79SDVzCxnjVXQyDPNCizGWUP1ppohAck6a2U,189
|
|
574
576
|
letta_client/types/job_type.py,sha256=Roa04Ry0I-8YMYcDHiHSQwqBavZyPonzkZtjf098e-Q,145
|
|
575
577
|
letta_client/types/json_schema.py,sha256=EHcLKBSGRsSzCKTpujKFHylcLJG6ODQIBrjQkU4lWDQ,870
|
|
578
|
+
letta_client/types/letta_message_content_union.py,sha256=YxzyXKxUMeqbqWOlDs9LC8HUiqEhgkNCV9a76GS3spg,486
|
|
576
579
|
letta_client/types/letta_message_union.py,sha256=FM4Zippr5fJ05AZ2aZRFlqp348xNgLbzVOcrnyNfytI,493
|
|
577
580
|
letta_client/types/letta_request.py,sha256=bCPDRJhSJSo5eILJp0mTw_k26O3dZL1vChfAcaZ0rE8,1240
|
|
578
581
|
letta_client/types/letta_request_config.py,sha256=b6K4QtDdHjcZKfBb1fugUuoPrT2N4d5TTB0PIRNI2SU,1085
|
|
@@ -586,22 +589,30 @@ letta_client/types/manager_type.py,sha256=hV271989JpEhJQH02MzLpJ34EsbGnyMlckbz2T
|
|
|
586
589
|
letta_client/types/mcp_server_type.py,sha256=Hv45mKMPzmey2UVjwrTAvWXP1sDd13UwAtvtogBloLo,153
|
|
587
590
|
letta_client/types/mcp_tool.py,sha256=_GSTb0k8l-IUEflRkQ6-v45UnbTcA4Nv1N8sgmExJQ0,912
|
|
588
591
|
letta_client/types/memory.py,sha256=KD5MkDQB-vbRPT9f_-yFBWY1WUW_NWxYEI0IiflG6P8,1035
|
|
589
|
-
letta_client/types/message.py,sha256=
|
|
592
|
+
letta_client/types/message.py,sha256=g7iDdt_ZZRsTAtDylSgzlJJjttjczjVmXLELYzTEgcI,3617
|
|
593
|
+
letta_client/types/message_content_item.py,sha256=mg2npSBRXsH7-fAwhx9YhkVbeCF3cM8pE6fPYtUDIyc,550
|
|
590
594
|
letta_client/types/message_create.py,sha256=x80xQYxC3IUHs7PKCqHfeJkHRh02dx0oOc0PoJO8krc,1011
|
|
591
|
-
letta_client/types/message_create_content.py,sha256=
|
|
595
|
+
letta_client/types/message_create_content.py,sha256=KL3XAVKVrdsh4DZwdxKofUyehS-vnOT_VJNVzZDpE20,226
|
|
592
596
|
letta_client/types/message_create_role.py,sha256=atjQEZ8iT4gTAmrFTFnRaM66f0MGsgfGq6hpx1Q-i44,159
|
|
593
597
|
letta_client/types/message_role.py,sha256=HKatrA1jt02oTObExloTY3rW8Urzn37kBTg0Z6MbwkQ,186
|
|
598
|
+
letta_client/types/message_schema.py,sha256=211PUXXaYVk3hZV2CY99diP3uzfCW_OtpE0gJsOnkeA,976
|
|
594
599
|
letta_client/types/not_found_error_body.py,sha256=_1esSlUdkBx6CRs6aAIJrxzh3VZKEG0xzeLbxebBuy0,615
|
|
595
600
|
letta_client/types/not_found_error_body_message.py,sha256=Kc9xrVghgDATdPAGpTPnzyKe6ds5q8Vr6zcBU5lLcH4,309
|
|
601
|
+
letta_client/types/omitted_reasoning_content.py,sha256=TL6zor7HxJ_oIYzvdAAdrgR_P52tycZsRNVEFjUewho,739
|
|
596
602
|
letta_client/types/openai_types_chat_chat_completion_message_tool_call_param_function.py,sha256=glG5tG6g2uxP4R5jwsChkf3F0sb208uEbR-25dnrTiM,621
|
|
597
603
|
letta_client/types/openai_types_chat_chat_completion_named_tool_choice_param_function.py,sha256=20aPdyj3_-cD_p33yZ0ca3IbU9Apq1UrnxCSaU6OgYg,602
|
|
598
604
|
letta_client/types/openai_types_chat_completion_create_params_function.py,sha256=oTjYqRv8z6SMSdFgTl4W9oI-QUQxz8Unf4yn90sByss,721
|
|
599
605
|
letta_client/types/organization.py,sha256=vSXwqYTpxGZgpMTv8rw5jzklZnUYjS6yBTkEFNPNSrU,927
|
|
600
606
|
letta_client/types/organization_create.py,sha256=xlF1FgDRa7zpv49kVGWYchcSEUjPEsjF5_m2xHWb9VM,661
|
|
607
|
+
letta_client/types/parameter_properties.py,sha256=KVQGp_csoiNzyf9XsL083fwlX_a2Tc8GsCKyWB323C8,609
|
|
608
|
+
letta_client/types/parameters_schema.py,sha256=ptXcwjuaCwqRhfizeiWAsu3pqT87Jcj_P3YaEkL4asM,748
|
|
601
609
|
letta_client/types/passage.py,sha256=1OM19TyVCQEL1P3BC58hmzWfawZM4vejiKr0P11dOUk,3034
|
|
602
610
|
letta_client/types/pip_requirement.py,sha256=Hmh7VpJhdSfFkafh6QwAehCp0MQUBXv1YAoYP-2wV2M,773
|
|
603
611
|
letta_client/types/provider.py,sha256=RvdE9dzGFJ4hcmyvk2xeO7RNpxQvXhB_S9DNy8t_z-E,1053
|
|
604
|
-
letta_client/types/
|
|
612
|
+
letta_client/types/reasoning_content.py,sha256=aId-87QjQ4sm_fuCmzIdZZghr-9DFeVV-Lv9x5iVw3I,995
|
|
613
|
+
letta_client/types/reasoning_message.py,sha256=HbSYz0TbnGsFb1MELz0oCDMVC2dg5mY9jdmn3KCeFm0,1354
|
|
614
|
+
letta_client/types/reasoning_message_source.py,sha256=GYOWGm2mje1yYbR8E2kbAeQS--VDrGlpsobEBQHE2cU,186
|
|
615
|
+
letta_client/types/redacted_reasoning_content.py,sha256=ROAcdqOjM-kaw23HrVJrh0a49TRYuijanHDaCqcMErM,735
|
|
605
616
|
letta_client/types/response_format_json_object.py,sha256=ZSWmwdN8itFr5q77mxuBhEWRBh2CubAonJUCi88UjbA,611
|
|
606
617
|
letta_client/types/response_format_json_schema.py,sha256=7CgBQ9Lmst2oz_NoGr-1Sk-7Yq33BBhkqpRoKXh-qPo,675
|
|
607
618
|
letta_client/types/response_format_text.py,sha256=5HhXaYWDR0zeFLhH5nIqIN3n192UXrMZeSyORjIWFKQ,591
|
|
@@ -621,32 +632,37 @@ letta_client/types/sse_server_config.py,sha256=b-h5FLm5MELZ5A9bwZt-02Zx_f3UbfKAQ
|
|
|
621
632
|
letta_client/types/stdio_server_config.py,sha256=dEQ7bguiLikGemLxYZJ3JCmmEQgAMsSPO_P52oHZSl0,1091
|
|
622
633
|
letta_client/types/step.py,sha256=XE98vMiU34dgUxLPvmJLdp9iWFPjg6E2Pb8xNSURMMg,2988
|
|
623
634
|
letta_client/types/supervisor_manager.py,sha256=VdR1ySp4k43apxM8Bb5uNoBvADsvz8oMEEtDy2F5K6M,676
|
|
624
|
-
letta_client/types/system_message.py,sha256=
|
|
625
|
-
letta_client/types/
|
|
635
|
+
letta_client/types/system_message.py,sha256=2Kc105jQLbp-4kuNa8sXj2Zm8-bcF0V0y9eOlmxrCaU,1180
|
|
636
|
+
letta_client/types/tag_schema.py,sha256=FEszKlRD2FqezKlX99OLqTqf46dONlcGPo1m43osdNo,553
|
|
626
637
|
letta_client/types/terminal_tool_rule.py,sha256=82a7AnohOqCFBSOt7OwsKeh7gHgq8KTlgojxlm3t76E,863
|
|
627
638
|
letta_client/types/text_content.py,sha256=Z8UL4Sqqq2qClKU_nCgR9XFCj3dwYyhZMmvnnz1F0AE,670
|
|
628
639
|
letta_client/types/tool.py,sha256=xXKWpxfzUtw7OjLcjnil6GeFiVrFvk9gtaYHWUM-7AU,2510
|
|
629
640
|
letta_client/types/tool_call.py,sha256=EKGAFwzoa6zMTpOkG55hWzFn_AgPrbLXSOu5M84x8WU,594
|
|
641
|
+
letta_client/types/tool_call_content.py,sha256=5aceJgOQSkL05Hw5LXG49yxN8CmTcp6jj9aeQp-Wtks,995
|
|
630
642
|
letta_client/types/tool_call_delta.py,sha256=wGeZwJ9pwYHD5-f4Unf5-vJqefK40eHw9i0w3bCjRoE,671
|
|
631
|
-
letta_client/types/tool_call_message.py,sha256=
|
|
643
|
+
letta_client/types/tool_call_message.py,sha256=AQxpHtGGrPSAm3wnkoaoKO-vx_fFJQWb-YRK940mrGI,1196
|
|
632
644
|
letta_client/types/tool_call_message_tool_call.py,sha256=twtq5-vZIeh1nShqm8iTCN9YFtY7LUIL-bFYuUfhF1o,219
|
|
633
645
|
letta_client/types/tool_create.py,sha256=VSMd23Kkd77SPbLv2oRHEzXqR2Eexc0ervjxXYLHiqc,1522
|
|
646
|
+
letta_client/types/tool_env_var_schema.py,sha256=TgH1mM9rkfY3ci__at0tZDJpn7G6G92tzussSoviZ7Y,681
|
|
647
|
+
letta_client/types/tool_json_schema.py,sha256=EgCxNOxeoF4y_-BDLAp6z_qcxTc87w_uSuZdjZpn3Gk,754
|
|
634
648
|
letta_client/types/tool_return.py,sha256=f-6zaRo8Bwl0i0Q0rHl8vKOfzymFHN_tVRoC2lMWksI,984
|
|
635
|
-
letta_client/types/
|
|
649
|
+
letta_client/types/tool_return_content.py,sha256=0CdaO0-oM9iwGQoDX0MmzcT9liNgOOuItvDUY0QNYWA,956
|
|
650
|
+
letta_client/types/tool_return_message.py,sha256=tC-YbPGSIlfezC0gcNv33qWBDyTAd41kCmLd8VSTFlk,1691
|
|
636
651
|
letta_client/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
|
|
637
652
|
letta_client/types/tool_return_status.py,sha256=TQjwYprn5F_jU9kIbrtiyk7Gw2SjcmFFZLjFbGDpBM0,160
|
|
653
|
+
letta_client/types/tool_rule_schema.py,sha256=cuOWIHHG63nG-EVYz4qV9psQ8MH0ujmLGjHiPVV-3Kk,578
|
|
654
|
+
letta_client/types/tool_schema.py,sha256=WNDalV7aeaEzJH5TND5TvZ48zTAqwZ-8MEAzYbgvjW0,910
|
|
638
655
|
letta_client/types/tool_type.py,sha256=v6DX7qGAbg9t4HZTa9GBuzehNDCW3NkD6Zi3Z1teEKI,336
|
|
639
656
|
letta_client/types/update_assistant_message.py,sha256=D-51o8uXk3X_2Fb2zJ4KoMeRxPiDWaCb3ugRfjBMCTI,878
|
|
640
657
|
letta_client/types/update_assistant_message_content.py,sha256=rh3DP_SpxyBNnf0EDtoaKmPIPV-cXRSFju33NbHgeF0,247
|
|
641
658
|
letta_client/types/update_reasoning_message.py,sha256=2ejxLRNfVDWBfGQG2-A1JNq-DujOfT7AKXCmyH_RApc,650
|
|
642
|
-
letta_client/types/update_system_message.py,sha256=
|
|
643
|
-
letta_client/types/
|
|
644
|
-
letta_client/types/update_user_message.py,sha256=G0EYtAWFCkrVeKsGfCJuwgPhcmpEbktdv9VctpQYw_0,848
|
|
659
|
+
letta_client/types/update_system_message.py,sha256=wm2yZUdhRQD5sQhqPiedWZAPECwYvWOvRy1lbALTfCI,779
|
|
660
|
+
letta_client/types/update_user_message.py,sha256=7K0eNqN-ab2v3rR1FW3LLq7IHk6_0C0lv3zhTtthzzs,860
|
|
645
661
|
letta_client/types/update_user_message_content.py,sha256=dtDUkSRbdYlLBkwU-vqx_pqZHXZ4v5zIDsQupg7jkQk,242
|
|
646
662
|
letta_client/types/usage_statistics.py,sha256=btEmMUxFVu7oQQtBCdQqFJ6XddgmR84799-AdlsHh0w,690
|
|
647
663
|
letta_client/types/user.py,sha256=z_v1uqQ6HYwV_Pp7wDDqS6QWhslHgdUH-AldV-jnmKQ,1349
|
|
648
664
|
letta_client/types/user_create.py,sha256=prQea3xb2-Cm64wv6Y84OfhWNWrA2P8SH5yhUxejzOI,616
|
|
649
|
-
letta_client/types/user_message.py,sha256=
|
|
665
|
+
letta_client/types/user_message.py,sha256=vmd-mZycV6aDMchFbNBPLKVq8XzeAoy2jgprTlI12LI,1392
|
|
650
666
|
letta_client/types/user_message_content.py,sha256=JHOtxDEVm7FKDb6Ac2Hw7tAl5HCTDDLDylM6ulhHmIY,236
|
|
651
667
|
letta_client/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wDLkP4,731
|
|
652
668
|
letta_client/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
@@ -660,6 +676,6 @@ letta_client/voice/__init__.py,sha256=ZrZEuXIukVGhsfM-i0dIFfqjeSOBMPeEgDva7Vvnip
|
|
|
660
676
|
letta_client/voice/client.py,sha256=O38dLq__WTwLPlFTtvw1hgqaPYK9alds_ft12Bnp5fs,6475
|
|
661
677
|
letta_client/voice/types/__init__.py,sha256=hBLJcrom99DkDxxsVRU2ni8kPx6SsCy8gtAJvNOz26w,199
|
|
662
678
|
letta_client/voice/types/create_voice_chat_completions_request.py,sha256=K4__83rXRCshfdobyAmH-5fUDJQ_PeSQetTUeC4Abk0,381
|
|
663
|
-
letta_client-0.1.
|
|
664
|
-
letta_client-0.1.
|
|
665
|
-
letta_client-0.1.
|
|
679
|
+
letta_client-0.1.71.dist-info/METADATA,sha256=SxO_ayt9myoili3O0E124on4Tz2-UG-8T0qgmZYgkwI,5041
|
|
680
|
+
letta_client-0.1.71.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
681
|
+
letta_client-0.1.71.dist-info/RECORD,,
|
|
File without changes
|