Skip to content
Open
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
16 changes: 16 additions & 0 deletions .fern/replay.lock

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

5 changes: 4 additions & 1 deletion .fernignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ README.md
.github
Makefile
.gitignore
LICENSE
LICENSE
.fern/replay.lock
.fern/replay.yml
.gitattributes
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.fern/replay.lock linguist-generated=true
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[project]
name = "zep-cloud"
version = "3.25.0"
version = "3.26.0"

[tool.poetry]
name = "zep-cloud"
version = "3.25.0"
version = "3.26.0"
description = ""
readme = "README.md"
authors = []
Expand Down
24 changes: 8 additions & 16 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1666,14 +1666,6 @@ Nested objects and arrays are not allowed.
<dl>
<dd>

**fact_uuid:** `typing.Optional[str]` — The uuid of the edge to add

</dd>
</dl>

<dl>
<dd>

**graph_id:** `typing.Optional[str]`

</dd>
Expand Down Expand Up @@ -4951,7 +4943,7 @@ of the previous page. Encodes the sort field, direction, and continuation positi
<dl>
<dd>

**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at" or "uuid" (default "uuid").
**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

</dd>
</dl>
Expand Down Expand Up @@ -5076,7 +5068,7 @@ of the previous page. Encodes the sort field, direction, and continuation positi
<dl>
<dd>

**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at" or "uuid" (default "uuid").
**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

</dd>
</dl>
Expand Down Expand Up @@ -5908,7 +5900,7 @@ of the previous page. Encodes the sort field, direction, and continuation positi
<dl>
<dd>

**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at" or "uuid" (default "uuid").
**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

</dd>
</dl>
Expand Down Expand Up @@ -6033,7 +6025,7 @@ of the previous page. Encodes the sort field, direction, and continuation positi
<dl>
<dd>

**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at" or "uuid" (default "uuid").
**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

</dd>
</dl>
Expand Down Expand Up @@ -6541,7 +6533,7 @@ of the previous page. Encodes the sort field, direction, and continuation positi
<dl>
<dd>

**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at" or "uuid" (default "uuid").
**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

</dd>
</dl>
Expand Down Expand Up @@ -6666,7 +6658,7 @@ of the previous page. Encodes the sort field, direction, and continuation positi
<dl>
<dd>

**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at" or "uuid" (default "uuid").
**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

</dd>
</dl>
Expand Down Expand Up @@ -6862,7 +6854,7 @@ of the previous page. Encodes the sort field, direction, and continuation positi
<dl>
<dd>

**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at" or "uuid" (default "uuid").
**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

</dd>
</dl>
Expand Down Expand Up @@ -6987,7 +6979,7 @@ of the previous page. Encodes the sort field, direction, and continuation positi
<dl>
<dd>

**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at" or "uuid" (default "uuid").
**order_by:** `typing.Optional[str]` — Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

</dd>
</dl>
Expand Down
2 changes: 2 additions & 0 deletions src/zep_cloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
AddThreadMessagesRequest,
AddThreadMessagesResponse,
AddTripleResponse,
AddedNode,
ApiError,
ApidataBatchAddItemRole,
ApidataBatchAddItemType,
Expand Down Expand Up @@ -101,6 +102,7 @@
"AddThreadMessagesRequest",
"AddThreadMessagesResponse",
"AddTripleResponse",
"AddedNode",
"ApiError",
"ApidataBatchAddItemRole",
"ApidataBatchAddItemType",
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 @@ -22,10 +22,10 @@ def __init__(

def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"User-Agent": "zep-cloud/3.25.0",
"User-Agent": "zep-cloud/3.26.0",
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "zep-cloud",
"X-Fern-SDK-Version": "3.25.0",
"X-Fern-SDK-Version": "3.26.0",
**(self.get_custom_headers() or {}),
}
headers["Authorization"] = f"Api-Key {self.api_key}"
Expand Down
10 changes: 0 additions & 10 deletions src/zep_cloud/graph/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,6 @@ def add_fact_triple(
created_at: typing.Optional[str] = OMIT,
edge_attributes: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
expired_at: typing.Optional[str] = OMIT,
fact_uuid: typing.Optional[str] = OMIT,
graph_id: typing.Optional[str] = OMIT,
invalid_at: typing.Optional[str] = OMIT,
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
Expand Down Expand Up @@ -469,9 +468,6 @@ def add_fact_triple(
expired_at : typing.Optional[str]
The time (if any) at which the edge expires

fact_uuid : typing.Optional[str]
The uuid of the edge to add

graph_id : typing.Optional[str]

invalid_at : typing.Optional[str]
Expand Down Expand Up @@ -552,7 +548,6 @@ def add_fact_triple(
created_at=created_at,
edge_attributes=edge_attributes,
expired_at=expired_at,
fact_uuid=fact_uuid,
graph_id=graph_id,
invalid_at=invalid_at,
metadata=metadata,
Expand Down Expand Up @@ -1564,7 +1559,6 @@ async def add_fact_triple(
created_at: typing.Optional[str] = OMIT,
edge_attributes: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
expired_at: typing.Optional[str] = OMIT,
fact_uuid: typing.Optional[str] = OMIT,
graph_id: typing.Optional[str] = OMIT,
invalid_at: typing.Optional[str] = OMIT,
metadata: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
Expand Down Expand Up @@ -1603,9 +1597,6 @@ async def add_fact_triple(
expired_at : typing.Optional[str]
The time (if any) at which the edge expires

fact_uuid : typing.Optional[str]
The uuid of the edge to add

graph_id : typing.Optional[str]

invalid_at : typing.Optional[str]
Expand Down Expand Up @@ -1694,7 +1685,6 @@ async def main() -> None:
created_at=created_at,
edge_attributes=edge_attributes,
expired_at=expired_at,
fact_uuid=fact_uuid,
graph_id=graph_id,
invalid_at=invalid_at,
metadata=metadata,
Expand Down
8 changes: 4 additions & 4 deletions src/zep_cloud/graph/edge/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -134,7 +134,7 @@ def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -353,7 +353,7 @@ async def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -433,7 +433,7 @@ async def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down
8 changes: 4 additions & 4 deletions src/zep_cloud/graph/edge/raw_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -166,7 +166,7 @@ def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -542,7 +542,7 @@ async def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -648,7 +648,7 @@ async def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down
8 changes: 4 additions & 4 deletions src/zep_cloud/graph/node/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -136,7 +136,7 @@ def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -406,7 +406,7 @@ async def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -486,7 +486,7 @@ async def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down
8 changes: 4 additions & 4 deletions src/zep_cloud/graph/node/raw_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -168,7 +168,7 @@ def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -664,7 +664,7 @@ async def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -770,7 +770,7 @@ async def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down
8 changes: 4 additions & 4 deletions src/zep_cloud/graph/observation/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -133,7 +133,7 @@ def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -252,7 +252,7 @@ async def get_by_graph_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down Expand Up @@ -332,7 +332,7 @@ async def get_by_user_id(
Maximum number of items to return

order_by : typing.Optional[str]
Field to sort by. One of "created_at" or "uuid" (default "uuid").
Field to sort by. One of "created_at", "valid_at", or "uuid" (default "uuid").

uuid_cursor : typing.Optional[str]
UUID based cursor, used for pagination. Should be the UUID of the last item in the previous page.
Expand Down
Loading
Loading