@granular-software/sdk 0.4.46 → 0.4.47
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/dist/agent-evals.d.mts +3 -0
- package/dist/agent-evals.d.ts +3 -0
- package/dist/agent-evals.js +692 -419
- package/dist/agent-evals.js.map +1 -1
- package/dist/agent-evals.mjs +692 -419
- package/dist/agent-evals.mjs.map +1 -1
- package/package.json +1 -1
package/dist/agent-evals.d.mts
CHANGED
|
@@ -294,6 +294,8 @@ interface AgentEvalHarnessOptions {
|
|
|
294
294
|
chatTimeoutMs?: number;
|
|
295
295
|
jobTimeoutMs?: number;
|
|
296
296
|
pollIntervalMs?: number;
|
|
297
|
+
local?: boolean;
|
|
298
|
+
localTurnReportBaseDir?: string;
|
|
297
299
|
harnessTemplateId?: string;
|
|
298
300
|
promptRenderer?: AgentEvalPromptRenderer;
|
|
299
301
|
continuationRenderer?: AgentEvalContinuationRenderer;
|
|
@@ -328,6 +330,7 @@ interface AgentEvalSessionLogIteration {
|
|
|
328
330
|
iteration: number;
|
|
329
331
|
request: string;
|
|
330
332
|
systemPrompt: string;
|
|
333
|
+
generationDurationMs?: number;
|
|
331
334
|
templateId?: string;
|
|
332
335
|
templateVersion?: string;
|
|
333
336
|
templateHash?: string;
|
package/dist/agent-evals.d.ts
CHANGED
|
@@ -294,6 +294,8 @@ interface AgentEvalHarnessOptions {
|
|
|
294
294
|
chatTimeoutMs?: number;
|
|
295
295
|
jobTimeoutMs?: number;
|
|
296
296
|
pollIntervalMs?: number;
|
|
297
|
+
local?: boolean;
|
|
298
|
+
localTurnReportBaseDir?: string;
|
|
297
299
|
harnessTemplateId?: string;
|
|
298
300
|
promptRenderer?: AgentEvalPromptRenderer;
|
|
299
301
|
continuationRenderer?: AgentEvalContinuationRenderer;
|
|
@@ -328,6 +330,7 @@ interface AgentEvalSessionLogIteration {
|
|
|
328
330
|
iteration: number;
|
|
329
331
|
request: string;
|
|
330
332
|
systemPrompt: string;
|
|
333
|
+
generationDurationMs?: number;
|
|
331
334
|
templateId?: string;
|
|
332
335
|
templateVersion?: string;
|
|
333
336
|
templateHash?: string;
|