letta-client 1.0.0a13__py3-none-any.whl → 1.0.0a15__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/_client.py +16 -2
- letta_client/_utils/_utils.py +1 -1
- letta_client/_version.py +1 -1
- letta_client/pagination.py +9 -9
- letta_client/resources/agents/files.py +13 -10
- letta_client/resources/agents/messages.py +60 -24
- letta_client/resources/groups/messages.py +40 -16
- letta_client/resources/templates/agents.py +2 -8
- letta_client/types/agents/__init__.py +2 -0
- letta_client/types/agents/event_message.py +35 -0
- letta_client/types/agents/file_list_response.py +3 -14
- letta_client/types/agents/letta_message_union.py +4 -0
- letta_client/types/agents/message_modify_response.py +4 -0
- letta_client/types/agents/message_send_async_params.py +57 -5
- letta_client/types/agents/message_send_params.py +57 -5
- letta_client/types/agents/message_stream_params.py +57 -5
- letta_client/types/agents/summary_message.py +33 -0
- letta_client/types/batch_create_params.py +59 -6
- letta_client/types/groups/message_modify_response.py +4 -0
- letta_client/types/groups/message_send_params.py +57 -5
- letta_client/types/groups/message_stream_params.py +57 -5
- letta_client/types/steps/message_list_response.py +4 -0
- letta_client/types/templates/agent_create_params.py +0 -2
- {letta_client-1.0.0a13.dist-info → letta_client-1.0.0a15.dist-info}/METADATA +1 -1
- {letta_client-1.0.0a13.dist-info → letta_client-1.0.0a15.dist-info}/RECORD +27 -25
- {letta_client-1.0.0a13.dist-info → letta_client-1.0.0a15.dist-info}/WHEEL +0 -0
- {letta_client-1.0.0a13.dist-info → letta_client-1.0.0a15.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
from typing_extensions import Literal
|
|
6
|
+
|
|
7
|
+
from ..._models import BaseModel
|
|
8
|
+
|
|
9
|
+
__all__ = ["SummaryMessage"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class SummaryMessage(BaseModel):
|
|
13
|
+
id: str
|
|
14
|
+
|
|
15
|
+
date: datetime
|
|
16
|
+
|
|
17
|
+
summary: str
|
|
18
|
+
|
|
19
|
+
is_err: Optional[bool] = None
|
|
20
|
+
|
|
21
|
+
message_type: Optional[Literal["summary"]] = None
|
|
22
|
+
|
|
23
|
+
name: Optional[str] = None
|
|
24
|
+
|
|
25
|
+
otid: Optional[str] = None
|
|
26
|
+
|
|
27
|
+
run_id: Optional[str] = None
|
|
28
|
+
|
|
29
|
+
sender_id: Optional[str] = None
|
|
30
|
+
|
|
31
|
+
seq_id: Optional[int] = None
|
|
32
|
+
|
|
33
|
+
step_id: Optional[str] = None
|
|
@@ -3,13 +3,27 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from typing import List, Union, Iterable, Optional
|
|
6
|
-
from typing_extensions import Required, TypeAlias, TypedDict
|
|
6
|
+
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
8
|
from .agents.message_type import MessageType
|
|
9
9
|
from .message_create_param import MessageCreateParam
|
|
10
|
+
from .agents.text_content_param import TextContentParam
|
|
11
|
+
from .agents.image_content_param import ImageContentParam
|
|
10
12
|
from .agents.approval_create_param import ApprovalCreateParam
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
from .agents.reasoning_content_param import ReasoningContentParam
|
|
14
|
+
from .agents.tool_call_content_param import ToolCallContentParam
|
|
15
|
+
from .agents.tool_return_content_param import ToolReturnContentParam
|
|
16
|
+
from .agents.omitted_reasoning_content_param import OmittedReasoningContentParam
|
|
17
|
+
from .agents.redacted_reasoning_content_param import RedactedReasoningContentParam
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
"BatchCreateParams",
|
|
21
|
+
"Request",
|
|
22
|
+
"RequestInputUnionMember1",
|
|
23
|
+
"RequestInputUnionMember1SummarizedReasoningContent",
|
|
24
|
+
"RequestInputUnionMember1SummarizedReasoningContentSummary",
|
|
25
|
+
"RequestMessage",
|
|
26
|
+
]
|
|
13
27
|
|
|
14
28
|
|
|
15
29
|
class BatchCreateParams(TypedDict, total=False):
|
|
@@ -27,6 +41,39 @@ class BatchCreateParams(TypedDict, total=False):
|
|
|
27
41
|
"""
|
|
28
42
|
|
|
29
43
|
|
|
44
|
+
class RequestInputUnionMember1SummarizedReasoningContentSummary(TypedDict, total=False):
|
|
45
|
+
index: Required[int]
|
|
46
|
+
"""The index of the summary part."""
|
|
47
|
+
|
|
48
|
+
text: Required[str]
|
|
49
|
+
"""The text of the summary part."""
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
class RequestInputUnionMember1SummarizedReasoningContent(TypedDict, total=False):
|
|
53
|
+
id: Required[str]
|
|
54
|
+
"""The unique identifier for this reasoning step."""
|
|
55
|
+
|
|
56
|
+
summary: Required[Iterable[RequestInputUnionMember1SummarizedReasoningContentSummary]]
|
|
57
|
+
"""Summaries of the reasoning content."""
|
|
58
|
+
|
|
59
|
+
encrypted_content: str
|
|
60
|
+
"""The encrypted reasoning content."""
|
|
61
|
+
|
|
62
|
+
type: Literal["summarized_reasoning"]
|
|
63
|
+
"""Indicates this is a summarized reasoning step."""
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
RequestInputUnionMember1: TypeAlias = Union[
|
|
67
|
+
TextContentParam,
|
|
68
|
+
ImageContentParam,
|
|
69
|
+
ToolCallContentParam,
|
|
70
|
+
ToolReturnContentParam,
|
|
71
|
+
ReasoningContentParam,
|
|
72
|
+
RedactedReasoningContentParam,
|
|
73
|
+
OmittedReasoningContentParam,
|
|
74
|
+
RequestInputUnionMember1SummarizedReasoningContent,
|
|
75
|
+
]
|
|
76
|
+
|
|
30
77
|
RequestMessage: TypeAlias = Union[MessageCreateParam, ApprovalCreateParam]
|
|
31
78
|
|
|
32
79
|
|
|
@@ -34,9 +81,6 @@ class Request(TypedDict, total=False):
|
|
|
34
81
|
agent_id: Required[str]
|
|
35
82
|
"""The ID of the agent to send this batch request for"""
|
|
36
83
|
|
|
37
|
-
messages: Required[Iterable[RequestMessage]]
|
|
38
|
-
"""The messages to be sent to the agent."""
|
|
39
|
-
|
|
40
84
|
assistant_message_tool_kwarg: str
|
|
41
85
|
"""The name of the message argument in the designated message tool.
|
|
42
86
|
|
|
@@ -62,9 +106,18 @@ class Request(TypedDict, total=False):
|
|
|
62
106
|
If `None` (default) returns all messages.
|
|
63
107
|
"""
|
|
64
108
|
|
|
109
|
+
input: Union[str, Iterable[RequestInputUnionMember1], None]
|
|
110
|
+
"""Syntactic sugar for a single user message.
|
|
111
|
+
|
|
112
|
+
Equivalent to messages=[{'role': 'user', 'content': input}].
|
|
113
|
+
"""
|
|
114
|
+
|
|
65
115
|
max_steps: int
|
|
66
116
|
"""Maximum number of steps the agent should take to process the request."""
|
|
67
117
|
|
|
118
|
+
messages: Optional[Iterable[RequestMessage]]
|
|
119
|
+
"""The messages to be sent to the agent."""
|
|
120
|
+
|
|
68
121
|
use_assistant_message: bool
|
|
69
122
|
"""
|
|
70
123
|
Whether the server should parse specific tool call arguments (default
|
|
@@ -6,7 +6,9 @@ from typing_extensions import Annotated, TypeAlias
|
|
|
6
6
|
from ..._utils import PropertyInfo
|
|
7
7
|
from ..agents.user_message import UserMessage
|
|
8
8
|
from ..tool_return_message import ToolReturnMessage
|
|
9
|
+
from ..agents.event_message import EventMessage
|
|
9
10
|
from ..agents.system_message import SystemMessage
|
|
11
|
+
from ..agents.summary_message import SummaryMessage
|
|
10
12
|
from ..agents.assistant_message import AssistantMessage
|
|
11
13
|
from ..agents.reasoning_message import ReasoningMessage
|
|
12
14
|
from ..agents.tool_call_message import ToolCallMessage
|
|
@@ -27,6 +29,8 @@ MessageModifyResponse: TypeAlias = Annotated[
|
|
|
27
29
|
AssistantMessage,
|
|
28
30
|
ApprovalRequestMessage,
|
|
29
31
|
ApprovalResponseMessage,
|
|
32
|
+
SummaryMessage,
|
|
33
|
+
EventMessage,
|
|
30
34
|
],
|
|
31
35
|
PropertyInfo(discriminator="message_type"),
|
|
32
36
|
]
|
|
@@ -3,19 +3,29 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from typing import List, Union, Iterable, Optional
|
|
6
|
-
from typing_extensions import Required, TypeAlias, TypedDict
|
|
6
|
+
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
8
|
from ..agents.message_type import MessageType
|
|
9
9
|
from ..message_create_param import MessageCreateParam
|
|
10
|
+
from ..agents.text_content_param import TextContentParam
|
|
11
|
+
from ..agents.image_content_param import ImageContentParam
|
|
10
12
|
from ..agents.approval_create_param import ApprovalCreateParam
|
|
13
|
+
from ..agents.reasoning_content_param import ReasoningContentParam
|
|
14
|
+
from ..agents.tool_call_content_param import ToolCallContentParam
|
|
15
|
+
from ..agents.tool_return_content_param import ToolReturnContentParam
|
|
16
|
+
from ..agents.omitted_reasoning_content_param import OmittedReasoningContentParam
|
|
17
|
+
from ..agents.redacted_reasoning_content_param import RedactedReasoningContentParam
|
|
11
18
|
|
|
12
|
-
__all__ = [
|
|
19
|
+
__all__ = [
|
|
20
|
+
"MessageSendParams",
|
|
21
|
+
"InputUnionMember1",
|
|
22
|
+
"InputUnionMember1SummarizedReasoningContent",
|
|
23
|
+
"InputUnionMember1SummarizedReasoningContentSummary",
|
|
24
|
+
"Message",
|
|
25
|
+
]
|
|
13
26
|
|
|
14
27
|
|
|
15
28
|
class MessageSendParams(TypedDict, total=False):
|
|
16
|
-
messages: Required[Iterable[Message]]
|
|
17
|
-
"""The messages to be sent to the agent."""
|
|
18
|
-
|
|
19
29
|
assistant_message_tool_kwarg: str
|
|
20
30
|
"""The name of the message argument in the designated message tool.
|
|
21
31
|
|
|
@@ -41,9 +51,18 @@ class MessageSendParams(TypedDict, total=False):
|
|
|
41
51
|
If `None` (default) returns all messages.
|
|
42
52
|
"""
|
|
43
53
|
|
|
54
|
+
input: Union[str, Iterable[InputUnionMember1], None]
|
|
55
|
+
"""Syntactic sugar for a single user message.
|
|
56
|
+
|
|
57
|
+
Equivalent to messages=[{'role': 'user', 'content': input}].
|
|
58
|
+
"""
|
|
59
|
+
|
|
44
60
|
max_steps: int
|
|
45
61
|
"""Maximum number of steps the agent should take to process the request."""
|
|
46
62
|
|
|
63
|
+
messages: Optional[Iterable[Message]]
|
|
64
|
+
"""The messages to be sent to the agent."""
|
|
65
|
+
|
|
47
66
|
use_assistant_message: bool
|
|
48
67
|
"""
|
|
49
68
|
Whether the server should parse specific tool call arguments (default
|
|
@@ -52,4 +71,37 @@ class MessageSendParams(TypedDict, total=False):
|
|
|
52
71
|
"""
|
|
53
72
|
|
|
54
73
|
|
|
74
|
+
class InputUnionMember1SummarizedReasoningContentSummary(TypedDict, total=False):
|
|
75
|
+
index: Required[int]
|
|
76
|
+
"""The index of the summary part."""
|
|
77
|
+
|
|
78
|
+
text: Required[str]
|
|
79
|
+
"""The text of the summary part."""
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
class InputUnionMember1SummarizedReasoningContent(TypedDict, total=False):
|
|
83
|
+
id: Required[str]
|
|
84
|
+
"""The unique identifier for this reasoning step."""
|
|
85
|
+
|
|
86
|
+
summary: Required[Iterable[InputUnionMember1SummarizedReasoningContentSummary]]
|
|
87
|
+
"""Summaries of the reasoning content."""
|
|
88
|
+
|
|
89
|
+
encrypted_content: str
|
|
90
|
+
"""The encrypted reasoning content."""
|
|
91
|
+
|
|
92
|
+
type: Literal["summarized_reasoning"]
|
|
93
|
+
"""Indicates this is a summarized reasoning step."""
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
InputUnionMember1: TypeAlias = Union[
|
|
97
|
+
TextContentParam,
|
|
98
|
+
ImageContentParam,
|
|
99
|
+
ToolCallContentParam,
|
|
100
|
+
ToolReturnContentParam,
|
|
101
|
+
ReasoningContentParam,
|
|
102
|
+
RedactedReasoningContentParam,
|
|
103
|
+
OmittedReasoningContentParam,
|
|
104
|
+
InputUnionMember1SummarizedReasoningContent,
|
|
105
|
+
]
|
|
106
|
+
|
|
55
107
|
Message: TypeAlias = Union[MessageCreateParam, ApprovalCreateParam]
|
|
@@ -3,19 +3,29 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
from typing import List, Union, Iterable, Optional
|
|
6
|
-
from typing_extensions import Required, TypeAlias, TypedDict
|
|
6
|
+
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
7
|
|
|
8
8
|
from ..agents.message_type import MessageType
|
|
9
9
|
from ..message_create_param import MessageCreateParam
|
|
10
|
+
from ..agents.text_content_param import TextContentParam
|
|
11
|
+
from ..agents.image_content_param import ImageContentParam
|
|
10
12
|
from ..agents.approval_create_param import ApprovalCreateParam
|
|
13
|
+
from ..agents.reasoning_content_param import ReasoningContentParam
|
|
14
|
+
from ..agents.tool_call_content_param import ToolCallContentParam
|
|
15
|
+
from ..agents.tool_return_content_param import ToolReturnContentParam
|
|
16
|
+
from ..agents.omitted_reasoning_content_param import OmittedReasoningContentParam
|
|
17
|
+
from ..agents.redacted_reasoning_content_param import RedactedReasoningContentParam
|
|
11
18
|
|
|
12
|
-
__all__ = [
|
|
19
|
+
__all__ = [
|
|
20
|
+
"MessageStreamParams",
|
|
21
|
+
"InputUnionMember1",
|
|
22
|
+
"InputUnionMember1SummarizedReasoningContent",
|
|
23
|
+
"InputUnionMember1SummarizedReasoningContentSummary",
|
|
24
|
+
"Message",
|
|
25
|
+
]
|
|
13
26
|
|
|
14
27
|
|
|
15
28
|
class MessageStreamParams(TypedDict, total=False):
|
|
16
|
-
messages: Required[Iterable[Message]]
|
|
17
|
-
"""The messages to be sent to the agent."""
|
|
18
|
-
|
|
19
29
|
assistant_message_tool_kwarg: str
|
|
20
30
|
"""The name of the message argument in the designated message tool.
|
|
21
31
|
|
|
@@ -50,9 +60,18 @@ class MessageStreamParams(TypedDict, total=False):
|
|
|
50
60
|
If `None` (default) returns all messages.
|
|
51
61
|
"""
|
|
52
62
|
|
|
63
|
+
input: Union[str, Iterable[InputUnionMember1], None]
|
|
64
|
+
"""Syntactic sugar for a single user message.
|
|
65
|
+
|
|
66
|
+
Equivalent to messages=[{'role': 'user', 'content': input}].
|
|
67
|
+
"""
|
|
68
|
+
|
|
53
69
|
max_steps: int
|
|
54
70
|
"""Maximum number of steps the agent should take to process the request."""
|
|
55
71
|
|
|
72
|
+
messages: Optional[Iterable[Message]]
|
|
73
|
+
"""The messages to be sent to the agent."""
|
|
74
|
+
|
|
56
75
|
stream_tokens: bool
|
|
57
76
|
"""
|
|
58
77
|
Flag to determine if individual tokens should be streamed, rather than streaming
|
|
@@ -67,4 +86,37 @@ class MessageStreamParams(TypedDict, total=False):
|
|
|
67
86
|
"""
|
|
68
87
|
|
|
69
88
|
|
|
89
|
+
class InputUnionMember1SummarizedReasoningContentSummary(TypedDict, total=False):
|
|
90
|
+
index: Required[int]
|
|
91
|
+
"""The index of the summary part."""
|
|
92
|
+
|
|
93
|
+
text: Required[str]
|
|
94
|
+
"""The text of the summary part."""
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
class InputUnionMember1SummarizedReasoningContent(TypedDict, total=False):
|
|
98
|
+
id: Required[str]
|
|
99
|
+
"""The unique identifier for this reasoning step."""
|
|
100
|
+
|
|
101
|
+
summary: Required[Iterable[InputUnionMember1SummarizedReasoningContentSummary]]
|
|
102
|
+
"""Summaries of the reasoning content."""
|
|
103
|
+
|
|
104
|
+
encrypted_content: str
|
|
105
|
+
"""The encrypted reasoning content."""
|
|
106
|
+
|
|
107
|
+
type: Literal["summarized_reasoning"]
|
|
108
|
+
"""Indicates this is a summarized reasoning step."""
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
InputUnionMember1: TypeAlias = Union[
|
|
112
|
+
TextContentParam,
|
|
113
|
+
ImageContentParam,
|
|
114
|
+
ToolCallContentParam,
|
|
115
|
+
ToolReturnContentParam,
|
|
116
|
+
ReasoningContentParam,
|
|
117
|
+
RedactedReasoningContentParam,
|
|
118
|
+
OmittedReasoningContentParam,
|
|
119
|
+
InputUnionMember1SummarizedReasoningContent,
|
|
120
|
+
]
|
|
121
|
+
|
|
70
122
|
Message: TypeAlias = Union[MessageCreateParam, ApprovalCreateParam]
|
|
@@ -6,7 +6,9 @@ from typing_extensions import Annotated, TypeAlias
|
|
|
6
6
|
from ..._utils import PropertyInfo
|
|
7
7
|
from ..agents.user_message import UserMessage
|
|
8
8
|
from ..tool_return_message import ToolReturnMessage
|
|
9
|
+
from ..agents.event_message import EventMessage
|
|
9
10
|
from ..agents.system_message import SystemMessage
|
|
11
|
+
from ..agents.summary_message import SummaryMessage
|
|
10
12
|
from ..agents.assistant_message import AssistantMessage
|
|
11
13
|
from ..agents.reasoning_message import ReasoningMessage
|
|
12
14
|
from ..agents.tool_call_message import ToolCallMessage
|
|
@@ -27,6 +29,8 @@ MessageListResponse: TypeAlias = Annotated[
|
|
|
27
29
|
AssistantMessage,
|
|
28
30
|
ApprovalRequestMessage,
|
|
29
31
|
ApprovalResponseMessage,
|
|
32
|
+
SummaryMessage,
|
|
33
|
+
EventMessage,
|
|
30
34
|
],
|
|
31
35
|
PropertyInfo(discriminator="message_type"),
|
|
32
36
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: letta-client
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.0a15
|
|
4
4
|
Summary: The official Python library for the letta API
|
|
5
5
|
Project-URL: Homepage, https://github.com/letta-ai/letta-python
|
|
6
6
|
Project-URL: Repository, https://github.com/letta-ai/letta-python
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
letta_client/__init__.py,sha256=qGnQpgLF2IeCkTBNc7P5VwhcqjKS_Gs90jsb2et5a-w,2715
|
|
2
2
|
letta_client/_base_client.py,sha256=baHmwqnnDXr5ZRC9OXhVBA8LT3B8nD_vlRHwlWkDz0k,67053
|
|
3
|
-
letta_client/_client.py,sha256=
|
|
3
|
+
letta_client/_client.py,sha256=29NDt9eDHOctZFoFYa9Qhnw1L5z51yiEALWPebpv9g8,28135
|
|
4
4
|
letta_client/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
|
|
5
5
|
letta_client/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
letta_client/_exceptions.py,sha256=30Z6OdknKex-stJOwtC_5naV8ozjHcX7-IIAqvKB0xY,3218
|
|
@@ -11,8 +11,8 @@ letta_client/_resource.py,sha256=usdu71d9SVBhsKu3-JpcwE4ZYyIZJTEIFhNNUR2i-qI,109
|
|
|
11
11
|
letta_client/_response.py,sha256=BKfNWi9r9l3FTwBirPt64_mnVss9gK8OYZkHb0MLL1A,28840
|
|
12
12
|
letta_client/_streaming.py,sha256=IhQrxmf7HMjkKLynITPcJBzqg30SI5e2O35zFOP1AMk,11283
|
|
13
13
|
letta_client/_types.py,sha256=dz_siM5FFPTKJs3m9q2ocNjY26xAZ98zPp7sQlsSm0U,7242
|
|
14
|
-
letta_client/_version.py,sha256=
|
|
15
|
-
letta_client/pagination.py,sha256=
|
|
14
|
+
letta_client/_version.py,sha256=UuuP-oJQKJH3uUKrvgAb6W_pB72I_6PajjfyiHTxvA0,173
|
|
15
|
+
letta_client/pagination.py,sha256=UGlH6YPy6FPl7N1IEk33HkVB-2l0YvR74SFO_kyyogo,7886
|
|
16
16
|
letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
letta_client/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
18
18
|
letta_client/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -25,7 +25,7 @@ letta_client/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noM
|
|
|
25
25
|
letta_client/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
26
26
|
letta_client/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
27
27
|
letta_client/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
28
|
-
letta_client/_utils/_utils.py,sha256=
|
|
28
|
+
letta_client/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
|
|
29
29
|
letta_client/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
30
30
|
letta_client/resources/__init__.py,sha256=5f9u41Tj5QuVrmX5lhI5zDt6FG_Qxzm4gIRnw4cidfU,6520
|
|
31
31
|
letta_client/resources/archives.py,sha256=_YWmXSr_GkmGCDjfGU_EdSIFB9e0qC_BeCg0EF2YM70,22484
|
|
@@ -34,10 +34,10 @@ letta_client/resources/tools.py,sha256=LxGMgcPoACs-rtaEfKs_RNSluLPA0kjoMX2oBZvSd
|
|
|
34
34
|
letta_client/resources/agents/__init__.py,sha256=kMBB1oA9e0oxT91T6Ck4AT-BKIBFQPKTENALxMNHN3g,3265
|
|
35
35
|
letta_client/resources/agents/agents.py,sha256=UolbAMRbQ5VFvWhus5tvnVceGQ08YZBROK8x2l0-NpM,81800
|
|
36
36
|
letta_client/resources/agents/blocks.py,sha256=NUFcRR5A4yGwplmy_ldSTP_rNkKHuTjs88xOL3n2zqk,27944
|
|
37
|
-
letta_client/resources/agents/files.py,sha256=
|
|
37
|
+
letta_client/resources/agents/files.py,sha256=zUFsoI7d0OlFKJ3QhdJ2HwkGUfVnQ8U3DuzNvOgQ2R4,20905
|
|
38
38
|
letta_client/resources/agents/folders.py,sha256=dkHlFE_oZ3dcXXhmOkqBzglrpLUSEeyXGH00qIcM0pA,15727
|
|
39
39
|
letta_client/resources/agents/groups.py,sha256=Mre1J9LdVE78mW2R-xxtd66FY8_aFK-rRMglE7zP0Hg,8865
|
|
40
|
-
letta_client/resources/agents/messages.py,sha256=
|
|
40
|
+
letta_client/resources/agents/messages.py,sha256=tE7Y-FKz1vqz9CoPRklwWU8y68VP9UQfjxrpiEhVlJQ,64536
|
|
41
41
|
letta_client/resources/agents/tools.py,sha256=FO5HeZTBUU6lB1cmuQXonIMkUQTLmEJfjRirbRe0qYo,20788
|
|
42
42
|
letta_client/resources/batches/__init__.py,sha256=zix5YRFFCfQpPx3_vc1R2MbjLKYKJB5Ex-F_mYeVrpc,1041
|
|
43
43
|
letta_client/resources/batches/batches.py,sha256=BSC9Qh806UWUWKoMgglbRYnH0jc1XhnEuDkQxX2cHkg,19850
|
|
@@ -51,7 +51,7 @@ letta_client/resources/folders/files.py,sha256=nNtsVaok4mIxkNWuW-coZipFQGLGemkuV
|
|
|
51
51
|
letta_client/resources/folders/folders.py,sha256=9WGYvy0b-3EwLLh87K5XoW2eqvPUZ35R8XrYNJ9svxQ,29045
|
|
52
52
|
letta_client/resources/groups/__init__.py,sha256=XRg7EgECFtIm8h8RjGcNEJyiZpw6XJqoG0aJwGsUADw,1028
|
|
53
53
|
letta_client/resources/groups/groups.py,sha256=ieqdZUSFtm7-svHEMFQ85tt4VSGJt45lyVGgSTRf8Sw,27542
|
|
54
|
-
letta_client/resources/groups/messages.py,sha256=
|
|
54
|
+
letta_client/resources/groups/messages.py,sha256=2tuj7mg-ieENcAm-T7JPfsyDIG1YwP5LvdCs_im1nNU,46993
|
|
55
55
|
letta_client/resources/identities/__init__.py,sha256=DaxkyrCra0xPWgEyZVRgVapuasUybvZokYssYq_QnyM,2006
|
|
56
56
|
letta_client/resources/identities/agents.py,sha256=KeejDcc4xDrqCQMV79QvK1VDRTCSIS4GqvgQUCFQRIc,9709
|
|
57
57
|
letta_client/resources/identities/blocks.py,sha256=JnvtUXjXQe_SyWlLqljAAc8tZ68rLj-3Hof4ccca2YA,8720
|
|
@@ -76,7 +76,7 @@ letta_client/resources/steps/metrics.py,sha256=_oFTnx8VS1-H4TkBaqWcxuxjjO_SuAdsh
|
|
|
76
76
|
letta_client/resources/steps/steps.py,sha256=6rNNRNgp0bQYie-FUfQ9hs82tCL_tcj7aHW7p2K9yMk,18204
|
|
77
77
|
letta_client/resources/steps/trace.py,sha256=Q11XSAoMKkEnePvm4eIUZ-UZeMu6QxmQedgH4TI8swQ,5951
|
|
78
78
|
letta_client/resources/templates/__init__.py,sha256=4wWq5EBTkiBFzEIzLMP5rkzQ94peMZkl1roLp8iPK_g,1041
|
|
79
|
-
letta_client/resources/templates/agents.py,sha256=
|
|
79
|
+
letta_client/resources/templates/agents.py,sha256=kgn3rXy7JzP1mAD_Ea6z7NdL0wmVAPvLRfpMjqGENDs,9011
|
|
80
80
|
letta_client/resources/templates/templates.py,sha256=ATGrBCFSA06XpjR5rbWtXAT4vq66DwnDia5_XcM8z7Q,3695
|
|
81
81
|
letta_client/types/__init__.py,sha256=17n1efIhPXCKUWjmO0PnQM3dTvEzaj_5m1ku9Shhrok,8923
|
|
82
82
|
letta_client/types/agent_count_response.py,sha256=SdUd1SYP0pwONLc_7_bESZm1mwsgrNP93JiWq47bKdo,198
|
|
@@ -96,7 +96,7 @@ letta_client/types/archive_create_params.py,sha256=jgfx7deSjphAjcv6RV9uVAdbg7jEQ
|
|
|
96
96
|
letta_client/types/archive_list_params.py,sha256=UapyvrrCC6WtuCEgDvWGNzYAlF8a38YD2qYP0ANMeNY,1032
|
|
97
97
|
letta_client/types/archive_list_response.py,sha256=xCPMJfPJInYUEHgQ9x7cpkofanDZJs3rdemGWWwgdd0,264
|
|
98
98
|
letta_client/types/archive_modify_params.py,sha256=raXJhi9iABF86a8rEwl211iDBbDRMTojH0e9tiQKCp0,335
|
|
99
|
-
letta_client/types/batch_create_params.py,sha256=
|
|
99
|
+
letta_client/types/batch_create_params.py,sha256=KHfKyDLNv2tvqH4ODhVa2qt0CWf8iGYAzyp2ojfatks,4267
|
|
100
100
|
letta_client/types/batch_job.py,sha256=7WqF20P-PN66xtlPV7KKRk45lPa0qEAiiq3jgBCaPp4,2024
|
|
101
101
|
letta_client/types/batch_list_params.py,sha256=bl6BOxOr0eyVktNbxLl9__5tmRXG-dNFBLPlXrCeaNc,845
|
|
102
102
|
letta_client/types/batch_list_response.py,sha256=eOYgKgpo05jSVx_-79YCKQhsj2pdxZ8mEaOBPptrwC8,264
|
|
@@ -198,7 +198,7 @@ letta_client/types/tool_upsert_base_tools_response.py,sha256=LnfdXQ1Ogg9lsOzZ6Lv
|
|
|
198
198
|
letta_client/types/tool_upsert_params.py,sha256=mZW3jsUXSCIJWTHzyfbxlZwtw7ue2K1oKllK9onPOik,1610
|
|
199
199
|
letta_client/types/vector_db_provider.py,sha256=qBKOulAcpdAgPJxRBU_bwNyK3LDRRDc23ZWHwOG10kU,237
|
|
200
200
|
letta_client/types/voice_sleeptime_manager_param.py,sha256=fpSmxdOHcyj6h6EV1K0fqh9howUNN9d_IGUfUO9d8Do,856
|
|
201
|
-
letta_client/types/agents/__init__.py,sha256=
|
|
201
|
+
letta_client/types/agents/__init__.py,sha256=TO8ogKMBnIf3rBtp_XyYbPNgAQ4tT6AaX2aMV2pO8Oc,5210
|
|
202
202
|
letta_client/types/agents/approval_create_param.py,sha256=MT8miAyzQSZwjN7vPe8iFWwris30bl34KJs0LlR1DVE,1295
|
|
203
203
|
letta_client/types/agents/approval_request_message.py,sha256=ig5yQhnSut9F5uGLJCoPI0hsCOZQLZq6TL8o9NEVcM8,1178
|
|
204
204
|
letta_client/types/agents/approval_response_message.py,sha256=JkZLpvyE7muDzkKYoWz8PlLlz5V_rW9lARrlsVtyLV4,1691
|
|
@@ -206,9 +206,10 @@ letta_client/types/agents/assistant_message.py,sha256=fUPjYLWZJHglFdcI3gm6I-yzkM
|
|
|
206
206
|
letta_client/types/agents/block.py,sha256=W89HtUA_EsVpfVy06pV3Rm3zmBhDD5kwiLN1KDQyiVA,1762
|
|
207
207
|
letta_client/types/agents/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
|
|
208
208
|
letta_client/types/agents/block_modify_params.py,sha256=nowldbVlbanKYdA87Pk70OnZB9R15vG6WPx4dXx3DV8,1560
|
|
209
|
+
letta_client/types/agents/event_message.py,sha256=fVoDrQtPdDdUoYOAQpb3d5H9Pw_ntROtHpN75EWXg-M,682
|
|
209
210
|
letta_client/types/agents/file_close_all_response.py,sha256=yq3AN8M749mivM6T7WS6iNKCrBRANafXXHsB3NuQRsc,232
|
|
210
211
|
letta_client/types/agents/file_list_params.py,sha256=ltjR-n7z_ZiOCO_nNPmSyH7DQUxdUB_jEuSXnnLWMmE,1067
|
|
211
|
-
letta_client/types/agents/file_list_response.py,sha256=
|
|
212
|
+
letta_client/types/agents/file_list_response.py,sha256=SILYgNMYWxdWsY6Nn1oxec5b12B2Eu6-yDTVB9RFRN0,1041
|
|
212
213
|
letta_client/types/agents/file_open_response.py,sha256=QnOUmArtPRRFAlSqfCzcQX_Mj9J7_YfSSCdjOdA7dhk,224
|
|
213
214
|
letta_client/types/agents/folder_list_params.py,sha256=ch6sBSUu88lyAm7RWAaHjVKOJ5gmH4sJh_d6q6RZ46E,871
|
|
214
215
|
letta_client/types/agents/folder_list_response.py,sha256=-99lBKZTBV1K5nTuKSUbLbWfM890oabNxBjOgvl86Hk,1496
|
|
@@ -220,7 +221,7 @@ letta_client/types/agents/job_status.py,sha256=6sv0_-oPTgYMKrVJjtY-TzQOiEnmhw_Sp
|
|
|
220
221
|
letta_client/types/agents/job_type.py,sha256=hwEdpoIs2f9y6qABN9CmCM2AnnAIClyEebJirZiBoso,212
|
|
221
222
|
letta_client/types/agents/letta_assistant_message_content_union.py,sha256=fh_0Gx-1OBvH2IoZFB33IoG1fyHgQE6kNDSZZvl2QW4,553
|
|
222
223
|
letta_client/types/agents/letta_assistant_message_content_union_param.py,sha256=91Lopt2yxg0BucmTa9pki6B9sidSGhJqin9epUQFXsg,585
|
|
223
|
-
letta_client/types/agents/letta_message_union.py,sha256=
|
|
224
|
+
letta_client/types/agents/letta_message_union.py,sha256=db3KIfrV622BS7nhi7RJIj-HTPjd-8SbeCinzfMNmTI,1178
|
|
224
225
|
letta_client/types/agents/letta_response.py,sha256=1yDCTUHt8Dxb4AhoGbLbeKQlASLCEYQkIvdqfgNBH2Y,1417
|
|
225
226
|
letta_client/types/agents/letta_streaming_response.py,sha256=n8qrMipSI6USTiwQth646Hnlecy4QuAkAkJLGJrxc7Y,2195
|
|
226
227
|
letta_client/types/agents/letta_user_message_content_union.py,sha256=u6fbFbrTu3wLMIEe72UqBWOTrVDQqBMaq9VT3thXTow,450
|
|
@@ -230,12 +231,12 @@ letta_client/types/agents/message_cancel_params.py,sha256=BPgIzthxeMYYIP-Gjab8iw
|
|
|
230
231
|
letta_client/types/agents/message_cancel_response.py,sha256=vTd3EpaL-xN1zG6BgiOYhFxUkqbqFM0AJiFPRV2vB28,242
|
|
231
232
|
letta_client/types/agents/message_list_params.py,sha256=GrzqCYFDpgWP8Mr2CBxKUjj3UyZsHO3EM1hP4ETtnwY,1337
|
|
232
233
|
letta_client/types/agents/message_modify_params.py,sha256=aM1c_wvAqkioRsQ6vyOSDDV1ysk7rOTXwcGgBMlyUDg,2030
|
|
233
|
-
letta_client/types/agents/message_modify_response.py,sha256=
|
|
234
|
+
letta_client/types/agents/message_modify_response.py,sha256=j5kAa_2_IflhIEwlH914GU9JiwntxK3VKuDLwUuaygM,1186
|
|
234
235
|
letta_client/types/agents/message_reset_params.py,sha256=fdhNm-jWov0vO21yxzybEXK_y9ursZKsFcvhdD_uavE,358
|
|
235
236
|
letta_client/types/agents/message_role.py,sha256=eAvdKVpQSHXw37kexvCvW7FmhYBZunHjLCgHEcHxVAY,260
|
|
236
|
-
letta_client/types/agents/message_send_async_params.py,sha256=
|
|
237
|
-
letta_client/types/agents/message_send_params.py,sha256=
|
|
238
|
-
letta_client/types/agents/message_stream_params.py,sha256=
|
|
237
|
+
letta_client/types/agents/message_send_async_params.py,sha256=Opu7uTovDpyW6xhEnEw_bYb1-iz07fbRkdKyMMH3ylM,3530
|
|
238
|
+
letta_client/types/agents/message_send_params.py,sha256=ZJUO4ps3vHsYn3CsjsGoRPc0RpH4Vv5rzodUBomUtaY,3421
|
|
239
|
+
letta_client/types/agents/message_stream_params.py,sha256=FeQa-rZLXX8m90IvZNGdr0SKIglSsU667v1PxPdZaWc,3794
|
|
239
240
|
letta_client/types/agents/message_type.py,sha256=89E2AtHyPVha9f7MbIO2kU3d_fOeLXjMjobIrBtpT0E,441
|
|
240
241
|
letta_client/types/agents/omitted_reasoning_content.py,sha256=8PtpFUv-zgsRCdJRNXWxGp0JMw31yakDuivuJkCsBQY,473
|
|
241
242
|
letta_client/types/agents/omitted_reasoning_content_param.py,sha256=i19iKBJU8epIMvaxyVvGmdX8-G4DacP8bGkuQTF_d28,485
|
|
@@ -245,6 +246,7 @@ letta_client/types/agents/reasoning_message.py,sha256=Oqnh53toQNzUj8smVsuj17Yjgj
|
|
|
245
246
|
letta_client/types/agents/redacted_reasoning_content.py,sha256=qcbSgiNdR60FZ5lB2uYuFsTgsnxz04havYygGG8XBgQ,465
|
|
246
247
|
letta_client/types/agents/redacted_reasoning_content_param.py,sha256=G5SoPzSrTCLA5mWPi_SdCwo-Rx4Poe73PTWF2a-RRSA,476
|
|
247
248
|
letta_client/types/agents/run.py,sha256=OS3LXizKrCch74sZQlMqRpssALtdODTzslmjyX9Kj0s,2611
|
|
249
|
+
letta_client/types/agents/summary_message.py,sha256=ltD-48C2_qx9Rj-qKVXi3dXHsue8Q26pwEQJjFefgKY,626
|
|
248
250
|
letta_client/types/agents/system_message.py,sha256=No7idKcGx88wP_CdDWK-yDPcWTF-mUy7nUp9g9YUtDk,715
|
|
249
251
|
letta_client/types/agents/text_content.py,sha256=4uTYeAEXqkz9bQ5SqRHRw5lOcJvGLIqha2G7cAvuV4o,509
|
|
250
252
|
letta_client/types/agents/text_content_param.py,sha256=s7btBv3sPQgK-QIPkSxnwMSHYH1bXTPzoRjVcq--9y8,541
|
|
@@ -280,9 +282,9 @@ letta_client/types/folders/file_upload_response.py,sha256=e8r6wCrJYH-8uEYlB3vrX8
|
|
|
280
282
|
letta_client/types/groups/__init__.py,sha256=ZMgighSb07QQvQvtq4sI4E00Exy_9ss4ICpIwK3kHDc,507
|
|
281
283
|
letta_client/types/groups/message_list_params.py,sha256=3jinSJ9x44shMpCGUnDyQIHGEO8eacmYJS9pYUZBXZY,1132
|
|
282
284
|
letta_client/types/groups/message_modify_params.py,sha256=42rqznXd5086v0ovL8DQfNABzvAZ_Oc7w47GItonFUw,2046
|
|
283
|
-
letta_client/types/groups/message_modify_response.py,sha256=
|
|
284
|
-
letta_client/types/groups/message_send_params.py,sha256=
|
|
285
|
-
letta_client/types/groups/message_stream_params.py,sha256=
|
|
285
|
+
letta_client/types/groups/message_modify_response.py,sha256=fBRhyQziRBK3BIfPXaxH7R7t9nMwdNrykAJJ4vwbOqY,1266
|
|
286
|
+
letta_client/types/groups/message_send_params.py,sha256=fFKphiIEWzRk5Xh8RJAA8LBTTqg2CYa3bRr35YDL9io,3493
|
|
287
|
+
letta_client/types/groups/message_stream_params.py,sha256=Dd9_Kjy3DxVbhUmku2sAzg3ougkvke1tbj9B-9V-GYU,3866
|
|
286
288
|
letta_client/types/identities/__init__.py,sha256=SQiVtprSocQYiddZcYSxaWRwRakw6nHqXQEhLX06rvU,336
|
|
287
289
|
letta_client/types/identities/agent_list_params.py,sha256=RyGM8SzPHzBTwuIAWIhyyk--gvFppZYueCSn6gSzp2E,1248
|
|
288
290
|
letta_client/types/identities/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
|
|
@@ -302,11 +304,11 @@ letta_client/types/runs/usage_retrieve_response.py,sha256=PQ4zo-HkNQc5HdepokWime
|
|
|
302
304
|
letta_client/types/steps/__init__.py,sha256=SeQhiJbf4neZiYeTeYjfVTFVCcqBW6_BJja15SPRsp0,441
|
|
303
305
|
letta_client/types/steps/feedback_create_params.py,sha256=aIWbtnuU2LOHcpQAxroTVgcWOineMjE9iLTCcgi2-dk,524
|
|
304
306
|
letta_client/types/steps/message_list_params.py,sha256=YOM_88-fm54HosPI3lITS4ejBXrZbnzDV7_bAnOoOgA,878
|
|
305
|
-
letta_client/types/steps/message_list_response.py,sha256=
|
|
307
|
+
letta_client/types/steps/message_list_response.py,sha256=sLYILRoBZ-uQbXQJiMfJcqUHnt4gsKVuffRkIpTkBQU,1262
|
|
306
308
|
letta_client/types/steps/metric_retrieve_response.py,sha256=2rqlYkeGpwu4JYBPg9PszUKbT63x4AEDfo8wAJSdoew,1385
|
|
307
309
|
letta_client/types/templates/__init__.py,sha256=eRs8IaeLPk-OtK1SeqFlKxHQ1_thE0sgK2BZ2ioSyUw,195
|
|
308
|
-
letta_client/types/templates/agent_create_params.py,sha256=
|
|
309
|
-
letta_client-1.0.
|
|
310
|
-
letta_client-1.0.
|
|
311
|
-
letta_client-1.0.
|
|
312
|
-
letta_client-1.0.
|
|
310
|
+
letta_client/types/templates/agent_create_params.py,sha256=Rie9Auiaf1gLw4EpXkko_BFAIqKhqGJRbfMJa2yoIaM,1375
|
|
311
|
+
letta_client-1.0.0a15.dist-info/METADATA,sha256=1PyQULpQlceaeEUBLcP5z3zJORK8RQhseVtL3CHk9Gc,15982
|
|
312
|
+
letta_client-1.0.0a15.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
313
|
+
letta_client-1.0.0a15.dist-info/licenses/LICENSE,sha256=BzGFjaxYQ82_SHPlYaZdGvoP71_alR_yRWyWASLnPe0,11335
|
|
314
|
+
letta_client-1.0.0a15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|