File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff 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 } "
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments