letta-client 1.0.0a10__py3-none-any.whl → 1.0.0a11__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.

Files changed (51) hide show
  1. letta_client/_client.py +5 -1
  2. letta_client/_streaming.py +40 -2
  3. letta_client/_version.py +1 -1
  4. letta_client/resources/agents/blocks.py +15 -17
  5. letta_client/resources/agents/files.py +10 -13
  6. letta_client/resources/agents/folders.py +10 -13
  7. letta_client/resources/agents/messages.py +14 -4
  8. letta_client/resources/agents/tools.py +10 -13
  9. letta_client/resources/archives.py +10 -12
  10. letta_client/resources/batches/batches.py +10 -12
  11. letta_client/resources/batches/messages.py +11 -14
  12. letta_client/resources/blocks/blocks.py +19 -22
  13. letta_client/resources/folders/agents.py +10 -13
  14. letta_client/resources/folders/files.py +9 -12
  15. letta_client/resources/folders/folders.py +10 -12
  16. letta_client/resources/identities/blocks.py +7 -7
  17. letta_client/resources/identities/identities.py +10 -12
  18. letta_client/resources/runs/runs.py +11 -13
  19. letta_client/resources/tags.py +10 -13
  20. letta_client/resources/tools.py +10 -12
  21. letta_client/types/__init__.py +7 -4
  22. letta_client/types/agents/__init__.py +2 -3
  23. letta_client/types/agents/file_list_response.py +14 -3
  24. letta_client/types/agents/folder_list_response.py +7 -3
  25. letta_client/types/agents/letta_streaming_response.py +70 -0
  26. letta_client/types/agents/tool_list_response.py +10 -0
  27. letta_client/types/archive_list_response.py +10 -0
  28. letta_client/types/batch_list_response.py +10 -0
  29. letta_client/types/batches/__init__.py +1 -0
  30. letta_client/types/batches/message_list_response.py +12 -0
  31. letta_client/types/{block_list_response.py → block_response.py} +5 -5
  32. letta_client/types/folder_list_response.py +10 -0
  33. letta_client/types/folders/agent_list_response.py +2 -1
  34. letta_client/types/folders/file_list_response.py +7 -4
  35. letta_client/types/identities/__init__.py +0 -1
  36. letta_client/types/identity_list_response.py +10 -0
  37. letta_client/types/run_list_response.py +10 -0
  38. letta_client/types/tag_list_response.py +2 -1
  39. letta_client/types/tool.py +25 -25
  40. letta_client/types/tool_list_response.py +10 -0
  41. {letta_client-1.0.0a10.dist-info → letta_client-1.0.0a11.dist-info}/METADATA +1 -1
  42. {letta_client-1.0.0a10.dist-info → letta_client-1.0.0a11.dist-info}/RECORD +44 -42
  43. letta_client/types/agents/block_list_response.py +0 -63
  44. letta_client/types/agents/block_modify_response.py +0 -63
  45. letta_client/types/agents/block_retrieve_response.py +0 -63
  46. letta_client/types/block_create_response.py +0 -63
  47. letta_client/types/block_modify_response.py +0 -63
  48. letta_client/types/block_retrieve_response.py +0 -63
  49. letta_client/types/identities/block_list_response.py +0 -63
  50. {letta_client-1.0.0a10.dist-info → letta_client-1.0.0a11.dist-info}/WHEEL +0 -0
  51. {letta_client-1.0.0a10.dist-info → letta_client-1.0.0a11.dist-info}/licenses/LICENSE +0 -0
@@ -1,7 +1,8 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
+ from typing import List
3
4
  from typing_extensions import TypeAlias
4
5
 
5
6
  __all__ = ["AgentListResponse"]
6
7
 
7
- AgentListResponse: TypeAlias = str
8
+ AgentListResponse: TypeAlias = List[str]
@@ -1,15 +1,15 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
- from typing import Optional
3
+ from typing import List, Optional
4
4
  from datetime import datetime
5
- from typing_extensions import Literal
5
+ from typing_extensions import Literal, TypeAlias
6
6
 
7
7
  from ..._models import BaseModel
8
8
 
9
- __all__ = ["FileListResponse"]
9
+ __all__ = ["FileListResponse", "FileListResponseItem"]
10
10
 
11
11
 
12
- class FileListResponse(BaseModel):
12
+ class FileListResponseItem(BaseModel):
13
13
  source_id: str
14
14
  """The unique identifier of the source associated with the document."""
15
15
 
@@ -63,3 +63,6 @@ class FileListResponse(BaseModel):
63
63
 
64
64
  updated_at: Optional[datetime] = None
65
65
  """The update date of the file."""
66
+
67
+
68
+ FileListResponse: TypeAlias = List[FileListResponseItem]
@@ -4,5 +4,4 @@ from __future__ import annotations
4
4
 
5
5
  from .agent_list_params import AgentListParams as AgentListParams
6
6
  from .block_list_params import BlockListParams as BlockListParams
7
- from .block_list_response import BlockListResponse as BlockListResponse
8
7
  from .property_upsert_params import PropertyUpsertParams as PropertyUpsertParams
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+ from typing_extensions import TypeAlias
5
+
6
+ from .identity import Identity
7
+
8
+ __all__ = ["IdentityListResponse"]
9
+
10
+ IdentityListResponse: TypeAlias = List[Identity]
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+ from typing_extensions import TypeAlias
5
+
6
+ from .agents.run import Run
7
+
8
+ __all__ = ["RunListResponse"]
9
+
10
+ RunListResponse: TypeAlias = List[Run]
@@ -1,7 +1,8 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
+ from typing import List
3
4
  from typing_extensions import TypeAlias
4
5
 
5
6
  __all__ = ["TagListResponse"]
6
7
 
7
- TagListResponse: TypeAlias = str
8
+ TagListResponse: TypeAlias = List[str]
@@ -6,7 +6,7 @@ from textwrap import dedent
6
6
  import inspect
7
7
  import typing
8
8
 
9
- from pydantic import Field as FieldInfo, Field, model_validator
9
+ from pydantic import Field as FieldInfo, Field
10
10
 
11
11
  from .._models import BaseModel
12
12
  from .tool_type import ToolType
@@ -98,30 +98,30 @@ class BaseTool(Tool):
98
98
  pass
99
99
 
100
100
 
