letta-client 0.1.179__py3-none-any.whl → 0.1.181__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/client.py +2 -2
- letta_client/core/client_wrapper.py +1 -1
- letta_client/steps/client.py +10 -0
- {letta_client-0.1.179.dist-info → letta_client-0.1.181.dist-info}/METADATA +1 -1
- {letta_client-0.1.179.dist-info → letta_client-0.1.181.dist-info}/RECORD +6 -6
- {letta_client-0.1.179.dist-info → letta_client-0.1.181.dist-info}/WHEEL +0 -0
letta_client/agents/client.py
CHANGED
|
@@ -293,7 +293,7 @@ class AgentsClient:
|
|
|
293
293
|
The initial set of messages to put in the agent's in-context memory.
|
|
294
294
|
|
|
295
295
|
include_base_tools : typing.Optional[bool]
|
|
296
|
-
If true, attaches the Letta core tools (e.g.
|
|
296
|
+
If true, attaches the Letta core tools (e.g. core_memory related functions).
|
|
297
297
|
|
|
298
298
|
include_multi_agent_tools : typing.Optional[bool]
|
|
299
299
|
If true, attaches the Letta multi-agent tools (e.g. sending a message to another agent).
|
|
@@ -1398,7 +1398,7 @@ class AsyncAgentsClient:
|
|
|
1398
1398
|
The initial set of messages to put in the agent's in-context memory.
|
|
1399
1399
|
|
|
1400
1400
|
include_base_tools : typing.Optional[bool]
|
|
1401
|
-
If true, attaches the Letta core tools (e.g.
|
|
1401
|
+
If true, attaches the Letta core tools (e.g. core_memory related functions).
|
|
1402
1402
|
|
|
1403
1403
|
include_multi_agent_tools : typing.Optional[bool]
|
|
1404
1404
|
If true, attaches the Letta multi-agent tools (e.g. sending a message to another agent).
|
|
@@ -16,7 +16,7 @@ class BaseClientWrapper:
|
|
|
16
16
|
headers: typing.Dict[str, str] = {
|
|
17
17
|
"X-Fern-Language": "Python",
|
|
18
18
|
"X-Fern-SDK-Name": "letta-client",
|
|
19
|
-
"X-Fern-SDK-Version": "0.1.
|
|
19
|
+
"X-Fern-SDK-Version": "0.1.181",
|
|
20
20
|
}
|
|
21
21
|
if self.token is not None:
|
|
22
22
|
headers["Authorization"] = f"Bearer {self.token}"
|
letta_client/steps/client.py
CHANGED
|
@@ -35,6 +35,7 @@ class StepsClient:
|
|
|
35
35
|
agent_id: typing.Optional[str] = None,
|
|
36
36
|
trace_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
37
37
|
feedback: typing.Optional[StepsListRequestFeedback] = None,
|
|
38
|
+
has_feedback: typing.Optional[bool] = None,
|
|
38
39
|
tags: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
39
40
|
request_options: typing.Optional[RequestOptions] = None,
|
|
40
41
|
) -> typing.List[Step]:
|
|
@@ -74,6 +75,9 @@ class StepsClient:
|
|
|
74
75
|
feedback : typing.Optional[StepsListRequestFeedback]
|
|
75
76
|
Filter by feedback
|
|
76
77
|
|
|
78
|
+
has_feedback : typing.Optional[bool]
|
|
79
|
+
Filter by whether steps have feedback (true) or not (false)
|
|
80
|
+
|
|
77
81
|
tags : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
78
82
|
Filter by tags
|
|
79
83
|
|
|
@@ -108,6 +112,7 @@ class StepsClient:
|
|
|
108
112
|
"agent_id": agent_id,
|
|
109
113
|
"trace_ids": trace_ids,
|
|
110
114
|
"feedback": feedback,
|
|
115
|
+
"has_feedback": has_feedback,
|
|
111
116
|
"tags": tags,
|
|
112
117
|
},
|
|
113
118
|
request_options=request_options,
|
|
@@ -278,6 +283,7 @@ class AsyncStepsClient:
|
|
|
278
283
|
agent_id: typing.Optional[str] = None,
|
|
279
284
|
trace_ids: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
280
285
|
feedback: typing.Optional[StepsListRequestFeedback] = None,
|
|
286
|
+
has_feedback: typing.Optional[bool] = None,
|
|
281
287
|
tags: typing.Optional[typing.Union[str, typing.Sequence[str]]] = None,
|
|
282
288
|
request_options: typing.Optional[RequestOptions] = None,
|
|
283
289
|
) -> typing.List[Step]:
|
|
@@ -317,6 +323,9 @@ class AsyncStepsClient:
|
|
|
317
323
|
feedback : typing.Optional[StepsListRequestFeedback]
|
|
318
324
|
Filter by feedback
|
|
319
325
|
|
|
326
|
+
has_feedback : typing.Optional[bool]
|
|
327
|
+
Filter by whether steps have feedback (true) or not (false)
|
|
328
|
+
|
|
320
329
|
tags : typing.Optional[typing.Union[str, typing.Sequence[str]]]
|
|
321
330
|
Filter by tags
|
|
322
331
|
|
|
@@ -359,6 +368,7 @@ class AsyncStepsClient:
|
|
|
359
368
|
"agent_id": agent_id,
|
|
360
369
|
"trace_ids": trace_ids,
|
|
361
370
|
"feedback": feedback,
|
|
371
|
+
"has_feedback": has_feedback,
|
|
362
372
|
"tags": tags,
|
|
363
373
|
},
|
|
364
374
|
request_options=request_options,
|
|
@@ -2,7 +2,7 @@ letta_client/__init__.py,sha256=OW9d5lmZRZOZF5Yn7b_1h3oJUoJz5TyMSayQW89iZRw,1809
|
|
|
2
2
|
letta_client/agents/__init__.py,sha256=9L60SAZIihZzh_KhVxu0uX4RS7z2iKKctzQsS8ycXHc,1954
|
|
3
3
|
letta_client/agents/blocks/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
4
4
|
letta_client/agents/blocks/client.py,sha256=ecE03lE5tP1AtCMFLT9FzdYyQMx_D7NI5m42b41pV40,24684
|
|
5
|
-
letta_client/agents/client.py,sha256=
|
|
5
|
+
letta_client/agents/client.py,sha256=pBXmpyAbdfnv04iObR7f92OlAW7VyXMsaEuFhL6hvNE,89143
|
|
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
|
|
@@ -65,7 +65,7 @@ letta_client/client_side_access_tokens/types/client_side_access_tokens_create_re
|
|
|
65
65
|
letta_client/client_side_access_tokens/types/client_side_access_tokens_create_response_policy_data_item_access_item.py,sha256=R-H25IpNp9feSrW8Yj3h9O3UTMVvFniQJElogKxLuoE,254
|
|
66
66
|
letta_client/core/__init__.py,sha256=OKbX2aCZXgHCDUsCouqv-OiX32xA6eFFCKIUH9M5Vzk,1591
|
|
67
67
|
letta_client/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
68
|
-
letta_client/core/client_wrapper.py,sha256=
|
|
68
|
+
letta_client/core/client_wrapper.py,sha256=DoTDdGXSm1YSPSGYudd9mhTozmulN0jai7omMXYvmxk,1998
|
|
69
69
|
letta_client/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
70
70
|
letta_client/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
71
71
|
letta_client/core/http_client.py,sha256=Z77OIxIbL4OAB2IDqjRq_sYa5yNYAWfmdhdCSSvh6Y4,19552
|
|
@@ -132,7 +132,7 @@ letta_client/sources/files/client.py,sha256=VwOnQEZpY0j2LqRAPO1EbtfykAYbBwPHcI7D
|
|
|
132
132
|
letta_client/sources/passages/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
133
133
|
letta_client/sources/passages/client.py,sha256=XxpITU_fq9MKiSd8Qu720Dprnxp5wlDEf6yjXaEfwSQ,5969
|
|
134
134
|
letta_client/steps/__init__.py,sha256=Vitg85t2RrFWGxc4yqPbmd1dDZ44L0A1cnQFVTGRDCw,184
|
|
135
|
-
letta_client/steps/client.py,sha256=
|
|
135
|
+
letta_client/steps/client.py,sha256=BOXNMmAZ15Ra76As27XfxUlRJgAhburBHJK5gYfMub0,17505
|
|
136
136
|
letta_client/steps/feedback/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
137
137
|
letta_client/steps/feedback/client.py,sha256=GXsXnrsf-wmuRLvsj8F2wjVcOOg4fbUvseIMjhFm7Xg,2943
|
|
138
138
|
letta_client/steps/types/__init__.py,sha256=afgL6YcS_8FJ3Syf7DwWW82CmYDqb9zelSZpJ4Rt70o,171
|
|
@@ -414,6 +414,6 @@ letta_client/types/web_search_options_user_location_approximate.py,sha256=Ywk01J
|
|
|
414
414
|
letta_client/version.py,sha256=bttKLbIhO3UonCYQlqs600zzbQgfhCCMjeXR9WRzid4,79
|
|
415
415
|
letta_client/voice/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
416
416
|
letta_client/voice/client.py,sha256=EX79F2D5bieXNP8g1ZPw8xwAzqE1A3hshCHUSlTV1kw,5739
|
|
417
|
-
letta_client-0.1.
|
|
418
|
-
letta_client-0.1.
|
|
419
|
-
letta_client-0.1.
|
|
417
|
+
letta_client-0.1.181.dist-info/METADATA,sha256=8NN3ejEmQduA5v3Br86to7SLz4AL1fnutNYqe2lB2w0,5093
|
|
418
|
+
letta_client-0.1.181.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
419
|
+
letta_client-0.1.181.dist-info/RECORD,,
|
|
File without changes
|