Skip to content

Commit f3ac886

Browse files
committed
SDK regeneration
1 parent 4c46f71 commit f3ac886

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-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.21.0",
20+
"X-Fern-SDK-Version": "2.22.0",
2121
}
2222
headers["Authorization"] = f"Api-Key {self.api_key}"
2323
return headers

src/zep_cloud/types/entity_edge.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class EntityEdge(pydantic_v1.BaseModel):
4343
Name of the edge, relation name
4444
"""
4545

46+
score: typing.Optional[float] = None
4647
source_node_uuid: str = pydantic_v1.Field()
4748
"""
4849
UUID of the source node

src/zep_cloud/types/entity_node.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class EntityNode(pydantic_v1.BaseModel):
2828
Name of the node
2929
"""
3030

31+
score: typing.Optional[float] = None
3132
summary: str = pydantic_v1.Field()
3233
"""
3334
Regional summary of surrounding edges

src/zep_cloud/types/episode.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class Episode(pydantic_v1.BaseModel):
2323
Optional role_type, will only be present if the episode was created using memory.add API
2424
"""
2525

26+
score: typing.Optional[float] = None
2627
session_id: typing.Optional[str] = None
2728
source: typing.Optional[GraphDataType] = None
2829
source_description: typing.Optional[str] = None

0 commit comments

Comments
 (0)