101
- @model_validator(mode="after")
102
- def no_self_in_run_source(self) -> "BaseTool":
103
- """
104
- Validate that the provided implementation does not reference `self` in the
105
- `run` method implementation.
106
-
107
- This check is performed after the model is created, so `self` is guaranteed
108
- to be set.
109
-
110
- If `self` is found in the source code of the `run` method, a `ValueError` is
111
- raised with a message pointing to the line and value of the offending code.
112
- """
113
- source_code = self.get_source_code()
114
- if "self." in source_code:
115
- raise_on_line, line_value = None, None
116
- for i, line in enumerate(source_code.splitlines()):
117
- if "self." in line:
118
- raise_on_line, line_value = i+1, line
119
- break;
120
- raise ValueError(
121
- f"Detected reference to 'self' in line {raise_on_line} of implementation, " +
122
- f"which is not allowed:\n\n{line_value}\n\n" +
123
- f"Please pass in the arguments directly to run() instead.")
124
- return self
101
+ # @model_validator(mode="after")
102
+ # def no_self_in_run_source(self) -> "BaseTool":
103
+ # """
104
+ # Validate that the provided implementation does not reference `self` in the
105
+ # `run` method implementation.
106
+
107
+ # This check is performed after the model is created, so `self` is guaranteed
108
+ # to be set.
109
+
110
+ # If `self` is found in the source code of the `run` method, a `ValueError` is
111
+ # raised with a message pointing to the line and value of the offending code.
112
+ # """
113
+ # source_code = self.get_source_code()
114
+ # if "self." in source_code:
115
+ # raise_on_line, line_value = None, None
116
+ # for i, line in enumerate(source_code.splitlines()):
117
+ # if "self." in line:
118
+ # raise_on_line, line_value = i+1, line
119
+ # break;
120
+ # raise ValueError(
121
+ # f"Detected reference to 'self' in line {raise_on_line} of implementation, " +
122
+ # f"which is not allowed:\n\n{line_value}\n\n" +
123
+ # f"Please pass in the arguments directly to run() instead.")
124
+ # return self
125
125
 
126
126
 
127
127
  def get_source_code(self) -> str:
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import List
4
+ from typing_extensions import TypeAlias
5
+
6
+ from .tool import Tool
7
+
8
+ __all__ = ["ToolListResponse"]
9
+
10
+ ToolListResponse: TypeAlias = List[Tool]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: letta-client
3
- Version: 1.0.0a10
3
+ Version: 1.0.0a11
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=ORtNlrte9IL8qsRgNTpbyXt3qXBKdWCStLg-lr7IJQg,26295
3
+ letta_client/_client.py,sha256=5EVnUlpelfD_0W27NVx5zcMuQDhQPUWdhqslMivue9Y,26386
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
@@ -9,9 +9,9 @@ letta_client/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
9
9
  letta_client/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
10
  letta_client/_resource.py,sha256=usdu71d9SVBhsKu3-JpcwE4ZYyIZJTEIFhNNUR2i-qI,1094
11
11
  letta_client/_response.py,sha256=BKfNWi9r9l3FTwBirPt64_mnVss9gK8OYZkHb0MLL1A,28840
12
- letta_client/_streaming.py,sha256=yvRY-2Co3LGJP-i-BadgepvNxhhfMeIsXX2Rk6tcEg0,10096
12
+ letta_client/_streaming.py,sha256=2wzITUJQypQasoNruhskXNoOHdXWrfY4Se8XHoq8TYY,11234
13
13
  letta_client/_types.py,sha256=dz_siM5FFPTKJs3m9q2ocNjY26xAZ98zPp7sQlsSm0U,7242
14
- letta_client/_version.py,sha256=5OVUpinAao9eO8Up3skHCZ5v8XAQimXF_m1vF-gEbN8,173
14
+ letta_client/_version.py,sha256=4RC3BgGQWmL9tBHcT2usaOUlCKyLqDst2PyobhOlVuo,173
15
15
  letta_client/pagination.py,sha256=lQ8asLHRqlok2V6OLrTR6TVgvvqFxvYm5IFJSNYFXxE,7967
16
16
  letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  letta_client/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
@@ -28,41 +28,41 @@ letta_client/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZG
28
28
  letta_client/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
29
29
  letta_client/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
30
30
  letta_client/resources/__init__.py,sha256=t8-E03q5uhhzb8iMeqZrbjSJaMFHz0hw9g-EwLV6AeY,6017
31
- letta_client/resources/archives.py,sha256=YnyN8X5F9sAm3-mAXkGWjjbzqDRQ_lZfnB-wEsRE8TQ,22574
32
- letta_client/resources/tags.py,sha256=76SSFdJJBHLGuEL3ejulFwMxLLNTgiD2HuOqaxLx03Y,8635
33
- letta_client/resources/tools.py,sha256=WjLLqXUq1VusQ3dEvbpdQs_9f7Kc1JBf49FZpjhH0vI,70263
31
+ letta_client/resources/archives.py,sha256=_YWmXSr_GkmGCDjfGU_EdSIFB9e0qC_BeCg0EF2YM70,22484
32
+ letta_client/resources/tags.py,sha256=vuNCEAN0xZ_98X5w4Q95oOfGmNlC5A5ZQYrDfAuv07I,8458
33
+ letta_client/resources/tools.py,sha256=--azNk2mnlLPzQaOgggVj2QKjsbvhMc1mybcYhQ7o14,70176
34
34
  letta_client/resources/agents/__init__.py,sha256=kMBB1oA9e0oxT91T6Ck4AT-BKIBFQPKTENALxMNHN3g,3265
35
35
  letta_client/resources/agents/agents.py,sha256=Vdn5OCqHv-jSk0u-x_RbASsBHSNIAhYMU6DTX-mgxoo,82228
36
- letta_client/resources/agents/blocks.py,sha256=QMe8y8HDTO4SKmGAdImYwtFi5myrkaAS83GGVKfC1Hs,28188
37
- letta_client/resources/agents/files.py,sha256=zUFsoI7d0OlFKJ3QhdJ2HwkGUfVnQ8U3DuzNvOgQ2R4,20905
38
- letta_client/resources/agents/folders.py,sha256=N-2MUJIF0Ybr3tIRpgZVpEYbo5FsafH9T-LxDjAXrSY,15938
36
+ letta_client/resources/agents/blocks.py,sha256=NUFcRR5A4yGwplmy_ldSTP_rNkKHuTjs88xOL3n2zqk,27944
37
+ letta_client/resources/agents/files.py,sha256=Xaj7R3ye4PqtqrMejFnWh47Hvj5OJpJvS1H-RSHMpb8,20676
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=3UCusM1UF7ioCKkML8YNYRP0rOwHa_WrKPm19RxTzWk,62096
41
- letta_client/resources/agents/tools.py,sha256=YLa0R1dAGRTrxMR_Aq3CTmb-28JJ5_JdpyOl1IhwFT0,20899
40
+ letta_client/resources/agents/messages.py,sha256=0Z72_G0b7HVo0VHUE46SF19ZIcOmnjB1rc3z0m9AaaU,62684
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
- letta_client/resources/batches/batches.py,sha256=AnqFT5VGlJ7Bga8kTQUlTwe6gC7kUKf3Q5wqtN1in7A,19959
44
- letta_client/resources/batches/messages.py,sha256=3pifEcIFS0VYHvjaMgSJ0k8PWH5ZYD1XNNX13Y4M-D8,8885
43
+ letta_client/resources/batches/batches.py,sha256=BSC9Qh806UWUWKoMgglbRYnH0jc1XhnEuDkQxX2cHkg,19850
44
+ letta_client/resources/batches/messages.py,sha256=fcZV_hOI1YJGZCYxWrIa8gH330elSIPrUx8bY9v-L0M,8776
45
45
  letta_client/resources/blocks/__init__.py,sha256=bdVcjGQZ2G8IPxXUtEIHRfJA0gopCS-rQGrxxjZY8L8,1002
