@orq-ai/node 4.9.16 → 4.9.18
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/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +6 -6
- package/packages/orq-rc/src/funcs/identitiesCreate.ts +10 -15
- package/packages/orq-rc/src/funcs/identitiesDelete.ts +7 -16
- package/packages/orq-rc/src/funcs/identitiesList.ts +6 -5
- package/packages/orq-rc/src/funcs/identitiesRetrieve.ts +6 -18
- package/packages/orq-rc/src/funcs/identitiesUpdate.ts +9 -15
- package/packages/orq-rc/src/funcs/{remoteconfigsRetrieve.ts → modelsList.ts} +14 -33
- package/packages/orq-rc/src/funcs/projectsCreate.ts +1 -1
- package/packages/orq-rc/src/funcs/projectsDelete.ts +3 -0
- package/packages/orq-rc/src/funcs/projectsList.ts +1 -1
- package/packages/orq-rc/src/funcs/{contactsCreate.ts → reportingQuery.ts} +13 -13
- package/packages/orq-rc/src/funcs/skillsCreate.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsDelete.ts +3 -0
- package/packages/orq-rc/src/funcs/skillsGet.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsList.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsUpdate.ts +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/models/components/createidentityrequest.ts +76 -0
- package/packages/orq-rc/src/models/components/createidentityresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/createprojectrequest.ts +6 -0
- package/packages/orq-rc/src/models/components/createprojectresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/createskillrequest.ts +18 -0
- package/packages/orq-rc/src/models/components/createskillresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/datapoint.ts +60 -0
- package/packages/orq-rc/src/models/components/deleteidentityresponse.ts +27 -0
- package/packages/orq-rc/src/models/components/file.ts +0 -3
- package/packages/orq-rc/src/models/components/filter.ts +137 -0
- package/packages/orq-rc/src/models/components/getprojectresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/getskillresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/identity.ts +83 -0
- package/packages/orq-rc/src/models/components/identitymetrics.ts +45 -0
- package/packages/orq-rc/src/models/components/index.ts +16 -0
- package/packages/orq-rc/src/models/components/invokedeploymentrequest.ts +17 -10
- package/packages/orq-rc/src/models/components/listidentitiesresponse.ts +41 -0
- package/packages/orq-rc/src/models/components/listprojectsresponse.ts +12 -0
- package/packages/orq-rc/src/models/components/listskillsresponse.ts +12 -0
- package/packages/orq-rc/src/models/components/modelref.ts +6 -0
- package/packages/orq-rc/src/models/components/project.ts +42 -3
- package/packages/orq-rc/src/models/components/publicmodelentry.ts +70 -0
- package/packages/orq-rc/src/models/components/queryreportrequest.ts +237 -0
- package/packages/orq-rc/src/models/components/queryreportresponse.ts +99 -0
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/components/responsemeta.ts +103 -0
- package/packages/orq-rc/src/models/components/retrieveidentityresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/skill.ts +37 -3
- package/packages/orq-rc/src/models/components/totals.ts +34 -0
- package/packages/orq-rc/src/models/components/updateidentityrequest.ts +75 -0
- package/packages/orq-rc/src/models/components/updateidentityresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/updateprojectrequest.ts +12 -0
- package/packages/orq-rc/src/models/components/updateprojectresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/updateskillrequest.ts +26 -0
- package/packages/orq-rc/src/models/components/updateskillresponse.ts +3 -0
- package/packages/orq-rc/src/models/errors/index.ts +0 -3
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +3 -3
- package/packages/orq-rc/src/models/operations/createannotation.ts +7 -11
- package/packages/orq-rc/src/models/operations/createdataset.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createeval.ts +45 -31
- package/packages/orq-rc/src/models/operations/createknowledge.ts +9 -9
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +3 -3
- package/packages/orq-rc/src/models/operations/createprompt.ts +3 -3
- package/packages/orq-rc/src/models/operations/createtool.ts +36 -36
- package/packages/orq-rc/src/models/operations/deleteidentity.ts +0 -3
- package/packages/orq-rc/src/models/operations/getalltools.ts +21 -21
- package/packages/orq-rc/src/models/operations/getevals.ts +22 -16
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +6 -6
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/index.ts +1 -3
- package/packages/orq-rc/src/models/operations/invokeeval.ts +83 -80
- package/packages/orq-rc/src/models/operations/listagents.ts +3 -3
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listidentities.ts +9 -230
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +6 -6
- package/packages/orq-rc/src/models/operations/listmodels.ts +60 -0
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/postv2agentsa2a.ts +14 -17
- package/packages/orq-rc/src/models/operations/postv2feedback.ts +34 -27
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/packages/orq-rc/src/models/operations/postv2feedbackremove.ts +14 -17
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/projectdelete.ts +3 -0
- package/packages/orq-rc/src/models/operations/projectget.ts +3 -0
- package/packages/orq-rc/src/models/operations/projectlist.ts +15 -0
- package/packages/orq-rc/src/models/operations/projectupdate.ts +3 -0
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +3 -3
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +3 -138
- package/packages/orq-rc/src/models/operations/retrievetool.ts +21 -21
- package/packages/orq-rc/src/models/operations/runagent.ts +4 -4
- package/packages/orq-rc/src/models/operations/skilldelete.ts +3 -0
- package/packages/orq-rc/src/models/operations/skilllist.ts +12 -0
- package/packages/orq-rc/src/models/operations/skillupdate.ts +3 -0
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +4 -4
- package/packages/orq-rc/src/models/operations/updateagent.ts +6 -6
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +30 -23
- package/packages/orq-rc/src/models/operations/updateidentity.ts +5 -154
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +12 -12
- package/packages/orq-rc/src/models/operations/updateprompt.ts +3 -3
- package/packages/orq-rc/src/models/operations/updatetool.ts +37 -37
- package/packages/orq-rc/src/sdk/feedback.ts +8 -8
- package/packages/orq-rc/src/sdk/identities.ts +18 -17
- package/packages/orq-rc/src/sdk/models.ts +25 -0
- package/packages/orq-rc/src/sdk/projects.ts +5 -2
- package/packages/orq-rc/src/sdk/reporting.ts +27 -0
- package/packages/orq-rc/src/sdk/sdk.ts +22 -22
- package/packages/orq-rc/src/sdk/skills.ts +7 -4
- package/packages/orq-rc/src/types/async.ts +8 -7
- package/src/lib/config.ts +3 -3
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
- package/src/types/async.ts +8 -7
- package/types/async.d.ts.map +1 -1
- package/types/async.js +8 -7
- package/types/async.js.map +1 -1
- package/packages/orq-rc/src/models/errors/deleteidentity.ts +0 -62
- package/packages/orq-rc/src/models/errors/retrieveidentity.ts +0 -118
- package/packages/orq-rc/src/models/errors/updateidentity.ts +0 -54
- package/packages/orq-rc/src/models/operations/createcontact.ts +0 -156
- package/packages/orq-rc/src/models/operations/createidentity.ts +0 -162
- package/packages/orq-rc/src/models/operations/remoteconfigsgetconfig.ts +0 -108
- package/packages/orq-rc/src/sdk/contacts.ts +0 -27
- package/packages/orq-rc/src/sdk/remoteconfigs.ts +0 -24
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
|
+
|
|
8
|
+
export type UpdateIdentityRequestMetadata = {};
|
|
9
|
+
|
|
10
|
+
export type UpdateIdentityRequest = {
|
|
11
|
+
id?: string | undefined;
|
|
12
|
+
displayName?: string | undefined;
|
|
13
|
+
email?: string | undefined;
|
|
14
|
+
avatarUrl?: string | undefined;
|
|
15
|
+
tags?: Array<string> | undefined;
|
|
16
|
+
metadata?: UpdateIdentityRequestMetadata | undefined;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
/** @internal */
|
|
20
|
+
export type UpdateIdentityRequestMetadata$Outbound = {};
|
|
21
|
+
|
|
22
|
+
/** @internal */
|
|
23
|
+
export const UpdateIdentityRequestMetadata$outboundSchema: z.ZodType<
|
|
24
|
+
UpdateIdentityRequestMetadata$Outbound,
|
|
25
|
+
z.ZodTypeDef,
|
|
26
|
+
UpdateIdentityRequestMetadata
|
|
27
|
+
> = z.object({});
|
|
28
|
+
|
|
29
|
+
export function updateIdentityRequestMetadataToJSON(
|
|
30
|
+
updateIdentityRequestMetadata: UpdateIdentityRequestMetadata,
|
|
31
|
+
): string {
|
|
32
|
+
return JSON.stringify(
|
|
33
|
+
UpdateIdentityRequestMetadata$outboundSchema.parse(
|
|
34
|
+
updateIdentityRequestMetadata,
|
|
35
|
+
),
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/** @internal */
|
|
40
|
+
export type UpdateIdentityRequest$Outbound = {
|
|
41
|
+
id?: string | undefined;
|
|
42
|
+
display_name?: string | undefined;
|
|
43
|
+
email?: string | undefined;
|
|
44
|
+
avatar_url?: string | undefined;
|
|
45
|
+
tags?: Array<string> | undefined;
|
|
46
|
+
metadata?: UpdateIdentityRequestMetadata$Outbound | undefined;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
/** @internal */
|
|
50
|
+
export const UpdateIdentityRequest$outboundSchema: z.ZodType<
|
|
51
|
+
UpdateIdentityRequest$Outbound,
|
|
52
|
+
z.ZodTypeDef,
|
|
53
|
+
UpdateIdentityRequest
|
|
54
|
+
> = z.object({
|
|
55
|
+
id: z.string().optional(),
|
|
56
|
+
displayName: z.string().optional(),
|
|
57
|
+
email: z.string().optional(),
|
|
58
|
+
avatarUrl: z.string().optional(),
|
|
59
|
+
tags: z.array(z.string()).optional(),
|
|
60
|
+
metadata: z.lazy(() => UpdateIdentityRequestMetadata$outboundSchema)
|
|
61
|
+
.optional(),
|
|
62
|
+
}).transform((v) => {
|
|
63
|
+
return remap$(v, {
|
|
64
|
+
displayName: "display_name",
|
|
65
|
+
avatarUrl: "avatar_url",
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
|
|
69
|
+
export function updateIdentityRequestToJSON(
|
|
70
|
+
updateIdentityRequest: UpdateIdentityRequest,
|
|
71
|
+
): string {
|
|
72
|
+
return JSON.stringify(
|
|
73
|
+
UpdateIdentityRequest$outboundSchema.parse(updateIdentityRequest),
|
|
74
|
+
);
|
|
75
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
7
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
8
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
9
|
+
import { Identity, Identity$inboundSchema } from "./identity.js";
|
|
10
|
+
|
|
11
|
+
export type UpdateIdentityResponse = {
|
|
12
|
+
identity?: Identity | undefined;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
/** @internal */
|
|
16
|
+
export const UpdateIdentityResponse$inboundSchema: z.ZodType<
|
|
17
|
+
UpdateIdentityResponse,
|
|
18
|
+
z.ZodTypeDef,
|
|
19
|
+
unknown
|
|
20
|
+
> = z.object({
|
|
21
|
+
identity: Identity$inboundSchema.optional(),
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
export function updateIdentityResponseFromJSON(
|
|
25
|
+
jsonString: string,
|
|
26
|
+
): SafeParseResult<UpdateIdentityResponse, SDKValidationError> {
|
|
27
|
+
return safeParse(
|
|
28
|
+
jsonString,
|
|
29
|
+
(x) => UpdateIdentityResponse$inboundSchema.parse(JSON.parse(x)),
|
|
30
|
+
`Failed to parse 'UpdateIdentityResponse' from JSON`,
|
|
31
|
+
);
|
|
32
|
+
}
|
|
@@ -6,8 +6,20 @@ import * as z from "zod/v3";
|
|
|
6
6
|
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
7
|
|
|
8
8
|
export type UpdateProjectRequest = {
|
|
9
|
+
/**
|
|
10
|
+
* Project ID to update.
|
|
11
|
+
*/
|
|
9
12
|
projectId?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* New project name. Omit to keep the current name.
|
|
15
|
+
*/
|
|
10
16
|
name?: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* Replacement list of team identifiers associated with the project.
|
|
19
|
+
*
|
|
20
|
+
* @remarks
|
|
21
|
+
* Leave empty to remove all team associations.
|
|
22
|
+
*/
|
|
11
23
|
teams?: Array<string> | undefined;
|
|
12
24
|
};
|
|
13
25
|
|
|
@@ -6,12 +6,38 @@ import * as z from "zod/v3";
|
|
|
6
6
|
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
7
|
|
|
8
8
|
export type UpdateSkillRequest = {
|
|
9
|
+
/**
|
|
10
|
+
* Skill ID to update.
|
|
11
|
+
*/
|
|
9
12
|
skillId?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* New workspace-unique display name. Omit to keep the current name.
|
|
15
|
+
*
|
|
16
|
+
* @remarks
|
|
17
|
+
* Must start with a letter and may contain letters, numbers, and
|
|
18
|
+
* underscores. Dashes and dots are not allowed because skill names
|
|
19
|
+
* are referenced as template variables.
|
|
20
|
+
*/
|
|
10
21
|
displayName?: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* New description. Omit to keep the current description.
|
|
24
|
+
*/
|
|
11
25
|
description?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* Replacement tag list. Leave empty to clear tags.
|
|
28
|
+
*/
|
|
12
29
|
tags?: Array<string> | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* New project path. Omit to keep the current path.
|
|
32
|
+
*/
|
|
13
33
|
path?: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* New instruction body. Omit to keep the current instructions.
|
|
36
|
+
*/
|
|
14
37
|
instructions?: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* New containing project. Omit to keep the current project.
|
|
40
|
+
*/
|
|
15
41
|
projectId?: string | undefined;
|
|
16
42
|
};
|
|
17
43
|
|
|
@@ -11,7 +11,6 @@ export * from "./createtranslation.js";
|
|
|
11
11
|
export * from "./deleteagent.js";
|
|
12
12
|
export * from "./deleteagentschedule.js";
|
|
13
13
|
export * from "./deleteeval.js";
|
|
14
|
-
export * from "./deleteidentity.js";
|
|
15
14
|
export * from "./deleteprompt.js";
|
|
16
15
|
export * from "./getevals.js";
|
|
17
16
|
export * from "./getpromptversion.js";
|
|
@@ -29,7 +28,6 @@ export * from "./postv2feedbackremove.js";
|
|
|
29
28
|
export * from "./responsevalidationerror.js";
|
|
30
29
|
export * from "./retrieveagentrequest.js";
|
|
31
30
|
export * from "./retrieveagentschedule.js";
|
|
32
|
-
export * from "./retrieveidentity.js";
|
|
33
31
|
export * from "./sdkvalidationerror.js";
|
|
34
32
|
export * from "./streamagent.js";
|
|
35
33
|
export * from "./streamrunagent.js";
|
|
@@ -37,6 +35,5 @@ export * from "./triggeragentschedule.js";
|
|
|
37
35
|
export * from "./updateagent.js";
|
|
38
36
|
export * from "./updateagentschedule.js";
|
|
39
37
|
export * from "./updateeval.js";
|
|
40
|
-
export * from "./updateidentity.js";
|
|
41
38
|
export * from "./updateprompt.js";
|
|
42
39
|
export * from "./updatetool.js";
|
|
@@ -2577,13 +2577,13 @@ export type CreateAgentRequestResponseBody = {
|
|
|
2577
2577
|
*/
|
|
2578
2578
|
version?: string | undefined;
|
|
2579
2579
|
/**
|
|
2580
|
-
* Entity storage path
|
|
2580
|
+
* Entity storage path.
|
|
2581
2581
|
*
|
|
2582
2582
|
* @remarks
|
|
2583
2583
|
*
|
|
2584
|
-
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
2584
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
|
|
2585
2585
|
*
|
|
2586
|
-
* With project-
|
|
2586
|
+
* 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.
|
|
2587
2587
|
*/
|
|
2588
2588
|
path: string;
|
|
2589
2589
|
/**
|
|
@@ -8,7 +8,7 @@ import { remap as remap$ } from "../../lib/primitives.js";
|
|
|
8
8
|
/**
|
|
9
9
|
* The feedback value. For single-select, provide a string or single-element array. For multi-select, provide an array of strings. For range evaluations, provide a number. For text/correction, provide a string.
|
|
10
10
|
*/
|
|
11
|
-
export type
|
|
11
|
+
export type Value = string | number | Array<string>;
|
|
12
12
|
|
|
13
13
|
export type Annotations = {
|
|
14
14
|
/**
|
|
@@ -43,21 +43,17 @@ export type CreateAnnotationRequest = {
|
|
|
43
43
|
};
|
|
44
44
|
|
|
45
45
|
/** @internal */
|
|
46
|
-
export type
|
|
46
|
+
export type Value$Outbound = string | number | Array<string>;
|
|
47
47
|
|
|
48
48
|
/** @internal */
|
|
49
|
-
export const
|
|
50
|
-
|
|
49
|
+
export const Value$outboundSchema: z.ZodType<
|
|
50
|
+
Value$Outbound,
|
|
51
51
|
z.ZodTypeDef,
|
|
52
|
-
|
|
52
|
+
Value
|
|
53
53
|
> = z.union([z.string(), z.number(), z.array(z.string())]);
|
|
54
54
|
|
|
55
|
-
export function
|
|
56
|
-
|
|
57
|
-
): string {
|
|
58
|
-
return JSON.stringify(
|
|
59
|
-
CreateAnnotationValue$outboundSchema.parse(createAnnotationValue),
|
|
60
|
-
);
|
|
55
|
+
export function valueToJSON(value: Value): string {
|
|
56
|
+
return JSON.stringify(Value$outboundSchema.parse(value));
|
|
61
57
|
}
|
|
62
58
|
|
|
63
59
|
/** @internal */
|
|
@@ -14,13 +14,13 @@ export type CreateDatasetRequestBody = {
|
|
|
14
14
|
*/
|
|
15
15
|
displayName: string;
|
|
16
16
|
/**
|
|
17
|
-
* Entity storage path
|
|
17
|
+
* Entity storage path.
|
|
18
18
|
*
|
|
19
19
|
* @remarks
|
|
20
20
|
*
|
|
21
|
-
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
21
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
|
|
22
22
|
*
|
|
23
|
-
* With project-
|
|
23
|
+
* 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.
|
|
24
24
|
*/
|
|
25
25
|
path: string;
|
|
26
26
|
};
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-05-
|
|
141
|
+
"2026-05-22T07:56:18.760Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2355,7 +2355,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2355
2355
|
),
|
|
2356
2356
|
reviewed_by_id: z.string(),
|
|
2357
2357
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2358
|
-
"2026-05-
|
|
2358
|
+
"2026-05-22T07:56:33.241Z",
|
|
2359
2359
|
).transform(v => new Date(v)),
|
|
2360
2360
|
type: z.literal("string_array"),
|
|
2361
2361
|
values: z.array(z.string()),
|
|
@@ -2400,7 +2400,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2400
2400
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
2401
2401
|
reviewed_by_id: z.string(),
|
|
2402
2402
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2403
|
-
"2026-05-
|
|
2403
|
+
"2026-05-22T07:56:33.240Z",
|
|
2404
2404
|
).transform(v => new Date(v)),
|
|
2405
2405
|
type: z.literal("number"),
|
|
2406
2406
|
value: z.number(),
|
|
@@ -2446,7 +2446,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2446
2446
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
2447
2447
|
reviewed_by_id: z.string(),
|
|
2448
2448
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2449
|
-
"2026-05-
|
|
2449
|
+
"2026-05-22T07:56:33.240Z",
|
|
2450
2450
|
).transform(v => new Date(v)),
|
|
2451
2451
|
type: z.literal("string"),
|
|
2452
2452
|
value: z.string(),
|
|
@@ -2529,7 +2529,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2529
2529
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2530
2530
|
.optional(),
|
|
2531
2531
|
updated: z.string().datetime({ offset: true }).default(
|
|
2532
|
-
"2026-05-
|
|
2532
|
+
"2026-05-22T07:56:18.760Z",
|
|
2533
2533
|
).transform(v => new Date(v)),
|
|
2534
2534
|
}).transform((v) => {
|
|
2535
2535
|
return remap$(v, {
|
|
@@ -403,7 +403,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
403
403
|
z.ZodTypeDef,
|
|
404
404
|
unknown
|
|
405
405
|
> = z.object({
|
|
406
|
-
_id: z.string().default("
|
|
406
|
+
_id: z.string().default("01KS7AZ80TWMWJ1JQYV4NFBS6W"),
|
|
407
407
|
display_name: z.string(),
|
|
408
408
|
description: z.string().optional(),
|
|
409
409
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -74,13 +74,13 @@ export type Python = {
|
|
|
74
74
|
code: string;
|
|
75
75
|
type: CreateEvalRequestBodyType;
|
|
76
76
|
/**
|
|
77
|
-
* Entity storage path
|
|
77
|
+
* Entity storage path.
|
|
78
78
|
*
|
|
79
79
|
* @remarks
|
|
80
80
|
*
|
|
81
|
-
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
81
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
|
|
82
82
|
*
|
|
83
|
-
* With project-
|
|
83
|
+
* 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.
|
|
84
84
|
*/
|
|
85
85
|
path: string;
|
|
86
86
|
description?: string | undefined;
|
|
@@ -170,13 +170,13 @@ export type RequestBodyHTTP = {
|
|
|
170
170
|
headers: { [k: string]: string };
|
|
171
171
|
payload: { [k: string]: any };
|
|
172
172
|
/**
|
|
173
|
-
* Entity storage path
|
|
173
|
+
* Entity storage path.
|
|
174
174
|
*
|
|
175
175
|
* @remarks
|
|
176
176
|
*
|
|
177
|
-
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
177
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
|
|
178
178
|
*
|
|
179
|
-
* With project-
|
|
179
|
+
* 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.
|
|
180
180
|
*/
|
|
181
181
|
path: string;
|
|
182
182
|
description?: string | undefined;
|
|
@@ -245,13 +245,13 @@ export type Json = {
|
|
|
245
245
|
type: CreateEvalRequestBodyEvalsType;
|
|
246
246
|
schema: string;
|
|
247
247
|
/**
|
|
248
|
-
* Entity storage path
|
|
248
|
+
* Entity storage path.
|
|
249
249
|
*
|
|
250
250
|
* @remarks
|
|
251
251
|
*
|
|
252
|
-
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
252
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
|
|
253
253
|
*
|
|
254
|
-
* With project-
|
|
254
|
+
* 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.
|
|
255
255
|
*/
|
|
256
256
|
path: string;
|
|
257
257
|
description?: string | undefined;
|
|
@@ -378,14 +378,15 @@ export type Llm2 = {
|
|
|
378
378
|
prompt: string;
|
|
379
379
|
categories?: Array<string> | undefined;
|
|
380
380
|
categoricalLabels?: Array<LLMCategoricalLabels> | undefined;
|
|
381
|
+
datasetId?: string | undefined;
|
|
381
382
|
/**
|
|
382
|
-
* Entity storage path
|
|
383
|
+
* Entity storage path.
|
|
383
384
|
*
|
|
384
385
|
* @remarks
|
|
385
386
|
*
|
|
386
|
-
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
387
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
|
|
387
388
|
*
|
|
388
|
-
* With project-
|
|
389
|
+
* 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.
|
|
389
390
|
*/
|
|
390
391
|
path: string;
|
|
391
392
|
description?: string | undefined;
|
|
@@ -475,14 +476,15 @@ export type Llm1 = {
|
|
|
475
476
|
prompt: string;
|
|
476
477
|
categories?: Array<string> | undefined;
|
|
477
478
|
categoricalLabels?: Array<CreateEvalLLMCategoricalLabels> | undefined;
|
|
479
|
+
datasetId?: string | undefined;
|
|
478
480
|
/**
|
|
479
|
-
* Entity storage path
|
|
481
|
+
* Entity storage path.
|
|
480
482
|
*
|
|
481
483
|
* @remarks
|
|
482
484
|
*
|
|
483
|
-
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
485
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
|
|
484
486
|
*
|
|
485
|
-
* With project-
|
|
487
|
+
* 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.
|
|
486
488
|
*/
|
|
487
489
|
path: string;
|
|
488
490
|
description?: string | undefined;
|
|
@@ -1237,6 +1239,7 @@ export type CreateEvalLlm2 = {
|
|
|
1237
1239
|
prompt: string;
|
|
1238
1240
|
categories?: Array<string> | undefined;
|
|
1239
1241
|
categoricalLabels?: Array<CreateEvalLLMEvalsCategoricalLabels> | undefined;
|
|
1242
|
+
datasetId?: string | undefined;
|
|
1240
1243
|
key: string;
|
|
1241
1244
|
mode: "jury";
|
|
1242
1245
|
jury: CreateEvalLLMJury;
|
|
@@ -1315,6 +1318,7 @@ export type CreateEvalLlm1 = {
|
|
|
1315
1318
|
categoricalLabels?:
|
|
1316
1319
|
| Array<CreateEvalLLMEvalsResponseCategoricalLabels>
|
|
1317
1320
|
| undefined;
|
|
1321
|
+
datasetId?: string | undefined;
|
|
1318
1322
|
key: string;
|
|
1319
1323
|
mode: "single";
|
|
1320
1324
|
model: string;
|
|
@@ -2288,6 +2292,7 @@ export type Llm2$Outbound = {
|
|
|
2288
2292
|
prompt: string;
|
|
2289
2293
|
categories?: Array<string> | undefined;
|
|
2290
2294
|
categorical_labels?: Array<LLMCategoricalLabels$Outbound> | undefined;
|
|
2295
|
+
dataset_id?: string | undefined;
|
|
2291
2296
|
path: string;
|
|
2292
2297
|
description: string;
|
|
2293
2298
|
key: string;
|
|
@@ -2319,6 +2324,7 @@ export const Llm2$outboundSchema: z.ZodType<Llm2$Outbound, z.ZodTypeDef, Llm2> =
|
|
|
2319
2324
|
categoricalLabels: z.array(
|
|
2320
2325
|
z.lazy(() => LLMCategoricalLabels$outboundSchema),
|
|
2321
2326
|
).optional(),
|
|
2327
|
+
datasetId: z.string().optional(),
|
|
2322
2328
|
path: z.string(),
|
|
2323
2329
|
description: z.string().default(""),
|
|
2324
2330
|
key: z.string(),
|
|
@@ -2329,6 +2335,7 @@ export const Llm2$outboundSchema: z.ZodType<Llm2$Outbound, z.ZodTypeDef, Llm2> =
|
|
|
2329
2335
|
guardrailConfig: "guardrail_config",
|
|
2330
2336
|
outputType: "output_type",
|
|
2331
2337
|
categoricalLabels: "categorical_labels",
|
|
2338
|
+
datasetId: "dataset_id",
|
|
2332
2339
|
});
|
|
2333
2340
|
});
|
|
2334
2341
|
|
|
@@ -2530,6 +2537,7 @@ export type Llm1$Outbound = {
|
|
|
2530
2537
|
categorical_labels?:
|
|
2531
2538
|
| Array<CreateEvalLLMCategoricalLabels$Outbound>
|
|
2532
2539
|
| undefined;
|
|
2540
|
+
dataset_id?: string | undefined;
|
|
2533
2541
|
path: string;
|
|
2534
2542
|
description: string;
|
|
2535
2543
|
key: string;
|
|
@@ -2561,6 +2569,7 @@ export const Llm1$outboundSchema: z.ZodType<Llm1$Outbound, z.ZodTypeDef, Llm1> =
|
|
|
2561
2569
|
categoricalLabels: z.array(
|
|
2562
2570
|
z.lazy(() => CreateEvalLLMCategoricalLabels$outboundSchema),
|
|
2563
2571
|
).optional(),
|
|
2572
|
+
datasetId: z.string().optional(),
|
|
2564
2573
|
path: z.string(),
|
|
2565
2574
|
description: z.string().default(""),
|
|
2566
2575
|
key: z.string(),
|
|
@@ -2571,6 +2580,7 @@ export const Llm1$outboundSchema: z.ZodType<Llm1$Outbound, z.ZodTypeDef, Llm1> =
|
|
|
2571
2580
|
guardrailConfig: "guardrail_config",
|
|
2572
2581
|
outputType: "output_type",
|
|
2573
2582
|
categoricalLabels: "categorical_labels",
|
|
2583
|
+
datasetId: "dataset_id",
|
|
2574
2584
|
});
|
|
2575
2585
|
});
|
|
2576
2586
|
|
|
@@ -2776,8 +2786,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2776
2786
|
> = z.object({
|
|
2777
2787
|
_id: z.string(),
|
|
2778
2788
|
description: z.string(),
|
|
2779
|
-
created: z.string().default("2026-05-
|
|
2780
|
-
updated: z.string().default("2026-05-
|
|
2789
|
+
created: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
2790
|
+
updated: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
2781
2791
|
guardrail_config: z.nullable(
|
|
2782
2792
|
z.union([
|
|
2783
2793
|
z.lazy(() =>
|
|
@@ -2965,8 +2975,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2965
2975
|
.object({
|
|
2966
2976
|
_id: z.string(),
|
|
2967
2977
|
description: z.string(),
|
|
2968
|
-
created: z.string().default("2026-05-
|
|
2969
|
-
updated: z.string().default("2026-05-
|
|
2978
|
+
created: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
2979
|
+
updated: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
2970
2980
|
guardrail_config: z.nullable(
|
|
2971
2981
|
z.union([
|
|
2972
2982
|
z.lazy(() =>
|
|
@@ -3789,8 +3799,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3789
3799
|
> = z.object({
|
|
3790
3800
|
_id: z.string(),
|
|
3791
3801
|
description: z.string(),
|
|
3792
|
-
created: z.string().default("2026-05-
|
|
3793
|
-
updated: z.string().default("2026-05-
|
|
3802
|
+
created: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
3803
|
+
updated: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
3794
3804
|
guardrail_config: z.nullable(
|
|
3795
3805
|
z.union([
|
|
3796
3806
|
z.lazy(() =>
|
|
@@ -4008,8 +4018,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4008
4018
|
> = z.object({
|
|
4009
4019
|
_id: z.string(),
|
|
4010
4020
|
description: z.string(),
|
|
4011
|
-
created: z.string().default("2026-05-
|
|
4012
|
-
updated: z.string().default("2026-05-
|
|
4021
|
+
created: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4022
|
+
updated: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4013
4023
|
guardrail_config: z.nullable(
|
|
4014
4024
|
z.union([
|
|
4015
4025
|
z.lazy(() =>
|
|
@@ -4190,8 +4200,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4190
4200
|
> = z.object({
|
|
4191
4201
|
_id: z.string(),
|
|
4192
4202
|
description: z.string(),
|
|
4193
|
-
created: z.string().default("2026-05-
|
|
4194
|
-
updated: z.string().default("2026-05-
|
|
4203
|
+
created: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4204
|
+
updated: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4195
4205
|
guardrail_config: z.nullable(
|
|
4196
4206
|
z.union([
|
|
4197
4207
|
z.lazy(() =>
|
|
@@ -4367,8 +4377,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4367
4377
|
> = z.object({
|
|
4368
4378
|
_id: z.string(),
|
|
4369
4379
|
description: z.string(),
|
|
4370
|
-
created: z.string().default("2026-05-
|
|
4371
|
-
updated: z.string().default("2026-05-
|
|
4380
|
+
created: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4381
|
+
updated: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4372
4382
|
guardrail_config: z.nullable(
|
|
4373
4383
|
z.union([
|
|
4374
4384
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -4738,8 +4748,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4738
4748
|
> = z.object({
|
|
4739
4749
|
_id: z.string(),
|
|
4740
4750
|
description: z.string(),
|
|
4741
|
-
created: z.string().default("2026-05-
|
|
4742
|
-
updated: z.string().default("2026-05-
|
|
4751
|
+
created: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4752
|
+
updated: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4743
4753
|
guardrail_config: z.nullable(
|
|
4744
4754
|
z.union([
|
|
4745
4755
|
z.lazy(() =>
|
|
@@ -4760,6 +4770,7 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4760
4770
|
categorical_labels: z.array(
|
|
4761
4771
|
z.lazy(() => CreateEvalLLMEvalsCategoricalLabels$inboundSchema),
|
|
4762
4772
|
).optional(),
|
|
4773
|
+
dataset_id: z.string().optional(),
|
|
4763
4774
|
key: z.string(),
|
|
4764
4775
|
mode: z.literal("jury"),
|
|
4765
4776
|
jury: z.lazy(() => CreateEvalLLMJury$inboundSchema),
|
|
@@ -4768,6 +4779,7 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4768
4779
|
"_id": "id",
|
|
4769
4780
|
"guardrail_config": "guardrailConfig",
|
|
4770
4781
|
"categorical_labels": "categoricalLabels",
|
|
4782
|
+
"dataset_id": "datasetId",
|
|
4771
4783
|
});
|
|
4772
4784
|
});
|
|
4773
4785
|
|
|
@@ -4954,8 +4966,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4954
4966
|
> = z.object({
|
|
4955
4967
|
_id: z.string(),
|
|
4956
4968
|
description: z.string(),
|
|
4957
|
-
created: z.string().default("2026-05-
|
|
4958
|
-
updated: z.string().default("2026-05-
|
|
4969
|
+
created: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4970
|
+
updated: z.string().default("2026-05-22T07:56:19.885Z"),
|
|
4959
4971
|
guardrail_config: z.nullable(
|
|
4960
4972
|
z.union([
|
|
4961
4973
|
z.lazy(() =>
|
|
@@ -4976,6 +4988,7 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4976
4988
|
categorical_labels: z.array(
|
|
4977
4989
|
z.lazy(() => CreateEvalLLMEvalsResponseCategoricalLabels$inboundSchema),
|
|
4978
4990
|
).optional(),
|
|
4991
|
+
dataset_id: z.string().optional(),
|
|
4979
4992
|
key: z.string(),
|
|
4980
4993
|
mode: z.literal("single"),
|
|
4981
4994
|
model: z.string(),
|
|
@@ -4984,6 +4997,7 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4984
4997
|
"_id": "id",
|
|
4985
4998
|
"guardrail_config": "guardrailConfig",
|
|
4986
4999
|
"categorical_labels": "categoricalLabels",
|
|
5000
|
+
"dataset_id": "datasetId",
|
|
4987
5001
|
});
|
|
4988
5002
|
});
|
|
4989
5003
|
|