@mastra/server 1.61.0-alpha.2 → 1.61.0-alpha.4
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/CHANGELOG.md +49 -0
- package/dist/{api-schema-manifest-Bx_zU5qw.js → api-schema-manifest-BxnLWV5l.js} +2 -2
- package/dist/{api-schema-manifest-Bx_zU5qw.js.map → api-schema-manifest-BxnLWV5l.js.map} +1 -1
- package/dist/{api-schema-manifest-DPgfugJT.cjs → api-schema-manifest-Cbonk0PF.cjs} +2 -2
- package/dist/{api-schema-manifest-DPgfugJT.cjs.map → api-schema-manifest-Cbonk0PF.cjs.map} +1 -1
- package/dist/{datasets-D2JdQI44.cjs → datasets-CNtKg_3d.cjs} +80 -6
- package/dist/datasets-CNtKg_3d.cjs.map +1 -0
- package/dist/{datasets-Dr1pCC6P.js → datasets-DmN9V4rU.js} +57 -7
- package/dist/datasets-DmN9V4rU.js.map +1 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/docs/references/reference-server-routes.md +111 -0
- package/dist/{routes-Bh2p-WqG.js → routes-B6F4QBgN.js} +5 -2
- package/dist/routes-B6F4QBgN.js.map +1 -0
- package/dist/{routes-CdbboDwv.cjs → routes-DGwUTyHr.cjs} +4 -1
- package/dist/routes-DGwUTyHr.cjs.map +1 -0
- package/dist/server/handlers/datasets.cjs +125 -6
- package/dist/server/handlers/datasets.cjs.map +1 -1
- package/dist/server/handlers/datasets.d.ts +470 -22
- package/dist/server/handlers/datasets.d.ts.map +1 -1
- package/dist/server/handlers/datasets.js +123 -7
- package/dist/server/handlers/datasets.js.map +1 -1
- package/dist/server/handlers/system.cjs +1 -1
- package/dist/server/handlers/system.js +1 -1
- package/dist/server/schemas/datasets.d.ts +117 -10
- package/dist/server/schemas/datasets.d.ts.map +1 -1
- package/dist/server/schemas/index.cjs +5 -1
- package/dist/server/schemas/index.js +2 -2
- package/dist/server/server-adapter/index.cjs +1 -1
- package/dist/server/server-adapter/index.js +1 -1
- package/dist/server/server-adapter/routes/datasets.d.ts +467 -22
- package/dist/server/server-adapter/routes/datasets.d.ts.map +1 -1
- package/package.json +3 -3
- package/dist/datasets-D2JdQI44.cjs.map +0 -1
- package/dist/datasets-Dr1pCC6P.js.map +0 -1
- package/dist/routes-Bh2p-WqG.js.map +0 -1
- package/dist/routes-CdbboDwv.cjs.map +0 -1
|
@@ -1321,8 +1321,8 @@ export declare const LIST_ALL_EXPERIMENTS_ROUTE: Omit<import("@mastra/core/serve
|
|
|
1321
1321
|
id: string;
|
|
1322
1322
|
datasetId: string | null;
|
|
1323
1323
|
datasetVersion: number | null;
|
|
1324
|
-
targetType: "agent" | "workflow" | "scorer" | "processor";
|
|
1325
|
-
targetId: string;
|
|
1324
|
+
targetType: "agent" | "workflow" | "scorer" | "processor" | null;
|
|
1325
|
+
targetId: string | null;
|
|
1326
1326
|
status: "running" | "failed" | "pending" | "completed";
|
|
1327
1327
|
totalItems: number;
|
|
1328
1328
|
succeededCount: number;
|
|
@@ -1333,6 +1333,7 @@ export declare const LIST_ALL_EXPERIMENTS_ROUTE: Omit<import("@mastra/core/serve
|
|
|
1333
1333
|
createdAt: Date;
|
|
1334
1334
|
updatedAt: Date;
|
|
1335
1335
|
agentVersion?: string | null | undefined;
|
|
1336
|
+
scorerIds?: string[] | null | undefined;
|
|
1336
1337
|
name?: string | undefined;
|
|
1337
1338
|
description?: string | undefined;
|
|
1338
1339
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -1382,13 +1383,14 @@ export declare const LIST_ALL_EXPERIMENTS_ROUTE: Omit<import("@mastra/core/serve
|
|
|
1382
1383
|
datasetId: z.ZodNullable<z.ZodString>;
|
|
1383
1384
|
datasetVersion: z.ZodNullable<z.ZodNumber>;
|
|
1384
1385
|
agentVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1385
|
-
targetType: z.ZodEnum<{
|
|
1386
|
+
targetType: z.ZodNullable<z.ZodEnum<{
|
|
1386
1387
|
agent: "agent";
|
|
1387
1388
|
workflow: "workflow";
|
|
1388
1389
|
scorer: "scorer";
|
|
1389
1390
|
processor: "processor";
|
|
1390
|
-
}
|
|
1391
|
-
targetId: z.ZodString
|
|
1391
|
+
}>>;
|
|
1392
|
+
targetId: z.ZodNullable<z.ZodString>;
|
|
1393
|
+
scorerIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1392
1394
|
name: z.ZodOptional<z.ZodString>;
|
|
1393
1395
|
description: z.ZodOptional<z.ZodString>;
|
|
1394
1396
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1489,8 +1491,8 @@ export declare const LIST_EXPERIMENTS_ROUTE: Omit<import("@mastra/core/server").
|
|
|
1489
1491
|
id: string;
|
|
1490
1492
|
datasetId: string | null;
|
|
1491
1493
|
datasetVersion: number | null;
|
|
1492
|
-
targetType: "agent" | "workflow" | "scorer" | "processor";
|
|
1493
|
-
targetId: string;
|
|
1494
|
+
targetType: "agent" | "workflow" | "scorer" | "processor" | null;
|
|
1495
|
+
targetId: string | null;
|
|
1494
1496
|
status: "running" | "failed" | "pending" | "completed";
|
|
1495
1497
|
totalItems: number;
|
|
1496
1498
|
succeededCount: number;
|
|
@@ -1501,6 +1503,7 @@ export declare const LIST_EXPERIMENTS_ROUTE: Omit<import("@mastra/core/server").
|
|
|
1501
1503
|
createdAt: Date;
|
|
1502
1504
|
updatedAt: Date;
|
|
1503
1505
|
agentVersion?: string | null | undefined;
|
|
1506
|
+
scorerIds?: string[] | null | undefined;
|
|
1504
1507
|
name?: string | undefined;
|
|
1505
1508
|
description?: string | undefined;
|
|
1506
1509
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -1552,13 +1555,14 @@ export declare const LIST_EXPERIMENTS_ROUTE: Omit<import("@mastra/core/server").
|
|
|
1552
1555
|
datasetId: z.ZodNullable<z.ZodString>;
|
|
1553
1556
|
datasetVersion: z.ZodNullable<z.ZodNumber>;
|
|
1554
1557
|
agentVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1555
|
-
targetType: z.ZodEnum<{
|
|
1558
|
+
targetType: z.ZodNullable<z.ZodEnum<{
|
|
1556
1559
|
agent: "agent";
|
|
1557
1560
|
workflow: "workflow";
|
|
1558
1561
|
scorer: "scorer";
|
|
1559
1562
|
processor: "processor";
|
|
1560
|
-
}
|
|
1561
|
-
targetId: z.ZodString
|
|
1563
|
+
}>>;
|
|
1564
|
+
targetId: z.ZodNullable<z.ZodString>;
|
|
1565
|
+
scorerIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1562
1566
|
name: z.ZodOptional<z.ZodString>;
|
|
1563
1567
|
description: z.ZodOptional<z.ZodString>;
|
|
1564
1568
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1611,8 +1615,10 @@ export declare const TRIGGER_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server"
|
|
|
1611
1615
|
handler(params: {
|
|
1612
1616
|
datasetId: string;
|
|
1613
1617
|
} & {
|
|
1614
|
-
|
|
1615
|
-
|
|
1618
|
+
start?: boolean | undefined;
|
|
1619
|
+
targetType?: "agent" | "workflow" | "scorer" | undefined;
|
|
1620
|
+
targetId?: string | undefined;
|
|
1621
|
+
id?: string | undefined;
|
|
1616
1622
|
name?: string | undefined;
|
|
1617
1623
|
description?: string | undefined;
|
|
1618
1624
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -1647,7 +1653,7 @@ export declare const TRIGGER_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server"
|
|
|
1647
1653
|
totalItems: number;
|
|
1648
1654
|
succeededCount: number;
|
|
1649
1655
|
failedCount: number;
|
|
1650
|
-
startedAt: Date;
|
|
1656
|
+
startedAt: Date | null;
|
|
1651
1657
|
completedAt: Date | null;
|
|
1652
1658
|
results: {
|
|
1653
1659
|
itemId: string;
|
|
@@ -1688,6 +1694,7 @@ export declare const TRIGGER_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server"
|
|
|
1688
1694
|
} | undefined;
|
|
1689
1695
|
} | null | undefined;
|
|
1690
1696
|
}[];
|
|
1697
|
+
datasetVersion?: number | undefined;
|
|
1691
1698
|
}>;
|
|
1692
1699
|
pathParamSchema?: z.ZodType;
|
|
1693
1700
|
queryParamSchema?: z.ZodType;
|
|
@@ -1702,12 +1709,14 @@ export declare const TRIGGER_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server"
|
|
|
1702
1709
|
readonly __schemas?: import("../server-adapter").RouteSchemas<z.ZodObject<{
|
|
1703
1710
|
datasetId: z.ZodString;
|
|
1704
1711
|
}, z.core.$strip>, undefined, z.ZodObject<{
|
|
1705
|
-
|
|
1712
|
+
start: z.ZodOptional<z.ZodBoolean>;
|
|
1713
|
+
targetType: z.ZodOptional<z.ZodEnum<{
|
|
1706
1714
|
agent: "agent";
|
|
1707
1715
|
workflow: "workflow";
|
|
1708
1716
|
scorer: "scorer";
|
|
1709
|
-
}
|
|
1710
|
-
targetId: z.ZodString
|
|
1717
|
+
}>>;
|
|
1718
|
+
targetId: z.ZodOptional<z.ZodString>;
|
|
1719
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1711
1720
|
name: z.ZodOptional<z.ZodString>;
|
|
1712
1721
|
description: z.ZodOptional<z.ZodString>;
|
|
1713
1722
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1753,7 +1762,8 @@ export declare const TRIGGER_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server"
|
|
|
1753
1762
|
totalItems: z.ZodNumber;
|
|
1754
1763
|
succeededCount: z.ZodNumber;
|
|
1755
1764
|
failedCount: z.ZodNumber;
|
|
1756
|
-
|
|
1765
|
+
datasetVersion: z.ZodOptional<z.ZodNumber>;
|
|
1766
|
+
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
1757
1767
|
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
1758
1768
|
results: z.ZodArray<z.ZodObject<{
|
|
1759
1769
|
itemId: z.ZodString;
|
|
@@ -1802,6 +1812,438 @@ export declare const TRIGGER_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server"
|
|
|
1802
1812
|
} & {
|
|
1803
1813
|
readonly _mastraSchemaRoute: true;
|
|
1804
1814
|
};
|
|
1815
|
+
export declare const RUN_EXPERIMENT_ITEM_ROUTE: Omit<import("@mastra/core/server").ApiRoute, "path" | "method" | "handler" | "createHandler" | "openapi"> & {
|
|
1816
|
+
method: "POST";
|
|
1817
|
+
path: "/datasets/:datasetId/experiments/:experimentId/items/:itemId/run";
|
|
1818
|
+
responseType: "json";
|
|
1819
|
+
streamFormat?: "sse" | "stream";
|
|
1820
|
+
sseFlushOnConnect?: boolean;
|
|
1821
|
+
handler(params: {
|
|
1822
|
+
datasetId: string;
|
|
1823
|
+
experimentId: string;
|
|
1824
|
+
itemId: string;
|
|
1825
|
+
} & {
|
|
1826
|
+
attempt?: number | undefined;
|
|
1827
|
+
requestContext?: Record<string, unknown> | undefined;
|
|
1828
|
+
} & import("../server-adapter").ServerContext): Promise<{
|
|
1829
|
+
result: {
|
|
1830
|
+
id: string;
|
|
1831
|
+
experimentId: string;
|
|
1832
|
+
itemId: string;
|
|
1833
|
+
itemDatasetVersion: number | null;
|
|
1834
|
+
input: unknown;
|
|
1835
|
+
output: unknown;
|
|
1836
|
+
groundTruth: unknown;
|
|
1837
|
+
error: {
|
|
1838
|
+
message: string;
|
|
1839
|
+
stack?: string | undefined;
|
|
1840
|
+
code?: string | undefined;
|
|
1841
|
+
} | null;
|
|
1842
|
+
startedAt: Date;
|
|
1843
|
+
completedAt: Date;
|
|
1844
|
+
retryCount: number;
|
|
1845
|
+
traceId: string | null;
|
|
1846
|
+
createdAt: Date;
|
|
1847
|
+
expectedTrajectory?: unknown;
|
|
1848
|
+
attempt?: number | undefined;
|
|
1849
|
+
status?: "complete" | "needs-review" | "reviewed" | null | undefined;
|
|
1850
|
+
tags?: string[] | null | undefined;
|
|
1851
|
+
comment?: string | null | undefined;
|
|
1852
|
+
toolMockReport?: {
|
|
1853
|
+
served: {
|
|
1854
|
+
mockIndex: number;
|
|
1855
|
+
toolName: string;
|
|
1856
|
+
args: unknown;
|
|
1857
|
+
}[];
|
|
1858
|
+
unconsumed: {
|
|
1859
|
+
mockIndex: number;
|
|
1860
|
+
toolName: string;
|
|
1861
|
+
args: unknown;
|
|
1862
|
+
}[];
|
|
1863
|
+
liveCalls: {
|
|
1864
|
+
toolName: string;
|
|
1865
|
+
args: unknown;
|
|
1866
|
+
}[];
|
|
1867
|
+
failure?: {
|
|
1868
|
+
code: "TOOL_MOCK_MISMATCH" | "TOOL_MOCK_EXHAUSTED" | "TOOL_MOCK_NOT_DECLARED";
|
|
1869
|
+
toolName: string;
|
|
1870
|
+
args: unknown;
|
|
1871
|
+
} | undefined;
|
|
1872
|
+
} | null | undefined;
|
|
1873
|
+
};
|
|
1874
|
+
scores: {
|
|
1875
|
+
scorerId: string;
|
|
1876
|
+
scorerName: string;
|
|
1877
|
+
score: number | null;
|
|
1878
|
+
reason: string | null;
|
|
1879
|
+
error: string | null;
|
|
1880
|
+
failedStep?: string | undefined;
|
|
1881
|
+
completedSteps?: string[] | undefined;
|
|
1882
|
+
targetScope?: "span" | "trajectory" | undefined;
|
|
1883
|
+
stepId?: string | undefined;
|
|
1884
|
+
}[];
|
|
1885
|
+
}>;
|
|
1886
|
+
pathParamSchema?: z.ZodType;
|
|
1887
|
+
queryParamSchema?: z.ZodType;
|
|
1888
|
+
bodySchema?: z.ZodType;
|
|
1889
|
+
responseSchema?: z.ZodType;
|
|
1890
|
+
openapi?: import("../server-adapter/openapi-utils").OpenAPIRoute;
|
|
1891
|
+
maxBodySize?: number;
|
|
1892
|
+
deprecated?: boolean;
|
|
1893
|
+
requiresPermission?: import("@mastra/core/auth").MastraFGAPermissionInput | import("@mastra/core/auth").MastraFGAPermissionInput[];
|
|
1894
|
+
fga?: import("@mastra/core/auth").FGARouteConfig;
|
|
1895
|
+
onValidationError?: import("@mastra/core/server").ValidationErrorHook;
|
|
1896
|
+
readonly __schemas?: import("../server-adapter").RouteSchemas<z.ZodObject<{
|
|
1897
|
+
datasetId: z.ZodString;
|
|
1898
|
+
experimentId: z.ZodString;
|
|
1899
|
+
itemId: z.ZodString;
|
|
1900
|
+
}, z.core.$strip>, undefined, z.ZodObject<{
|
|
1901
|
+
attempt: z.ZodOptional<z.ZodNumber>;
|
|
1902
|
+
requestContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1903
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1904
|
+
result: z.ZodObject<{
|
|
1905
|
+
id: z.ZodString;
|
|
1906
|
+
experimentId: z.ZodString;
|
|
1907
|
+
itemId: z.ZodString;
|
|
1908
|
+
itemDatasetVersion: z.ZodNullable<z.ZodNumber>;
|
|
1909
|
+
input: z.ZodUnknown;
|
|
1910
|
+
output: z.ZodNullable<z.ZodUnknown>;
|
|
1911
|
+
groundTruth: z.ZodNullable<z.ZodUnknown>;
|
|
1912
|
+
expectedTrajectory: z.ZodOptional<z.ZodUnknown>;
|
|
1913
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
1914
|
+
message: z.ZodString;
|
|
1915
|
+
stack: z.ZodOptional<z.ZodString>;
|
|
1916
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1917
|
+
}, z.core.$strip>>;
|
|
1918
|
+
startedAt: z.ZodCoercedDate<unknown>;
|
|
1919
|
+
completedAt: z.ZodCoercedDate<unknown>;
|
|
1920
|
+
retryCount: z.ZodNumber;
|
|
1921
|
+
attempt: z.ZodOptional<z.ZodNumber>;
|
|
1922
|
+
traceId: z.ZodNullable<z.ZodString>;
|
|
1923
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
1924
|
+
complete: "complete";
|
|
1925
|
+
"needs-review": "needs-review";
|
|
1926
|
+
reviewed: "reviewed";
|
|
1927
|
+
}>>>;
|
|
1928
|
+
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1929
|
+
comment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1930
|
+
toolMockReport: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
1931
|
+
served: z.ZodArray<z.ZodObject<{
|
|
1932
|
+
mockIndex: z.ZodNumber;
|
|
1933
|
+
toolName: z.ZodString;
|
|
1934
|
+
args: z.ZodUnknown;
|
|
1935
|
+
}, z.core.$strip>>;
|
|
1936
|
+
unconsumed: z.ZodArray<z.ZodObject<{
|
|
1937
|
+
mockIndex: z.ZodNumber;
|
|
1938
|
+
toolName: z.ZodString;
|
|
1939
|
+
args: z.ZodUnknown;
|
|
1940
|
+
}, z.core.$strip>>;
|
|
1941
|
+
liveCalls: z.ZodArray<z.ZodObject<{
|
|
1942
|
+
toolName: z.ZodString;
|
|
1943
|
+
args: z.ZodUnknown;
|
|
1944
|
+
}, z.core.$strip>>;
|
|
1945
|
+
failure: z.ZodOptional<z.ZodObject<{
|
|
1946
|
+
code: z.ZodEnum<{
|
|
1947
|
+
TOOL_MOCK_MISMATCH: "TOOL_MOCK_MISMATCH";
|
|
1948
|
+
TOOL_MOCK_EXHAUSTED: "TOOL_MOCK_EXHAUSTED";
|
|
1949
|
+
TOOL_MOCK_NOT_DECLARED: "TOOL_MOCK_NOT_DECLARED";
|
|
1950
|
+
}>;
|
|
1951
|
+
toolName: z.ZodString;
|
|
1952
|
+
args: z.ZodUnknown;
|
|
1953
|
+
}, z.core.$strip>>;
|
|
1954
|
+
}, z.core.$strip>>>;
|
|
1955
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
1956
|
+
}, z.core.$strip>;
|
|
1957
|
+
scores: z.ZodArray<z.ZodObject<{
|
|
1958
|
+
scorerId: z.ZodString;
|
|
1959
|
+
scorerName: z.ZodString;
|
|
1960
|
+
score: z.ZodNullable<z.ZodNumber>;
|
|
1961
|
+
reason: z.ZodNullable<z.ZodString>;
|
|
1962
|
+
error: z.ZodNullable<z.ZodString>;
|
|
1963
|
+
failedStep: z.ZodOptional<z.ZodString>;
|
|
1964
|
+
completedSteps: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1965
|
+
targetScope: z.ZodOptional<z.ZodEnum<{
|
|
1966
|
+
span: "span";
|
|
1967
|
+
trajectory: "trajectory";
|
|
1968
|
+
}>>;
|
|
1969
|
+
stepId: z.ZodOptional<z.ZodString>;
|
|
1970
|
+
}, z.core.$strip>>;
|
|
1971
|
+
}, z.core.$strip>> | undefined;
|
|
1972
|
+
} & {
|
|
1973
|
+
readonly _mastraSchemaRoute: true;
|
|
1974
|
+
};
|
|
1975
|
+
export declare const SUBMIT_EXPERIMENT_RESULT_ROUTE: Omit<import("@mastra/core/server").ApiRoute, "path" | "method" | "handler" | "createHandler" | "openapi"> & {
|
|
1976
|
+
method: "POST";
|
|
1977
|
+
path: "/datasets/:datasetId/experiments/:experimentId/results";
|
|
1978
|
+
responseType: "json";
|
|
1979
|
+
streamFormat?: "sse" | "stream";
|
|
1980
|
+
sseFlushOnConnect?: boolean;
|
|
1981
|
+
handler(params: {
|
|
1982
|
+
datasetId: string;
|
|
1983
|
+
experimentId: string;
|
|
1984
|
+
} & {
|
|
1985
|
+
itemId: string;
|
|
1986
|
+
attempt?: number | undefined;
|
|
1987
|
+
input?: unknown;
|
|
1988
|
+
output?: unknown;
|
|
1989
|
+
groundTruth?: unknown;
|
|
1990
|
+
error?: {
|
|
1991
|
+
message: string;
|
|
1992
|
+
stack?: string | undefined;
|
|
1993
|
+
code?: string | undefined;
|
|
1994
|
+
} | null | undefined;
|
|
1995
|
+
startedAt?: Date | undefined;
|
|
1996
|
+
completedAt?: Date | undefined;
|
|
1997
|
+
traceId?: string | undefined;
|
|
1998
|
+
scores?: {
|
|
1999
|
+
scorerId: string;
|
|
2000
|
+
score: number;
|
|
2001
|
+
scorerName?: string | undefined;
|
|
2002
|
+
reason?: string | undefined;
|
|
2003
|
+
metadata?: Record<string, unknown> | undefined;
|
|
2004
|
+
}[] | undefined;
|
|
2005
|
+
} & import("../server-adapter").ServerContext): Promise<{
|
|
2006
|
+
id: string;
|
|
2007
|
+
experimentId: string;
|
|
2008
|
+
itemId: string;
|
|
2009
|
+
itemDatasetVersion: number | null;
|
|
2010
|
+
input: unknown;
|
|
2011
|
+
output: unknown;
|
|
2012
|
+
groundTruth: unknown;
|
|
2013
|
+
error: {
|
|
2014
|
+
message: string;
|
|
2015
|
+
stack?: string | undefined;
|
|
2016
|
+
code?: string | undefined;
|
|
2017
|
+
} | null;
|
|
2018
|
+
startedAt: Date;
|
|
2019
|
+
completedAt: Date;
|
|
2020
|
+
retryCount: number;
|
|
2021
|
+
traceId: string | null;
|
|
2022
|
+
createdAt: Date;
|
|
2023
|
+
expectedTrajectory?: unknown;
|
|
2024
|
+
attempt?: number | undefined;
|
|
2025
|
+
status?: "complete" | "needs-review" | "reviewed" | null | undefined;
|
|
2026
|
+
tags?: string[] | null | undefined;
|
|
2027
|
+
comment?: string | null | undefined;
|
|
2028
|
+
toolMockReport?: {
|
|
2029
|
+
served: {
|
|
2030
|
+
mockIndex: number;
|
|
2031
|
+
toolName: string;
|
|
2032
|
+
args: unknown;
|
|
2033
|
+
}[];
|
|
2034
|
+
unconsumed: {
|
|
2035
|
+
mockIndex: number;
|
|
2036
|
+
toolName: string;
|
|
2037
|
+
args: unknown;
|
|
2038
|
+
}[];
|
|
2039
|
+
liveCalls: {
|
|
2040
|
+
toolName: string;
|
|
2041
|
+
args: unknown;
|
|
2042
|
+
}[];
|
|
2043
|
+
failure?: {
|
|
2044
|
+
code: "TOOL_MOCK_MISMATCH" | "TOOL_MOCK_EXHAUSTED" | "TOOL_MOCK_NOT_DECLARED";
|
|
2045
|
+
toolName: string;
|
|
2046
|
+
args: unknown;
|
|
2047
|
+
} | undefined;
|
|
2048
|
+
} | null | undefined;
|
|
2049
|
+
}>;
|
|
2050
|
+
pathParamSchema?: z.ZodType;
|
|
2051
|
+
queryParamSchema?: z.ZodType;
|
|
2052
|
+
bodySchema?: z.ZodType;
|
|
2053
|
+
responseSchema?: z.ZodType;
|
|
2054
|
+
openapi?: import("../server-adapter/openapi-utils").OpenAPIRoute;
|
|
2055
|
+
maxBodySize?: number;
|
|
2056
|
+
deprecated?: boolean;
|
|
2057
|
+
requiresPermission?: import("@mastra/core/auth").MastraFGAPermissionInput | import("@mastra/core/auth").MastraFGAPermissionInput[];
|
|
2058
|
+
fga?: import("@mastra/core/auth").FGARouteConfig;
|
|
2059
|
+
onValidationError?: import("@mastra/core/server").ValidationErrorHook;
|
|
2060
|
+
readonly __schemas?: import("../server-adapter").RouteSchemas<z.ZodObject<{
|
|
2061
|
+
datasetId: z.ZodString;
|
|
2062
|
+
experimentId: z.ZodString;
|
|
2063
|
+
}, z.core.$strip>, undefined, z.ZodObject<{
|
|
2064
|
+
itemId: z.ZodString;
|
|
2065
|
+
attempt: z.ZodOptional<z.ZodNumber>;
|
|
2066
|
+
input: z.ZodOptional<z.ZodUnknown>;
|
|
2067
|
+
output: z.ZodOptional<z.ZodUnknown>;
|
|
2068
|
+
groundTruth: z.ZodOptional<z.ZodUnknown>;
|
|
2069
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2070
|
+
message: z.ZodString;
|
|
2071
|
+
stack: z.ZodOptional<z.ZodString>;
|
|
2072
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2073
|
+
}, z.core.$strip>>>;
|
|
2074
|
+
startedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
2075
|
+
completedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
2076
|
+
traceId: z.ZodOptional<z.ZodString>;
|
|
2077
|
+
scores: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2078
|
+
scorerId: z.ZodString;
|
|
2079
|
+
scorerName: z.ZodOptional<z.ZodString>;
|
|
2080
|
+
score: z.ZodNumber;
|
|
2081
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
2082
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2083
|
+
}, z.core.$strip>>>;
|
|
2084
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2085
|
+
id: z.ZodString;
|
|
2086
|
+
experimentId: z.ZodString;
|
|
2087
|
+
itemId: z.ZodString;
|
|
2088
|
+
itemDatasetVersion: z.ZodNullable<z.ZodNumber>;
|
|
2089
|
+
input: z.ZodUnknown;
|
|
2090
|
+
output: z.ZodNullable<z.ZodUnknown>;
|
|
2091
|
+
groundTruth: z.ZodNullable<z.ZodUnknown>;
|
|
2092
|
+
expectedTrajectory: z.ZodOptional<z.ZodUnknown>;
|
|
2093
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
2094
|
+
message: z.ZodString;
|
|
2095
|
+
stack: z.ZodOptional<z.ZodString>;
|
|
2096
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2097
|
+
}, z.core.$strip>>;
|
|
2098
|
+
startedAt: z.ZodCoercedDate<unknown>;
|
|
2099
|
+
completedAt: z.ZodCoercedDate<unknown>;
|
|
2100
|
+
retryCount: z.ZodNumber;
|
|
2101
|
+
attempt: z.ZodOptional<z.ZodNumber>;
|
|
2102
|
+
traceId: z.ZodNullable<z.ZodString>;
|
|
2103
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2104
|
+
complete: "complete";
|
|
2105
|
+
"needs-review": "needs-review";
|
|
2106
|
+
reviewed: "reviewed";
|
|
2107
|
+
}>>>;
|
|
2108
|
+
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
2109
|
+
comment: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2110
|
+
toolMockReport: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2111
|
+
served: z.ZodArray<z.ZodObject<{
|
|
2112
|
+
mockIndex: z.ZodNumber;
|
|
2113
|
+
toolName: z.ZodString;
|
|
2114
|
+
args: z.ZodUnknown;
|
|
2115
|
+
}, z.core.$strip>>;
|
|
2116
|
+
unconsumed: z.ZodArray<z.ZodObject<{
|
|
2117
|
+
mockIndex: z.ZodNumber;
|
|
2118
|
+
toolName: z.ZodString;
|
|
2119
|
+
args: z.ZodUnknown;
|
|
2120
|
+
}, z.core.$strip>>;
|
|
2121
|
+
liveCalls: z.ZodArray<z.ZodObject<{
|
|
2122
|
+
toolName: z.ZodString;
|
|
2123
|
+
args: z.ZodUnknown;
|
|
2124
|
+
}, z.core.$strip>>;
|
|
2125
|
+
failure: z.ZodOptional<z.ZodObject<{
|
|
2126
|
+
code: z.ZodEnum<{
|
|
2127
|
+
TOOL_MOCK_MISMATCH: "TOOL_MOCK_MISMATCH";
|
|
2128
|
+
TOOL_MOCK_EXHAUSTED: "TOOL_MOCK_EXHAUSTED";
|
|
2129
|
+
TOOL_MOCK_NOT_DECLARED: "TOOL_MOCK_NOT_DECLARED";
|
|
2130
|
+
}>;
|
|
2131
|
+
toolName: z.ZodString;
|
|
2132
|
+
args: z.ZodUnknown;
|
|
2133
|
+
}, z.core.$strip>>;
|
|
2134
|
+
}, z.core.$strip>>>;
|
|
2135
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
2136
|
+
}, z.core.$strip>> | undefined;
|
|
2137
|
+
} & {
|
|
2138
|
+
readonly _mastraSchemaRoute: true;
|
|
2139
|
+
};
|
|
2140
|
+
export declare const FINALIZE_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server").ApiRoute, "path" | "method" | "handler" | "createHandler" | "openapi"> & {
|
|
2141
|
+
method: "POST";
|
|
2142
|
+
path: "/datasets/:datasetId/experiments/:experimentId/finalize";
|
|
2143
|
+
responseType: "json";
|
|
2144
|
+
streamFormat?: "sse" | "stream";
|
|
2145
|
+
sseFlushOnConnect?: boolean;
|
|
2146
|
+
handler(params: {
|
|
2147
|
+
datasetId: string;
|
|
2148
|
+
experimentId: string;
|
|
2149
|
+
} & import("../server-adapter").ServerContext): Promise<{
|
|
2150
|
+
id: string;
|
|
2151
|
+
datasetId: string | null;
|
|
2152
|
+
datasetVersion: number | null;
|
|
2153
|
+
targetType: "agent" | "workflow" | "scorer" | "processor" | null;
|
|
2154
|
+
targetId: string | null;
|
|
2155
|
+
status: "running" | "failed" | "pending" | "completed";
|
|
2156
|
+
totalItems: number;
|
|
2157
|
+
succeededCount: number;
|
|
2158
|
+
failedCount: number;
|
|
2159
|
+
skippedCount: number;
|
|
2160
|
+
startedAt: Date | null;
|
|
2161
|
+
completedAt: Date | null;
|
|
2162
|
+
createdAt: Date;
|
|
2163
|
+
updatedAt: Date;
|
|
2164
|
+
agentVersion?: string | null | undefined;
|
|
2165
|
+
scorerIds?: string[] | null | undefined;
|
|
2166
|
+
name?: string | undefined;
|
|
2167
|
+
description?: string | undefined;
|
|
2168
|
+
metadata?: Record<string, unknown> | undefined;
|
|
2169
|
+
provenance?: {
|
|
2170
|
+
source?: string | undefined;
|
|
2171
|
+
sourceId?: string | undefined;
|
|
2172
|
+
sourceVersion?: string | undefined;
|
|
2173
|
+
metadata?: Record<string, unknown> | undefined;
|
|
2174
|
+
} | null | undefined;
|
|
2175
|
+
runnerAttestation?: {
|
|
2176
|
+
runnerId: string;
|
|
2177
|
+
invocationId: string;
|
|
2178
|
+
runnerVersion?: string | undefined;
|
|
2179
|
+
} | null | undefined;
|
|
2180
|
+
experimentSetId?: string | null | undefined;
|
|
2181
|
+
comparisonId?: string | null | undefined;
|
|
2182
|
+
variantId?: string | null | undefined;
|
|
2183
|
+
trialIndex?: number | null | undefined;
|
|
2184
|
+
}>;
|
|
2185
|
+
pathParamSchema?: z.ZodType;
|
|
2186
|
+
queryParamSchema?: z.ZodType;
|
|
2187
|
+
bodySchema?: z.ZodType;
|
|
2188
|
+
responseSchema?: z.ZodType;
|
|
2189
|
+
openapi?: import("../server-adapter/openapi-utils").OpenAPIRoute;
|
|
2190
|
+
maxBodySize?: number;
|
|
2191
|
+
deprecated?: boolean;
|
|
2192
|
+
requiresPermission?: import("@mastra/core/auth").MastraFGAPermissionInput | import("@mastra/core/auth").MastraFGAPermissionInput[];
|
|
2193
|
+
fga?: import("@mastra/core/auth").FGARouteConfig;
|
|
2194
|
+
onValidationError?: import("@mastra/core/server").ValidationErrorHook;
|
|
2195
|
+
readonly __schemas?: import("../server-adapter").RouteSchemas<z.ZodObject<{
|
|
2196
|
+
datasetId: z.ZodString;
|
|
2197
|
+
experimentId: z.ZodString;
|
|
2198
|
+
}, z.core.$strip>, undefined, undefined, z.ZodObject<{
|
|
2199
|
+
id: z.ZodString;
|
|
2200
|
+
datasetId: z.ZodNullable<z.ZodString>;
|
|
2201
|
+
datasetVersion: z.ZodNullable<z.ZodNumber>;
|
|
2202
|
+
agentVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2203
|
+
targetType: z.ZodNullable<z.ZodEnum<{
|
|
2204
|
+
agent: "agent";
|
|
2205
|
+
workflow: "workflow";
|
|
2206
|
+
scorer: "scorer";
|
|
2207
|
+
processor: "processor";
|
|
2208
|
+
}>>;
|
|
2209
|
+
targetId: z.ZodNullable<z.ZodString>;
|
|
2210
|
+
scorerIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
2211
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2212
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2213
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2214
|
+
provenance: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2215
|
+
source: z.ZodOptional<z.ZodString>;
|
|
2216
|
+
sourceId: z.ZodOptional<z.ZodString>;
|
|
2217
|
+
sourceVersion: z.ZodOptional<z.ZodString>;
|
|
2218
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2219
|
+
}, z.core.$strip>>>;
|
|
2220
|
+
runnerAttestation: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2221
|
+
runnerId: z.ZodString;
|
|
2222
|
+
invocationId: z.ZodString;
|
|
2223
|
+
runnerVersion: z.ZodOptional<z.ZodString>;
|
|
2224
|
+
}, z.core.$strip>>>;
|
|
2225
|
+
experimentSetId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2226
|
+
comparisonId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2227
|
+
variantId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2228
|
+
trialIndex: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2229
|
+
status: z.ZodEnum<{
|
|
2230
|
+
running: "running";
|
|
2231
|
+
failed: "failed";
|
|
2232
|
+
pending: "pending";
|
|
2233
|
+
completed: "completed";
|
|
2234
|
+
}>;
|
|
2235
|
+
totalItems: z.ZodNumber;
|
|
2236
|
+
succeededCount: z.ZodNumber;
|
|
2237
|
+
failedCount: z.ZodNumber;
|
|
2238
|
+
skippedCount: z.ZodNumber;
|
|
2239
|
+
startedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
2240
|
+
completedAt: z.ZodNullable<z.ZodCoercedDate<unknown>>;
|
|
2241
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
2242
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
2243
|
+
}, z.core.$strip>> | undefined;
|
|
2244
|
+
} & {
|
|
2245
|
+
readonly _mastraSchemaRoute: true;
|
|
2246
|
+
};
|
|
1805
2247
|
export declare const GET_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server").ApiRoute, "path" | "method" | "handler" | "createHandler" | "openapi"> & {
|
|
1806
2248
|
method: "GET";
|
|
1807
2249
|
path: "/datasets/:datasetId/experiments/:experimentId";
|
|
@@ -1815,8 +2257,8 @@ export declare const GET_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server").Ap
|
|
|
1815
2257
|
id: string;
|
|
1816
2258
|
datasetId: string | null;
|
|
1817
2259
|
datasetVersion: number | null;
|
|
1818
|
-
targetType: "agent" | "workflow" | "scorer" | "processor";
|
|
1819
|
-
targetId: string;
|
|
2260
|
+
targetType: "agent" | "workflow" | "scorer" | "processor" | null;
|
|
2261
|
+
targetId: string | null;
|
|
1820
2262
|
status: "running" | "failed" | "pending" | "completed";
|
|
1821
2263
|
totalItems: number;
|
|
1822
2264
|
succeededCount: number;
|
|
@@ -1827,6 +2269,7 @@ export declare const GET_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server").Ap
|
|
|
1827
2269
|
createdAt: Date;
|
|
1828
2270
|
updatedAt: Date;
|
|
1829
2271
|
agentVersion?: string | null | undefined;
|
|
2272
|
+
scorerIds?: string[] | null | undefined;
|
|
1830
2273
|
name?: string | undefined;
|
|
1831
2274
|
description?: string | undefined;
|
|
1832
2275
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -1864,13 +2307,14 @@ export declare const GET_EXPERIMENT_ROUTE: Omit<import("@mastra/core/server").Ap
|
|
|
1864
2307
|
datasetId: z.ZodNullable<z.ZodString>;
|
|
1865
2308
|
datasetVersion: z.ZodNullable<z.ZodNumber>;
|
|
1866
2309
|
agentVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1867
|
-
targetType: z.ZodEnum<{
|
|
2310
|
+
targetType: z.ZodNullable<z.ZodEnum<{
|
|
1868
2311
|
agent: "agent";
|
|
1869
2312
|
workflow: "workflow";
|
|
1870
2313
|
scorer: "scorer";
|
|
1871
2314
|
processor: "processor";
|
|
1872
|
-
}
|
|
1873
|
-
targetId: z.ZodString
|
|
2315
|
+
}>>;
|
|
2316
|
+
targetId: z.ZodNullable<z.ZodString>;
|
|
2317
|
+
scorerIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
1874
2318
|
name: z.ZodOptional<z.ZodString>;
|
|
1875
2319
|
description: z.ZodOptional<z.ZodString>;
|
|
1876
2320
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1939,6 +2383,7 @@ export declare const LIST_EXPERIMENT_RESULTS_ROUTE: Omit<import("@mastra/core/se
|
|
|
1939
2383
|
traceId: string | null;
|
|
1940
2384
|
createdAt: Date;
|
|
1941
2385
|
expectedTrajectory?: unknown;
|
|
2386
|
+
attempt?: number | undefined;
|
|
1942
2387
|
status?: "complete" | "needs-review" | "reviewed" | null | undefined;
|
|
1943
2388
|
tags?: string[] | null | undefined;
|
|
1944
2389
|
comment?: string | null | undefined;
|
|
@@ -2005,6 +2450,7 @@ export declare const LIST_EXPERIMENT_RESULTS_ROUTE: Omit<import("@mastra/core/se
|
|
|
2005
2450
|
startedAt: z.ZodCoercedDate<unknown>;
|
|
2006
2451
|
completedAt: z.ZodCoercedDate<unknown>;
|
|
2007
2452
|
retryCount: z.ZodNumber;
|
|
2453
|
+
attempt: z.ZodOptional<z.ZodNumber>;
|
|
2008
2454
|
traceId: z.ZodNullable<z.ZodString>;
|
|
2009
2455
|
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2010
2456
|
complete: "complete";
|
|
@@ -2083,6 +2529,7 @@ export declare const UPDATE_EXPERIMENT_RESULT_ROUTE: Omit<import("@mastra/core/s
|
|
|
2083
2529
|
traceId: string | null;
|
|
2084
2530
|
createdAt: Date;
|
|
2085
2531
|
expectedTrajectory?: unknown;
|
|
2532
|
+
attempt?: number | undefined;
|
|
2086
2533
|
status?: "complete" | "needs-review" | "reviewed" | null | undefined;
|
|
2087
2534
|
tags?: string[] | null | undefined;
|
|
2088
2535
|
comment?: string | null | undefined;
|
|
@@ -2147,6 +2594,7 @@ export declare const UPDATE_EXPERIMENT_RESULT_ROUTE: Omit<import("@mastra/core/s
|
|
|
2147
2594
|
startedAt: z.ZodCoercedDate<unknown>;
|
|
2148
2595
|
completedAt: z.ZodCoercedDate<unknown>;
|
|
2149
2596
|
retryCount: z.ZodNumber;
|
|
2597
|
+
attempt: z.ZodOptional<z.ZodNumber>;
|
|
2150
2598
|
traceId: z.ZodNullable<z.ZodString>;
|
|
2151
2599
|
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
2152
2600
|
complete: "complete";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datasets.d.ts","sourceRoot":"","sources":["../../../src/server/handlers/datasets.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"datasets.d.ts","sourceRoot":"","sources":["../../../src/server/handlers/datasets.ts"],"names":[],"mappings":"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"}
|