46
46
  letta_client/resources/blocks/agents.py,sha256=nbmtwjZafr2ktTjybTUjIVL_BWiJfgBsQ9cwPHNgp1Y,10817
47
- letta_client/resources/blocks/blocks.py,sha256=TR6Ltxw5L-wnl_vp1g9-hpa-1FcEUzTrXsYnIUMCF9w,38296
47
+ letta_client/resources/blocks/blocks.py,sha256=QIajjVwT8Jlj9JCzZQWoxIhvn-mdsBdPVLWcoGHetzU,37986
48
48
  letta_client/resources/folders/__init__.py,sha256=ANqxbwoospe99HnVPeeDt2lDyxG5m60_9QPTbehdRjs,1452
49
- letta_client/resources/folders/agents.py,sha256=TF2jWWA17gcm9f-qTEF30k4V1Buz0qzf8imL7E7Lsvc,8704
50
- letta_client/resources/folders/files.py,sha256=r4NmvgFK5lBiWSVYoFncyCSLeLRQ1NUgtHJFtoFocGs,18217
51
- letta_client/resources/folders/folders.py,sha256=YPcZus_-EPzzB3hHkqGbCYCHmmpoZQ34UZ3oQJIZ0Xc,29134
49
+ letta_client/resources/folders/agents.py,sha256=0qd5nMcNqVQMNNGMfQLAdKm01BpXVdoXSRcTPQRjZL8,8524
50
+ letta_client/resources/folders/files.py,sha256=nNtsVaok4mIxkNWuW-coZipFQGLGemkuVvRS6p0TNvo,17989
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=1R25YGALGCi1PfDMPY9DGZlb22t4uwer4J_JKDsl0To,28415
54
54
  letta_client/resources/groups/messages.py,sha256=UxE6cN1YizDLmo7EdcxWzIVXHIZL-n-PPWaPtM215IY,45425
55
55
  letta_client/resources/identities/__init__.py,sha256=DaxkyrCra0xPWgEyZVRgVapuasUybvZokYssYq_QnyM,2006
56
56
  letta_client/resources/identities/agents.py,sha256=KeejDcc4xDrqCQMV79QvK1VDRTCSIS4GqvgQUCFQRIc,9709
57
- letta_client/resources/identities/blocks.py,sha256=VxdZc908M71nhUp5OUFclrpkm-NnVV8IscrTs_EQOrg,8768
58
- letta_client/resources/identities/identities.py,sha256=ya-MogilPGGuLCP7fJ0CIkC_7Q68bHHrsnEGsYo_q4E,37988
57
+ letta_client/resources/identities/blocks.py,sha256=JnvtUXjXQe_SyWlLqljAAc8tZ68rLj-3Hof4ccca2YA,8720
58
+ letta_client/resources/identities/identities.py,sha256=o2_-SqkotHZwWCIdyadv8GfvFztFvcDjV7R0X6RGfSA,37897
59
59
  letta_client/resources/identities/properties.py,sha256=8GcBy9r9DAuTmvZdlkFcTlfH_hbSNpzD0O_VPRrx2bQ,6483
60
60
  letta_client/resources/models/__init__.py,sha256=Tvswac6gTvPG6C45MOrEYYjWY6dEdWagxey_P6fgYkU,1054
61
61
  letta_client/resources/models/embeddings.py,sha256=1y7h-pd_LW7Dyf9q_7CV1MF6KVfSRHCfLlPuaM5B-KE,5238
62
62
  letta_client/resources/models/models.py,sha256=hL_X-WVFOIzxpbnfgeAU-yPTSOn0mj5YTaiqKKcVIL4,8217
63
63
  letta_client/resources/runs/__init__.py,sha256=Oz3VS4QWQ-W1ZkMdw1EuuH33QdUIgyxFhtAROdmI7RQ,1876
64
64
  letta_client/resources/runs/messages.py,sha256=BSAvj0TIFD5rHlIpRXrFXED4plyN1ZTtODzFkyf7R7Q,13665
65
- letta_client/resources/runs/runs.py,sha256=9eNWdUu4uoNmkKXJSo0FKI3lXAUjAUpI5dXJ8-4IZsw,16677
65
+ letta_client/resources/runs/runs.py,sha256=x79KGrUTCePKG1XYhn4fQgDrZRyqgyfdiOSLSzplceA,16614
66
66
  letta_client/resources/runs/steps.py,sha256=hR33PtnoHUFrxLSj8-Rb3kAMRebyzlYjaSxqn8vyEXc,7981
67
67
  letta_client/resources/runs/usage.py,sha256=rsarShRjn8sylRDfsO2BcM25dk2xGr0Njal9CKbeDgs,5824
68
68
  letta_client/resources/steps/__init__.py,sha256=OV3vMIlQtZsrqFyxxdFcdAy4CZHlf2p1ce7F7cncolk,2391
@@ -74,7 +74,7 @@ letta_client/resources/steps/trace.py,sha256=Q11XSAoMKkEnePvm4eIUZ-UZeMu6QxmQedg
74
74
  letta_client/resources/templates/__init__.py,sha256=4wWq5EBTkiBFzEIzLMP5rkzQ94peMZkl1roLp8iPK_g,1041
75
75
  letta_client/resources/templates/agents.py,sha256=vc757D2B5BKTz8DoSTepQx1aChV4GFgXArM2cHfXG7s,9351
76
76
  letta_client/resources/templates/templates.py,sha256=ATGrBCFSA06XpjR5rbWtXAT4vq66DwnDia5_XcM8z7Q,3695
