Skip to content

Commit c98a9d7

Browse files
SDK regeneration
1 parent fec0e27 commit c98a9d7

11 files changed

Lines changed: 866 additions & 0 deletions

reference.md

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,173 @@
11
# Reference
22
## Graph
3+
<details><summary><code>client.graph.<a href="src/zep_cloud/graph/client.py">list_entity_types</a>(...)</code></summary>
4+
<dl>
5+
<dd>
6+
7+
#### 📝 Description
8+
9+
<dl>
10+
<dd>
11+
12+
<dl>
13+
<dd>
14+
15+
Returns all entity types for a project, user, or graph.
16+
</dd>
17+
</dl>
18+
</dd>
19+
</dl>
20+
21+
#### 🔌 Usage
22+
23+
<dl>
24+
<dd>
25+
26+
<dl>
27+
<dd>
28+
29+
```python
30+
from zep_cloud import Zep
31+
32+
client = Zep(
33+
api_key="YOUR_API_KEY",
34+
)
35+
client.graph.list_entity_types()
36+
37+
```
38+
</dd>
39+
</dl>
40+
</dd>
41+
</dl>
42+
43+
#### ⚙️ Parameters
44+
45+
<dl>
46+
<dd>
47+
48+
<dl>
49+
<dd>
50+
51+
**user_id:** `typing.Optional[str]` — User ID to get user-specific entity types
52+
53+
</dd>
54+
</dl>
55+
56+
<dl>
57+
<dd>
58+
59+
**graph_id:** `typing.Optional[str]` — Graph ID to get graph-specific entity types
60+
61+
</dd>
62+
</dl>
63+
64+
<dl>
65+
<dd>
66+
67+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
68+
69+
</dd>
70+
</dl>
71+
</dd>
72+
</dl>
73+
74+
75+
</dd>
76+
</dl>
77+
</details>
78+
79+
<details><summary><code>client.graph.<a href="src/zep_cloud/graph/client.py">set_entity_types_internal</a>(...)</code></summary>
80+
<dl>
81+
<dd>
82+
83+
#### 📝 Description
84+
85+
<dl>
86+
<dd>
87+
88+
<dl>
89+
<dd>
90+
91+
Sets the entity types for multiple users and graphs, replacing any existing ones.
92+
</dd>
93+
</dl>
94+
</dd>
95+
</dl>
96+
97+
#### 🔌 Usage
98+
99+
<dl>
100+
<dd>
101+
102+
<dl>
103+
<dd>
104+
105+
```python
106+
from zep_cloud import Zep
107+
108+
client = Zep(
109+
api_key="YOUR_API_KEY",
110+
)
111+
client.graph.set_entity_types_internal()
112+
113+
```
114+
</dd>
115+
</dl>
116+
</dd>
117+
</dl>
118+
119+
#### ⚙️ Parameters
120+
121+
<dl>
122+
<dd>
123+
124+
<dl>
125+
<dd>
126+
127+
**edge_types:** `typing.Optional[typing.Sequence[EdgeType]]`
128+
129+
</dd>
130+
</dl>
131+
132+
<dl>
133+
<dd>
134+
135+
**entity_types:** `typing.Optional[typing.Sequence[EntityType]]`
136+
137+
</dd>
138+
</dl>
139+
140+
<dl>
141+
<dd>
142+
143+
**graph_ids:** `typing.Optional[typing.Sequence[str]]`
144+
145+
</dd>
146+
</dl>
147+
148+
<dl>
149+
<dd>
150+
151+
**user_ids:** `typing.Optional[typing.Sequence[str]]`
152+
153+
</dd>
154+
</dl>
155+
156+
<dl>
157+
<dd>
158+
159+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
160+
161+
</dd>
162+
</dl>
163+
</dd>
164+
</dl>
165+
166+
167+
</dd>
168+
</dl>
169+
</details>
170+
3171
<details><summary><code>client.graph.<a href="src/zep_cloud/graph/client.py">add</a>(...)</code></summary>
4172
<dl>
5173
<dd>

src/zep_cloud/__init__.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@
1111
CloneGraphResponse,
1212
ComparisonOperator,
1313
DateFilter,
14+
EdgeType,
1415
EntityEdge,
16+
EntityEdgeSourceTarget,
1517
EntityNode,
18+
EntityProperty,
19+
EntityPropertyType,
20+
EntityType,
21+
EntityTypeResponse,
1622
Episode,
1723
EpisodeData,
1824
EpisodeMentions,
@@ -60,8 +66,14 @@
6066
"CloneGraphResponse",
6167
"ComparisonOperator",
6268
"DateFilter",
69+
"EdgeType",
6370
"EntityEdge",
71+
"EntityEdgeSourceTarget",
6472
"EntityNode",
73+
"EntityProperty",
74+
"EntityPropertyType",
75+
"EntityType",
76+
"EntityTypeResponse",
6577
"Episode",
6678
"EpisodeData",
6779
"EpisodeMentions",

0 commit comments

Comments
 (0)