letta-client 0.1.115__py3-none-any.whl → 0.1.117__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.

@@ -1,44 +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 .job_status import JobStatus
6
- import datetime as dt
7
- from ..core.pydantic_utilities import IS_PYDANTIC_V2
8
- import typing
9
-
10
-
11
- class LettaBatchResponse(UncheckedBaseModel):
12
- batch_id: str = pydantic.Field()
13
- """
14
- A unique identifier for this batch request.
15
- """
16
-
17
- status: JobStatus = pydantic.Field()
18
- """
19
- The current status of the batch request.
20
- """
21
-
22
- agent_count: int = pydantic.Field()
23
- """
24
- The number of agents in the batch request.
25
- """
26
-
27
- last_polled_at: dt.datetime = pydantic.Field()
28
- """
29
- The timestamp when the batch was last polled for updates.
30
- """
31
-
32
- created_at: dt.datetime = pydantic.Field()
33
- """
34
- The timestamp when the batch request was created.
35
- """
36
-
37
- if IS_PYDANTIC_V2:
38
- model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
39
- else:
40
-
41
- class Config:
42
- frozen = True
43
- smart_union = True
44
- extra = pydantic.Extra.allow