77
- letta_client/types/__init__.py,sha256=FSAEuptNEEV-jjdwnK-Ydg_juJgZ3UTC616oYuuZpL0,8201
77
+ letta_client/types/__init__.py,sha256=BJy2WGUSWWTirJYMG4NTZ1qRp6lXhy5NbShl4lJ2pZM,8389
78
78
  letta_client/types/agent_count_response.py,sha256=SdUd1SYP0pwONLc_7_bESZm1mwsgrNP93JiWq47bKdo,198
79
79
  letta_client/types/agent_create_params.py,sha256=lpof9sC0HEX-Rnfw9-WB6Mwg1dpIBlsVMnE51TfCV2U,7343
80
80
  letta_client/types/agent_environment_variable.py,sha256=CDCeL5bHPsx9A_3SE3dPB5x8ceT2JB8FlQRwd1lVlbY,1144
@@ -90,18 +90,17 @@ letta_client/types/agent_type.py,sha256=s3xTJnio45wTIYkWNJotfD2X57Ad-26kQvIEAPtf
90
90
  letta_client/types/archive.py,sha256=KeykpT5HHZ6ofTXHYVSzgYkGgI9SzdkOAm-59pCNLUU,1207
91
91
  letta_client/types/archive_create_params.py,sha256=jgfx7deSjphAjcv6RV9uVAdbg7jEQpRP1CS1axP6hBA,507
92
92
  letta_client/types/archive_list_params.py,sha256=UapyvrrCC6WtuCEgDvWGNzYAlF8a38YD2qYP0ANMeNY,1032
93
+ letta_client/types/archive_list_response.py,sha256=xCPMJfPJInYUEHgQ9x7cpkofanDZJs3rdemGWWwgdd0,264
93
94
  letta_client/types/archive_modify_params.py,sha256=raXJhi9iABF86a8rEwl211iDBbDRMTojH0e9tiQKCp0,335
94
95
  letta_client/types/batch_create_params.py,sha256=L_eoTMfpaApo7kL85FjFMlRR87TXh29yZIoImfE0Igg,2428
95
96
  letta_client/types/batch_job.py,sha256=7WqF20P-PN66xtlPV7KKRk45lPa0qEAiiq3jgBCaPp4,2024
96
97
  letta_client/types/batch_list_params.py,sha256=bl6BOxOr0eyVktNbxLl9__5tmRXG-dNFBLPlXrCeaNc,845
98
+ letta_client/types/batch_list_response.py,sha256=eOYgKgpo05jSVx_-79YCKQhsj2pdxZ8mEaOBPptrwC8,264
97
99
  letta_client/types/block_count_response.py,sha256=rgo7gHSwJn8iQkorR8yoalkwR5cyLrD5le7v3YUM2Vo,198
98
100
  letta_client/types/block_create_params.py,sha256=m8XrM0OCCO8aRs9ZDoXV8HmyL2KdBZ6c9yy4Er1CGpo,1335
99
- letta_client/types/block_create_response.py,sha256=q5cRjSBpbY_RTGBpofRYO5Nhxo9sAIQVDGW6ukcB-bE,1908
100
101
  letta_client/types/block_list_params.py,sha256=Earz6lU-V0HDD9V-_YrQhglg_A6UASWJgMaTq0KLpj0,2435
101
- letta_client/types/block_list_response.py,sha256=9pa244Fu5Gyhxvx2tKS7YtkSQB6zY5ls5KLmiUxfsvM,1904
102
102
  letta_client/types/block_modify_params.py,sha256=saLnzB03wPeGPPFd2tgAAfTVbLk0wUNvX5wa3p-jcQg,1461
103
- letta_client/types/block_modify_response.py,sha256=lGoPKeMiJp9gO_GU6lX4FWYQRkde_MqfyzFDkIQ7wzE,1908
104
- letta_client/types/block_retrieve_response.py,sha256=i6AZuOWsYJ0_4zUOTZXWGuItCxQA5wZ6HeA9uBHPCKA,1912
103
+ letta_client/types/block_response.py,sha256=3GscYRRIzBnCtq1D741tavaDpVx9bijKWR2koVitcI4,1865
105
104
  letta_client/types/child_tool_rule.py,sha256=9VmfpVcM-VB1v9SY_yN1ABXPDQeZOLfz7o98f8PCde8,1175
106
105
  letta_client/types/child_tool_rule_param.py,sha256=x_vGcGiiWl7HVDJGTX6aHfQZBnz6X5UNlqhfYIWJotc,1282
107
106
  letta_client/types/conditional_tool_rule.py,sha256=Em5yoc6EYjC5YZxEL_hYdREwtbMLr9PKyqqUsCjyil0,846
@@ -116,6 +115,7 @@ letta_client/types/folder.py,sha256=jxrRX-mTAWWHu6nGhxM0dfz_DWaKl81YdGC11bjmu_o,
116
115
  letta_client/types/folder_count_response.py,sha256=BeKkjltHXaCZr9LMeA9uZbX4lvFVUh6Opb_1pddt2UI,200
117
116
  letta_client/types/folder_create_params.py,sha256=sJ3iSSQclEQHmwESkpSVhZyEY0ekn99Urk2RIlQoi4I,971
118
117
  letta_client/types/folder_list_params.py,sha256=oXb8k3fJywQXnjW_9DE2vKHbVQ3VDuJTa6-fUwLgAgk,931
118
+ letta_client/types/folder_list_response.py,sha256=pCdn2XIbn5F8Aw2Vy2_fEUIYzewxVVDFtBczFGTVi7U,259
119
119
  letta_client/types/folder_modify_params.py,sha256=lnw17f57-7kD661OFmymEIrmnD2mE0Vz6CwCt7V-Zic,781
120
120
  letta_client/types/group.py,sha256=pHBvXJ1pwFxCCZJIdZr7dkmA5hnfBLJjR2MgcKrgFm4,1574
121
121
  letta_client/types/group_count_response.py,sha256=957tbXl5QChGQtuB96Ka0cC-8IXEhWHdt4-2S-FAw9A,198
@@ -127,6 +127,7 @@ letta_client/types/identity.py,sha256=NyVfbNd2-LsHPwowJw04_bxLmKiz6mE54XG-E7T8FV
127
127
  letta_client/types/identity_count_response.py,sha256=KGDSczG-xwOpFXjuxivkbF0df7WELT3R4IeBkzW0IE4,204
128
128
  letta_client/types/identity_create_params.py,sha256=wHarVuxFwL3TD4Wxaa9-KWRW6GaSV9h84FXd1UO1ALg,1282
