Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/core/src/evaluation/evaluators/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import type { ResolvedTarget } from '../providers/targets.js';
import type { ChatPrompt, Message, Provider } from '../providers/types.js';
import type { TokenUsage, TraceSummary } from '../trace.js';
import type {
DependencyResult,
DockerWorkspaceConfig,
EvalTest,
EvaluationVerdict,
Expand Down Expand Up @@ -58,6 +59,8 @@ export interface EvaluationContext {
readonly workspacePath?: string;
/** Docker workspace config: when present, code-grader commands run inside a container */
readonly dockerConfig?: DockerWorkspaceConfig;
/** Results from dependency tests (only present when the test has depends_on) */
readonly dependencyResults?: Readonly<Record<string, DependencyResult>>;
}

export interface EvaluationScore {
Expand Down
Loading
Loading