Skip to content

Commit 4ad5242

Browse files
SDK regeneration
1 parent aa25d1b commit 4ad5242

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/zep_cloud/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ def __init__(
2222

2323
def get_headers(self) -> typing.Dict[str, str]:
2424
headers: typing.Dict[str, str] = {
25-
"User-Agent": "zep-cloud/3.15.0",
25+
"User-Agent": "zep-cloud/3.16.0",
2626
"X-Fern-Language": "Python",
2727
"X-Fern-SDK-Name": "zep-cloud",
28-
"X-Fern-SDK-Version": "3.15.0",
28+
"X-Fern-SDK-Version": "3.16.0",
2929
**(self.get_custom_headers() or {}),
3030
}
3131
headers["Authorization"] = f"Api-Key {self.api_key}"

src/zep_cloud/types/get_task_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class GetTaskResponse(UniversalBaseModel):
1212
completed_at: typing.Optional[str] = None
1313
created_at: typing.Optional[str] = None
1414
error: typing.Optional[TaskErrorResponse] = None
15+
params: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = None
1516
progress: typing.Optional[TaskProgress] = None
1617
started_at: typing.Optional[str] = None
1718
status: typing.Optional[str] = None

src/zep_cloud/types/message_list_response.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ class MessageListResponse(UniversalBaseModel):
2323
The total number of messages.
2424
"""
2525

26+
user_id: typing.Optional[str] = pydantic.Field(default=None)
27+
"""
28+
The user ID associated with this thread.
29+
"""
30+
2631
if IS_PYDANTIC_V2:
2732
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
2833
else:

0 commit comments

Comments
 (0)