Skip to content

Commit 10b1ed0

Browse files
committed
SDK regeneration
1 parent d952b9b commit 10b1ed0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1217,7 +1217,7 @@ client.graph.set_entity_types_internal()
12171217
<dl>
12181218
<dd>
12191219

1220-
Add data to the graph. Note: each subscription tier has different limits on the amount of data that can be added to the graph please refer to the pricing page for more information.
1220+
Add data to the graph.
12211221
</dd>
12221222
</dl>
12231223
</dd>
@@ -1328,7 +1328,7 @@ client.graph.add(
13281328
<dl>
13291329
<dd>
13301330

1331-
Add data to the graph in batch mode (each episode processed concurrently). Note: each subscription tier has different limits on the amount of data that can be added to the graph please refer to the pricing page for more information.
1331+
Add data to the graph in batch mode, processing episodes concurrently. Use only for data that is insensitive to processing order.
13321332
</dd>
13331333
</dl>
13341334
</dd>

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

src/zep_cloud/graph/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def add(
144144
request_options: typing.Optional[RequestOptions] = None
145145
) -> Episode:
146146
"""
147-
Add data to the graph. Note: each subscription tier has different limits on the amount of data that can be added to the graph please refer to the pricing page for more information.
147+
Add data to the graph.
148148
149149
Parameters
150150
----------
@@ -219,7 +219,7 @@ def add_batch(
219219
request_options: typing.Optional[RequestOptions] = None
220220
) -> typing.List[Episode]:
221221
"""
222-
Add data to the graph in batch mode (each episode processed concurrently). Note: each subscription tier has different limits on the amount of data that can be added to the graph please refer to the pricing page for more information.
222+
Add data to the graph in batch mode, processing episodes concurrently. Use only for data that is insensitive to processing order.
223223
224224
Parameters
225225
----------
@@ -644,7 +644,7 @@ async def add(
644644
request_options: typing.Optional[RequestOptions] = None
645645
) -> Episode:
646646
"""
647-
Add data to the graph. Note: each subscription tier has different limits on the amount of data that can be added to the graph please refer to the pricing page for more information.
647+
Add data to the graph.
648648
649649
Parameters
650650
----------
@@ -727,7 +727,7 @@ async def add_batch(
727727
request_options: typing.Optional[RequestOptions] = None
728728
) -> typing.List[Episode]:
729729
"""
730-
Add data to the graph in batch mode (each episode processed concurrently). Note: each subscription tier has different limits on the amount of data that can be added to the graph please refer to the pricing page for more information.
730+
Add data to the graph in batch mode, processing episodes concurrently. Use only for data that is insensitive to processing order.
731731
732732
Parameters
733733
----------

0 commit comments

Comments
 (0)