Is it possible to get the duration from the Eval result while running with noSendLogs? Thanks!
const result = await Eval("Say Hi Bot", {
data: () => [{ input: "Case 1" }],
task: async (input: string) => input,
scores: [SomeScore],
}, {
noSendLogs: true, // <--- get metadata stats without sending logs?
});