Skip to content

Commit de2b99c

Browse files
committed
SDK regeneration
1 parent 50fb546 commit de2b99c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/zep_cloud/core/client_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_headers(self) -> typing.Dict[str, str]:
1717
headers: typing.Dict[str, str] = {
1818
"X-Fern-Language": "Python",
1919
"X-Fern-SDK-Name": "zep-cloud",
20-
"X-Fern-SDK-Version": "2.12.1",
20+
"X-Fern-SDK-Version": "2.12.2",
2121
}
2222
headers["Authorization"] = f"Api-Key {self.api_key}"
2323
return headers

src/zep_cloud/types/episode.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ class Episode(pydantic_v1.BaseModel):
1212
content: str
1313
created_at: str
1414
processed: typing.Optional[bool] = None
15+
session_id: typing.Optional[str] = pydantic_v1.Field(default=None)
16+
"""
17+
Optional session ID. Will be present only if the episode corresponds to the messages added using memory.add API
18+
"""
19+
1520
source: typing.Optional[GraphDataType] = None
1621
source_description: typing.Optional[str] = None
1722
uuid_: str = pydantic_v1.Field(alias="uuid")

0 commit comments

Comments
 (0)