129
129
  letta_client/types/identity_list_params.py,sha256=M5zNhXGSrSZ7PUAe5QYtlTeemvDn213zKBA7m_HsT0A,1124
130
+ letta_client/types/identity_list_response.py,sha256=n8WiHIiX5BOutoKuyqZreiCV8UhzOt8YFyOfbdvYvQU,269
130
131
  letta_client/types/identity_modify_params.py,sha256=iBGIPczHJiJr4IcrlKg6-4URsRCIA6as6LoppEkuLQ0,1021
131
132
  letta_client/types/identity_property.py,sha256=wI7QIJCpfUBiOeHVnbFH7fN1Vxr0jLoWsomp6vHJ-bc,489
132
133
  letta_client/types/identity_property_param.py,sha256=cxsJfRQs8bISHOg_ji7u6L_MD4OaQxCDJ3qhPKPqdlY,566
@@ -162,22 +163,24 @@ letta_client/types/requires_approval_tool_rule.py,sha256=oxYZhLD8_oyoN9tRuJ4fEUj
162
163
  letta_client/types/requires_approval_tool_rule_param.py,sha256=GZkzrct1rfFfaWpALbuytGC4d5lDEfRmMqiSkJCnOsA,624
163
164
  letta_client/types/round_robin_manager_param.py,sha256=0AWhIh9goMzvHc8dGHCa-wuM13D4UGyTKOvD0gWl09o,365
164
165
  letta_client/types/run_list_params.py,sha256=NlhObeRvbiU2wG_FTwEozTCOJinC_ZevZZOW2swpnVw,1703
166
+ letta_client/types/run_list_response.py,sha256=G73U6hxFfp6wjpAxvTAOaRw9DkdQS6NIs73BdO9XeV0,251
165
167
  letta_client/types/sleeptime_manager_param.py,sha256=rwg20GKfOPTnGLiMApQ-V1-sshFp3Ncn_WNHXNfy__g,424
166
168
  letta_client/types/step.py,sha256=HEaZCWHB802VOZX8ADswSgh2J-GduelP0ln5aU73JqY,2995
167
169
  letta_client/types/step_list_params.py,sha256=QFGWBPMHZxN2HXYR0Aw39OZ51lJoVaz6QlyZJE8owxE,1784
168
170
  letta_client/types/stop_reason_type.py,sha256=c65VgfH1QeppsLMqD09IkYL4FLBC1yHKQdD9OGsgjDQ,405
169
171
  letta_client/types/supervisor_manager_param.py,sha256=Jxnf9Yi8-kzGBIMqFCkJSMqWvsp3AXPzKQOqHxurOps,353
170
172
  letta_client/types/tag_list_params.py,sha256=_RnY8jTjiAnm7vYTXgjyo6LeVMcvVzsQkHycgQOiM40,992
171
- letta_client/types/tag_list_response.py,sha256=0No3qReinIFKMUcHShkISu7-KrIRRgg8p9VFJrSKnng,192
173
+ letta_client/types/tag_list_response.py,sha256=UsubWqLCh_o_HGo7FWwLdrpHSAhioVAf-xGNBM8yMbE,222
172
174
  letta_client/types/terminal_tool_rule.py,sha256=awI46gpnXzb1yEF8P8-LC_mTDKPsyPb9lRj9i4m_lhQ,500
173
175
  letta_client/types/terminal_tool_rule_param.py,sha256=6nVUm9k1XaDwmbZjsdmSoyaT6N4MTKRS6oxIyViuX40,533
174
176
  letta_client/types/text_response_format.py,sha256=JXjHFwVTXR3EAXEgyqnPrI5BnPEWp0BXtLW6pdK5GoE,345
175
177
  letta_client/types/text_response_format_param.py,sha256=0vse-dbRXfuIGUIf7qcWbEafroNfQz5ZsstHxeE-GG8,337
176
- letta_client/types/tool.py,sha256=yqsWI9yC0MgZAl3RQRX_nzMRrYGyFUV7u1kuXBNAXSs,6018
178
+ letta_client/types/tool.py,sha256=I67kDYoND-L6ySAV3mQdqrXXeMdeq5xKMxfWRTQFhQE,6045
177
179
  letta_client/types/tool_count_params.py,sha256=En9uTa2LsREUJSuql5okpUxnSEePjkqL2LiZt1xf8gM,1115
178
180
  letta_client/types/tool_count_response.py,sha256=fxkWNTsSBbEJl7EhEuq9nqEZC161PsEbglIpw33jrgM,196
179
181
  letta_client/types/tool_create_params.py,sha256=ourfiChPPF2YoNxmpHmIXq89EPevrTetZtYWwKCZX3s,1610
180
182
  letta_client/types/tool_list_params.py,sha256=oSwepX0mdUw07skdN6ULZbX2bxhLHbIVusuNsXQZsMQ,1639
183
+ letta_client/types/tool_list_response.py,sha256=611wn2TymQK385EFMRFIcG1-hHyZTz9c_d-jinfR3_Y,249
181
184
  letta_client/types/tool_modify_params.py,sha256=ITg5_E0EhkYj3g31paosi8oei7176oNkO1grFnzAKnw,1808
182
185
  letta_client/types/tool_return_message.py,sha256=cbKJnEJgD5YssoC4BId-fG5floUPOXZZQde7z-uNqoY,928
183
186
  letta_client/types/tool_type.py,sha256=bCnBz4HnX_v2a-1KoE5n3IS-tbadrkLvK3VTyvJRx2M,459
@@ -185,23 +188,20 @@ letta_client/types/tool_upsert_base_tools_response.py,sha256=LnfdXQ1Ogg9lsOzZ6Lv
185
188
  letta_client/types/tool_upsert_params.py,sha256=mZW3jsUXSCIJWTHzyfbxlZwtw7ue2K1oKllK9onPOik,1610
186
189
  letta_client/types/vector_db_provider.py,sha256=qBKOulAcpdAgPJxRBU_bwNyK3LDRRDc23ZWHwOG10kU,237
187
190
  letta_client/types/voice_sleeptime_manager_param.py,sha256=fpSmxdOHcyj6h6EV1K0fqh9howUNN9d_IGUfUO9d8Do,856
188
- letta_client/types/agents/__init__.py,sha256=MnrNCfLBc-UCHZdWePsaCoVyDK2YwURqD6fG3UCiUss,5170
191
+ letta_client/types/agents/__init__.py,sha256=Y_AE28AhpL7-dgQSs0UdVpHS482yA3AfGh4FStRROmA,5092
189
192
  letta_client/types/agents/approval_create_param.py,sha256=MT8miAyzQSZwjN7vPe8iFWwris30bl34KJs0LlR1DVE,1295
