@orq-ai/node 4.14.0-rc.19 → 4.14.0-rc.20
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/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/evaluatorresponsefunction.js +2 -2
- package/models/components/evaluatorresponsehttp.js +2 -2
- package/models/components/evaluatorresponsejsonschema.js +2 -2
- package/models/components/evaluatorresponsellm.js +2 -2
- package/models/components/evaluatorresponsepython.js +2 -2
- package/models/components/evaluatorresponseragas.js +2 -2
- package/models/components/evaluatorresponsetypescript.js +2 -2
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createagentrequest.d.ts +1 -1
- package/models/operations/createannotationqueue.js +1 -1
- package/models/operations/createdataset.d.ts +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +5 -5
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createknowledge.d.ts +4 -4
- package/models/operations/creatememorystore.d.ts +1 -1
- package/models/operations/createprompt.d.ts +1 -1
- package/models/operations/createtool.d.ts +42 -297
- package/models/operations/createtool.d.ts.map +1 -1
- package/models/operations/createtool.js +35 -206
- package/models/operations/createtool.js.map +1 -1
- package/models/operations/getalltools.d.ts +21 -157
- package/models/operations/getalltools.d.ts.map +1 -1
- package/models/operations/getalltools.js +18 -123
- package/models/operations/getalltools.js.map +1 -1
- package/models/operations/geteval.js +16 -16
- package/models/operations/getoneknowledge.d.ts +2 -2
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listagents.d.ts +1 -1
- package/models/operations/listannotationqueues.js +1 -1
- package/models/operations/listdatasetdatapoints.js +5 -5
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listknowledgebases.d.ts +2 -2
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +4 -4
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrieveagentrequest.d.ts +1 -1
- package/models/operations/retrieveannotationqueue.js +1 -1
- package/models/operations/retrievedatapoint.js +5 -5
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrievetool.d.ts +20 -156
- package/models/operations/retrievetool.d.ts.map +1 -1
- package/models/operations/retrievetool.js +19 -125
- package/models/operations/retrievetool.js.map +1 -1
- package/models/operations/runagent.d.ts +1 -1
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.d.ts +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updateagent.d.ts +2 -2
- package/models/operations/updateannotationqueue.js +1 -1
- package/models/operations/updatedatapoint.js +5 -5
- package/models/operations/updatedataset.d.ts +1 -1
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateknowledge.d.ts +4 -4
- package/models/operations/updateprompt.d.ts +1 -1
- package/models/operations/updatetool.d.ts +43 -355
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +35 -249
- package/models/operations/updatetool.js.map +1 -1
- package/package.json +7 -7
- package/src/lib/config.ts +3 -3
- package/src/models/components/evaluatorresponsefunction.ts +2 -2
- package/src/models/components/evaluatorresponsehttp.ts +2 -2
- package/src/models/components/evaluatorresponsejsonschema.ts +2 -2
- package/src/models/components/evaluatorresponsellm.ts +2 -2
- package/src/models/components/evaluatorresponsepython.ts +2 -2
- package/src/models/components/evaluatorresponseragas.ts +2 -2
- package/src/models/components/evaluatorresponsetypescript.ts +2 -2
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createagentrequest.ts +1 -1
- package/src/models/operations/createannotationqueue.ts +1 -1
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +5 -5
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createknowledge.ts +4 -4
- package/src/models/operations/creatememorystore.ts +1 -1
- package/src/models/operations/createprompt.ts +1 -1
- package/src/models/operations/createtool.ts +75 -550
- package/src/models/operations/getalltools.ts +41 -327
- package/src/models/operations/geteval.ts +16 -16
- package/src/models/operations/getoneknowledge.ts +2 -2
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listagents.ts +1 -1
- package/src/models/operations/listannotationqueues.ts +1 -1
- package/src/models/operations/listdatasetdatapoints.ts +5 -5
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listknowledgebases.ts +2 -2
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +4 -4
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrieveagentrequest.ts +1 -1
- package/src/models/operations/retrieveannotationqueue.ts +1 -1
- package/src/models/operations/retrievedatapoint.ts +5 -5
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrievetool.ts +42 -336
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updateagent.ts +2 -2
- package/src/models/operations/updateannotationqueue.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +5 -5
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateknowledge.ts +4 -4
- package/src/models/operations/updateprompt.ts +1 -1
- package/src/models/operations/updatetool.ts +78 -674
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
31
31
|
export declare const SDK_METADATA: {
|
|
32
32
|
readonly language: "typescript";
|
|
33
33
|
readonly openapiDocVersion: "2.0";
|
|
34
|
-
readonly sdkVersion: "4.14.0-rc.
|
|
35
|
-
readonly genVersion: "2.
|
|
36
|
-
readonly userAgent: "speakeasy-sdk/typescript 4.14.0-rc.
|
|
34
|
+
readonly sdkVersion: "4.14.0-rc.20";
|
|
35
|
+
readonly genVersion: "2.930.0";
|
|
36
|
+
readonly userAgent: "speakeasy-sdk/typescript 4.14.0-rc.20 2.930.0 2.0 @orq-ai/node";
|
|
37
37
|
};
|
|
38
38
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -28,8 +28,8 @@ function serverURLFromOptions(options) {
|
|
|
28
28
|
exports.SDK_METADATA = {
|
|
29
29
|
language: "typescript",
|
|
30
30
|
openapiDocVersion: "2.0",
|
|
31
|
-
sdkVersion: "4.14.0-rc.
|
|
32
|
-
genVersion: "2.
|
|
33
|
-
userAgent: "speakeasy-sdk/typescript 4.14.0-rc.
|
|
31
|
+
sdkVersion: "4.14.0-rc.20",
|
|
32
|
+
genVersion: "2.930.0",
|
|
33
|
+
userAgent: "speakeasy-sdk/typescript 4.14.0-rc.20 2.930.0 2.0 @orq-ai/node",
|
|
34
34
|
};
|
|
35
35
|
//# sourceMappingURL=config.js.map
|
|
@@ -366,8 +366,8 @@ function functionParamsFromJSON(jsonString) {
|
|
|
366
366
|
exports.EvaluatorResponseFunction$inboundSchema = z.object({
|
|
367
367
|
_id: z.string(),
|
|
368
368
|
description: z.string(),
|
|
369
|
-
created: z.string().default("2026-08-
|
|
370
|
-
updated: z.string().default("2026-08-
|
|
369
|
+
created: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
370
|
+
updated: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
371
371
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
372
372
|
project_id: z.string().optional(),
|
|
373
373
|
guardrail_config: z.any().optional(),
|
|
@@ -52,8 +52,8 @@ exports.Method$inboundSchema = z
|
|
|
52
52
|
exports.EvaluatorResponseHttp$inboundSchema = z.object({
|
|
53
53
|
_id: z.string(),
|
|
54
54
|
description: z.string(),
|
|
55
|
-
created: z.string().default("2026-08-
|
|
56
|
-
updated: z.string().default("2026-08-
|
|
55
|
+
created: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
56
|
+
updated: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
57
57
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
58
58
|
project_id: z.string().optional(),
|
|
59
59
|
guardrail_config: z.any().optional(),
|
|
@@ -45,8 +45,8 @@ const schemas_js_1 = require("../../lib/schemas.js");
|
|
|
45
45
|
exports.EvaluatorResponseJsonSchema$inboundSchema = z.object({
|
|
46
46
|
_id: z.string(),
|
|
47
47
|
description: z.string(),
|
|
48
|
-
created: z.string().default("2026-08-
|
|
49
|
-
updated: z.string().default("2026-08-
|
|
48
|
+
created: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
49
|
+
updated: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
50
50
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
51
51
|
project_id: z.string().optional(),
|
|
52
52
|
guardrail_config: z.any().optional(),
|
|
@@ -150,8 +150,8 @@ function juryFromJSON(jsonString) {
|
|
|
150
150
|
exports.EvaluatorResponseLlm$inboundSchema = z.object({
|
|
151
151
|
_id: z.string(),
|
|
152
152
|
description: z.string(),
|
|
153
|
-
created: z.string().default("2026-08-
|
|
154
|
-
updated: z.string().default("2026-08-
|
|
153
|
+
created: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
154
|
+
updated: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
155
155
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
156
156
|
project_id: z.string().optional(),
|
|
157
157
|
guardrail_config: z.any().optional(),
|
|
@@ -45,8 +45,8 @@ const schemas_js_1 = require("../../lib/schemas.js");
|
|
|
45
45
|
exports.EvaluatorResponsePython$inboundSchema = z.object({
|
|
46
46
|
_id: z.string(),
|
|
47
47
|
description: z.string(),
|
|
48
|
-
created: z.string().default("2026-08-
|
|
49
|
-
updated: z.string().default("2026-08-
|
|
48
|
+
created: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
49
|
+
updated: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
50
50
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
51
51
|
project_id: z.string().optional(),
|
|
52
52
|
guardrail_config: z.any().optional(),
|
|
@@ -62,8 +62,8 @@ exports.RagasMetric$inboundSchema = z
|
|
|
62
62
|
exports.EvaluatorResponseRagas$inboundSchema = z.object({
|
|
63
63
|
_id: z.string(),
|
|
64
64
|
description: z.string(),
|
|
65
|
-
created: z.string().default("2026-08-
|
|
66
|
-
updated: z.string().default("2026-08-
|
|
65
|
+
created: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
66
|
+
updated: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
67
67
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
68
68
|
project_id: z.string().optional(),
|
|
69
69
|
guardrail_config: z.any().optional(),
|
|
@@ -45,8 +45,8 @@ const schemas_js_1 = require("../../lib/schemas.js");
|
|
|
45
45
|
exports.EvaluatorResponseTypescript$inboundSchema = z.object({
|
|
46
46
|
_id: z.string(),
|
|
47
47
|
description: z.string(),
|
|
48
|
-
created: z.string().default("2026-08-
|
|
49
|
-
updated: z.string().default("2026-08-
|
|
48
|
+
created: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
49
|
+
updated: z.string().default("2026-08-17T04:12:28.242Z"),
|
|
50
50
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
51
51
|
project_id: z.string().optional(),
|
|
52
52
|
guardrail_config: z.any().optional(),
|
|
@@ -43,7 +43,7 @@ const primitives_js_1 = require("../../lib/primitives.js");
|
|
|
43
43
|
const schemas_js_1 = require("../../lib/schemas.js");
|
|
44
44
|
/** @internal */
|
|
45
45
|
exports.ReasoningPart$inboundSchema = z.object({
|
|
46
|
-
_id: z.string().default("
|
|
46
|
+
_id: z.string().default("reasoning_01m06yqwa33vcts5x16ksvtmzr"),
|
|
47
47
|
metadata: z.record(z.any()).optional(),
|
|
48
48
|
kind: z.literal("reasoning"),
|
|
49
49
|
reasoning: z.string(),
|
|
@@ -2066,7 +2066,7 @@ export type CreateAgentRequestResponseBody = {
|
|
|
2066
2066
|
*
|
|
2067
2067
|
* @remarks
|
|
2068
2068
|
*
|
|
2069
|
-
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element
|
|
2069
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element must be the display name of an existing project, followed by nested folders (auto-created as needed). Example: `Default Project/agents`.
|
|
2070
2070
|
*
|
|
2071
2071
|
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
2072
2072
|
*/
|
|
@@ -81,7 +81,7 @@ exports.CreateAnnotationQueueResponseBody$inboundSchema = z.object({
|
|
|
81
81
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
82
82
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
83
83
|
.optional(),
|
|
84
|
-
updated: z.string().datetime({ offset: true }).default("2026-08-
|
|
84
|
+
updated: z.string().datetime({ offset: true }).default("2026-08-17T04:12:25.936Z").transform(v => new Date(v)),
|
|
85
85
|
}).transform((v) => {
|
|
86
86
|
return (0, primitives_js_1.remap)(v, {
|
|
87
87
|
"_id": "id",
|
|
@@ -11,7 +11,7 @@ export type CreateDatasetRequestBody = {
|
|
|
11
11
|
*
|
|
12
12
|
* @remarks
|
|
13
13
|
*
|
|
14
|
-
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element
|
|
14
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element must be the display name of an existing project, followed by nested folders (auto-created as needed). Example: `Default Project/agents`.
|
|
15
15
|
*
|
|
16
16
|
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
17
17
|
*/
|
|
@@ -79,7 +79,7 @@ exports.CreateDatasetResponseBody$inboundSchema = z.object({
|
|
|
79
79
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
80
80
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
81
81
|
.optional(),
|
|
82
|
-
updated: z.string().datetime({ offset: true }).default("2026-08-
|
|
82
|
+
updated: z.string().datetime({ offset: true }).default("2026-08-17T04:12:25.936Z").transform(v => new Date(v)),
|
|
83
83
|
}).transform((v) => {
|
|
84
84
|
return (0, primitives_js_1.remap)(v, {
|
|
85
85
|
"_id": "id",
|
|
@@ -859,7 +859,7 @@ exports.Evaluations4$inboundSchema = z.object({
|
|
|
859
859
|
parent_annotation_id: z.string().optional(),
|
|
860
860
|
explanation: z.string().optional(),
|
|
861
861
|
reviewed_by_id: z.string(),
|
|
862
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-08-
|
|
862
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-08-17T04:12:42.205Z").transform(v => new Date(v)),
|
|
863
863
|
type: z.literal("string_array"),
|
|
864
864
|
values: z.array(z.string()),
|
|
865
865
|
}).transform((v) => {
|
|
@@ -912,7 +912,7 @@ exports.Evaluations3$inboundSchema = z.object({
|
|
|
912
912
|
parent_annotation_id: z.string().optional(),
|
|
913
913
|
explanation: z.string().optional(),
|
|
914
914
|
reviewed_by_id: z.string(),
|
|
915
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-08-
|
|
915
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-08-17T04:12:42.204Z").transform(v => new Date(v)),
|
|
916
916
|
type: z.literal("boolean"),
|
|
917
917
|
value: z.boolean(),
|
|
918
918
|
}).transform((v) => {
|
|
@@ -959,7 +959,7 @@ exports.Evaluations2$inboundSchema = z.object({
|
|
|
959
959
|
parent_annotation_id: z.string().optional(),
|
|
960
960
|
explanation: z.string().optional(),
|
|
961
961
|
reviewed_by_id: z.string(),
|
|
962
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-08-
|
|
962
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-08-17T04:12:42.204Z").transform(v => new Date(v)),
|
|
963
963
|
type: z.literal("number"),
|
|
964
964
|
value: z.number(),
|
|
965
965
|
}).transform((v) => {
|
|
@@ -1006,7 +1006,7 @@ exports.Evaluations1$inboundSchema = z.object({
|
|
|
1006
1006
|
parent_annotation_id: z.string().optional(),
|
|
1007
1007
|
explanation: z.string().optional(),
|
|
1008
1008
|
reviewed_by_id: z.string(),
|
|
1009
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-08-
|
|
1009
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-08-17T04:12:42.203Z").transform(v => new Date(v)),
|
|
1010
1010
|
type: z.literal("string"),
|
|
1011
1011
|
value: z.string(),
|
|
1012
1012
|
}).transform((v) => {
|
|
@@ -1057,7 +1057,7 @@ exports.CreateDatasetItemResponseBody$inboundSchema = z.object({
|
|
|
1057
1057
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1058
1058
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1059
1059
|
.optional(),
|
|
1060
|
-
updated: z.string().datetime({ offset: true }).default("2026-08-
|
|
1060
|
+
updated: z.string().datetime({ offset: true }).default("2026-08-17T04:12:25.936Z").transform(v => new Date(v)),
|
|
1061
1061
|
}).transform((v) => {
|
|
1062
1062
|
return (0, primitives_js_1.remap)(v, {
|
|
1063
1063
|
"_id": "id",
|
|
@@ -182,7 +182,7 @@ function createDatasourceMetadataFromJSON(jsonString) {
|
|
|
182
182
|
}
|
|
183
183
|
/** @internal */
|
|
184
184
|
exports.CreateDatasourceResponseBody$inboundSchema = z.object({
|
|
185
|
-
_id: z.string().default("
|
|
185
|
+
_id: z.string().default("01M06YQWREKCT6WHK61RAY7GXG"),
|
|
186
186
|
display_name: z.string(),
|
|
187
187
|
description: z.nullable(z.string()).optional(),
|
|
188
188
|
status: exports.CreateDatasourceStatus$inboundSchema,
|
|
@@ -81,7 +81,7 @@ export type RequestBody2 = {
|
|
|
81
81
|
*
|
|
82
82
|
* @remarks
|
|
83
83
|
*
|
|
84
|
-
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element
|
|
84
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element must be the display name of an existing project, followed by nested folders (auto-created as needed). Example: `Default Project/agents`.
|
|
85
85
|
*
|
|
86
86
|
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
87
87
|
*/
|
|
@@ -171,7 +171,7 @@ export type CreateKnowledgeRequestBody1 = {
|
|
|
171
171
|
*
|
|
172
172
|
* @remarks
|
|
173
173
|
*
|
|
174
|
-
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element
|
|
174
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element must be the display name of an existing project, followed by nested folders (auto-created as needed). Example: `Default Project/agents`.
|
|
175
175
|
*
|
|
176
176
|
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
177
177
|
*/
|
|
@@ -265,7 +265,7 @@ export type ResponseBody2 = {
|
|
|
265
265
|
*
|
|
266
266
|
* @remarks
|
|
267
267
|
*
|
|
268
|
-
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element
|
|
268
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element must be the display name of an existing project, followed by nested folders (auto-created as needed). Example: `Default Project/agents`.
|
|
269
269
|
*
|
|
270
270
|
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
271
271
|
*/
|
|
@@ -376,7 +376,7 @@ export type ResponseBody1 = {
|
|
|
376
376
|
*
|
|
377
377
|
* @remarks
|
|
378
378
|
*
|
|
379
|
-
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element
|
|
379
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element must be the display name of an existing project, followed by nested folders (auto-created as needed). Example: `Default Project/agents`.
|
|
380
380
|
*
|
|
381
381
|
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
382
382
|
*/
|
|
@@ -26,7 +26,7 @@ export type CreateMemoryStoreRequestBody = {
|
|
|
26
26
|
*
|
|
27
27
|
* @remarks
|
|
28
28
|
*
|
|
29
|
-
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element
|
|
29
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element must be the display name of an existing project, followed by nested folders (auto-created as needed). Example: `Default Project/agents`.
|
|
30
30
|
*
|
|
31
31
|
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
32
32
|
*/
|
|
@@ -810,7 +810,7 @@ export type CreatePromptCreatePromptRequest = {
|
|
|
810
810
|
*
|
|
811
811
|
* @remarks
|
|
812
812
|
*
|
|
813
|
-
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element
|
|
813
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element must be the display name of an existing project, followed by nested folders (auto-created as needed). Example: `Default Project/agents`.
|
|
814
814
|
*
|
|
815
815
|
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
816
816
|
*/
|