@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.mjs
CHANGED
|
@@ -1710,6 +1710,10 @@ var ScenarioConversationSchema = z31.object({
|
|
|
1710
1710
|
messages: z31.array(ConversationMessageSchema),
|
|
1711
1711
|
createdAt: z31.string()
|
|
1712
1712
|
});
|
|
1713
|
+
var ConversationResponseSchema = z31.object({
|
|
1714
|
+
messages: z31.array(ConversationMessageSchema),
|
|
1715
|
+
isPartial: z31.boolean()
|
|
1716
|
+
});
|
|
1713
1717
|
|
|
1714
1718
|
// src/evaluation/eval-result.ts
|
|
1715
1719
|
var AssertionResultStatus = /* @__PURE__ */ ((AssertionResultStatus2) => {
|
|
@@ -2011,6 +2015,7 @@ export {
|
|
|
2011
2015
|
ConversationBlockSchema,
|
|
2012
2016
|
ConversationMessageRoles,
|
|
2013
2017
|
ConversationMessageSchema,
|
|
2018
|
+
ConversationResponseSchema,
|
|
2014
2019
|
CostAssertionSchema,
|
|
2015
2020
|
CostConfigSchema,
|
|
2016
2021
|
CreateAgentInputSchema,
|