190
193
  letta_client/types/agents/approval_request_message.py,sha256=ig5yQhnSut9F5uGLJCoPI0hsCOZQLZq6TL8o9NEVcM8,1178
191
194
  letta_client/types/agents/approval_response_message.py,sha256=JkZLpvyE7muDzkKYoWz8PlLlz5V_rW9lARrlsVtyLV4,1691
192
195
  letta_client/types/agents/assistant_message.py,sha256=fUPjYLWZJHglFdcI3gm6I-yzkMIeE7P5D3mbly0L23U,930
193
196
  letta_client/types/agents/block.py,sha256=W89HtUA_EsVpfVy06pV3Rm3zmBhDD5kwiLN1KDQyiVA,1762
194
197
  letta_client/types/agents/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
195
- letta_client/types/agents/block_list_response.py,sha256=7zdduZIf38XnicCK2WIV-D_QlQsiQc8BB3O3Mm34m0Y,1905
196
198
  letta_client/types/agents/block_modify_params.py,sha256=nowldbVlbanKYdA87Pk70OnZB9R15vG6WPx4dXx3DV8,1560
197
- letta_client/types/agents/block_modify_response.py,sha256=Xw_cxxqrmMKGDIe4XUyvnRJK0TG-6JTNMfMsQJt4XrI,1909
198
- letta_client/types/agents/block_retrieve_response.py,sha256=DD3lba9tl4V_fQtmtPjDGZubRi4azKGCP-loS0DTWM0,1913
199
199
  letta_client/types/agents/file_close_all_response.py,sha256=yq3AN8M749mivM6T7WS6iNKCrBRANafXXHsB3NuQRsc,232
200
200
  letta_client/types/agents/file_list_params.py,sha256=ltjR-n7z_ZiOCO_nNPmSyH7DQUxdUB_jEuSXnnLWMmE,1067
201
- letta_client/types/agents/file_list_response.py,sha256=SILYgNMYWxdWsY6Nn1oxec5b12B2Eu6-yDTVB9RFRN0,1041
201
+ letta_client/types/agents/file_list_response.py,sha256=oG37WQIZKjDo5HVnoWSZy5O09w-IF3pXEjyHMTiL5nk,1336
202
202
  letta_client/types/agents/file_open_response.py,sha256=QnOUmArtPRRFAlSqfCzcQX_Mj9J7_YfSSCdjOdA7dhk,224
203
203
  letta_client/types/agents/folder_list_params.py,sha256=ch6sBSUu88lyAm7RWAaHjVKOJ5gmH4sJh_d6q6RZ46E,871
204
- letta_client/types/agents/folder_list_response.py,sha256=q0MtO1aVgPOuYlE9JIAO73lGLwI97p7hslGM9GCzLtU,1357
204
+ letta_client/types/agents/folder_list_response.py,sha256=-99lBKZTBV1K5nTuKSUbLbWfM890oabNxBjOgvl86Hk,1496
205
205
  letta_client/types/agents/group_list_params.py,sha256=uP71TVEepshoEshCGqTPoCurfXrPA1aCjEx_uwBogzQ,937
206
206
  letta_client/types/agents/hidden_reasoning_message.py,sha256=QyK6CPVEXosSruZiazdsAL2mQ2nMU3Psano0ZmJXZiQ,763
207
207
  letta_client/types/agents/image_content.py,sha256=xsOD6ryt99gbOv5nvGTHOWqVMgK7cE3V7FJD6bHApsM,1767
@@ -212,6 +212,7 @@ letta_client/types/agents/letta_assistant_message_content_union.py,sha256=fh_0Gx
212
212
  letta_client/types/agents/letta_assistant_message_content_union_param.py,sha256=91Lopt2yxg0BucmTa9pki6B9sidSGhJqin9epUQFXsg,585
213
213
  letta_client/types/agents/letta_message_union.py,sha256=7u2DBkz03yVN7DEQ48RhZidyGXSu0m9dZV7GlMn7j60,1048
214
214
  letta_client/types/agents/letta_response.py,sha256=1yDCTUHt8Dxb4AhoGbLbeKQlASLCEYQkIvdqfgNBH2Y,1417
215
+ letta_client/types/agents/letta_streaming_response.py,sha256=n8qrMipSI6USTiwQth646Hnlecy4QuAkAkJLGJrxc7Y,2195
215
216
  letta_client/types/agents/letta_user_message_content_union.py,sha256=u6fbFbrTu3wLMIEe72UqBWOTrVDQqBMaq9VT3thXTow,450
216
217
  letta_client/types/agents/letta_user_message_content_union_param.py,sha256=tkoVza0d2m_cnO2o4jspLzvsGVhaS1ZwHF1HzL72JYQ,429
217
218
  letta_client/types/agents/message.py,sha256=UEBeJIl_-XMHmvUESTOI0e--2W4xl7swirthYR2csaA,7327
@@ -243,6 +244,7 @@ letta_client/types/agents/tool_call_content_param.py,sha256=6emc1rsT2umsH6gSvVZX
243
244
  letta_client/types/agents/tool_call_delta.py,sha256=7THqtblAJMt4e_tjMJr92ajlF641rDaJVsQ2RtuoGDM,320
244
245
  letta_client/types/agents/tool_call_message.py,sha256=8p4Lk_o1C-nsq1gOuSADvfLY80Oe8-DSZ7dC5Px8-Rk,981
245
246
  letta_client/types/agents/tool_list_params.py,sha256=fmhOBx016k5FFLKHk187w7Om1HRWkUNEzBPI4MVrbXM,851
247
+ letta_client/types/agents/tool_list_response.py,sha256=ZcDgozkPHhscFNdPkdSW3J3ZL6NjmCA0EY33EqCoge0,250
246
248
  letta_client/types/agents/tool_return.py,sha256=pwBOXj-A1ePm3WaKJU9ipAxChS2DHoLSABcEAAa29dE,501
247
249
  letta_client/types/agents/tool_return_content.py,sha256=BSOvlAuJPL_xcsrQmiCPHOIxweSrq3EZMT1GHBquLi4,639
248
250
  letta_client/types/agents/tool_return_content_param.py,sha256=LZTL1w0MNgZH69Yc-z0BgC0We5ChGM6XYfaAICEwXfc,670
@@ -253,15 +255,16 @@ letta_client/types/agents/update_reasoning_message_param.py,sha256=JQmAXEY3URi4P
253
255
  letta_client/types/agents/update_system_message_param.py,sha256=Ca_Tk6U3Nr-GAZOnm7LWRsMGfKNL_5LpxW-xolMtGPs,474
