letta-client 0.1.15__py3-none-any.whl → 0.1.17__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_client/__init__.py +14 -34
- letta_client/agents/__init__.py +1 -26
- letta_client/agents/archival_memory/client.py +7 -132
- letta_client/agents/client.py +26 -20
- letta_client/agents/core_memory/client.py +17 -144
- letta_client/agents/memory_variables/client.py +2 -2
- letta_client/agents/messages/__init__.py +0 -14
- letta_client/agents/messages/client.py +4 -4
- letta_client/agents/messages/types/__init__.py +0 -16
- letta_client/agents/messages/types/messages_list_response.py +2 -2
- letta_client/core/client_wrapper.py +1 -1
- letta_client/providers/client.py +74 -74
- letta_client/runs/__init__.py +0 -19
- letta_client/runs/client.py +9 -9
- letta_client/tools/client.py +0 -120
- letta_client/types/__init__.py +16 -20
- letta_client/types/embedding_config_embedding_endpoint_type.py +1 -0
- letta_client/types/{letta_response_messages_item.py → letta_message_union.py} +13 -13
- letta_client/types/letta_response.py +2 -2
- letta_client/types/letta_schemas_message_message.py +5 -0
- letta_client/types/llm_config_model_endpoint_type.py +1 -0
- letta_client/types/tool_type.py +3 -1
- {letta_client-0.1.15.dist-info → letta_client-0.1.17.dist-info}/METADATA +2 -2
- {letta_client-0.1.15.dist-info → letta_client-0.1.17.dist-info}/RECORD +25 -32
- letta_client/agents/messages/types/messages_list_response_item.py +0 -125
- letta_client/agents/recall_memory/__init__.py +0 -2
- letta_client/agents/recall_memory/client.py +0 -147
- letta_client/runs/types/__init__.py +0 -21
- letta_client/runs/types/get_run_messages_response_item.py +0 -125
- letta_client/types/archival_memory_summary.py +0 -22
- letta_client/types/recall_memory_summary.py +0 -22
- {letta_client-0.1.15.dist-info → letta_client-0.1.17.dist-info}/WHEEL +0 -0
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
from ..core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
-
import pydantic
|
|
5
|
-
from ..core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
-
import typing
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class RecallMemorySummary(UncheckedBaseModel):
|
|
10
|
-
size: int = pydantic.Field()
|
|
11
|
-
"""
|
|
12
|
-
Number of rows in recall memory
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
if IS_PYDANTIC_V2:
|
|
16
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
17
|
-
else:
|
|
18
|
-
|
|
19
|
-
class Config:
|
|
20
|
-
frozen = True
|
|
21
|
-
smart_union = True
|
|
22
|
-
extra = pydantic.Extra.allow
|
|
File without changes
|