letta-client 0.1.4__py3-none-any.whl → 0.1.9__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.
- letta/__init__.py +44 -21
- letta/agents/__init__.py +71 -24
- letta/agents/archival_memory/client.py +17 -17
- letta/agents/client.py +424 -1700
- letta/agents/context/client.py +5 -5
- letta/agents/core_memory/client.py +1080 -0
- letta/agents/memory_variables/__init__.py +5 -0
- letta/agents/{memory → memory_variables}/client.py +41 -40
- letta/agents/memory_variables/types/__init__.py +5 -0
- letta/agents/{types/agents_get_agent_variables_response.py → memory_variables/types/memory_variables_get_response.py} +3 -3
- letta/agents/messages/__init__.py +36 -2
- letta/agents/messages/client.py +278 -17
- letta/agents/messages/types/__init__.py +37 -3
- letta/agents/messages/types/letta_streaming_response.py +139 -16
- letta/agents/messages/types/messages_list_response_item.py +121 -9
- letta/agents/recall_memory/client.py +5 -5
- letta/agents/sources/client.py +5 -5
- letta/agents/templates/__init__.py +5 -0
- letta/agents/templates/client.py +578 -0
- letta/agents/templates/types/__init__.py +5 -0
- letta/agents/templates/types/templates_migrate_response.py +19 -0
- letta/agents/tools/client.py +13 -13
- letta/agents/types/__init__.py +23 -29
- letta/agents/types/agents_search_request_combinator.py +5 -0
- letta/agents/types/agents_search_request_search_item.py +64 -0
- letta/agents/types/{agents_search_deployed_agents_request_search_item_zero.py → agents_search_request_search_item_name.py} +5 -4
- letta/agents/types/agents_search_request_search_item_name_operator.py +5 -0
- letta/agents/types/agents_search_request_search_item_order_by.py +22 -0
- letta/agents/types/agents_search_request_search_item_order_by_direction.py +5 -0
- letta/agents/types/agents_search_request_search_item_order_by_value.py +5 -0
- letta/agents/types/{agents_migrate_response.py → agents_search_request_search_item_version.py} +3 -3
- letta/blocks/client.py +25 -25
- letta/client.py +8 -4
- letta/core/__init__.py +4 -0
- letta/core/client_wrapper.py +7 -18
- letta/core/unchecked_base_model.py +305 -0
- letta/health/client.py +3 -3
- letta/jobs/client.py +17 -17
- letta/models/client.py +5 -5
- letta/providers/client.py +597 -0
- letta/sources/client.py +33 -33
- letta/sources/files/client.py +11 -11
- letta/sources/passages/client.py +5 -5
- letta/tools/client.py +77 -57
- letta/types/__init__.py +22 -0
- letta/types/action_model.py +2 -2
- letta/types/action_parameters_model.py +2 -2
- letta/types/action_response_model.py +2 -2
- letta/types/agent_environment_variable.py +63 -0
- letta/types/agent_state.py +19 -16
- letta/types/agent_type.py +1 -2
- letta/types/app_auth_scheme.py +2 -2
- letta/types/app_model.py +2 -2
- letta/types/archival_memory_summary.py +2 -2
- letta/types/assistant_file.py +2 -2
- letta/types/assistant_message_input.py +2 -2
- letta/types/assistant_message_output.py +3 -4
- letta/types/auth_request.py +2 -2
- letta/types/auth_response.py +2 -2
- letta/types/auth_scheme_field.py +2 -2
- letta/types/block.py +11 -16
- letta/types/block_update.py +2 -2
- letta/types/chat_completion_request.py +2 -2
- letta/types/chat_completion_response.py +2 -2
- letta/types/child_tool_rule.py +2 -2
- letta/types/choice.py +2 -2
- letta/types/conditional_tool_rule.py +2 -2
- letta/types/conflict_error_body.py +2 -2
- letta/types/context_window_overview.py +7 -2
- letta/types/create_assistant_file_request.py +2 -2
- letta/types/create_assistant_request.py +2 -2
- letta/types/create_block.py +2 -2
- letta/types/delete_assistant_file_response.py +2 -2
- letta/types/delete_assistant_response.py +2 -2
- letta/types/e_2_b_sandbox_config.py +2 -2
- letta/types/embedding_config.py +10 -10
- letta/types/file_metadata.py +2 -7
- letta/types/function_call_input.py +2 -2
- letta/types/function_call_output.py +2 -2
- letta/types/function_schema.py +2 -2
- letta/types/health.py +2 -2
- letta/types/http_validation_error.py +2 -2
- letta/types/init_tool_rule.py +2 -2
- letta/types/internal_server_error_body.py +2 -2
- letta/types/job.py +7 -12
- letta/types/letta_request.py +7 -2
- letta/types/letta_response.py +6 -5
- letta/types/letta_response_messages_item.py +125 -0
- letta/types/letta_schemas_letta_message_tool_call.py +2 -2
- letta/types/letta_schemas_message_message.py +12 -17
- letta/types/letta_schemas_openai_chat_completion_request_tool.py +2 -2
- letta/types/letta_schemas_openai_chat_completion_request_tool_call.py +2 -2
- letta/types/letta_schemas_openai_chat_completion_request_tool_call_function.py +2 -2
- letta/types/letta_schemas_openai_chat_completion_response_message.py +2 -2
- letta/types/letta_schemas_openai_chat_completion_response_tool_call.py +2 -2
- letta/types/letta_schemas_openai_chat_completions_tool_call_function.py +2 -2
- letta/types/letta_schemas_openai_chat_completions_tool_call_input.py +2 -2
- letta/types/letta_schemas_openai_chat_completions_tool_call_output.py +2 -2
- letta/types/letta_schemas_tool_tool.py +14 -13
- letta/types/letta_usage_statistics.py +6 -7
- letta/types/llm_config.py +9 -9
- letta/types/local_sandbox_config.py +2 -2
- letta/types/log_prob_token.py +2 -2
- letta/types/memory.py +2 -2
- letta/types/message_content_log_prob.py +2 -2
- letta/types/message_create.py +2 -2
- letta/types/not_found_error_body.py +2 -2
- letta/types/open_ai_assistant.py +2 -2
- letta/types/organization.py +2 -2
- letta/types/organization_create.py +2 -2
- letta/types/passage.py +10 -15
- letta/types/provider.py +38 -0
- letta/types/reasoning_message.py +6 -7
- letta/types/recall_memory_summary.py +2 -2
- letta/types/response_format.py +2 -2
- letta/types/sandbox_config.py +2 -7
- letta/types/sandbox_config_create.py +2 -2
- letta/types/sandbox_config_update.py +2 -2
- letta/types/sandbox_environment_variable.py +2 -7
- letta/types/sandbox_environment_variable_create.py +2 -2
- letta/types/sandbox_environment_variable_update.py +2 -6
- letta/types/source.py +8 -13
- letta/types/system_message_input.py +2 -2
- letta/types/system_message_output.py +6 -7
- letta/types/terminal_tool_rule.py +2 -2
- letta/types/tool_call_delta.py +2 -2
- letta/types/tool_call_function_output.py +2 -2
- letta/types/tool_call_message.py +6 -7
- letta/types/tool_create.py +2 -2
- letta/types/tool_function_choice.py +2 -2
- letta/types/tool_input.py +2 -2
- letta/types/tool_message.py +2 -2
- letta/types/tool_return_message.py +10 -11
- letta/types/tool_type.py +5 -0
- letta/types/usage_statistics.py +2 -2
- letta/types/user.py +5 -10
- letta/types/user_create.py +2 -7
- letta/types/user_message_input.py +2 -2
- letta/types/user_message_output.py +6 -7
- letta/types/user_update.py +2 -7
- letta/types/validation_error.py +2 -2
- {letta_client-0.1.4.dist-info → letta_client-0.1.9.dist-info}/METADATA +1 -1
- letta_client-0.1.9.dist-info/RECORD +200 -0
- letta/agents/memory/__init__.py +0 -5
- letta/agents/memory/messages/client.py +0 -147
- letta/agents/memory_blocks/client.py +0 -364
- letta/agents/types/agents_search_deployed_agents_request_combinator.py +0 -5
- letta/agents/types/agents_search_deployed_agents_request_search_item.py +0 -16
- letta/agents/types/agents_search_deployed_agents_request_search_item_direction.py +0 -27
- letta/agents/types/agents_search_deployed_agents_request_search_item_direction_direction.py +0 -5
- letta/agents/types/agents_search_deployed_agents_request_search_item_direction_value.py +0 -7
- letta/agents/types/agents_search_deployed_agents_request_search_item_operator.py +0 -24
- letta/agents/types/agents_search_deployed_agents_request_search_item_operator_operator.py +0 -7
- letta_client-0.1.4.dist-info/RECORD +0 -191
- /letta/agents/{memory/messages → core_memory}/__init__.py +0 -0
- /letta/{agents/memory_blocks → providers}/__init__.py +0 -0
- {letta_client-0.1.4.dist-info → letta_client-0.1.9.dist-info}/WHEEL +0 -0
letta/types/tool_create.py
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
import pydantic
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
class ToolCreate(
|
|
9
|
+
class ToolCreate(UncheckedBaseModel):
|
|
10
10
|
name: typing.Optional[str] = pydantic.Field(default=None)
|
|
11
11
|
"""
|
|
12
12
|
The name of the function (auto-generated from source_code if not provided).
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
from .function_call_input import FunctionCallInput
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
import pydantic
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class ToolFunctionChoice(
|
|
10
|
+
class ToolFunctionChoice(UncheckedBaseModel):
|
|
11
11
|
type: typing.Optional[typing.Literal["function"]] = None
|
|
12
12
|
function: FunctionCallInput
|
|
13
13
|
|
letta/types/tool_input.py
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
from .function_schema import FunctionSchema
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
import pydantic
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class ToolInput(
|
|
10
|
+
class ToolInput(UncheckedBaseModel):
|
|
11
11
|
type: typing.Optional[typing.Literal["function"]] = None
|
|
12
12
|
function: FunctionSchema
|
|
13
13
|
|
letta/types/tool_message.py
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
6
|
import pydantic
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
class ToolMessage(
|
|
9
|
+
class ToolMessage(UncheckedBaseModel):
|
|
10
10
|
content: str
|
|
11
11
|
role: typing.Optional[str] = None
|
|
12
12
|
tool_call_id: str
|
|
@@ -1,30 +1,29 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import datetime as dt
|
|
5
|
-
import typing
|
|
6
5
|
from .tool_return_message_status import ToolReturnMessageStatus
|
|
6
|
+
import typing
|
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
8
|
import pydantic
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class ToolReturnMessage(
|
|
11
|
+
class ToolReturnMessage(UncheckedBaseModel):
|
|
12
12
|
"""
|
|
13
13
|
A message representing the return value of a tool call (generated by Letta executing the requested tool).
|
|
14
14
|
|
|
15
15
|
Attributes:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
tool_return (str): The return value of the tool
|
|
17
|
+
status (Literal["success", "error"]): The status of the tool call
|
|
18
|
+
id (str): The ID of the message
|
|
19
|
+
date (datetime): The date the message was created in ISO format
|
|
20
|
+
tool_call_id (str): A unique identifier for the tool call that generated this message
|
|
21
|
+
stdout (Optional[List(str)]): Captured stdout (e.g. prints, logs) from the tool invocation
|
|
22
|
+
stderr (Optional[List(str)]): Captured stderr from the tool invocation
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
id: str
|
|
26
26
|
date: dt.datetime
|
|
27
|
-
message_type: typing.Literal["tool_return_message"] = "tool_return_message"
|
|
28
27
|
tool_return: str
|
|
29
28
|
status: ToolReturnMessageStatus
|
|
30
29
|
tool_call_id: str
|
letta/types/tool_type.py
ADDED
letta/types/usage_statistics.py
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
6
|
import pydantic
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
class UsageStatistics(
|
|
9
|
+
class UsageStatistics(UncheckedBaseModel):
|
|
10
10
|
completion_tokens: typing.Optional[int] = None
|
|
11
11
|
prompt_tokens: typing.Optional[int] = None
|
|
12
12
|
total_tokens: typing.Optional[int] = None
|
letta/types/user.py
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
import pydantic
|
|
6
6
|
import datetime as dt
|
|
7
7
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class User(
|
|
10
|
+
class User(UncheckedBaseModel):
|
|
11
11
|
"""
|
|
12
12
|
Representation of a user.
|
|
13
13
|
|
|
14
14
|
Parameters:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
id (str): The unique identifier of the user.
|
|
16
|
+
name (str): The name of the user.
|
|
17
|
+
created_at (datetime): The creation date of the user.
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
id: typing.Optional[str] = pydantic.Field(default=None)
|
|
@@ -22,11 +22,6 @@ class User(UniversalBaseModel):
|
|
|
22
22
|
The human-friendly ID of the User
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
|
-
organization_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
26
|
-
"""
|
|
27
|
-
The organization id of the user
|
|
28
|
-
"""
|
|
29
|
-
|
|
30
25
|
name: str = pydantic.Field()
|
|
31
26
|
"""
|
|
32
27
|
The name of the user.
|
letta/types/user_create.py
CHANGED
|
@@ -1,22 +1,17 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import pydantic
|
|
5
5
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
6
|
import typing
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
class UserCreate(
|
|
9
|
+
class UserCreate(UncheckedBaseModel):
|
|
10
10
|
name: str = pydantic.Field()
|
|
11
11
|
"""
|
|
12
12
|
The name of the user.
|
|
13
13
|
"""
|
|
14
14
|
|
|
15
|
-
organization_id: str = pydantic.Field()
|
|
16
|
-
"""
|
|
17
|
-
The organization id of the user.
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
15
|
if IS_PYDANTIC_V2:
|
|
21
16
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
22
17
|
else:
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
from .user_message_input_content import UserMessageInputContent
|
|
5
5
|
import typing
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
import pydantic
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class UserMessageInput(
|
|
10
|
+
class UserMessageInput(UncheckedBaseModel):
|
|
11
11
|
content: UserMessageInputContent
|
|
12
12
|
role: typing.Optional[str] = None
|
|
13
13
|
name: typing.Optional[str] = None
|
|
@@ -1,25 +1,24 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import datetime as dt
|
|
5
|
-
import typing
|
|
6
5
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import typing
|
|
7
7
|
import pydantic
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class UserMessageOutput(
|
|
10
|
+
class UserMessageOutput(UncheckedBaseModel):
|
|
11
11
|
"""
|
|
12
12
|
A message sent by the user. Never streamed back on a response, only used for cursor pagination.
|
|
13
13
|
|
|
14
14
|
Attributes:
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
message (str): The message sent by the user
|
|
16
|
+
id (str): The ID of the message
|
|
17
|
+
date (datetime): The date the message was created in ISO format
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
id: str
|
|
21
21
|
date: dt.datetime
|
|
22
|
-
message_type: typing.Literal["user_message"] = "user_message"
|
|
23
22
|
message: str
|
|
24
23
|
|
|
25
24
|
if IS_PYDANTIC_V2:
|
letta/types/user_update.py
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import pydantic
|
|
5
5
|
import typing
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
class UserUpdate(
|
|
9
|
+
class UserUpdate(UncheckedBaseModel):
|
|
10
10
|
id: str = pydantic.Field()
|
|
11
11
|
"""
|
|
12
12
|
The id of the user to update.
|
|
@@ -17,11 +17,6 @@ class UserUpdate(UniversalBaseModel):
|
|
|
17
17
|
The new name of the user.
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
|
-
organization_id: typing.Optional[str] = pydantic.Field(default=None)
|
|
21
|
-
"""
|
|
22
|
-
The new organization id of the user.
|
|
23
|
-
"""
|
|
24
|
-
|
|
25
20
|
if IS_PYDANTIC_V2:
|
|
26
21
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
27
22
|
else:
|
letta/types/validation_error.py
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from ..core.
|
|
3
|
+
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
4
|
import typing
|
|
5
5
|
from .validation_error_loc_item import ValidationErrorLocItem
|
|
6
6
|
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
7
7
|
import pydantic
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
class ValidationError(
|
|
10
|
+
class ValidationError(UncheckedBaseModel):
|
|
11
11
|
loc: typing.List[ValidationErrorLocItem]
|
|
12
12
|
msg: str
|
|
13
13
|
type: str
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
letta/__init__.py,sha256=9WMWR0WvLTxTZkKTlUHPGSnk24AKJTMoSn6m54QbyOE,8440
|
|
2
|
+
letta/agents/__init__.py,sha256=sAErDvvZvXcBy-XJxaSDkMyKKUNzA5uGh3tmWIR5ODc,3074
|
|
3
|
+
letta/agents/archival_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
|
+
letta/agents/archival_memory/client.py,sha256=8yc1la1k8lXL2Ql1eTAr5ipyFj1xE2rY7ONNVYwQG_M,18833
|
|
5
|
+
letta/agents/client.py,sha256=xFoz5Y9EWbykQaeVoaxRkmxyj-dN4FYqUrcAVfHY5Dc,49138
|
|
6
|
+
letta/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
7
|
+
letta/agents/context/client.py,sha256=GSEb4dIeAA3aJuVU7eSoTdGvTPVnPOk5Hw3pK0mxP7w,4767
|
|
8
|
+
letta/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
9
|
+
letta/agents/core_memory/client.py,sha256=MLLvtkCMNvGppv2qmEmEYwqh68pwDFwfc1thb94_r3Q,34477
|
|
10
|
+
letta/agents/memory_variables/__init__.py,sha256=PkxamlalbQ8edaZ2O0eWrPYzkL47cWJq__AzUHK3tDY,153
|
|
11
|
+
letta/agents/memory_variables/client.py,sha256=xqHOY9iny_IWfvdlV76bezzDVBnvl1SsVvqY7iuUIdE,4913
|
|
12
|
+
letta/agents/memory_variables/types/__init__.py,sha256=F97IDCgZgUMB04F4EFK8_sEiHIaSxeY3uZFOKWjIu7s,177
|
|
13
|
+
letta/agents/memory_variables/types/memory_variables_get_response.py,sha256=rc-8h_zEPBmHCjJlEPNoz8enpNcmKkrJz1pbSRQmJy4,598
|
|
14
|
+
letta/agents/messages/__init__.py,sha256=tC_dJ9IufEAf3pTt6OgyM327usiMylcJ78Ey74uYh-8,1463
|
|
15
|
+
letta/agents/messages/client.py,sha256=CXPn7pFVV2GGv-x-bSFh4oDEXFaMZB3RktEFr3Jjx34,37558
|
|
16
|
+
letta/agents/messages/types/__init__.py,sha256=rByVgqeD_Mvobim65FT1nYgwwLy1OZzKKG2kKnw9JxI,1558
|
|
17
|
+
letta/agents/messages/types/letta_streaming_response.py,sha256=wy__JtXiybvfOjsjMq5ZSnTJt9A5x_nALgCqq32Dd_A,4707
|
|
18
|
+
letta/agents/messages/types/messages_list_response.py,sha256=QOQ-lDPwafhCjFbq-qz0hUrNw4vneGrqePY42-yiTW8,341
|
|
19
|
+
letta/agents/messages/types/messages_list_response_item.py,sha256=tn2phVX0ulMvOAk9Ei8sWmAGv4m2ah5l6dCMCxMISCQ,4061
|
|
20
|
+
letta/agents/recall_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
21
|
+
letta/agents/recall_memory/client.py,sha256=t_v4t-sAbuZALalAfpzRn7bqg1ZFrAqaWiymuIl5eC8,4855
|
|
22
|
+
letta/agents/sources/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
23
|
+
letta/agents/sources/client.py,sha256=mJ-fg2ZjMT5BoLCEJaUJQUrtAb68dwSbOjWVeMN0EMk,4705
|
|
24
|
+
letta/agents/templates/__init__.py,sha256=fTLYBFybZ1xFP8phgz2b7Nlygau7OHa3CUqtZjG2JRI,149
|
|
25
|
+
letta/agents/templates/client.py,sha256=sChgrmDGXptLB-IQmOOwCk-m8aJDVHHCwyk-BFsXG1c,18855
|
|
26
|
+
letta/agents/templates/types/__init__.py,sha256=n6TG69a7_CByZmnRbsApvXiH9PG5SsDw7TcUEp99ETw,170
|
|
27
|
+
letta/agents/templates/types/templates_migrate_response.py,sha256=7N4JtAaiao-LrNdi72K7XB01uXJVkczaKYIJIMf0QYs,577
|
|
28
|
+
letta/agents/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
29
|
+
letta/agents/tools/client.py,sha256=C6ds0CQ-khxeHjjuFU-T4Zgzebadm1mZIdJbkrngUIE,12810
|
|
30
|
+
letta/agents/types/__init__.py,sha256=EU-iiIbYdLqamAEYerwvSBrg4q3gKYxKYAnc2TmYZME,1664
|
|
31
|
+
letta/agents/types/agents_search_request_combinator.py,sha256=7ZvVX3QILYpXAsKw3l7rQxwwleNekGP73GbNVboCaCA,166
|
|
32
|
+
letta/agents/types/agents_search_request_search_item.py,sha256=bjdUuqZQ1b6Q1tjSc092fjlNx2MO2rcDUkP1Uj0Xl-4,2318
|
|
33
|
+
letta/agents/types/agents_search_request_search_item_name.py,sha256=CITFiKq5TtyVKb9CwzRDAACl-HxqOqTOGQLAbcUFXjw,740
|
|
34
|
+
letta/agents/types/agents_search_request_search_item_name_operator.py,sha256=Vw5IieCX8pbMGxDvsTzOiaqP9Zws8BpzQcn7QsPNHdI,190
|
|
35
|
+
letta/agents/types/agents_search_request_search_item_order_by.py,sha256=2mUspR1ifvuTbeJzbbW7ted0IWGsbGxJGDSZzdQWEOs,899
|
|
36
|
+
letta/agents/types/agents_search_request_search_item_order_by_direction.py,sha256=WDYbLnLuJIpM9gMSlwNUtRmckaCGqWXii_N-3uTBeNg,184
|
|
37
|
+
letta/agents/types/agents_search_request_search_item_order_by_value.py,sha256=KmJ3WGea7c_yZMVSShZIfTcYrJ2a7qYV0-31nikSMcE,193
|
|
38
|
+
letta/agents/types/agents_search_request_search_item_version.py,sha256=hipwPCnixAAq5UfhmcAyIcG9Ut1xGhVnP6lYRG1bBsw,584
|
|
39
|
+
letta/agents/types/create_agent_request_tool_rules_item.py,sha256=xSYFbxIAA6k-pZfVsCaTByE8nXRIqyKnfOm_IEjKfEM,415
|
|
40
|
+
letta/agents/types/update_agent_tool_rules_item.py,sha256=5pYbFgeqxmXUHUTZpEWlZ7ODc1G6CpFGWljz_iBpWVA,408
|
|
41
|
+
letta/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
42
|
+
letta/blocks/client.py,sha256=tlYdFlQ5hoeEGFYpBnGEvgJZHUczIpaDCYtN2uDNdoQ,32419
|
|
43
|
+
letta/client.py,sha256=9Pb6cfK20Di4nQuuGJqEW-YoKNVyoHw2RTdTQYCpI5Q,6969
|
|
44
|
+
letta/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
45
|
+
letta/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
46
|
+
letta/core/client_wrapper.py,sha256=jk1bhmClEgK8k2aUEgFAJklbrQ8WxwMsUEc4RQMzm6E,1996
|
|
47
|
+
letta/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
48
|
+
letta/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
49
|
+
letta/core/http_client.py,sha256=siUQ6UV0ARZALlxubqWSSAAPC9B4VW8y6MGlHStfaeo,19552
|
|
50
|
+
letta/core/jsonable_encoder.py,sha256=qaF1gtgH-kQZb4kJskETwcCsOPUof-NnYVdszHkb-dM,3656
|
|
51
|
+
letta/core/pydantic_utilities.py,sha256=Pj_AIcjRR-xc28URvV4t2XssDPjLvpN6HAcsY3MVLRM,11973
|
|
52
|
+
letta/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
|
|
53
|
+
letta/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
54
|
+
letta/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
55
|
+
letta/core/serialization.py,sha256=D9h_t-RQON3-CHWs1C4ESY9B-Yd5d-l5lnTLb_X896g,9601
|
|
56
|
+
letta/core/unchecked_base_model.py,sha256=zliEPgLnK9yQ1dZ0mHP6agQ7H0bTZk8AvX6VC1r9oPQ,10754
|
|
57
|
+
letta/environment.py,sha256=7ou6ZwDZLBOdYQrHv-1lUk5a1q-HgEwzGlFITiRZ0XU,198
|
|
58
|
+
letta/errors/__init__.py,sha256=wqo3GnyT9iRy7zuPMs6TXOg9GMNfDp4fxq7M8lFFgK8,367
|
|
59
|
+
letta/errors/conflict_error.py,sha256=INHRMcX6i0ywcbZfw-vn3aBoVi06bDjev3p_O8U8IA4,296
|
|
60
|
+
letta/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
|
|
61
|
+
letta/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
|
|
62
|
+
letta/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
63
|
+
letta/health/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
64
|
+
letta/health/client.py,sha256=5HhZe2kH-L0ht6T-NvnKfUD4uYGd3OuJ0DTSO1yFlRQ,3228
|
|
65
|
+
letta/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
66
|
+
letta/jobs/client.py,sha256=oX5OFmFTkem1WElab3EZDGygJEjZjHa_oznoeiGv6QY,15546
|
|
67
|
+
letta/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
68
|
+
letta/models/client.py,sha256=B48nRTfe1kXRQfoBvX1hpqATjd5IMN_JfDLbgBbdqJ0,6278
|
|
69
|
+
letta/providers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
70
|
+
letta/providers/client.py,sha256=1Js23lA_DXWXAsJrvvj9W7k9UCumVS-SzgvqG_zRI_M,18176
|
|
71
|
+
letta/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
72
|
+
letta/sources/__init__.py,sha256=kswgCv4UdkSVk1Y4tsMM1HadOwvhh_Fr96VTSMV4Umc,128
|
|
73
|
+
letta/sources/client.py,sha256=fzL956QlRpkqnNI5tdtQwQJAaV0gk2usIbPPJa6Yhhc,36531
|
|
74
|
+
letta/sources/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
75
|
+
letta/sources/files/client.py,sha256=aTE-lcCouh3TQTn3SKV6482M1Uy6MZc4qRwnD_6TAZA,13255
|
|
76
|
+
letta/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
77
|
+
letta/sources/passages/client.py,sha256=OXPPtQgbIvp9Vzhc2qJxhKWF-jepEimevU-QqAYbBsg,4753
|
|
78
|
+
letta/tools/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
79
|
+
letta/tools/client.py,sha256=MivaI7yf5YuvW2XT-3TWYsfIKI4eirx6MOdPBWi8kGY,59448
|
|
80
|
+
letta/types/__init__.py,sha256=oHXsRo1Pg3ZS-bCFuQTbe469pGceuhhkMa9YIeuN3VE,10279
|
|
81
|
+
letta/types/action_model.py,sha256=65eLvLD-9-zK9hrDun7wjVlXsCiI7zujv8aGPuIb3jE,1206
|
|
82
|
+
letta/types/action_parameters_model.py,sha256=zKzJkjtu1pt4BEA2GHlg9rMWja5a0uZygOpOx3FbgIM,749
|
|
83
|
+
letta/types/action_response_model.py,sha256=5OuImT0EQFkAnc81F6tZsVEwYG8rKbIrx_ydGiKqwog,745
|
|
84
|
+
letta/types/agent_environment_variable.py,sha256=vutZLcR0yETltgOZ7E_o9kR4vOdBxybVL9lzXSux75w,1698
|
|
85
|
+
letta/types/agent_state.py,sha256=MfXUbzySd-NJwZm78OWBP6gbjqexn7aw48fK9x2_ZJk,4357
|
|
86
|
+
letta/types/agent_state_tool_rules_item.py,sha256=QVFCt60Ro3ZyyQtzA5Zn8Tq8t9osrpqchB08xzmdLs4,375
|
|
87
|
+
letta/types/agent_type.py,sha256=iZ3Wa4BUddDeFSgcK3Z0WUKCQYDRCEo0aJICKsc3HL0,220
|
|
88
|
+
letta/types/app_auth_scheme.py,sha256=_6FLlw3drQ3HDSP9SecStBwQyE0DgL6UvKFArCC4yp8,1242
|
|
89
|
+
letta/types/app_auth_scheme_auth_mode.py,sha256=Zafrac9piNVjCVppCv0CS34Yx4rFaFPieeNCrtaPSwk,225
|
|
90
|
+
letta/types/app_model.py,sha256=cypZdZ12NW9pbG23XW9qTtGnZNwNlJxoxBERaFcLmso,1519
|
|
91
|
+
letta/types/archival_memory_summary.py,sha256=UDmcWnpoE8HNf1RdRuWyoYcenJRA1rUGtuMqRdzmF0I,639
|
|
92
|
+
letta/types/assistant_file.py,sha256=9_yzzOMH5Ab10MRCJ44WEI0POh4aTOU1R5LCfDF_EnQ,881
|
|
93
|
+
letta/types/assistant_message_input.py,sha256=wta9fA0F5XNya-0uqy7odOjTp7NP-DyOs88E7LOnusQ,886
|
|
94
|
+
letta/types/assistant_message_output.py,sha256=rhe1PjM24FcKxmNZH0mrfUbNFTs1yRSKu2GyHe3MU-Q,636
|
|
95
|
+
letta/types/auth_request.py,sha256=q63VMj39aCmljDuzUeAClXEqyaoa_HKv5IraSv8ry9M,683
|
|
96
|
+
letta/types/auth_response.py,sha256=jtG9Nn0voJcOWkBtvnuGGwhpUhYz9A8O7soOJZo_E_E,861
|
|
97
|
+
letta/types/auth_scheme_field.py,sha256=W4-qgKtKUSpBHaSvjLyzLybOIsGo7Ggk4VECpsoPnqQ,881
|
|
98
|
+
letta/types/block.py,sha256=3claCqoLbhisM1PoELIdL6NZ8tSkFn48jEMpgmxYlpI,3050
|
|
99
|
+
letta/types/block_update.py,sha256=PIoJgg1i7uI-i6QKQw5nPn4uOZ7Rl9L84xvbAZxWNnM,1645
|
|
100
|
+
letta/types/chat_completion_request.py,sha256=3yJ-6AeNvHJsHSMoIfSN5WVJDcTnz9WzUR8kxZvhybI,2101
|
|
101
|
+
letta/types/chat_completion_request_function_call.py,sha256=I3aPJPef1TfEM0qVuiJQHF9c-MJcQkq1QuSyXm0gR98,247
|
|
102
|
+
letta/types/chat_completion_request_messages_item.py,sha256=RaP8kpCRf0uc48TnzWNUn1Csl4snQeQrSEIPHWrgajQ,408
|
|
103
|
+
letta/types/chat_completion_request_stop.py,sha256=-znv6wKECPL0blRnNuqY89OPWu3CY-aCzLFCgUOZXiw,144
|
|
104
|
+
letta/types/chat_completion_request_tool_choice.py,sha256=17mDEt1B55OpvIKPtz_Jmzvc998zNRKbfawr4-J63t0,282
|
|
105
|
+
letta/types/chat_completion_response.py,sha256=cAql7ONTaFYlFQ8QWHWCD-NnVozDwzcab3RA_ePwFtE,986
|
|
106
|
+
letta/types/child_tool_rule.py,sha256=Ek6k4AAVxBHG-bv6mwhaqaiYQmn1OVcV-E1u91i9F7Y,963
|
|
107
|
+
letta/types/choice.py,sha256=kc1W8eIAFpmC4CQeoKTqLGWxwa5H9Sh6IhuSAHkQLR8,957
|
|
108
|
+
letta/types/conditional_tool_rule.py,sha256=jAMAlNBQFJkQ_mbHVT5geUa8-tQ5kh_x2Ulb6Myha30,1326
|
|
109
|
+
letta/types/conflict_error_body.py,sha256=Mena-q1jti6nv_7-xrp6sDb_5MXNKPGobHrhpnz9kpY,787
|
|
110
|
+
letta/types/context_window_overview.py,sha256=HcjkFG4pIL2J_imh3Cw5sEzGFzG1V9ULEd49MUT7rkE,2987
|
|
111
|
+
letta/types/create_assistant_file_request.py,sha256=09jUu6y-l0sZdQ90oY--XfJ1bXaHwWS8121c1mZ6I9Y,648
|
|
112
|
+
letta/types/create_assistant_request.py,sha256=-Dt-KV8qXsV5Q_1iXQFvXa9GmD73wnblBvopmSiiPPQ,1523
|
|
113
|
+
letta/types/create_block.py,sha256=mKeCXqGpCYK7Jp5PvfF1bZMEnKhcip_5VUX0y9d8lLE,1426
|
|
114
|
+
letta/types/delete_assistant_file_response.py,sha256=7j0Qr9mp2bMS42na9IP0i9sEy16MsGzDLDiq-burYwI,772
|
|
115
|
+
letta/types/delete_assistant_response.py,sha256=1OX7gczbWmiAKYkzETkcQCHRlsTqySUHjkGiWA_Pygk,770
|
|
116
|
+
letta/types/e_2_b_sandbox_config.py,sha256=w3R4QpPjeie5aKw8sb_eKhl78J0k5vLCcATNS3Qaeyw,957
|
|
117
|
+
letta/types/embedding_config.py,sha256=ubGDLn8_H1qOoZUUj6de0MVrQnM2umVR2vdnOolPyr4,2539
|
|
118
|
+
letta/types/embedding_config_embedding_endpoint_type.py,sha256=Iw8W4h9bEYdTYYaU4__JUPKqS-zO9WpzIQKtihvJH8U,515
|
|
119
|
+
letta/types/file_metadata.py,sha256=vORZH5WZO8AwAuKq0h0W9TTuydjmDlkZC6YyZMy2jbc,1973
|
|
120
|
+
letta/types/function_call_input.py,sha256=bxHxCXbkzah5gLjgcbxktKuQrOATItZQ9ZeMMoNYlJw,562
|
|
121
|
+
letta/types/function_call_output.py,sha256=PfRMUZziEt8K-hhVvpIa4e-63KnpREep7eRPe-w476U,582
|
|
122
|
+
letta/types/function_schema.py,sha256=4VBSXQgQMw7xZNjKp_4sGBhQw6X2S2ye-zWV2Gny5YY,690
|
|
123
|
+
letta/types/health.py,sha256=nQwx5ysn_cJMKUoqsfaPcGNSRSjfwX5S272UiSQJ03w,618
|
|
124
|
+
letta/types/http_validation_error.py,sha256=yHa4_NHIMB-VKNZpk7agjLTwWIg7mv7ml3d7I-Bqiog,661
|
|
125
|
+
letta/types/init_tool_rule.py,sha256=1HXLdPsB_lWvD7x2Rioqb_-99NFd5SDSCsQSE1Ib3VM,837
|
|
126
|
+
letta/types/internal_server_error_body.py,sha256=xR9n1zptgmImbH6apQAuwBblYOWAYNLFzY8s0SUcEug,653
|
|
127
|
+
letta/types/job.py,sha256=56vd62Pkfvd3hj9_3RnoRf1oyk4YVH-yFN33xO0NL90,2328
|
|
128
|
+
letta/types/job_status.py,sha256=0Gu5Tku79SDVzCxnjVXQyDPNCizGWUP1ppohAck6a2U,189
|
|
129
|
+
letta/types/letta_request.py,sha256=bCPDRJhSJSo5eILJp0mTw_k26O3dZL1vChfAcaZ0rE8,1240
|
|
130
|
+
letta/types/letta_response.py,sha256=Kf_isXIlqDj2ujhy1j5ILatdgR0ZEpg2XIGU1F8-2uU,1340
|
|
131
|
+
letta/types/letta_response_messages_item.py,sha256=8Rgye6ZhLkCel6sCYHcYOvQoqM4A4uwPuEapxL4qqJY,4050
|
|
132
|
+
letta/types/letta_schemas_letta_message_tool_call.py,sha256=KrRbLhWx8uVpZIpt1nuVIIBemjFnQufPR1vm6NlMMM4,618
|
|
133
|
+
letta/types/letta_schemas_message_message.py,sha256=WTHkqdH1V1q5TOTviS9qqLe36BMl41dzyIr5HD9oK8o,2997
|
|
134
|
+
letta/types/letta_schemas_openai_chat_completion_request_tool.py,sha256=fdQxtc1tO3kQzpOPxNuELJl5vSaU9pdSdrTpnWJeK5Y,708
|
|
135
|
+
letta/types/letta_schemas_openai_chat_completion_request_tool_call.py,sha256=IlL9RDjVQhhLL56zkl2HKIe90czi2zNsthEXErbuKnc,863
|
|
136
|
+
letta/types/letta_schemas_openai_chat_completion_request_tool_call_function.py,sha256=kH0koggWWYihst_VCvWoahU0PZDQ8wonfHyYeCP6ZRk,619
|
|
137
|
+
letta/types/letta_schemas_openai_chat_completion_response_message.py,sha256=xhDRJ7p8UFb5qpap6OEQKS0UbwGuV2-DvuFgvlC7VrE,968
|
|
138
|
+
letta/types/letta_schemas_openai_chat_completion_response_tool_call.py,sha256=oL_anLry1U6bJCsSzyJIjecto3Wo1d8yh9pOFL3xVQ4,738
|
|
139
|
+
letta/types/letta_schemas_openai_chat_completions_tool_call_function.py,sha256=tkM0hBugyKgJO-pSKZYhPRym7pbzxcvRGGQUKU-HoKw,775
|
|
140
|
+
letta/types/letta_schemas_openai_chat_completions_tool_call_input.py,sha256=ZvRZX6l3tSlhxUs0ZutyKZWGS14jvJKHyaspZ3rnROQ,954
|
|
141
|
+
letta/types/letta_schemas_openai_chat_completions_tool_call_output.py,sha256=ZqrzcBsJlDN8IfhZxRbvwz4-5mmOsk_qi0gYCad__Gk,870
|
|
142
|
+
letta/types/letta_schemas_tool_tool.py,sha256=2UOD-oOc9aF3ajph-3ti37RBnPlA9Ip-kyIGVAdjQSA,2464
|
|
143
|
+
letta/types/letta_usage_statistics.py,sha256=Sr8g9QBOIAMpPDr_HMQOkkhMhNEw8j846wkuTg69YxI,1460
|
|
144
|
+
letta/types/llm_config.py,sha256=Jk6uKehnhOxaEWZptE09781Pa8LGIh1SlIKGj_eX6oA,2447
|
|
145
|
+
letta/types/llm_config_model_endpoint_type.py,sha256=rnDv3wDnngPT10CFw24C6kHo4swuLHxv46aLI9Hoosg,505
|
|
146
|
+
letta/types/local_sandbox_config.py,sha256=Q4riu4FS69VmC6WsJYcN5YzRCPJwn0hRHRV9bEI_vHY,1044
|
|
147
|
+
letta/types/log_prob_token.py,sha256=ueghwzOAxC14TuztG4rkTcYgkRCK6RilqGYqZYC0xbY,629
|
|
148
|
+
letta/types/memory.py,sha256=KD5MkDQB-vbRPT9f_-yFBWY1WUW_NWxYEI0IiflG6P8,1035
|
|
149
|
+
letta/types/message_content_log_prob.py,sha256=1Kc5Cbm264jgmfVRi6SNjK4C3PKVs1i_c4BR3ckNW7M,747
|
|
150
|
+
letta/types/message_create.py,sha256=V8en5MKK_WXMBqiBaLZB4qHbGLpbOm1YoOI0OLGLiGk,931
|
|
151
|
+
letta/types/message_create_role.py,sha256=atjQEZ8iT4gTAmrFTFnRaM66f0MGsgfGq6hpx1Q-i44,159
|
|
152
|
+
letta/types/message_role.py,sha256=HKatrA1jt02oTObExloTY3rW8Urzn37kBTg0Z6MbwkQ,186
|
|
153
|
+
letta/types/not_found_error_body.py,sha256=_1esSlUdkBx6CRs6aAIJrxzh3VZKEG0xzeLbxebBuy0,615
|
|
154
|
+
letta/types/not_found_error_body_message.py,sha256=Kc9xrVghgDATdPAGpTPnzyKe6ds5q8Vr6zcBU5lLcH4,309
|
|
155
|
+
letta/types/open_ai_assistant.py,sha256=szt-m_wM1d8DYPBMIL4XNZVOpkivGajYQBUDISAA1x4,1710
|
|
156
|
+
letta/types/organization.py,sha256=vSXwqYTpxGZgpMTv8rw5jzklZnUYjS6yBTkEFNPNSrU,927
|
|
157
|
+
letta/types/organization_create.py,sha256=xlF1FgDRa7zpv49kVGWYchcSEUjPEsjF5_m2xHWb9VM,661
|
|
158
|
+
letta/types/passage.py,sha256=CPg_I9h4yNdVYXCnslKlGsPq6rYe6qTvGT4RjBF7620,3183
|
|
159
|
+
letta/types/provider.py,sha256=RvdE9dzGFJ4hcmyvk2xeO7RNpxQvXhB_S9DNy8t_z-E,1053
|
|
160
|
+
letta/types/reasoning_message.py,sha256=kCoRIXdsCjj48jDaZKuxIXqxwnlLYGR3qAAumeQIA-M,882
|
|
161
|
+
letta/types/recall_memory_summary.py,sha256=aHLAjDWxs6tLFJVtF4CUiS6IiP0bWFcIDNC0J5njJtY,635
|
|
162
|
+
letta/types/response_format.py,sha256=Ot93aFi9mH4h6xWuSDzbXu_6nd2_caFqCzG1wd-cAiw,583
|
|
163
|
+
letta/types/sandbox_config.py,sha256=nvVdB0WnK_-bEHIehvBGiiD0hvujA93Ko4FuGMAJDdk,1550
|
|
164
|
+
letta/types/sandbox_config_create.py,sha256=eP3Bg9JsROEQEEXm9zo-AJb5QvinO1fQkbDhNcfAUt0,730
|
|
165
|
+
letta/types/sandbox_config_create_config.py,sha256=EsSeN81_yPkorfQgOJmumdCWiUt8hk9HawSsRcCc5Hs,263
|
|
166
|
+
letta/types/sandbox_config_update.py,sha256=aV_I4zd558W30BPz1HWJ2ub2HVdZwXTtICtEfAJdRXM,840
|
|
167
|
+
letta/types/sandbox_config_update_config.py,sha256=fGGmMuy43OnELj3qAj0rEcMro-cLD3ekeVpqJqqrs1M,263
|
|
168
|
+
letta/types/sandbox_environment_variable.py,sha256=wqOx9q9IeVTRvlz9UPa4DtbNgu7p7AauN1vp6KAC8kY,1720
|
|
169
|
+
letta/types/sandbox_environment_variable_create.py,sha256=AhGE8ITStXkPOfPXjpbiC1oaYC4PEKIklZIsYZ0topI,890
|
|
170
|
+
letta/types/sandbox_environment_variable_update.py,sha256=JMkX6nzvcBNEemjvBmyHDezci3Bn7epKhMnvFY_--EA,948
|
|
171
|
+
letta/types/sandbox_type.py,sha256=XSWmX3JIFFrDPQ4i89E8LauXY8kjmJEtaz6e_JheGm4,151
|
|
172
|
+
letta/types/source.py,sha256=yBVKt4cgcR26Lw1USDQ6BNC1UVxsSSXC1l9p7QmdFnQ,2389
|
|
173
|
+
letta/types/system_message_input.py,sha256=fIhVIHA74jTwdhETiVRGdUHyTTynb0oarIpE32-V9Wk,642
|
|
174
|
+
letta/types/system_message_output.py,sha256=Q4eYVYEH5T1r0ZitDtELoOMiPalB6sUj5vsDoSScSjU,930
|
|
175
|
+
letta/types/terminal_tool_rule.py,sha256=LscdG_oQuMmpnS0WLIpN_cOuTBoqJ5Ccl3ha8xv-XQQ,899
|
|
176
|
+
letta/types/tool_call_delta.py,sha256=wGeZwJ9pwYHD5-f4Unf5-vJqefK40eHw9i0w3bCjRoE,671
|
|
177
|
+
letta/types/tool_call_function_output.py,sha256=lI8toKjSUdYe00SmdHyySkQ0aBSVGu1SqbSkCMWjTSA,748
|
|
178
|
+
letta/types/tool_call_message.py,sha256=ea6QylDi9FibPl2TJJ1AnQF7hCQYPRDFiQaYVLTIUnc,1020
|
|
179
|
+
letta/types/tool_call_message_tool_call.py,sha256=574_EuZw2S1A1bGaAfg1KMmPoBggmLVKfsizOx82510,295
|
|
180
|
+
letta/types/tool_create.py,sha256=C813wQgL1XllxWRny8KOv_bBgeaDwi4FNAO2jmvOMKE,1624
|
|
181
|
+
letta/types/tool_function_choice.py,sha256=QW3cglpcoHmyXSpslg0GhrnrnCuXYNZcGtSps6Z5GiA,693
|
|
182
|
+
letta/types/tool_input.py,sha256=Q1KMbLlbhu3l2kn_gkqmYafTD4ndZpQPUdYX6vzmjW0,674
|
|
183
|
+
letta/types/tool_message.py,sha256=Ak3rItXVRStenBXqyYOhUDr3T6EudLkMOEi1ev5b4aA,619
|
|
184
|
+
letta/types/tool_return_message.py,sha256=Urb1zWAemckUEQDxOXlQrQz_DaXxyPQGvcOL_T8tFh4,1511
|
|
185
|
+
letta/types/tool_return_message_status.py,sha256=FvFOMaG9mnmgnHi2UBQVQQMtHFabbWnQnHTxGUDgVl0,167
|
|
186
|
+
letta/types/tool_rule_type.py,sha256=W6lVaYVYzSzhFHgqitmw6XLtxgxBhINgHZJfSnxg6ts,265
|
|
187
|
+
letta/types/tool_type.py,sha256=veaBYCFHPudS7uJu_H4SGlFml0F3miAYP3X6JgkGJZM,177
|
|
188
|
+
letta/types/usage_statistics.py,sha256=btEmMUxFVu7oQQtBCdQqFJ6XddgmR84799-AdlsHh0w,690
|
|
189
|
+
letta/types/user.py,sha256=z_v1uqQ6HYwV_Pp7wDDqS6QWhslHgdUH-AldV-jnmKQ,1349
|
|
190
|
+
letta/types/user_create.py,sha256=prQea3xb2-Cm64wv6Y84OfhWNWrA2P8SH5yhUxejzOI,616
|
|
191
|
+
letta/types/user_message_input.py,sha256=8zdmmwOZwo_vJrCQbvjTc_uPMaGJEXvPLD1DKIVg75k,724
|
|
192
|
+
letta/types/user_message_input_content.py,sha256=TEBnUQHz98kmY2cBPOdjOnl2MSUpslbukI8qEpM5FKg,142
|
|
193
|
+
letta/types/user_message_output.py,sha256=amGS-Dzws4ITjumVfZ6srZhxG-P8pWl7KF7EBvEBKB4,919
|
|
194
|
+
letta/types/user_update.py,sha256=0Bl1OjO7bfmlpsGQ36dSh6DH1UB_wJOTNewS0wDLkP4,731
|
|
195
|
+
letta/types/validation_error.py,sha256=ACDS7wL5nQbS8ymFhWljwbBJmbugNa8bs2O5xEZC3u4,680
|
|
196
|
+
letta/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
197
|
+
letta/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
198
|
+
letta_client-0.1.9.dist-info/METADATA,sha256=2QEtZFGl7UYpD1RieFm8ZN3gSedDzHZzLguWgMl9E5Y,4886
|
|
199
|
+
letta_client-0.1.9.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
200
|
+
letta_client-0.1.9.dist-info/RECORD,,
|