letta-client 0.1.42__py3-none-any.whl → 0.1.43__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/agents/__init__.py +3 -2
- letta_client/agents/blocks/client.py +753 -0
- letta_client/agents/client.py +8 -4
- letta_client/agents/core_memory/client.py +1 -734
- letta_client/agents/passages/__init__.py +2 -0
- letta_client/agents/{archival_memory → passages}/client.py +8 -8
- letta_client/core/client_wrapper.py +1 -1
- {letta_client-0.1.42.dist-info → letta_client-0.1.43.dist-info}/METADATA +1 -1
- {letta_client-0.1.42.dist-info → letta_client-0.1.43.dist-info}/RECORD +11 -9
- /letta_client/agents/{archival_memory → blocks}/__init__.py +0 -0
- {letta_client-0.1.42.dist-info → letta_client-0.1.43.dist-info}/WHEEL +0 -0
letta_client/agents/__init__.py
CHANGED
|
@@ -175,7 +175,7 @@ from .types import (
|
|
|
175
175
|
CreateAgentRequestToolRulesItem,
|
|
176
176
|
UpdateAgentToolRulesItem,
|
|
177
177
|
)
|
|
178
|
-
from . import
|
|
178
|
+
from . import blocks, context, core_memory, memory_variables, messages, passages, sources, templates, tools
|
|
179
179
|
from .memory_variables import MemoryVariablesListResponse
|
|
180
180
|
from .messages import LettaStreamingResponse, MessageUpdateContent
|
|
181
181
|
from .templates import TemplatesCreateResponse, TemplatesMigrateResponse
|
|
@@ -359,11 +359,12 @@ __all__ = [
|
|
|
359
359
|
"TemplatesCreateResponse",
|
|
360
360
|
"TemplatesMigrateResponse",
|
|
361
361
|
"UpdateAgentToolRulesItem",
|
|
362
|
-
"
|
|
362
|
+
"blocks",
|
|
363
363
|
"context",
|
|
364
364
|
"core_memory",
|
|
365
365
|
"memory_variables",
|
|
366
366
|
"messages",
|
|
367
|
+
"passages",
|
|
367
368
|
"sources",
|
|
368
369
|
"templates",
|
|
369
370
|
"tools",
|