letta-client 0.1.122__py3-none-any.whl → 0.1.124__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 (34) hide show
  1. letta_client/__init__.py +18 -22
  2. letta_client/agents/client.py +4 -88
  3. letta_client/base_client.py +4 -12
  4. letta_client/batches/client.py +50 -8
  5. letta_client/client_side_access_tokens/__init__.py +12 -12
  6. letta_client/client_side_access_tokens/client.py +28 -32
  7. letta_client/client_side_access_tokens/types/__init__.py +15 -21
  8. letta_client/client_side_access_tokens/types/{client_side_access_tokens_create_client_side_access_token_request_policy_item.py → client_side_access_tokens_create_request_policy_item.py} +4 -4
  9. letta_client/client_side_access_tokens/types/{client_side_access_tokens_create_client_side_access_token_request_policy_item_access_item.py → client_side_access_tokens_create_request_policy_item_access_item.py} +1 -1
  10. letta_client/client_side_access_tokens/types/{client_side_access_tokens_create_client_side_access_token_response.py → client_side_access_tokens_create_response.py} +3 -5
  11. letta_client/client_side_access_tokens/types/{client_side_access_tokens_create_client_side_access_token_response_policy.py → client_side_access_tokens_create_response_policy.py} +4 -4
  12. letta_client/client_side_access_tokens/types/{client_side_access_tokens_create_client_side_access_token_response_policy_data_item.py → client_side_access_tokens_create_response_policy_data_item.py} +4 -4
  13. letta_client/client_side_access_tokens/types/{client_side_access_tokens_create_client_side_access_token_response_policy_data_item_access_item.py → client_side_access_tokens_create_response_policy_data_item_access_item.py} +1 -1
  14. letta_client/core/client_wrapper.py +1 -1
  15. letta_client/projects/__init__.py +2 -2
  16. letta_client/projects/client.py +13 -13
  17. letta_client/projects/types/__init__.py +3 -3
  18. letta_client/projects/types/{projects_list_projects_response.py → projects_list_response.py} +3 -3
  19. letta_client/projects/types/{projects_list_projects_response_projects_item.py → projects_list_response_projects_item.py} +1 -1
  20. letta_client/providers/client.py +20 -196
  21. letta_client/runs/client.py +4 -78
  22. letta_client/tags/client.py +85 -8
  23. letta_client/templates/__init__.py +2 -7
  24. letta_client/templates/client.py +13 -13
  25. letta_client/templates/types/__init__.py +3 -3
  26. letta_client/templates/types/{templates_list_templates_response.py → templates_list_response.py} +3 -3
  27. letta_client/templates/types/{templates_list_templates_response_templates_item.py → templates_list_response_templates_item.py} +1 -1
  28. {letta_client-0.1.122.dist-info → letta_client-0.1.124.dist-info}/METADATA +1 -1
  29. {letta_client-0.1.122.dist-info → letta_client-0.1.124.dist-info}/RECORD +30 -34
  30. letta_client/messages/__init__.py +0 -2
  31. letta_client/messages/client.py +0 -146
  32. letta_client/tag/__init__.py +0 -2
  33. letta_client/tag/client.py +0 -169
  34. {letta_client-0.1.122.dist-info → letta_client-0.1.124.dist-info}/WHEEL +0 -0
@@ -26,7 +26,7 @@ class RunsClient:
26
26
  self.usage = UsageClient(client_wrapper=self._client_wrapper)
27
27
  self.steps = StepsClient(client_wrapper=self._client_wrapper)
28
28
 
