letta-client 0.1.180__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/core/client_wrapper.py +1 -1
- letta_client/steps/client.py +10 -0
- {letta_client-0.1.180.dist-info → letta_client-0.1.181.dist-info}/METADATA +1 -1
- {letta_client-0.1.180.dist-info → letta_client-0.1.181.dist-info}/RECORD +5 -5
- {letta_client-0.1.180.dist-info → letta_client-0.1.181.dist-info}/WHEEL +0 -0
|
@@ -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,
|
|
@@ -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
|