254
256
  letta_client/types/agents/update_user_message_param.py,sha256=edqu5unlWgmKobbkU4aw_amYDCzOk7fTQuBLcbPGCvw,640
255
257
  letta_client/types/agents/user_message.py,sha256=xm9gDlwhHJbgxmYNMrHFCsvRw9puOXCiVEAq5jnW_N0,911
256
- letta_client/types/batches/__init__.py,sha256=nmKlohYbZmr7Pzv1qCDMSDbthcH6ySPFIgvXpHZtxK8,195
258
+ letta_client/types/batches/__init__.py,sha256=VDr2g2i749NVUkSdcmAl77trohsU_WlAuwDHH-vVeg4,273
257
259
  letta_client/types/batches/message_list_params.py,sha256=KSeV1xGtZuJs_heEVRI5JdWcXrlPPBlDxieaZUXQdTA,948
260
+ letta_client/types/batches/message_list_response.py,sha256=U-6QL14UaJ2R-sGVhtVNLbYYUmf1aEi6p3gSWF00jsM,285
258
261
  letta_client/types/blocks/__init__.py,sha256=hiSa_DsUrxaUdZf6f03IP9pqSbKVcadjiYcctRlUIU0,189
259
262
  letta_client/types/blocks/agent_list_params.py,sha256=LEpVKnFur-EAvFYdIiAmv30AxyxFuPzgHiqlPuleCFs,1675
260
263
  letta_client/types/folders/__init__.py,sha256=FrCq1pjDJwHup7YQJ5hp3YMff5sCRVP_kpzRo-V32HY,537
261
264
  letta_client/types/folders/agent_list_params.py,sha256=oUexDxrOm9Zec1zoU2acoqLaNMcUuXUdD_qzrc_D1v8,861
262
- letta_client/types/folders/agent_list_response.py,sha256=oiXlhowiDKrL3wbjuwV-d2ohNDn8JkvVlcPzGGEcLMU,196
265
+ letta_client/types/folders/agent_list_response.py,sha256=yvPSQSxwYbR_i9sV1YgGCiLMXREjmiAxkZvhRWkEbx4,226
263
266
  letta_client/types/folders/file_list_params.py,sha256=eXpJfwqdeIzVgqdBittXz8KFfO1jbqfGptrbgX9-4fc,925
264
- letta_client/types/folders/file_list_response.py,sha256=vwIjQJzdE9QIhQnAi0ceCotklvfVWcKskt6pkUsbilA,1851
267
+ letta_client/types/folders/file_list_response.py,sha256=Q2W7jYp48nMgouaea1ej2OZyDhfLmomJOdva9QriXck,1955
265
268
  letta_client/types/folders/file_upload_params.py,sha256=QTwtUEVP3lnvb3cz0KSUV9ZZMq3h-a-sO-HBJhtMVk0,563
266
269
  letta_client/types/folders/file_upload_response.py,sha256=e8r6wCrJYH-8uEYlB3vrX88DT1oF2F2vMdSBl6Rs6ww,1855
267
270
  letta_client/types/groups/__init__.py,sha256=ZMgighSb07QQvQvtq4sI4E00Exy_9ss4ICpIwK3kHDc,507
@@ -270,10 +273,9 @@ letta_client/types/groups/message_modify_params.py,sha256=42rqznXd5086v0ovL8DQfN
270
273
  letta_client/types/groups/message_modify_response.py,sha256=c8PQSfZUG7-Uum00CKWzsYTKawNGVoBktwC262eQUYg,1120
271
274
  letta_client/types/groups/message_send_params.py,sha256=_wjiak-S3PyUWcG4zX8jhcXmAee8xnzPVegd1K9yO6o,1714
272
275
  letta_client/types/groups/message_stream_params.py,sha256=Z9UeNykGd-542rtXIpk6w--SXbPmemu9Os1L6hiikQA,2087
273
- letta_client/types/identities/__init__.py,sha256=oIM33NS0sM6RIWdlvlvWh14v90n6N9OsrALU9FDQYEU,408
276
+ letta_client/types/identities/__init__.py,sha256=SQiVtprSocQYiddZcYSxaWRwRakw6nHqXQEhLX06rvU,336
274
277
  letta_client/types/identities/agent_list_params.py,sha256=RyGM8SzPHzBTwuIAWIhyyk--gvFppZYueCSn6gSzp2E,1248
275
278
  letta_client/types/identities/block_list_params.py,sha256=Z8EahHM0Q4qrEjxiLdmwOJT4Zjs8n9eMmNlof1obNUE,861
276
- letta_client/types/identities/block_list_response.py,sha256=7zdduZIf38XnicCK2WIV-D_QlQsiQc8BB3O3Mm34m0Y,1905
277
279
  letta_client/types/identities/property_upsert_params.py,sha256=BUnzZp4_FhfEgbWZYX0r-SwRSPKvpvFGaX-NYexQs00,404
278
280
  letta_client/types/models/__init__.py,sha256=ldgePtY0WELsx-lMqSQk1640HoGRcSqS0E7pMa38D_g,207
279
281
  letta_client/types/models/embedding_list_response.py,sha256=qYfIdlT2K9HfQM4HT8q5aRyLTjHxhZ5OMSqv0_2Yy3E,294
@@ -289,7 +291,7 @@ letta_client/types/steps/message_list_response.py,sha256=KOOB_tmBTiMjXRPtuZocvn_
289
291
  letta_client/types/steps/metric_retrieve_response.py,sha256=2rqlYkeGpwu4JYBPg9PszUKbT63x4AEDfo8wAJSdoew,1385
290
292
  letta_client/types/templates/__init__.py,sha256=eRs8IaeLPk-OtK1SeqFlKxHQ1_thE0sgK2BZ2ioSyUw,195
291
293
  letta_client/types/templates/agent_create_params.py,sha256=kvmC7ldFkNdx7kf6r_CK3O88BATWZjKW3kdzc475rFk,1406
