@getzep/zep-cloud 3.14.0 → 3.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Client.js +2 -2
- package/dist/cjs/api/resources/graph/client/Client.d.ts +50 -0
- package/dist/cjs/api/resources/graph/client/Client.js +272 -0
- package/dist/cjs/api/resources/graph/client/requests/AddCustomInstructionsRequest.d.ts +21 -0
- package/dist/cjs/api/resources/graph/client/requests/AddCustomInstructionsRequest.js +5 -0
- package/dist/cjs/api/resources/graph/client/requests/DeleteCustomInstructionsRequest.d.ts +15 -0
- package/dist/cjs/api/resources/graph/client/requests/DeleteCustomInstructionsRequest.js +5 -0
- package/dist/cjs/api/resources/graph/client/requests/GraphListCustomInstructionsRequest.d.ts +20 -0
- package/dist/cjs/api/resources/graph/client/requests/GraphListCustomInstructionsRequest.js +5 -0
- package/dist/cjs/api/resources/graph/client/requests/index.d.ts +3 -0
- package/dist/cjs/api/types/CustomInstruction.d.ts +7 -0
- package/dist/cjs/api/types/CustomInstruction.js +5 -0
- package/dist/cjs/api/types/GetTaskResponse.d.ts +1 -0
- package/dist/cjs/api/types/ListCustomInstructionsResponse.d.ts +7 -0
- package/dist/cjs/api/types/ListCustomInstructionsResponse.js +5 -0
- package/dist/cjs/api/types/MessageListResponse.d.ts +2 -0
- package/dist/cjs/api/types/index.d.ts +2 -0
- package/dist/cjs/api/types/index.js +2 -0
- package/dist/cjs/serialization/resources/graph/client/requests/AddCustomInstructionsRequest.d.ts +15 -0
- package/dist/cjs/serialization/resources/graph/client/requests/AddCustomInstructionsRequest.js +46 -0
- package/dist/cjs/serialization/resources/graph/client/requests/DeleteCustomInstructionsRequest.d.ts +14 -0
- package/dist/cjs/serialization/resources/graph/client/requests/DeleteCustomInstructionsRequest.js +45 -0
- package/dist/cjs/serialization/resources/graph/client/requests/index.d.ts +2 -0
- package/dist/cjs/serialization/resources/graph/client/requests/index.js +5 -1
- package/dist/cjs/serialization/types/CustomInstruction.d.ts +13 -0
- package/dist/cjs/serialization/types/CustomInstruction.js +44 -0
- package/dist/cjs/serialization/types/GetTaskResponse.d.ts +1 -0
- package/dist/cjs/serialization/types/GetTaskResponse.js +1 -0
- package/dist/cjs/serialization/types/ListCustomInstructionsResponse.d.ts +13 -0
- package/dist/cjs/serialization/types/ListCustomInstructionsResponse.js +44 -0
- package/dist/cjs/serialization/types/MessageListResponse.d.ts +1 -0
- package/dist/cjs/serialization/types/MessageListResponse.js +1 -0
- package/dist/cjs/serialization/types/index.d.ts +2 -0
- package/dist/cjs/serialization/types/index.js +2 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.mjs +2 -2
- package/dist/esm/api/resources/graph/client/Client.d.mts +50 -0
- package/dist/esm/api/resources/graph/client/Client.mjs +272 -0
- package/dist/esm/api/resources/graph/client/requests/AddCustomInstructionsRequest.d.mts +21 -0
- package/dist/esm/api/resources/graph/client/requests/AddCustomInstructionsRequest.mjs +4 -0
- package/dist/esm/api/resources/graph/client/requests/DeleteCustomInstructionsRequest.d.mts +15 -0
- package/dist/esm/api/resources/graph/client/requests/DeleteCustomInstructionsRequest.mjs +4 -0
- package/dist/esm/api/resources/graph/client/requests/GraphListCustomInstructionsRequest.d.mts +20 -0
- package/dist/esm/api/resources/graph/client/requests/GraphListCustomInstructionsRequest.mjs +4 -0
- package/dist/esm/api/resources/graph/client/requests/index.d.mts +3 -0
- package/dist/esm/api/types/CustomInstruction.d.mts +7 -0
- package/dist/esm/api/types/CustomInstruction.mjs +4 -0
- package/dist/esm/api/types/GetTaskResponse.d.mts +1 -0
- package/dist/esm/api/types/ListCustomInstructionsResponse.d.mts +7 -0
- package/dist/esm/api/types/ListCustomInstructionsResponse.mjs +4 -0
- package/dist/esm/api/types/MessageListResponse.d.mts +2 -0
- package/dist/esm/api/types/index.d.mts +2 -0
- package/dist/esm/api/types/index.mjs +2 -0
- package/dist/esm/serialization/resources/graph/client/requests/AddCustomInstructionsRequest.d.mts +15 -0
- package/dist/esm/serialization/resources/graph/client/requests/AddCustomInstructionsRequest.mjs +10 -0
- package/dist/esm/serialization/resources/graph/client/requests/DeleteCustomInstructionsRequest.d.mts +14 -0
- package/dist/esm/serialization/resources/graph/client/requests/DeleteCustomInstructionsRequest.mjs +9 -0
- package/dist/esm/serialization/resources/graph/client/requests/index.d.mts +2 -0
- package/dist/esm/serialization/resources/graph/client/requests/index.mjs +2 -0
- package/dist/esm/serialization/types/CustomInstruction.d.mts +13 -0
- package/dist/esm/serialization/types/CustomInstruction.mjs +8 -0
- package/dist/esm/serialization/types/GetTaskResponse.d.mts +1 -0
- package/dist/esm/serialization/types/GetTaskResponse.mjs +1 -0
- package/dist/esm/serialization/types/ListCustomInstructionsResponse.d.mts +13 -0
- package/dist/esm/serialization/types/ListCustomInstructionsResponse.mjs +8 -0
- package/dist/esm/serialization/types/MessageListResponse.d.mts +1 -0
- package/dist/esm/serialization/types/MessageListResponse.mjs +1 -0
- package/dist/esm/serialization/types/index.d.mts +2 -0
- package/dist/esm/serialization/types/index.mjs +2 -0
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
- package/reference.md +199 -0
|
@@ -3,6 +3,7 @@ export * from "./AddThreadMessagesRequest.mjs";
|
|
|
3
3
|
export * from "./AddThreadMessagesResponse.mjs";
|
|
4
4
|
export * from "./CloneGraphResponse.mjs";
|
|
5
5
|
export * from "./ContextTemplateResponse.mjs";
|
|
6
|
+
export * from "./CustomInstruction.mjs";
|
|
6
7
|
export * from "./EdgeType.mjs";
|
|
7
8
|
export * from "./EntityEdgeSourceTarget.mjs";
|
|
8
9
|
export * from "./EntityProperty.mjs";
|
|
@@ -21,6 +22,7 @@ export * from "./GraphListResponse.mjs";
|
|
|
21
22
|
export * from "./GraphNodesRequest.mjs";
|
|
22
23
|
export * from "./GraphSearchResults.mjs";
|
|
23
24
|
export * from "./ListContextTemplatesResponse.mjs";
|
|
25
|
+
export * from "./ListCustomInstructionsResponse.mjs";
|
|
24
26
|
export * from "./ListUserInstructionsResponse.mjs";
|
|
25
27
|
export * from "./ProjectInfo.mjs";
|
|
26
28
|
export * from "./ProjectInfoResponse.mjs";
|
|
@@ -3,6 +3,7 @@ export * from "./AddThreadMessagesRequest.mjs";
|
|
|
3
3
|
export * from "./AddThreadMessagesResponse.mjs";
|
|
4
4
|
export * from "./CloneGraphResponse.mjs";
|
|
5
5
|
export * from "./ContextTemplateResponse.mjs";
|
|
6
|
+
export * from "./CustomInstruction.mjs";
|
|
6
7
|
export * from "./EdgeType.mjs";
|
|
7
8
|
export * from "./EntityEdgeSourceTarget.mjs";
|
|
8
9
|
export * from "./EntityProperty.mjs";
|
|
@@ -21,6 +22,7 @@ export * from "./GraphListResponse.mjs";
|
|
|
21
22
|
export * from "./GraphNodesRequest.mjs";
|
|
22
23
|
export * from "./GraphSearchResults.mjs";
|
|
23
24
|
export * from "./ListContextTemplatesResponse.mjs";
|
|
25
|
+
export * from "./ListCustomInstructionsResponse.mjs";
|
|
24
26
|
export * from "./ListUserInstructionsResponse.mjs";
|
|
25
27
|
export * from "./ProjectInfo.mjs";
|
|
26
28
|
export * from "./ProjectInfoResponse.mjs";
|
package/dist/esm/serialization/resources/graph/client/requests/AddCustomInstructionsRequest.d.mts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../index.mjs";
|
|
5
|
+
import * as Zep from "../../../../../api/index.mjs";
|
|
6
|
+
import * as core from "../../../../../core/index.mjs";
|
|
7
|
+
import { CustomInstruction } from "../../../../types/CustomInstruction.mjs";
|
|
8
|
+
export declare const AddCustomInstructionsRequest: core.serialization.Schema<serializers.AddCustomInstructionsRequest.Raw, Zep.AddCustomInstructionsRequest>;
|
|
9
|
+
export declare namespace AddCustomInstructionsRequest {
|
|
10
|
+
interface Raw {
|
|
11
|
+
graph_ids?: string[] | null;
|
|
12
|
+
instructions: CustomInstruction.Raw[];
|
|
13
|
+
user_ids?: string[] | null;
|
|
14
|
+
}
|
|
15
|
+
}
|
package/dist/esm/serialization/resources/graph/client/requests/AddCustomInstructionsRequest.mjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as core from "../../../../../core/index.mjs";
|
|
5
|
+
import { CustomInstruction } from "../../../../types/CustomInstruction.mjs";
|
|
6
|
+
export const AddCustomInstructionsRequest = core.serialization.object({
|
|
7
|
+
graphIds: core.serialization.property("graph_ids", core.serialization.list(core.serialization.string()).optional()),
|
|
8
|
+
instructions: core.serialization.list(CustomInstruction),
|
|
9
|
+
userIds: core.serialization.property("user_ids", core.serialization.list(core.serialization.string()).optional()),
|
|
10
|
+
});
|
package/dist/esm/serialization/resources/graph/client/requests/DeleteCustomInstructionsRequest.d.mts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../../../../index.mjs";
|
|
5
|
+
import * as Zep from "../../../../../api/index.mjs";
|
|
6
|
+
import * as core from "../../../../../core/index.mjs";
|
|
7
|
+
export declare const DeleteCustomInstructionsRequest: core.serialization.Schema<serializers.DeleteCustomInstructionsRequest.Raw, Zep.DeleteCustomInstructionsRequest>;
|
|
8
|
+
export declare namespace DeleteCustomInstructionsRequest {
|
|
9
|
+
interface Raw {
|
|
10
|
+
graph_ids?: string[] | null;
|
|
11
|
+
instruction_names?: string[] | null;
|
|
12
|
+
user_ids?: string[] | null;
|
|
13
|
+
}
|
|
14
|
+
}
|
package/dist/esm/serialization/resources/graph/client/requests/DeleteCustomInstructionsRequest.mjs
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as core from "../../../../../core/index.mjs";
|
|
5
|
+
export const DeleteCustomInstructionsRequest = core.serialization.object({
|
|
6
|
+
graphIds: core.serialization.property("graph_ids", core.serialization.list(core.serialization.string()).optional()),
|
|
7
|
+
instructionNames: core.serialization.property("instruction_names", core.serialization.list(core.serialization.string()).optional()),
|
|
8
|
+
userIds: core.serialization.property("user_ids", core.serialization.list(core.serialization.string()).optional()),
|
|
9
|
+
});
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export { AddCustomInstructionsRequest } from "./AddCustomInstructionsRequest.mjs";
|
|
2
|
+
export { DeleteCustomInstructionsRequest } from "./DeleteCustomInstructionsRequest.mjs";
|
|
1
3
|
export { EntityTypeRequest } from "./EntityTypeRequest.mjs";
|
|
2
4
|
export { AddDataRequest } from "./AddDataRequest.mjs";
|
|
3
5
|
export { AddDataBatchRequest } from "./AddDataBatchRequest.mjs";
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export { AddCustomInstructionsRequest } from "./AddCustomInstructionsRequest.mjs";
|
|
2
|
+
export { DeleteCustomInstructionsRequest } from "./DeleteCustomInstructionsRequest.mjs";
|
|
1
3
|
export { EntityTypeRequest } from "./EntityTypeRequest.mjs";
|
|
2
4
|
export { AddDataRequest } from "./AddDataRequest.mjs";
|
|
3
5
|
export { AddDataBatchRequest } from "./AddDataBatchRequest.mjs";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index.mjs";
|
|
5
|
+
import * as Zep from "../../api/index.mjs";
|
|
6
|
+
import * as core from "../../core/index.mjs";
|
|
7
|
+
export declare const CustomInstruction: core.serialization.ObjectSchema<serializers.CustomInstruction.Raw, Zep.CustomInstruction>;
|
|
8
|
+
export declare namespace CustomInstruction {
|
|
9
|
+
interface Raw {
|
|
10
|
+
name: string;
|
|
11
|
+
text: string;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -12,6 +12,7 @@ export declare namespace GetTaskResponse {
|
|
|
12
12
|
completed_at?: string | null;
|
|
13
13
|
created_at?: string | null;
|
|
14
14
|
error?: TaskErrorResponse.Raw | null;
|
|
15
|
+
params?: Record<string, unknown> | null;
|
|
15
16
|
progress?: TaskProgress.Raw | null;
|
|
16
17
|
started_at?: string | null;
|
|
17
18
|
status?: string | null;
|
|
@@ -8,6 +8,7 @@ export const GetTaskResponse = core.serialization.object({
|
|
|
8
8
|
completedAt: core.serialization.property("completed_at", core.serialization.string().optional()),
|
|
9
9
|
createdAt: core.serialization.property("created_at", core.serialization.string().optional()),
|
|
10
10
|
error: TaskErrorResponse.optional(),
|
|
11
|
+
params: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(),
|
|
11
12
|
progress: TaskProgress.optional(),
|
|
12
13
|
startedAt: core.serialization.property("started_at", core.serialization.string().optional()),
|
|
13
14
|
status: core.serialization.string().optional(),
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as serializers from "../index.mjs";
|
|
5
|
+
import * as Zep from "../../api/index.mjs";
|
|
6
|
+
import * as core from "../../core/index.mjs";
|
|
7
|
+
import { CustomInstruction } from "./CustomInstruction.mjs";
|
|
8
|
+
export declare const ListCustomInstructionsResponse: core.serialization.ObjectSchema<serializers.ListCustomInstructionsResponse.Raw, Zep.ListCustomInstructionsResponse>;
|
|
9
|
+
export declare namespace ListCustomInstructionsResponse {
|
|
10
|
+
interface Raw {
|
|
11
|
+
instructions?: CustomInstruction.Raw[] | null;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file was auto-generated by Fern from our API Definition.
|
|
3
|
+
*/
|
|
4
|
+
import * as core from "../../core/index.mjs";
|
|
5
|
+
import { CustomInstruction } from "./CustomInstruction.mjs";
|
|
6
|
+
export const ListCustomInstructionsResponse = core.serialization.object({
|
|
7
|
+
instructions: core.serialization.list(CustomInstruction).optional(),
|
|
8
|
+
});
|
|
@@ -7,4 +7,5 @@ export const MessageListResponse = core.serialization.object({
|
|
|
7
7
|
messages: core.serialization.list(Message).optional(),
|
|
8
8
|
rowCount: core.serialization.property("row_count", core.serialization.number().optional()),
|
|
9
9
|
totalCount: core.serialization.property("total_count", core.serialization.number().optional()),
|
|
10
|
+
userId: core.serialization.property("user_id", core.serialization.string().optional()),
|
|
10
11
|
});
|
|
@@ -3,6 +3,7 @@ export * from "./AddThreadMessagesRequest.mjs";
|
|
|
3
3
|
export * from "./AddThreadMessagesResponse.mjs";
|
|
4
4
|
export * from "./CloneGraphResponse.mjs";
|
|
5
5
|
export * from "./ContextTemplateResponse.mjs";
|
|
6
|
+
export * from "./CustomInstruction.mjs";
|
|
6
7
|
export * from "./EdgeType.mjs";
|
|
7
8
|
export * from "./EntityEdgeSourceTarget.mjs";
|
|
8
9
|
export * from "./EntityProperty.mjs";
|
|
@@ -21,6 +22,7 @@ export * from "./GraphListResponse.mjs";
|
|
|
21
22
|
export * from "./GraphNodesRequest.mjs";
|
|
22
23
|
export * from "./GraphSearchResults.mjs";
|
|
23
24
|
export * from "./ListContextTemplatesResponse.mjs";
|
|
25
|
+
export * from "./ListCustomInstructionsResponse.mjs";
|
|
24
26
|
export * from "./ListUserInstructionsResponse.mjs";
|
|
25
27
|
export * from "./ProjectInfo.mjs";
|
|
26
28
|
export * from "./ProjectInfoResponse.mjs";
|
|
@@ -3,6 +3,7 @@ export * from "./AddThreadMessagesRequest.mjs";
|
|
|
3
3
|
export * from "./AddThreadMessagesResponse.mjs";
|
|
4
4
|
export * from "./CloneGraphResponse.mjs";
|
|
5
5
|
export * from "./ContextTemplateResponse.mjs";
|
|
6
|
+
export * from "./CustomInstruction.mjs";
|
|
6
7
|
export * from "./EdgeType.mjs";
|
|
7
8
|
export * from "./EntityEdgeSourceTarget.mjs";
|
|
8
9
|
export * from "./EntityProperty.mjs";
|
|
@@ -21,6 +22,7 @@ export * from "./GraphListResponse.mjs";
|
|
|
21
22
|
export * from "./GraphNodesRequest.mjs";
|
|
22
23
|
export * from "./GraphSearchResults.mjs";
|
|
23
24
|
export * from "./ListContextTemplatesResponse.mjs";
|
|
25
|
+
export * from "./ListCustomInstructionsResponse.mjs";
|
|
24
26
|
export * from "./ListUserInstructionsResponse.mjs";
|
|
25
27
|
export * from "./ProjectInfo.mjs";
|
|
26
28
|
export * from "./ProjectInfoResponse.mjs";
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "3.
|
|
1
|
+
export declare const SDK_VERSION = "3.16.0";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "3.
|
|
1
|
+
export const SDK_VERSION = "3.16.0";
|
package/package.json
CHANGED
package/reference.md
CHANGED
|
@@ -324,6 +324,205 @@ await client.context.deleteContextTemplate("template_id");
|
|
|
324
324
|
|
|
325
325
|
## Graph
|
|
326
326
|
|
|
327
|
+
<details><summary><code>client.graph.<a href="/src/api/resources/graph/client/Client.ts">listCustomInstructions</a>({ ...params }) -> Zep.ListCustomInstructionsResponse</code></summary>
|
|
328
|
+
<dl>
|
|
329
|
+
<dd>
|
|
330
|
+
|
|
331
|
+
#### 📝 Description
|
|
332
|
+
|
|
333
|
+
<dl>
|
|
334
|
+
<dd>
|
|
335
|
+
|
|
336
|
+
<dl>
|
|
337
|
+
<dd>
|
|
338
|
+
|
|
339
|
+
Lists all custom instructions for a project, user, or graph.
|
|
340
|
+
|
|
341
|
+
</dd>
|
|
342
|
+
</dl>
|
|
343
|
+
</dd>
|
|
344
|
+
</dl>
|
|
345
|
+
|
|
346
|
+
#### 🔌 Usage
|
|
347
|
+
|
|
348
|
+
<dl>
|
|
349
|
+
<dd>
|
|
350
|
+
|
|
351
|
+
<dl>
|
|
352
|
+
<dd>
|
|
353
|
+
|
|
354
|
+
```typescript
|
|
355
|
+
await client.graph.listCustomInstructions({
|
|
356
|
+
userId: "user_id",
|
|
357
|
+
graphId: "graph_id",
|
|
358
|
+
});
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
</dd>
|
|
362
|
+
</dl>
|
|
363
|
+
</dd>
|
|
364
|
+
</dl>
|
|
365
|
+
|
|
366
|
+
#### ⚙️ Parameters
|
|
367
|
+
|
|
368
|
+
<dl>
|
|
369
|
+
<dd>
|
|
370
|
+
|
|
371
|
+
<dl>
|
|
372
|
+
<dd>
|
|
373
|
+
|
|
374
|
+
**request:** `Zep.GraphListCustomInstructionsRequest`
|
|
375
|
+
|
|
376
|
+
</dd>
|
|
377
|
+
</dl>
|
|
378
|
+
|
|
379
|
+
<dl>
|
|
380
|
+
<dd>
|
|
381
|
+
|
|
382
|
+
**requestOptions:** `Graph.RequestOptions`
|
|
383
|
+
|
|
384
|
+
</dd>
|
|
385
|
+
</dl>
|
|
386
|
+
</dd>
|
|
387
|
+
</dl>
|
|
388
|
+
|
|
389
|
+
</dd>
|
|
390
|
+
</dl>
|
|
391
|
+
</details>
|
|
392
|
+
|
|
393
|
+
<details><summary><code>client.graph.<a href="/src/api/resources/graph/client/Client.ts">addCustomInstructions</a>({ ...params }) -> Zep.SuccessResponse</code></summary>
|
|
394
|
+
<dl>
|
|
395
|
+
<dd>
|
|
396
|
+
|
|
397
|
+
#### 📝 Description
|
|
398
|
+
|
|
399
|
+
<dl>
|
|
400
|
+
<dd>
|
|
401
|
+
|
|
402
|
+
<dl>
|
|
403
|
+
<dd>
|
|
404
|
+
|
|
405
|
+
Adds new custom instructions for graphs without removing existing ones. If user_ids or graph_ids is empty, adds to project-wide default instructions.
|
|
406
|
+
|
|
407
|
+
</dd>
|
|
408
|
+
</dl>
|
|
409
|
+
</dd>
|
|
410
|
+
</dl>
|
|
411
|
+
|
|
412
|
+
#### 🔌 Usage
|
|
413
|
+
|
|
414
|
+
<dl>
|
|
415
|
+
<dd>
|
|
416
|
+
|
|
417
|
+
<dl>
|
|
418
|
+
<dd>
|
|
419
|
+
|
|
420
|
+
```typescript
|
|
421
|
+
await client.graph.addCustomInstructions({
|
|
422
|
+
instructions: [
|
|
423
|
+
{
|
|
424
|
+
name: "name",
|
|
425
|
+
text: "text",
|
|
426
|
+
},
|
|
427
|
+
],
|
|
428
|
+
});
|
|
429
|
+
```
|
|
430
|
+
|
|
431
|
+
</dd>
|
|
432
|
+
</dl>
|
|
433
|
+
</dd>
|
|
434
|
+
</dl>
|
|
435
|
+
|
|
436
|
+
#### ⚙️ Parameters
|
|
437
|
+
|
|
438
|
+
<dl>
|
|
439
|
+
<dd>
|
|
440
|
+
|
|
441
|
+
<dl>
|
|
442
|
+
<dd>
|
|
443
|
+
|
|
444
|
+
**request:** `Zep.AddCustomInstructionsRequest`
|
|
445
|
+
|
|
446
|
+
</dd>
|
|
447
|
+
</dl>
|
|
448
|
+
|
|
449
|
+
<dl>
|
|
450
|
+
<dd>
|
|
451
|
+
|
|
452
|
+
**requestOptions:** `Graph.RequestOptions`
|
|
453
|
+
|
|
454
|
+
</dd>
|
|
455
|
+
</dl>
|
|
456
|
+
</dd>
|
|
457
|
+
</dl>
|
|
458
|
+
|
|
459
|
+
</dd>
|
|
460
|
+
</dl>
|
|
461
|
+
</details>
|
|
462
|
+
|
|
463
|
+
<details><summary><code>client.graph.<a href="/src/api/resources/graph/client/Client.ts">deleteCustomInstructions</a>({ ...params }) -> Zep.SuccessResponse</code></summary>
|
|
464
|
+
<dl>
|
|
465
|
+
<dd>
|
|
466
|
+
|
|
467
|
+
#### 📝 Description
|
|
468
|
+
|
|
469
|
+
<dl>
|
|
470
|
+
<dd>
|
|
471
|
+
|
|
472
|
+
<dl>
|
|
473
|
+
<dd>
|
|
474
|
+
|
|
475
|
+
Deletes custom instructions for graphs or project wide defaults.
|
|
476
|
+
|
|
477
|
+
</dd>
|
|
478
|
+
</dl>
|
|
479
|
+
</dd>
|
|
480
|
+
</dl>
|
|
481
|
+
|
|
482
|
+
#### 🔌 Usage
|
|
483
|
+
|
|
484
|
+
<dl>
|
|
485
|
+
<dd>
|
|
486
|
+
|
|
487
|
+
<dl>
|
|
488
|
+
<dd>
|
|
489
|
+
|
|
490
|
+
```typescript
|
|
491
|
+
await client.graph.deleteCustomInstructions();
|
|
492
|
+
```
|
|
493
|
+
|
|
494
|
+
</dd>
|
|
495
|
+
</dl>
|
|
496
|
+
</dd>
|
|
497
|
+
</dl>
|
|
498
|
+
|
|
499
|
+
#### ⚙️ Parameters
|
|
500
|
+
|
|
501
|
+
<dl>
|
|
502
|
+
<dd>
|
|
503
|
+
|
|
504
|
+
<dl>
|
|
505
|
+
<dd>
|
|
506
|
+
|
|
507
|
+
**request:** `Zep.DeleteCustomInstructionsRequest`
|
|
508
|
+
|
|
509
|
+
</dd>
|
|
510
|
+
</dl>
|
|
511
|
+
|
|
512
|
+
<dl>
|
|
513
|
+
<dd>
|
|
514
|
+
|
|
515
|
+
**requestOptions:** `Graph.RequestOptions`
|
|
516
|
+
|
|
517
|
+
</dd>
|
|
518
|
+
</dl>
|
|
519
|
+
</dd>
|
|
520
|
+
</dl>
|
|
521
|
+
|
|
522
|
+
</dd>
|
|
523
|
+
</dl>
|
|
524
|
+
</details>
|
|
525
|
+
|
|
327
526
|
<details><summary><code>client.graph.<a href="/src/api/resources/graph/client/Client.ts">listEntityTypes</a>({ ...params }) -> Zep.EntityTypeResponse</code></summary>
|
|
328
527
|
<dl>
|
|
329
528
|
<dd>
|