29
- def list_runs(
29
+ def list(
30
30
  self,
31
31
  *,
32
32
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
@@ -55,7 +55,7 @@ class RunsClient:
55
55
  client = Letta(
56
56
  token="YOUR_TOKEN",
57
57
  )
58
- client.runs.list_runs()
58
+ client.runs.list()
59
59
  """
60
60
  _response = self._client_wrapper.httpx_client.request(
61
61
  "v1/runs/",
@@ -264,39 +264,6 @@ class RunsClient:
264
264
  raise ApiError(status_code=_response.status_code, body=_response.text)
265
265
  raise ApiError(status_code=_response.status_code, body=_response_json)
266
266
 
267
- def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> None:
268
- """
269
- Parameters
270
- ----------
271
- request_options : typing.Optional[RequestOptions]
272
- Request-specific configuration.
273
-
274
- Returns
275
- -------
276
- None
277
-
278
- Examples
279
- --------
280
- from letta_client import Letta
281
-
282
- client = Letta(
283
- token="YOUR_TOKEN",
284
- )
285
- client.runs.list()
286
- """
287
- _response = self._client_wrapper.httpx_client.request(
288
- "v1/runs",
289
- method="GET",
290
- request_options=request_options,
291
- )
292
- try:
293
- if 200 <= _response.status_code < 300:
294
- return
295
- _response_json = _response.json()
296
- except JSONDecodeError:
297
- raise ApiError(status_code=_response.status_code, body=_response.text)
298
- raise ApiError(status_code=_response.status_code, body=_response_json)
299
-
300
267
 
301
268
  class AsyncRunsClient:
302
269
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
@@ -305,7 +272,7 @@ class AsyncRunsClient:
305
272
  self.usage = AsyncUsageClient(client_wrapper=self._client_wrapper)
306
273
  self.steps = AsyncStepsClient(client_wrapper=self._client_wrapper)
307
274
 
308
- async def list_runs(
275
+ async def list(
309
276
  self,
310
277
  *,
311
278
  agent_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
@@ -339,7 +306,7 @@ class AsyncRunsClient:
339
306
 
340
307
 
341
308
  async def main() -> None:
342
- await client.runs.list_runs()
309
+ await client.runs.list()
343
310
 
344
311
 
345
312
  asyncio.run(main())
@@ -574,44 +541,3 @@ class AsyncRunsClient:
574
541
  except JSONDecodeError:
575
542
  raise ApiError(status_code=_response.status_code, body=_response.text)
576
543
  raise ApiError(status_code=_response.status_code, body=_response_json)
577
-
578
- async def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> None:
579
- """
580
- Parameters
581
- ----------
582
- request_options : typing.Optional[RequestOptions]
583
- Request-specific configuration.
584
-
585
- Returns
586
- -------
587
- None
588
-
589
- Examples
590
- --------
591
- import asyncio
592
-
593
- from letta_client import AsyncLetta
594
-
595
- client = AsyncLetta(
596
- token="YOUR_TOKEN",
597
- )
598
-
599
-
600
- async def main() -> None:
601
- await client.runs.list()
602
-
603
-
604
- asyncio.run(main())
605
- """
606
- _response = await self._client_wrapper.httpx_client.request(
607
- "v1/runs",
608
- method="GET",
609
- request_options=request_options,
610
- )
611
- try:
612
- if 200 <= _response.status_code < 300:
613
- return
614
- _response_json = _response.json()
615
- except JSONDecodeError:
616
- raise ApiError(status_code=_response.status_code, body=_response.text)
617
- raise ApiError(status_code=_response.status_code, body=_response_json)
@@ -3,6 +3,9 @@
3
3
  from ..core.client_wrapper import SyncClientWrapper
4
4
  import typing
5
5
  from ..core.request_options import RequestOptions
6
+ from ..core.unchecked_base_model import construct_type
7
+ from ..errors.unprocessable_entity_error import UnprocessableEntityError
8
+ from ..types.http_validation_error import HttpValidationError
6
9
  from json.decoder import JSONDecodeError
7
10
  from ..core.api_error import ApiError
8
11
  from ..core.client_wrapper import AsyncClientWrapper
@@ -12,16 +15,32 @@ class TagsClient:
12
15
  def __init__(self, *, client_wrapper: SyncClientWrapper):
13
16
  self._client_wrapper = client_wrapper
14
17
 
15
- def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> None:
18
+ def list(
19
+ self,
20
+ *,
21
+ after: typing.Optional[str] = None,
22
+ limit: typing.Optional[int] = None,
23
+ query_text: typing.Optional[str] = None,
24
+ request_options: typing.Optional[RequestOptions] = None,
25
+ ) -> typing.List[str]:
16
26
  """
27
+ Get a list of all tags in the database
28
+
17
29
  Parameters
18
30
  ----------
31
+ after : typing.Optional[str]
32
+
33
+ limit : typing.Optional[int]
34
+
35
+ query_text : typing.Optional[str]
36
+
19
37
  request_options : typing.Optional[RequestOptions]
20
38
  Request-specific configuration.
21
39
 
22
40
  Returns
23
41
  -------
24
- None
42
+ typing.List[str]
43
+ Successful Response
25
44
 
26
45
  Examples
27
46
  --------
@@ -33,13 +52,34 @@ class TagsClient:
33
52
  client.tags.list()
34
53
  """
35
54
  _response = self._client_wrapper.httpx_client.request(
36
- "v1/tags",
55
+ "v1/tags/",
37
56
  method="GET",
57
+ params={
58
+ "after": after,
59
+ "limit": limit,
60
+ "query_text": query_text,
61
+ },
38
62
  request_options=request_options,
39
63
  )
40
64
  try:
41
65
  if 200 <= _response.status_code < 300:
42
- return
66
+ return typing.cast(
67
+ typing.List[str],
68
+ construct_type(
69
+ type_=typing.List[str], # type: ignore
70
+ object_=_response.json(),
71
+ ),
72
+ )
73
+ if _response.status_code == 422:
74
+ raise UnprocessableEntityError(
75
+ typing.cast(
76
+ HttpValidationError,
77
+ construct_type(
78
+ type_=HttpValidationError, # type: ignore
79
+ object_=_response.json(),
80
+ ),
81
+ )
82
+ )
43
83
  _response_json = _response.json()
44
84
  except JSONDecodeError:
45
85
  raise ApiError(status_code=_response.status_code, body=_response.text)
@@ -50,16 +90,32 @@ class AsyncTagsClient:
50
90
  def __init__(self, *, client_wrapper: AsyncClientWrapper):
51
91
  self._client_wrapper = client_wrapper
52
92
 
53
- async def list(self, *, request_options: typing.Optional[RequestOptions] = None) -> None:
93
+ async def list(
94
+ self,
95
+ *,
96
+ after: typing.Optional[str] = None,
97
+ limit: typing.Optional[int] = None,
98
+ query_text: typing.Optional[str] = None,
99
+ request_options: typing.Optional[RequestOptions] = None,
100
+ ) -> typing.List[str]:
54
101
  """
102
+ Get a list of all tags in the database
103
+
55
104
  Parameters
56
105
  ----------
106
+ after : typing.Optional[str]
107
+
108
+ limit : typing.Optional[int]
109
+
110
+ query_text : typing.Optional[str]
111
+
57
112
  request_options : typing.Optional[RequestOptions]
58
113
  Request-specific configuration.
59
114
 
60
115
  Returns
61
116
  -------
62
- None
117
+ typing.List[str]
118
+ Successful Response
63
119
 
64
120
  Examples
65
121
  --------
@@ -79,13 +135,34 @@ class AsyncTagsClient:
79
135
  asyncio.run(main())
80
136
  """
81
137
  _response = await self._client_wrapper.httpx_client.request(
82
- "v1/tags",
138
+ "v1/tags/",
83
139
  method="GET",
140
+ params={
141
+ "after": after,
142
+ "limit": limit,
143
+ "query_text": query_text,
144
+ },
84
145
  request_options=request_options,
85
146
  )
86
147
  try:
87
148
  if 200 <= _response.status_code < 300:
88
- return
149
+ return typing.cast(
150
+ typing.List[str],
151
+ construct_type(
152
+ type_=typing.List[str], # type: ignore
153
+ object_=_response.json(),
154
+ ),
155
+ )
156
+ if _response.status_code == 422:
157
+ raise UnprocessableEntityError(
158
+ typing.cast(
159
+ HttpValidationError,
160
+ construct_type(
161
+ type_=HttpValidationError, # type: ignore
162
+ object_=_response.json(),
163
+ ),
164
+ )
165
+ )
89
166
  _response_json = _response.json()
90
167
  except JSONDecodeError:
91
168
  raise ApiError(status_code=_response.status_code, body=_response.text)
@@ -1,12 +1,7 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from .types import TemplatesListTemplatesResponse, TemplatesListTemplatesResponseTemplatesItem
3
+ from .types import TemplatesListResponse, TemplatesListResponseTemplatesItem
4
4
  from . import agents
5
5
  from .agents import AgentsCreateResponse
6
6
 
7
- __all__ = [
8
- "AgentsCreateResponse",
9
- "TemplatesListTemplatesResponse",
10
- "TemplatesListTemplatesResponseTemplatesItem",
11
- "agents",
12
- ]
7
+ __all__ = ["AgentsCreateResponse", "TemplatesListResponse", "TemplatesListResponseTemplatesItem", "agents"]
@@ -4,7 +4,7 @@ from ..core.client_wrapper import SyncClientWrapper
4
4
  from .agents.client import AgentsClient
5
5
  import typing
6
6
  from ..core.request_options import RequestOptions
7
- from .types.templates_list_templates_response import TemplatesListTemplatesResponse
7
+ from .types.templates_list_response import TemplatesListResponse
8
8
  from ..core.unchecked_base_model import construct_type
9
9
  from json.decoder import JSONDecodeError
10
10
  from ..core.api_error import ApiError
@@ -17,7 +17,7 @@ class TemplatesClient:
17
17
  self._client_wrapper = client_wrapper
18
18
  self.agents = AgentsClient(client_wrapper=self._client_wrapper)
19
19
 
20
- def listtemplates(
20
+ def list(
21
21
  self,
22
22
  *,
23
23
  offset: typing.Optional[str] = None,
@@ -25,7 +25,7 @@ class TemplatesClient:
25
25
  name: typing.Optional[str] = None,
26
26
  project_id: typing.Optional[str] = None,
27
27
  request_options: typing.Optional[RequestOptions] = None,
28
- ) -> TemplatesListTemplatesResponse:
28
+ ) -> TemplatesListResponse:
29
29
  """
30
30
  List all templates
31
31
 
@@ -44,7 +44,7 @@ class TemplatesClient:
44
44
 
45
45
  Returns
46
46
  -------
47
- TemplatesListTemplatesResponse
47
+ TemplatesListResponse
48
48
  200
49
49
 
50
50
  Examples
@@ -54,7 +54,7 @@ class TemplatesClient:
54
54
  client = Letta(
55
55
  token="YOUR_TOKEN",
56
56
  )
57
- client.templates.listtemplates()
57
+ client.templates.list()
58
58
  """
59
59
  _response = self._client_wrapper.httpx_client.request(
60
60
  "v1/templates",
@@ -70,9 +70,9 @@ class TemplatesClient:
70
70
  try:
71
71
  if 200 <= _response.status_code < 300:
72
72
  return typing.cast(
73
- TemplatesListTemplatesResponse,
73
+ TemplatesListResponse,
74
74
  construct_type(
75
- type_=TemplatesListTemplatesResponse, # type: ignore
75
+ type_=TemplatesListResponse, # type: ignore
76
76
  object_=_response.json(),
77
77
  ),
78
78
  )
@@ -87,7 +87,7 @@ class AsyncTemplatesClient:
87
87
  self._client_wrapper = client_wrapper
88
88
  self.agents = AsyncAgentsClient(client_wrapper=self._client_wrapper)
89
89
 
90
- async def listtemplates(
90
+ async def list(
91
91
  self,
92
92
  *,
93
93
  offset: typing.Optional[str] = None,
@@ -95,7 +95,7 @@ class AsyncTemplatesClient:
95
95
  name: typing.Optional[str] = None,
96
96
  project_id: typing.Optional[str] = None,
97
97
  request_options: typing.Optional[RequestOptions] = None,
98
- ) -> TemplatesListTemplatesResponse:
98
+ ) -> TemplatesListResponse:
99
99
  """
100
100
  List all templates
101
101
 
@@ -114,7 +114,7 @@ class AsyncTemplatesClient:
114
114
 
115
115
  Returns
116
116
  -------
117
- TemplatesListTemplatesResponse
117
+ TemplatesListResponse
118
118
  200
119
119
 
120
120
  Examples
@@ -129,7 +129,7 @@ class AsyncTemplatesClient:
129
129
 
130
130
 
131
131
  async def main() -> None:
132
- await client.templates.listtemplates()
132
+ await client.templates.list()
133
133
 
134
134
 
135
135
  asyncio.run(main())
@@ -148,9 +148,9 @@ class AsyncTemplatesClient:
148
148
  try:
149
149
  if 200 <= _response.status_code < 300:
150
150
  return typing.cast(
151
- TemplatesListTemplatesResponse,
151
+ TemplatesListResponse,
152
152
  construct_type(
153
- type_=TemplatesListTemplatesResponse, # type: ignore
153
+ type_=TemplatesListResponse, # type: ignore
154
154
  object_=_response.json(),
155
155
  ),
156
156
  )
@@ -1,6 +1,6 @@
1
1
  # This file was auto-generated by Fern from our API Definition.
2
2
 
3
- from .templates_list_templates_response import TemplatesListTemplatesResponse
4
- from .templates_list_templates_response_templates_item import TemplatesListTemplatesResponseTemplatesItem
3
+ from .templates_list_response import TemplatesListResponse
4
+ from .templates_list_response_templates_item import TemplatesListResponseTemplatesItem
5
5
 
6
- __all__ = ["TemplatesListTemplatesResponse", "TemplatesListTemplatesResponseTemplatesItem"]
6
+ __all__ = ["TemplatesListResponse", "TemplatesListResponseTemplatesItem"]
@@ -2,15 +2,15 @@
2
2
 
3
3
  from ...core.unchecked_base_model import UncheckedBaseModel
4
4
  import typing
5
- from .templates_list_templates_response_templates_item import TemplatesListTemplatesResponseTemplatesItem
5
+ from .templates_list_response_templates_item import TemplatesListResponseTemplatesItem
6
6
  import typing_extensions
7
7
  from ...core.serialization import FieldMetadata
8
8
  from ...core.pydantic_utilities import IS_PYDANTIC_V2
9
9
  import pydantic
10
10
 
11
11
 
12
- class TemplatesListTemplatesResponse(UncheckedBaseModel):
13
- templates: typing.List[TemplatesListTemplatesResponseTemplatesItem]
12
+ class TemplatesListResponse(UncheckedBaseModel):
13
+ templates: typing.List[TemplatesListResponseTemplatesItem]
14
14
  has_next_page: typing_extensions.Annotated[bool, FieldMetadata(alias="hasNextPage")]
15
15
 
16
16
  if IS_PYDANTIC_V2:
@@ -6,7 +6,7 @@ import typing
6
6
  import pydantic
7
7
 
8
8
 
9
- class TemplatesListTemplatesResponseTemplatesItem(UncheckedBaseModel):
9
+ class TemplatesListResponseTemplatesItem(UncheckedBaseModel):
10
10
  name: str
11
11
  id: str
12
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: letta-client
3
- Version: 0.1.122
3
+ Version: 0.1.124
4
4
  Summary:
5
5
  Requires-Python: >=3.8,<4.0
6
6
  Classifier: Intended Audience :: Developers
@@ -1,8 +1,8 @@
1
- letta_client/__init__.py,sha256=lSWTgnPUyrgUQdAzpUkgAjDQZZHxDZxacw0j0o_xu8I,16173
1
+ letta_client/__init__.py,sha256=0nkhsixcQgMbB8vLVrSCltVYO5w6h8-kHDfegfVKOfE,15803
2
2
  letta_client/agents/__init__.py,sha256=jmwsc7V6N1kAuoZqwxfUg4k1i8XcvPm-rTjOaySurDo,1474
3
3
  letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
4
4
  letta_client/agents/blocks/client.py,sha256=u5zvutxoH_DqfSLWhRtNSRBC9_ezQDx682cxkxDz3JA,23822
5
- letta_client/agents/client.py,sha256=ZHGF4-WOOMYVx3qZWUMRwwwApHxybpN9-uOYutlheh0,77017
5
+ letta_client/agents/client.py,sha256=7k8DsAg9vdPXgnYLInoMyDPP1M6iyDz6vtfCngitxYM,74629
6
6
  letta_client/agents/context/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
7
7
  letta_client/agents/context/client.py,sha256=GKKvoG4N_K8Biz9yDjeIHpFG0C8Cwc7tHmEX3pTL_9U,4815
8
8
  letta_client/agents/core_memory/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -40,26 +40,26 @@ letta_client/agents/types/agents_search_request_search_item_zero.py,sha256=tGjwn
40
40
  letta_client/agents/types/agents_search_response.py,sha256=AQJVKps-bjCx2ujqESzW1Iy9ZYFS17hH_UFIeBeK4S8,815
41
41
  letta_client/agents/types/create_agent_request_tool_rules_item.py,sha256=L3FNsFTG9kVmuPbQhbCKNg3H2E5bB2Rgp92gWmGd-LM,689
42
42
  letta_client/agents/types/update_agent_tool_rules_item.py,sha256=k9MmcVPsK-EGl8XlT3JQwdlBNLgpGw528jmi8fCFS7g,682
43
- letta_client/base_client.py,sha256=1g63Ef1TiBD-1XspUhf1TRYiLC5_AffAAjWHTgB4718,10229
43
+ letta_client/base_client.py,sha256=yhzh-KitRM5idpGSn16_rJ8d9RRviTnWdaZ_14ooHo4,9769
44
44
  letta_client/batches/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
45
- letta_client/batches/client.py,sha256=O6hZ7IZkCIJHxtm0oa7mYHDTV9iVQlsVtXzYm7ZkThQ,17184
45
+ letta_client/batches/client.py,sha256=AyfQpG9d856XS9BYHjxCIwu08ye03KQjuwA-jd-9kWQ,18774
46
46
  letta_client/blocks/__init__.py,sha256=c6SGOs9_YGdydYAzhe5TUiaXq52rpWT1mNMcke8qGTQ,108
47
47
  letta_client/blocks/agents/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
48
48
  letta_client/blocks/agents/client.py,sha256=-QywGs_ZfE5PbgzLYf2zzn9zAtpZmzGtHHZ5sXIYw0Y,4904
49
49
  letta_client/blocks/client.py,sha256=kES_YNaQqA1s0VxtGCtm22jIpW5ILkqtwh8f0Qfl4ps,26189
50
50
  letta_client/client.py,sha256=k2mZqqEWciVmEQHgipjCK4kQILk74hpSqzcdNwdql9A,21212
51
- letta_client/client_side_access_tokens/__init__.py,sha256=ivKMiZVIc5IjBZvinNK_aVy1RpvD9lWstT1XJzXc_ak,1015
52
- letta_client/client_side_access_tokens/client.py,sha256=69zUzYSphr_r8HpnPpidXotKIDdFCS9YSK8haU8BiVM,13168
53
- letta_client/client_side_access_tokens/types/__init__.py,sha256=Cjp8P6wW6EJKf4yiv1U1FzDiVI21dOv1IG_fn4Xzazc,1583
54
- letta_client/client_side_access_tokens/types/client_side_access_tokens_create_client_side_access_token_request_policy_item.py,sha256=blQBjrrqrV6eqCqi2iP4KHkg_83bqkcs3F4kKvjH_gc,946
55
- letta_client/client_side_access_tokens/types/client_side_access_tokens_create_client_side_access_token_request_policy_item_access_item.py,sha256=gFROGOsd-Gkj2JgVLBr_qgowdjywr5W__Z0Prj1osfE,270
56
- letta_client/client_side_access_tokens/types/client_side_access_tokens_create_client_side_access_token_response.py,sha256=WK7Ekd6i-NiBvmD4dyvSiBCHtadXAOV3gl_-W8-e_0Q,1015
57
- letta_client/client_side_access_tokens/types/client_side_access_tokens_create_client_side_access_token_response_policy.py,sha256=JusvFIWRKx9rOAw-qB7XrG7zQ4AkpNm_Qwm5hF-HudA,908
58
- letta_client/client_side_access_tokens/types/client_side_access_tokens_create_client_side_access_token_response_policy_data_item.py,sha256=ou-3g9-saP3FftVHkWH9I3cGTk8ez4p8aZ_mChEgfH0,967
59
- letta_client/client_side_access_tokens/types/client_side_access_tokens_create_client_side_access_token_response_policy_data_item_access_item.py,sha256=vefuUVB3pLCbCNBJACXMsEKZuwhMAGvLwSU3TU3Q4l4,275
51
+ letta_client/client_side_access_tokens/__init__.py,sha256=z_wHT4UTBK7RzDIfLpdLMtBJBuuDosqgbzdmx-QME_o,763
52
+ letta_client/client_side_access_tokens/client.py,sha256=Qt1nmL-il4QzqWZHxY6XsSvCY8ps9FWXsWtUTPclVCc,12272
53
+ letta_client/client_side_access_tokens/types/__init__.py,sha256=7AAjp5mP8-5Eo_1G7ELgkit9TS5ksAd55GfvdqOzU9g,1154
54
+ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_request_policy_item.py,sha256=smxAMDV1BFWc7uhbozbDND1JZyeNlXtTjKruvV7YIn0,858
55
+ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_request_policy_item_access_item.py,sha256=ejnkPwWqilHZzy96dzydpYrQffibuXmf3twLMDlFF-c,249
56
+ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response.py,sha256=6hac9F2uq4b3u9vHFaS9QTbDuLJGB_hAj_I4Sqjk3_Y,918
57
+ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy.py,sha256=5nS86FKcdZ3oPxTf6InJ83nD-kqtofNZjQZljWDW0j8,820
58
+ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item.py,sha256=K1RROIkjY85q-Q-FyuVvnEtIG9qzQF4WZTI_07YcNgM,879
59
+ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item_access_item.py,sha256=R-H25IpNp9feSrW8Yj3h9O3UTMVvFniQJElogKxLuoE,254
60
60
  letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
61
61
  letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
62
- letta_client/core/client_wrapper.py,sha256=Fp8hKrlyBgeewjkmRqhGgsz43aw6L9RkoScwpAMDl0g,1998
62
+ letta_client/core/client_wrapper.py,sha256=pKl9qx6il-hWWRt2X4KgTqYGBQceED8H2YD_SV9n6Eo,1998
63
63
  letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
64
64
  letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
65
65
  letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
@@ -98,20 +98,18 @@ letta_client/identities/properties/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV
98
98
  letta_client/identities/properties/client.py,sha256=Nv7jOi5O8TmeZ1g0-TqnqiJ0hLcHMe2ZIfqAkEDB2Bk,6053
99
99
  letta_client/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
100
100
  letta_client/jobs/client.py,sha256=z1Zq6dGs2xbf3EAFuD3-m-qbpbUeqpCBYqtIFKkGoMk,15622
101
- letta_client/messages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
102
- letta_client/messages/client.py,sha256=WCY_8drM56WMMgtUysaryBvHkyavt1G3BG7zxYoeMAc,4774
103
101
  letta_client/models/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
104
102
  letta_client/models/client.py,sha256=aY9ipKT5Fj4b8dvjvmr_5htaNSJxGA84knTl6e1WZCs,3373
105
- letta_client/projects/__init__.py,sha256=CccxELBuPLqC6SfAJMNP3I4tEzYBNNA9CUrhuPk-TVI,243
106
- letta_client/projects/client.py,sha256=CoO8aEX32z2Oqg-Wd_f6xwkAm6Wt4SzyJU494jnQQjk,4342
107
- letta_client/projects/types/__init__.py,sha256=SXy0WSkK5BUuFYis1LNUUWGuY9B8n6c6e_3OtrrSfWo,327
108
- letta_client/projects/types/projects_list_projects_response.py,sha256=NfKqXLGBdi1b5qX1EgEeGhw1w8a1rVUHaFJeMdLHctk,891
109
- letta_client/projects/types/projects_list_projects_response_projects_item.py,sha256=-pAUwD9lMESWnRM0XlwWKHBk4Yc3Qjpm1CKCZR__hBk,613
103
+ letta_client/projects/__init__.py,sha256=Mg9xvTJ4N4xDkj521w3jvmCgrbW3CYx9LxG7kkdoyzs,211
104
+ letta_client/projects/client.py,sha256=VNJyt5QyAQoZwPDL4PQSVrwBK6jb0vOxleTBuMBJSC4,4229
105
+ letta_client/projects/types/__init__.py,sha256=1nE8QFsR2GukiQxkaRFQfBuk1u_yuO-emykjWq8pXRs,277
106
+ letta_client/projects/types/projects_list_response.py,sha256=LdWVSnP8fqrVTcRfkd73N4wIa5_VkxrAUS-GFftkqHo,858
107
+ letta_client/projects/types/projects_list_response_projects_item.py,sha256=7mFQdVQCNqvl2zBzVWzClENfF9N35T1Wpv3lgYbbAz0,605
110
108
  letta_client/providers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
111
- letta_client/providers/client.py,sha256=OOa-jIMvSR09nvS6j2ucjE71KzzzDBc0huKTG8bpTkU,22865
109
+ letta_client/providers/client.py,sha256=xMy-Riwjr63GiCqR552xJGx1QEFb1hCVVUaSw_Wcw-o,17921
112
110
  letta_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
111
  letta_client/runs/__init__.py,sha256=0Mn3wMqzm7ppXeiwu9zfY_KlyzBbWSM1wt_rsx0NmM0,144
114
- letta_client/runs/client.py,sha256=yaanUjtudqdN9tAwntgQm4Sx5FtKm2RBNhXsCff2_HY,19298
112
+ letta_client/runs/client.py,sha256=6A0i8-fWzRgK1U5P4jeKKav-cRSjaaN5ttMh66ihwe8,17234
115
113
  letta_client/runs/messages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
116
114
  letta_client/runs/messages/client.py,sha256=1qAtPmu2RM5_Hz8lf3X-yvDquOlCT47pEmc7aWFRaTo,9013
117
115
  letta_client/runs/steps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -126,19 +124,17 @@ letta_client/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1
126
124
  letta_client/sources/passages/client.py,sha256=n0QVtLC0W1X6_SjhiEGSl9oZexocnsLZYeYRAqV2BCk,4767
127
125
  letta_client/steps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
128
126
  letta_client/steps/client.py,sha256=ZMc2yPjqa0JgsPSMY5QHatPRm0mZRjxrsNQwm7p_xSU,13314
129
- letta_client/tag/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
130
- letta_client/tag/client.py,sha256=TBAotdb0e2_x2pANF4dOE1qmWY3GIgb7nOhvN7iZ3_4,5183
131
127
  letta_client/tags/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
132
- letta_client/tags/client.py,sha256=znLdVKV9hx39n6-W8w8jITHuzwDhqlfeWjP9x3Ex7S4,2619
133
- letta_client/templates/__init__.py,sha256=xYNBUqGJpxRbt5KzMzvruZKCREZXZl6O2_O3JYpvb1o,368
128
+ letta_client/tags/client.py,sha256=1xIPtMWJ6ssAhPEFgl5CyJHyvND9MHCLIbEzQWxntZ0,5167
129
+ letta_client/templates/__init__.py,sha256=6kqaRnkWVngMoV08wPrkA6urr_lCnE6FRIVq4jj4z1M,313
134
130
  letta_client/templates/agents/__init__.py,sha256=1tdurb6H9iIIc-Lq68A1xpuidIej7LU1Lz9zCSO4seM,141
135
131
  letta_client/templates/agents/client.py,sha256=Eyd3Hutky11j1BiSKsfpykq2oMZ2aGNUIYivZAdm9ic,7083
136
132
  letta_client/templates/agents/types/__init__.py,sha256=oYK-SXvccx0ZCfsjUdDUYAQ5jZi2UQBkV3nx_DIJJC8,158
137
133
  letta_client/templates/agents/types/agents_create_response.py,sha256=FHjCM6NlichekqQ73bTuGEoYe8xyUle0hcNFv6gocJU,636
138
- letta_client/templates/client.py,sha256=9dR6AEZ1jPdZvfl_HIY6ySyM9W8zrxhz-E6Gpps08ZU,4874
139
- letta_client/templates/types/__init__.py,sha256=YCIn994hqNpgnsgFlVpBEOXPlPdSI-vM1a7jvs3vK1E,342
140
- letta_client/templates/types/templates_list_templates_response.py,sha256=1aXGfSWPlGm-ZoT4XvRtXiy3zUSHARHAbcppNZT9KSA,903
141
- letta_client/templates/types/templates_list_templates_response_templates_item.py,sha256=73PdtnZYkCOk9zdU0nRONQldO_0CeZVUysd4F1U9to8,602
134
+ letta_client/templates/client.py,sha256=EpPdvDbpYf57iPBVpDt8PPGkS2rmf4qCkzFnMpotrHg,4747
135
+ letta_client/templates/types/__init__.py,sha256=dAr_dEh0BdwUxAcV1sJ9RM07Z8nCv4dCK6fmTltqQ6c,286
136
+ letta_client/templates/types/templates_list_response.py,sha256=HYloMVzk086c6fFGRYZz-Ozc_Yylozp2aPpweHS5uXI,866
137
+ letta_client/templates/types/templates_list_response_templates_item.py,sha256=yyJq8wEOb2XIg99uhRMKoy2qD2CbuvI_5FAspwYWnfI,593
142
138
  letta_client/tools/__init__.py,sha256=XsuAkxHDA-Z98gLNNW_fiEwFP3fP4XQipflrK2bHl8k,353
143
139
  letta_client/tools/client.py,sha256=ODoAv2bnK9UxpillZxEaDewTfsZAJORMwPHcOsq__gA,78360
144
140
  letta_client/tools/types/__init__.py,sha256=R11LYBi6lxkud_DRyaHFUHtlnbfnEI93-SEo7FL4tzs,478
@@ -371,6 +367,6 @@ letta_client/voice/__init__.py,sha256=7hX85553PiRMtIMM12a0DSoFzsglNiUziYR2ekS84Q
371
367
  letta_client/voice/client.py,sha256=STjswa5oOLoP59QwTJvQwi73kgn0UzKOaXc2CsTRI4k,6912
372
368
  letta_client/voice/types/__init__.py,sha256=FRc3iKRTONE4N8Lf1IqvnqWZ2kXdrFFvkL7PxVcR8Ew,212
373
369
  letta_client/voice/types/create_voice_chat_completions_request_body.py,sha256=ZLfKgNK1T6IAwLEvaBVFfy7jEAoPUXP28n-nfmHkklc,391
374
- letta_client-0.1.122.dist-info/METADATA,sha256=1vgtg0CKtzZXsGXw0CRN563I8UNAjHFjteta59Qpke0,5042
375
- letta_client-0.1.122.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
376
- letta_client-0.1.122.dist-info/RECORD,,
370
+ letta_client-0.1.124.dist-info/METADATA,sha256=Y5lHZyav2ndJNNti0ljf0vUBf7XQvRF7DQkaxdO7Vwk,5042
371
+ letta_client-0.1.124.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
372
+ letta_client-0.1.124.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-