@wix/evalforge-evaluator 0.129.0 → 0.130.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.
|
@@ -1,10 +1,3 @@
|
|
|
1
1
|
import type { LLMTrace } from '@wix/evalforge-types';
|
|
2
2
|
import type { TimestampedOpenCodeEvent } from './types.js';
|
|
3
|
-
/**
|
|
4
|
-
* Build an LLMTrace from the NDJSON events emitted by `opencode run --format json`.
|
|
5
|
-
*
|
|
6
|
-
* Events are grouped into turns delimited by `step_finish` events.
|
|
7
|
-
* Each turn may produce THINKING, TOOL_USE, and COMPLETION sub-steps
|
|
8
|
-
* to match the claude-code trace format.
|
|
9
|
-
*/
|
|
10
3
|
export declare function buildLLMTrace(timestampedEvents: TimestampedOpenCodeEvent[], totalDurationMs: number, model: string, provider: string, executionStartTime: Date): LLMTrace;
|
|
@@ -7,7 +7,7 @@ import type { OpenCodeExecutionOptions, OpenCodeExecutionResult } from './types.
|
|
|
7
7
|
*
|
|
8
8
|
* Note: MCPs for OpenCode are passed inline via config, not written to filesystem.
|
|
9
9
|
*/
|
|
10
|
-
export declare function prepareOpenCodeEnvironment(cwd: string, skills: SkillWithLatestVersion[], options: Pick<OpenCodeExecutionOptions, 'mcps' | 'subAgents' | 'rules'>): Promise<void>;
|
|
10
|
+
export declare function prepareOpenCodeEnvironment(cwd: string, skills: SkillWithLatestVersion[], options: Pick<OpenCodeExecutionOptions, 'mcps' | 'subAgents' | 'rules' | 'systemPrompt'>): Promise<void>;
|
|
11
11
|
/**
|
|
12
12
|
* Execute skills using the OpenCode CLI with automatic retry on idle timeouts.
|
|
13
13
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-evaluator",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.130.0",
|
|
4
4
|
"description": "EvalForge Evaluator",
|
|
5
5
|
"bin": "./build/index.js",
|
|
6
6
|
"files": [
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"artifactId": "evalforge-evaluator"
|
|
63
63
|
}
|
|
64
64
|
},
|
|
65
|
-
"falconPackageHash": "
|
|
65
|
+
"falconPackageHash": "72fd4ef58ceb6ed01239753fbcfee5abed337b4090724a0e5d756d36"
|
|
66
66
|
}
|