You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The labels for the target node. At most one entity-type label may be
1738
+
provided so that manually-added triples remain consistent with automatic
1739
+
episode extraction, which assigns one best-match entity type per node.
1740
+
The base "Entity" label is added implicitly by the graph layer on save
1741
+
and does not need to be supplied here.
1728
1742
1729
1743
</dd>
1730
1744
</dl>
@@ -2314,7 +2328,7 @@ client.graph.search(
2314
2328
<dl>
2315
2329
<dd>
2316
2330
2317
-
**limit:**`typing.Optional[int]` — The maximum number of facts to retrieve. Defaults to 10. Limited to 50.
2331
+
**limit:**`typing.Optional[int]` — The maximum number of facts to retrieve for non-auto scopes. Defaults to 10. Limited to 50. Ignored when scope=auto.
2318
2332
2319
2333
</dd>
2320
2334
</dl>
@@ -2340,9 +2354,8 @@ client.graph.search(
2340
2354
2341
2355
**reranker:**`typing.Optional[Reranker]`
2342
2356
2343
-
Defaults to RRF. When scope=auto, this only affects graph-service retrieval
2344
-
shape for graph facts, observations, and thread summaries; source-episode
2345
-
retrieval uses RRF, and auto search applies its own internal rerank after retrieval.
2357
+
Defaults to RRF. Ignored when scope=auto except node_distance and episode_mentions are rejected;
2358
+
auto search always uses RRF retrieval and applies its own internal rerank after retrieval.
2346
2359
2347
2360
</dd>
2348
2361
</dl>
@@ -3117,7 +3130,7 @@ client = Zep(
3117
3130
client.thread.get(
3118
3131
thread_id="threadId",
3119
3132
limit=1,
3120
-
cursor=1,
3133
+
cursor=1000000,
3121
3134
lastn=1,
3122
3135
)
3123
3136
@@ -3295,7 +3308,9 @@ that are added to a user's graph.
3295
3308
<dl>
3296
3309
<dd>
3297
3310
3298
-
Add messages to a thread in batch mode. This will process messages concurrently, which is useful for data migrations.
3311
+
Deprecated. Use the [Batch API](/adding-batch-data) (`client.batch.*` with `type: "thread_message"`) instead.
3312
+
3313
+
Adds messages to a thread in batch mode, processing messages concurrently.
0 commit comments