@wix/evalforge-types 0.76.0 → 0.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +6 -0
- package/build/index.js.map +2 -2
- package/build/index.mjs +5 -0
- package/build/index.mjs.map +2 -2
- package/build/types/evaluation/conversation.d.ts +34 -0
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -74,6 +74,7 @@ __export(index_exports, {
|
|
|
74
74
|
ConversationBlockSchema: () => ConversationBlockSchema,
|
|
75
75
|
ConversationMessageRoles: () => ConversationMessageRoles,
|
|
76
76
|
ConversationMessageSchema: () => ConversationMessageSchema,
|
|
77
|
+
ConversationResponseSchema: () => ConversationResponseSchema,
|
|
77
78
|
CostAssertionSchema: () => CostAssertionSchema,
|
|
78
79
|
CostConfigSchema: () => CostConfigSchema,
|
|
79
80
|
CreateAgentInputSchema: () => CreateAgentInputSchema,
|
|
@@ -1944,6 +1945,10 @@ var ScenarioConversationSchema = import_zod31.z.object({
|
|
|
1944
1945
|
messages: import_zod31.z.array(ConversationMessageSchema),
|
|
1945
1946
|
createdAt: import_zod31.z.string()
|
|
1946
1947
|
});
|
|
1948
|
+
var ConversationResponseSchema = import_zod31.z.object({
|
|
1949
|
+
messages: import_zod31.z.array(ConversationMessageSchema),
|
|
1950
|
+
isPartial: import_zod31.z.boolean()
|
|
1951
|
+
});
|
|
1947
1952
|
|
|
1948
1953
|
// src/evaluation/eval-result.ts
|
|
1949
1954
|
var AssertionResultStatus = /* @__PURE__ */ ((AssertionResultStatus2) => {
|
|
@@ -2246,6 +2251,7 @@ var UpdateEvalScheduleInputSchema = BaseCreateScheduleSchema.partial().superRefi
|
|
|
2246
2251
|
ConversationBlockSchema,
|
|
2247
2252
|
ConversationMessageRoles,
|
|
2248
2253
|
ConversationMessageSchema,
|
|
2254
|
+
ConversationResponseSchema,
|
|
2249
2255
|
CostAssertionSchema,
|
|
2250
2256
|
CostConfigSchema,
|
|
2251
2257
|
CreateAgentInputSchema,
|