Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"exported_class_name": "Zep"
}
},
"originGitCommit": "93a98979696249bf014a0bf648ebf5cb10edffdd",
"sdkVersion": "4.0.0a3"
"originGitCommit": "6eab49e9f904a487d71c9e469a8b3c63a8e2eb5d",
"sdkVersion": "4.0.0a4"
}
8 changes: 7 additions & 1 deletion .fern/replay.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[project]
name = "zep-cloud"
dynamic = ["version"]
version = "4.0.0a3"
version = "4.0.0a4"

[tool.poetry]
name = "zep-cloud"
version = "4.0.0a3"
version = "4.0.0a4"
description = ""
readme = "README.md"
authors = []
Expand Down
4 changes: 2 additions & 2 deletions src/zep_cloud/core/client_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ def get_headers(self) -> typing.Dict[str, str]:
import platform

headers: typing.Dict[str, str] = {
"User-Agent": "zep-cloud/4.0.0a3",
"User-Agent": "zep-cloud/4.0.0a4",
"X-Fern-Language": "Python",
"X-Fern-Runtime": f"python/{platform.python_version()}",
"X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}",
"X-Fern-SDK-Name": "zep-cloud",
"X-Fern-SDK-Version": "4.0.0a3",
"X-Fern-SDK-Version": "4.0.0a4",
**(self.get_custom_headers() or {}),
}
headers["Authorization"] = f"Api-Key {self.api_key}"
Expand Down
4 changes: 2 additions & 2 deletions src/zep_cloud/types/edge_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@


class EdgeType(UniversalBaseModel):
description: str
name: str
description: typing.Optional[str] = None
name: typing.Optional[str] = None
properties: typing.Optional[typing.List[EntityProperty]] = None
source_targets: typing.Optional[typing.List[EdgeSourceTarget]] = None

Expand Down
6 changes: 3 additions & 3 deletions src/zep_cloud/types/entity_property.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@


class EntityProperty(UniversalBaseModel):
description: str
name: str
type: EntityPropertyType
description: typing.Optional[str] = None
name: typing.Optional[str] = None
type: typing.Optional[EntityPropertyType] = None

if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
Expand Down
2 changes: 1 addition & 1 deletion src/zep_cloud/types/entity_property_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

import typing

EntityPropertyType = typing.Union[typing.Literal["Text", "Int", "Float", "Boolean"], typing.Any]
EntityPropertyType = typing.Union[typing.Literal["text", "int", "float", "boolean"], typing.Any]
4 changes: 2 additions & 2 deletions src/zep_cloud/types/entity_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@


class EntityType(UniversalBaseModel):
description: str
description: typing.Optional[str] = None
identity_properties: typing.Optional[typing.List[str]] = None
name: str
name: typing.Optional[str] = None
properties: typing.Optional[typing.List[EntityProperty]] = None

if IS_PYDANTIC_V2:
Expand Down
Loading