Skip to content

Commit 92ca8b0

Browse files
committed
SDK regeneration
1 parent a44125d commit 92ca8b0

File tree

6 files changed

+746
-0
lines changed

6 files changed

+746
-0
lines changed

reference.md

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -862,6 +862,82 @@ client.graph.create(
862862
</dl>
863863

864864

865+
</dd>
866+
</dl>
867+
</details>
868+
869+
<details><summary><code>client.graph.<a href="src/zep_cloud/graph/client.py">list_all</a>(...)</code></summary>
870+
<dl>
871+
<dd>
872+
873+
#### 📝 Description
874+
875+
<dl>
876+
<dd>
877+
878+
<dl>
879+
<dd>
880+
881+
Returns all graphs.
882+
</dd>
883+
</dl>
884+
</dd>
885+
</dl>
886+
887+
#### 🔌 Usage
888+
889+
<dl>
890+
<dd>
891+
892+
<dl>
893+
<dd>
894+
895+
```python
896+
from zep_cloud import Zep
897+
898+
client = Zep(
899+
api_key="YOUR_API_KEY",
900+
)
901+
client.graph.list_all()
902+
903+
```
904+
</dd>
905+
</dl>
906+
</dd>
907+
</dl>
908+
909+
#### ⚙️ Parameters
910+
911+
<dl>
912+
<dd>
913+
914+
<dl>
915+
<dd>
916+
917+
**page_number:** `typing.Optional[int]` — Page number for pagination, starting from 1.
918+
919+
</dd>
920+
</dl>
921+
922+
<dl>
923+
<dd>
924+
925+
**page_size:** `typing.Optional[int]` — Number of graphs to retrieve per page.
926+
927+
</dd>
928+
</dl>
929+
930+
<dl>
931+
<dd>
932+
933+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
934+
935+
</dd>
936+
</dl>
937+
</dd>
938+
</dl>
939+
940+
865941
</dd>
866942
</dl>
867943
</details>
@@ -1002,6 +1078,100 @@ client.graph.delete(
10021078
</dl>
10031079

10041080

1081+
</dd>
1082+
</dl>
1083+
</details>
1084+
1085+
<details><summary><code>client.graph.<a href="src/zep_cloud/graph/client.py">update</a>(...)</code></summary>
1086+
<dl>
1087+
<dd>
1088+
1089+
#### 📝 Description
1090+
1091+
<dl>
1092+
<dd>
1093+
1094+
<dl>
1095+
<dd>
1096+
1097+
Updates information about a graph.
1098+
</dd>
1099+
</dl>
1100+
</dd>
1101+
</dl>
1102+
1103+
#### 🔌 Usage
1104+
1105+
<dl>
1106+
<dd>
1107+
1108+
<dl>
1109+
<dd>
1110+
1111+
```python
1112+
from zep_cloud import Zep
1113+
1114+
client = Zep(
1115+
api_key="YOUR_API_KEY",
1116+
)
1117+
client.graph.update(
1118+
graph_id="graphId",
1119+
)
1120+
1121+
```
1122+
</dd>
1123+
</dl>
1124+
</dd>
1125+
</dl>
1126+
1127+
#### ⚙️ Parameters
1128+
1129+
<dl>
1130+
<dd>
1131+
1132+
<dl>
1133+
<dd>
1134+
1135+
**graph_id:** `str` — Graph ID
1136+
1137+
</dd>
1138+
</dl>
1139+
1140+
<dl>
1141+
<dd>
1142+
1143+
**description:** `typing.Optional[str]`
1144+
1145+
</dd>
1146+
</dl>
1147+
1148+
<dl>
1149+
<dd>
1150+
1151+
**fact_rating_instruction:** `typing.Optional[FactRatingInstruction]`
1152+
1153+
</dd>
1154+
</dl>
1155+
1156+
<dl>
1157+
<dd>
1158+
1159+
**name:** `typing.Optional[str]`
1160+
1161+
</dd>
1162+
</dl>
1163+
1164+
<dl>
1165+
<dd>
1166+
1167+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
1168+
1169+
</dd>
1170+
</dl>
1171+
</dd>
1172+
</dl>
1173+
1174+
10051175
</dd>
10061176
</dl>
10071177
</details>

src/zep_cloud/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
AddThreadMessagesResponse,
77
AddTripleResponse,
88
ApiError,
9+
ApidataGraphListResponse,
910
CloneGraphResponse,
1011
ComparisonOperator,
1112
DateFilter,
@@ -56,6 +57,7 @@
5657
"AddThreadMessagesResponse",
5758
"AddTripleResponse",
5859
"ApiError",
60+
"ApidataGraphListResponse",
5961
"AsyncZep",
6062
"BadRequestError",
6163
"CloneGraphResponse",

0 commit comments

Comments
 (0)