@dalmia/calibrate-mcp 0.0.36 → 0.0.37
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/bin/mcp-server.js +18 -18
- package/bin/mcp-server.js.map +10 -10
- package/esm/landing-page.js +1 -1
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/evaluatorlinkrequest.d.ts +6 -0
- package/esm/models/evaluatorlinkrequest.d.ts.map +1 -0
- package/esm/models/{routersagentsevaluatorlinkrequest.js → evaluatorlinkrequest.js} +3 -2
- package/esm/models/evaluatorlinkrequest.js.map +1 -0
- package/esm/models/evaluatorlinkresponse.d.ts +8 -0
- package/esm/models/evaluatorlinkresponse.d.ts.map +1 -0
- package/esm/models/{routersagentsevaluatorlinkresponse.js → evaluatorlinkresponse.js} +2 -2
- package/esm/models/evaluatorlinkresponse.js.map +1 -0
- package/esm/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.d.ts +4 -4
- package/esm/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.d.ts.map +1 -1
- package/esm/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.js +4 -4
- package/esm/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.js.map +1 -1
- package/package.json +1 -1
- package/src/landing-page.ts +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/evaluatorlinkrequest.ts +14 -0
- package/src/models/evaluatorlinkresponse.ts +24 -0
- package/src/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.ts +12 -12
- package/esm/models/routersagentsevaluatorlinkrequest.d.ts +0 -6
- package/esm/models/routersagentsevaluatorlinkrequest.d.ts.map +0 -1
- package/esm/models/routersagentsevaluatorlinkrequest.js.map +0 -1
- package/esm/models/routersagentsevaluatorlinkresponse.d.ts +0 -8
- package/esm/models/routersagentsevaluatorlinkresponse.d.ts.map +0 -1
- package/esm/models/routersagentsevaluatorlinkresponse.js.map +0 -1
- package/src/models/routersagentsevaluatorlinkrequest.ts +0 -17
- package/src/models/routersagentsevaluatorlinkresponse.ts +0 -23
package/esm/landing-page.js
CHANGED
|
@@ -915,7 +915,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
915
915
|
<h1>Instructions</h1>
|
|
916
916
|
<p>One-click installation for Claude Desktop users</p>
|
|
917
917
|
<div class="instruction-item">
|
|
918
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
918
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.37/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
919
919
|
📥 Download MCP Bundle
|
|
920
920
|
</a>
|
|
921
921
|
</div>
|
package/esm/lib/config.d.ts
CHANGED
|
@@ -35,8 +35,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
35
35
|
export declare const SDK_METADATA: {
|
|
36
36
|
readonly language: "typescript";
|
|
37
37
|
readonly openapiDocVersion: "0.1.0";
|
|
38
|
-
readonly sdkVersion: "0.0.
|
|
38
|
+
readonly sdkVersion: "0.0.37";
|
|
39
39
|
readonly genVersion: "2.915.1";
|
|
40
|
-
readonly userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
40
|
+
readonly userAgent: "speakeasy-sdk/mcp-typescript 0.0.37 2.915.1 0.1.0 @dalmia/calibrate-mcp";
|
|
41
41
|
};
|
|
42
42
|
//# sourceMappingURL=config.d.ts.map
|
package/esm/lib/config.js
CHANGED
|
@@ -27,8 +27,8 @@ export function serverURLFromOptions(options) {
|
|
|
27
27
|
export const SDK_METADATA = {
|
|
28
28
|
language: "typescript",
|
|
29
29
|
openapiDocVersion: "0.1.0",
|
|
30
|
-
sdkVersion: "0.0.
|
|
30
|
+
sdkVersion: "0.0.37",
|
|
31
31
|
genVersion: "2.915.1",
|
|
32
|
-
userAgent: "speakeasy-sdk/mcp-typescript 0.0.
|
|
32
|
+
userAgent: "speakeasy-sdk/mcp-typescript 0.0.37 2.915.1 0.1.0 @dalmia/calibrate-mcp",
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=config.js.map
|
package/esm/mcp-server/server.js
CHANGED
|
@@ -48,7 +48,7 @@ import { tool$tracesCreate } from "./tools/tracesCreate.js";
|
|
|
48
48
|
export function createMCPServer(deps) {
|
|
49
49
|
const server = new McpServer({
|
|
50
50
|
name: "CalibrateMcp",
|
|
51
|
-
version: "0.0.
|
|
51
|
+
version: "0.0.37",
|
|
52
52
|
});
|
|
53
53
|
const getClient = deps.getSDK || (() => new CalibrateMcpCore({
|
|
54
54
|
security: deps.security,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"evaluatorlinkrequest.d.ts","sourceRoot":"","sources":["../../src/models/evaluatorlinkrequest.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,oBAAoB,GAAG;IAAE,aAAa,EAAE,KAAK,CAAC,MAAM,CAAC,CAAA;CAAE,CAAC;AAEpE,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAKvE,CAAC"}
|
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
import * as z from "zod";
|
|
5
|
-
export const
|
|
5
|
+
export const EvaluatorLinkRequest$zodSchema = z
|
|
6
|
+
.object({
|
|
6
7
|
evaluator_ids: z.array(z.string()).describe("The evaluators to link to the agent. Ones that are already linked are skipped. Each must be one you created or a built-in default"),
|
|
7
8
|
});
|
|
8
|
-
//# sourceMappingURL=
|
|
9
|
+
//# sourceMappingURL=evaluatorlinkrequest.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"evaluatorlinkrequest.js","sourceRoot":"","sources":["../../src/models/evaluatorlinkrequest.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAIzB,MAAM,CAAC,MAAM,8BAA8B,GAAoC,CAAC;KAC7E,MAAM,CAAC;IACN,aAAa,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CACzC,mIAAmI,CACpI;CACF,CAAC,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as z from "zod";
|
|
2
|
+
export type EvaluatorLinkResponse = {
|
|
3
|
+
message: string;
|
|
4
|
+
linked: Array<string>;
|
|
5
|
+
already_linked: Array<string>;
|
|
6
|
+
};
|
|
7
|
+
export declare const EvaluatorLinkResponse$zodSchema: z.ZodType<EvaluatorLinkResponse>;
|
|
8
|
+
//# sourceMappingURL=evaluatorlinkresponse.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"evaluatorlinkresponse.d.ts","sourceRoot":"","sources":["../../src/models/evaluatorlinkresponse.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,qBAAqB,GAAG;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACtB,cAAc,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC/B,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,OAAO,CAAC,qBAAqB,CAWzE,CAAC"}
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
import * as z from "zod";
|
|
5
|
-
export const
|
|
5
|
+
export const EvaluatorLinkResponse$zodSchema = z.object({
|
|
6
6
|
already_linked: z.array(z.string()).describe("Evaluator IDs skipped because they were already linked"),
|
|
7
7
|
linked: z.array(z.string()).describe("Evaluator IDs newly linked by this request"),
|
|
8
8
|
message: z.string().describe("Confirmation that the evaluators were linked"),
|
|
9
9
|
});
|
|
10
|
-
//# sourceMappingURL=
|
|
10
|
+
//# sourceMappingURL=evaluatorlinkresponse.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"evaluatorlinkresponse.js","sourceRoot":"","sources":["../../src/models/evaluatorlinkresponse.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAQzB,MAAM,CAAC,MAAM,+BAA+B,GAC1C,CAAC,CAAC,MAAM,CAAC;IACP,cAAc,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAC1C,wDAAwD,CACzD;IACD,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAClC,4CAA4C,CAC7C;IACD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAC1B,8CAA8C,CAC/C;CACF,CAAC,CAAC"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import * as z from "zod";
|
|
2
|
+
import { EvaluatorLinkRequest } from "./evaluatorlinkrequest.js";
|
|
3
|
+
import { EvaluatorLinkResponse } from "./evaluatorlinkresponse.js";
|
|
2
4
|
import { HTTPValidationError } from "./httpvalidationerror.js";
|
|
3
|
-
import { RoutersAgentsEvaluatorLinkRequest } from "./routersagentsevaluatorlinkrequest.js";
|
|
4
|
-
import { RoutersAgentsEvaluatorLinkResponse } from "./routersagentsevaluatorlinkresponse.js";
|
|
5
5
|
export type LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostRequest = {
|
|
6
6
|
agent_uuid: string;
|
|
7
7
|
xAPIKey?: string | null | undefined;
|
|
8
|
-
body:
|
|
8
|
+
body: EvaluatorLinkRequest;
|
|
9
9
|
};
|
|
10
10
|
export declare const LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostRequest$zodSchema: z.ZodType<LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostRequest>;
|
|
11
|
-
export type LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostResponse =
|
|
11
|
+
export type LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostResponse = EvaluatorLinkResponse | HTTPValidationError;
|
|
12
12
|
export declare const LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostResponse$zodSchema: z.ZodType<LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostResponse>;
|
|
13
13
|
//# sourceMappingURL=linkevaluatorstoagentagentsagentuuidevaluatorspostop.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"linkevaluatorstoagentagentsagentuuidevaluatorspostop.d.ts","sourceRoot":"","sources":["../../src/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,
|
|
1
|
+
{"version":3,"file":"linkevaluatorstoagentagentsagentuuidevaluatorspostop.d.ts","sourceRoot":"","sources":["../../src/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EACL,oBAAoB,EAErB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,qBAAqB,EAEtB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EACL,mBAAmB,EAEpB,MAAM,0BAA0B,CAAC;AAElC,MAAM,MAAM,yDAAyD,GAAG;IACtE,UAAU,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IACpC,IAAI,EAAE,oBAAoB,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,mEAAmE,EAC9E,CAAC,CAAC,OAAO,CAAC,yDAAyD,CAK/D,CAAC;AAEP,MAAM,MAAM,0DAA0D,GAClE,qBAAqB,GACrB,mBAAmB,CAAC;AAExB,eAAO,MAAM,oEAAoE,EAC/E,CAAC,CAAC,OAAO,CAAC,0DAA0D,CAIhE,CAAC"}
|
|
@@ -2,18 +2,18 @@
|
|
|
2
2
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
3
|
*/
|
|
4
4
|
import * as z from "zod";
|
|
5
|
+
import { EvaluatorLinkRequest$zodSchema, } from "./evaluatorlinkrequest.js";
|
|
6
|
+
import { EvaluatorLinkResponse$zodSchema, } from "./evaluatorlinkresponse.js";
|
|
5
7
|
import { HTTPValidationError$zodSchema, } from "./httpvalidationerror.js";
|
|
6
|
-
import { RoutersAgentsEvaluatorLinkRequest$zodSchema, } from "./routersagentsevaluatorlinkrequest.js";
|
|
7
|
-
import { RoutersAgentsEvaluatorLinkResponse$zodSchema, } from "./routersagentsevaluatorlinkresponse.js";
|
|
8
8
|
export const LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostRequest$zodSchema = z
|
|
9
9
|
.object({
|
|
10
10
|
agent_uuid: z.string().describe("The agent to link the evaluators to"),
|
|
11
|
-
body:
|
|
11
|
+
body: EvaluatorLinkRequest$zodSchema,
|
|
12
12
|
xAPIKey: z.string().nullable().optional(),
|
|
13
13
|
});
|
|
14
14
|
export const LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostResponse$zodSchema = z
|
|
15
15
|
.union([
|
|
16
|
-
|
|
16
|
+
EvaluatorLinkResponse$zodSchema,
|
|
17
17
|
HTTPValidationError$zodSchema,
|
|
18
18
|
]);
|
|
19
19
|
//# sourceMappingURL=linkevaluatorstoagentagentsagentuuidevaluatorspostop.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"linkevaluatorstoagentagentsagentuuidevaluatorspostop.js","sourceRoot":"","sources":["../../src/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAEL,
|
|
1
|
+
{"version":3,"file":"linkevaluatorstoagentagentsagentuuidevaluatorspostop.js","sourceRoot":"","sources":["../../src/models/linkevaluatorstoagentagentsagentuuidevaluatorspostop.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AACzB,OAAO,EAEL,8BAA8B,GAC/B,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAEL,+BAA+B,GAChC,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAEL,6BAA6B,GAC9B,MAAM,0BAA0B,CAAC;AAQlC,MAAM,CAAC,MAAM,mEAAmE,GACP,CAAC;KACrE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,qCAAqC,CAAC;IACtE,IAAI,EAAE,8BAA8B;IACpC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC1C,CAAC,CAAC;AAMP,MAAM,CAAC,MAAM,oEAAoE,GACP,CAAC;KACtE,KAAK,CAAC;IACL,+BAA+B;IAC/B,6BAA6B;CAC9B,CAAC,CAAC"}
|
package/package.json
CHANGED
package/src/landing-page.ts
CHANGED
|
@@ -930,7 +930,7 @@ http_headers = { "api-key-auth" = "YOUR_API_KEY_AUTH" }`;
|
|
|
930
930
|
<h1>Instructions</h1>
|
|
931
931
|
<p>One-click installation for Claude Desktop users</p>
|
|
932
932
|
<div class="instruction-item">
|
|
933
|
-
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.
|
|
933
|
+
<a href="https://github.com/dalmia/calibrate-mcp/releases/download/v0.0.37/mcp-server.mcpb" download="mcp-server.mcpb" class="action-button header-action" style="display: inline-flex; margin-bottom: 16px;">
|
|
934
934
|
📥 Download MCP Bundle
|
|
935
935
|
</a>
|
|
936
936
|
</div>
|
package/src/lib/config.ts
CHANGED
|
@@ -65,8 +65,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
65
65
|
export const SDK_METADATA = {
|
|
66
66
|
language: "typescript",
|
|
67
67
|
openapiDocVersion: "0.1.0",
|
|
68
|
-
sdkVersion: "0.0.
|
|
68
|
+
sdkVersion: "0.0.37",
|
|
69
69
|
genVersion: "2.915.1",
|
|
70
70
|
userAgent:
|
|
71
|
-
"speakeasy-sdk/mcp-typescript 0.0.
|
|
71
|
+
"speakeasy-sdk/mcp-typescript 0.0.37 2.915.1 0.1.0 @dalmia/calibrate-mcp",
|
|
72
72
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
|
|
7
|
+
export type EvaluatorLinkRequest = { evaluator_ids: Array<string> };
|
|
8
|
+
|
|
9
|
+
export const EvaluatorLinkRequest$zodSchema: z.ZodType<EvaluatorLinkRequest> = z
|
|
10
|
+
.object({
|
|
11
|
+
evaluator_ids: z.array(z.string()).describe(
|
|
12
|
+
"The evaluators to link to the agent. Ones that are already linked are skipped. Each must be one you created or a built-in default",
|
|
13
|
+
),
|
|
14
|
+
});
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod";
|
|
6
|
+
|
|
7
|
+
export type EvaluatorLinkResponse = {
|
|
8
|
+
message: string;
|
|
9
|
+
linked: Array<string>;
|
|
10
|
+
already_linked: Array<string>;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export const EvaluatorLinkResponse$zodSchema: z.ZodType<EvaluatorLinkResponse> =
|
|
14
|
+
z.object({
|
|
15
|
+
already_linked: z.array(z.string()).describe(
|
|
16
|
+
"Evaluator IDs skipped because they were already linked",
|
|
17
|
+
),
|
|
18
|
+
linked: z.array(z.string()).describe(
|
|
19
|
+
"Evaluator IDs newly linked by this request",
|
|
20
|
+
),
|
|
21
|
+
message: z.string().describe(
|
|
22
|
+
"Confirmation that the evaluators were linked",
|
|
23
|
+
),
|
|
24
|
+
});
|
|
@@ -3,40 +3,40 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
import * as z from "zod";
|
|
6
|
+
import {
|
|
7
|
+
EvaluatorLinkRequest,
|
|
8
|
+
EvaluatorLinkRequest$zodSchema,
|
|
9
|
+
} from "./evaluatorlinkrequest.js";
|
|
10
|
+
import {
|
|
11
|
+
EvaluatorLinkResponse,
|
|
12
|
+
EvaluatorLinkResponse$zodSchema,
|
|
13
|
+
} from "./evaluatorlinkresponse.js";
|
|
6
14
|
import {
|
|
7
15
|
HTTPValidationError,
|
|
8
16
|
HTTPValidationError$zodSchema,
|
|
9
17
|
} from "./httpvalidationerror.js";
|
|
10
|
-
import {
|
|
11
|
-
RoutersAgentsEvaluatorLinkRequest,
|
|
12
|
-
RoutersAgentsEvaluatorLinkRequest$zodSchema,
|
|
13
|
-
} from "./routersagentsevaluatorlinkrequest.js";
|
|
14
|
-
import {
|
|
15
|
-
RoutersAgentsEvaluatorLinkResponse,
|
|
16
|
-
RoutersAgentsEvaluatorLinkResponse$zodSchema,
|
|
17
|
-
} from "./routersagentsevaluatorlinkresponse.js";
|
|
18
18
|
|
|
19
19
|
export type LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostRequest = {
|
|
20
20
|
agent_uuid: string;
|
|
21
21
|
xAPIKey?: string | null | undefined;
|
|
22
|
-
body:
|
|
22
|
+
body: EvaluatorLinkRequest;
|
|
23
23
|
};
|
|
24
24
|
|
|
25
25
|
export const LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostRequest$zodSchema:
|
|
26
26
|
z.ZodType<LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostRequest> = z
|
|
27
27
|
.object({
|
|
28
28
|
agent_uuid: z.string().describe("The agent to link the evaluators to"),
|
|
29
|
-
body:
|
|
29
|
+
body: EvaluatorLinkRequest$zodSchema,
|
|
30
30
|
xAPIKey: z.string().nullable().optional(),
|
|
31
31
|
});
|
|
32
32
|
|
|
33
33
|
export type LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostResponse =
|
|
34
|
-
|
|
|
34
|
+
| EvaluatorLinkResponse
|
|
35
35
|
| HTTPValidationError;
|
|
36
36
|
|
|
37
37
|
export const LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostResponse$zodSchema:
|
|
38
38
|
z.ZodType<LinkEvaluatorsToAgentAgentsAgentUuidEvaluatorsPostResponse> = z
|
|
39
39
|
.union([
|
|
40
|
-
|
|
40
|
+
EvaluatorLinkResponse$zodSchema,
|
|
41
41
|
HTTPValidationError$zodSchema,
|
|
42
42
|
]);
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
export type RoutersAgentsEvaluatorLinkRequest = {
|
|
3
|
-
evaluator_ids: Array<string>;
|
|
4
|
-
};
|
|
5
|
-
export declare const RoutersAgentsEvaluatorLinkRequest$zodSchema: z.ZodType<RoutersAgentsEvaluatorLinkRequest>;
|
|
6
|
-
//# sourceMappingURL=routersagentsevaluatorlinkrequest.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"routersagentsevaluatorlinkrequest.d.ts","sourceRoot":"","sources":["../../src/models/routersagentsevaluatorlinkrequest.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,iCAAiC,GAAG;IAC9C,aAAa,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC9B,CAAC;AAEF,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,OAAO,CACjE,iCAAiC,CAKjC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"routersagentsevaluatorlinkrequest.js","sourceRoot":"","sources":["../../src/models/routersagentsevaluatorlinkrequest.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAMzB,MAAM,CAAC,MAAM,2CAA2C,GAEpD,CAAC,CAAC,MAAM,CAAC;IACX,aAAa,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CACzC,mIAAmI,CACpI;CACF,CAAC,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
export type RoutersAgentsEvaluatorLinkResponse = {
|
|
3
|
-
message: string;
|
|
4
|
-
linked: Array<string>;
|
|
5
|
-
already_linked: Array<string>;
|
|
6
|
-
};
|
|
7
|
-
export declare const RoutersAgentsEvaluatorLinkResponse$zodSchema: z.ZodType<RoutersAgentsEvaluatorLinkResponse>;
|
|
8
|
-
//# sourceMappingURL=routersagentsevaluatorlinkresponse.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"routersagentsevaluatorlinkresponse.d.ts","sourceRoot":"","sources":["../../src/models/routersagentsevaluatorlinkresponse.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB,MAAM,MAAM,kCAAkC,GAAG;IAC/C,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACtB,cAAc,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;CAC/B,CAAC;AAEF,eAAO,MAAM,4CAA4C,EAAE,CAAC,CAAC,OAAO,CAClE,kCAAkC,CASlC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"routersagentsevaluatorlinkresponse.js","sourceRoot":"","sources":["../../src/models/routersagentsevaluatorlinkresponse.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAQzB,MAAM,CAAC,MAAM,4CAA4C,GAErD,CAAC,CAAC,MAAM,CAAC;IACX,cAAc,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAC1C,wDAAwD,CACzD;IACD,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,CAClC,4CAA4C,CAC7C;IACD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,8CAA8C,CAAC;CAC7E,CAAC,CAAC"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import * as z from "zod";
|
|
6
|
-
|
|
7
|
-
export type RoutersAgentsEvaluatorLinkRequest = {
|
|
8
|
-
evaluator_ids: Array<string>;
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
export const RoutersAgentsEvaluatorLinkRequest$zodSchema: z.ZodType<
|
|
12
|
-
RoutersAgentsEvaluatorLinkRequest
|
|
13
|
-
> = z.object({
|
|
14
|
-
evaluator_ids: z.array(z.string()).describe(
|
|
15
|
-
"The evaluators to link to the agent. Ones that are already linked are skipped. Each must be one you created or a built-in default",
|
|
16
|
-
),
|
|
17
|
-
});
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import * as z from "zod";
|
|
6
|
-
|
|
7
|
-
export type RoutersAgentsEvaluatorLinkResponse = {
|
|
8
|
-
message: string;
|
|
9
|
-
linked: Array<string>;
|
|
10
|
-
already_linked: Array<string>;
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
export const RoutersAgentsEvaluatorLinkResponse$zodSchema: z.ZodType<
|
|
14
|
-
RoutersAgentsEvaluatorLinkResponse
|
|
15
|
-
> = z.object({
|
|
16
|
-
already_linked: z.array(z.string()).describe(
|
|
17
|
-
"Evaluator IDs skipped because they were already linked",
|
|
18
|
-
),
|
|
19
|
-
linked: z.array(z.string()).describe(
|
|
20
|
-
"Evaluator IDs newly linked by this request",
|
|
21
|
-
),
|
|
22
|
-
message: z.string().describe("Confirmation that the evaluators were linked"),
|
|
23
|
-
});
|