292
- letta_client-1.0.0a10.dist-info/METADATA,sha256=ApURrxJVeaJ3jUHvdMtUAlxiSplRsRS7ibzwuKDJGjw,15982
293
- letta_client-1.0.0a10.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
294
- letta_client-1.0.0a10.dist-info/licenses/LICENSE,sha256=BzGFjaxYQ82_SHPlYaZdGvoP71_alR_yRWyWASLnPe0,11335
295
- letta_client-1.0.0a10.dist-info/RECORD,,
294
+ letta_client-1.0.0a11.dist-info/METADATA,sha256=d7AoP4RbYjMQhrg8Lo61KkB-__8vXjSVDcYFwvFaNdA,15982
295
+ letta_client-1.0.0a11.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
296
+ letta_client-1.0.0a11.dist-info/licenses/LICENSE,sha256=BzGFjaxYQ82_SHPlYaZdGvoP71_alR_yRWyWASLnPe0,11335
297
+ letta_client-1.0.0a11.dist-info/RECORD,,
@@ -1,63 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Dict, Optional
4
-
5
- from ..._models import BaseModel
6
-
7
- __all__ = ["BlockListResponse"]
8
-
9
-
10
- class BlockListResponse(BaseModel):
11
- value: str
12
- """Value of the block."""
13
-
14
- id: Optional[str] = None
15
- """The human-friendly ID of the Block"""
16
-
17
- base_template_id: Optional[str] = None
18
- """(Deprecated) The base template id of the block."""
19
-
20
- created_by_id: Optional[str] = None
21
- """The id of the user that made this Block."""
22
-
23
- deployment_id: Optional[str] = None
24
- """(Deprecated) The id of the deployment."""
25
-
26
- description: Optional[str] = None
27
- """Description of the block."""
28
-
29
- entity_id: Optional[str] = None
30
- """(Deprecated) The id of the entity within the template."""
31
-
32
- hidden: Optional[bool] = None
33
- """(Deprecated) If set to True, the block will be hidden."""
34
-
35
- is_template: Optional[bool] = None
36
- """Whether the block is a template (e.g. saved human/persona options)."""
37
-
38
- label: Optional[str] = None
39
- """Label of the block (e.g. 'human', 'persona') in the context window."""
40
-
41
- last_updated_by_id: Optional[str] = None
42
- """The id of the user that last updated this Block."""
43
-
44
- limit: Optional[int] = None
45
- """Character limit of the block."""
46
-
47
- metadata: Optional[Dict[str, object]] = None
48
- """Metadata of the block."""
49
-
50
- preserve_on_migration: Optional[bool] = None
51
- """(Deprecated) Preserve the block on template migration."""
52
-
53
- project_id: Optional[str] = None
54
- """The associated project id."""
55
-
56
- read_only: Optional[bool] = None
57
- """(Deprecated) Whether the agent has read-only access to the block."""
58
-
59
- template_id: Optional[str] = None
60
- """(Deprecated) The id of the template."""
61
-
62
- template_name: Optional[str] = None
63
- """(Deprecated) The name of the block template (if it is a template)."""
@@ -1,63 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Dict, Optional
4
-
5
- from ..._models import BaseModel
6
-
7
- __all__ = ["BlockModifyResponse"]
8
-
9
-
10
- class BlockModifyResponse(BaseModel):
11
- value: str
12
- """Value of the block."""
13
-
14
- id: Optional[str] = None
15
- """The human-friendly ID of the Block"""
16
-
17
- base_template_id: Optional[str] = None
18
- """(Deprecated) The base template id of the block."""
19
-
20
- created_by_id: Optional[str] = None
21
- """The id of the user that made this Block."""
22
-
23
- deployment_id: Optional[str] = None
24
- """(Deprecated) The id of the deployment."""
25
-
26
- description: Optional[str] = None
27
- """Description of the block."""
28
-
29
- entity_id: Optional[str] = None
30
- """(Deprecated) The id of the entity within the template."""
31
-
32
- hidden: Optional[bool] = None
33
- """(Deprecated) If set to True, the block will be hidden."""
34
-
35
- is_template: Optional[bool] = None
36
- """Whether the block is a template (e.g. saved human/persona options)."""
37
-
38
- label: Optional[str] = None
39
- """Label of the block (e.g. 'human', 'persona') in the context window."""
40
-
41
- last_updated_by_id: Optional[str] = None
42
- """The id of the user that last updated this Block."""
43
-
44
- limit: Optional[int] = None
45
- """Character limit of the block."""
46
-
47
- metadata: Optional[Dict[str, object]] = None
48
- """Metadata of the block."""
49
-
50
- preserve_on_migration: Optional[bool] = None
51
- """(Deprecated) Preserve the block on template migration."""
52
-
53
- project_id: Optional[str] = None
54
- """The associated project id."""
55
-
56
- read_only: Optional[bool] = None
57
- """(Deprecated) Whether the agent has read-only access to the block."""
58
-
59
- template_id: Optional[str] = None
60
- """(Deprecated) The id of the template."""
61
-
62
- template_name: Optional[str] = None
63
- """(Deprecated) The name of the block template (if it is a template)."""
@@ -1,63 +0,0 @@
1
- # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
-
3
- from typing import Dict, Optional
4
-
5
- from ..._models import BaseModel
6
-
7
- __all__ = ["BlockRetrieveResponse"]
8
-
9
-
10
- class BlockRetrieveResponse(BaseModel):
11
- value: str
12
- """Value of the block."""
13
-
14
- id: Optional[str] = None
15
- """The human-friendly ID of the Block"""
16
-
17
- base_template_id: Optional[str] = None
18
- """(Deprecated) The base template id of the block."""
19
-
20
- created_by_id: Optional[str] = None
21
- """The id of the user that made this Block."""
22
-
23
- deployment_id: Optional[str] = None
24
- """(Deprecated) The id of the deployment."""
25
-
26
- description: Optional[str] = None
27
- """Description of the block."""
28
-
29
- entity_id: Optional[str] = None
30
- """(Deprecated) The id of the entity within the template."""
31
-
32
- hidden: Optional[bool] = None
33
- """(Deprecated) If set to True, the block will be hidden."""
34
-
35
- is_template: Optional[bool] = None
36
- """Whether the block is a template (e.g. saved human/persona options)."""
37
-
38
- label: Optional[str] = None
39
- """Label of the block (e.g. 'human', 'persona') in the context window."""
40
-
41
- last_updated_by_id: Optional[str] = None
42
- """The id of the user that last updated this Block."""
43
-
44
- limit: Optional[int] = None
45
- """Character limit of the block."""
46
-
47
- metadata: Optional[Dict[str, object]] = None
48
- """Metadata of the block."""
49
-
50
- preserve_on_migration: Optional[bool] = None
51
- """(Deprecated) Preserve the block on template migration."""
52
-
53
- project_id: Optional[str] = None
54
- """The associated project id."""
55
-
56
- read_only: Optional[bool] = None
57
- """(Deprecated) Whether the agent has read-only access to the block."""
58
-
59
- template_id: Optional[str] = None
60
- """(Deprecated) The id of the template."""
61
-
62
- template_name: Optional[str] = None
63
- """(Deprecated) The name of the block template (if it is a template)."""