callAiJudgeがinfra/claude/にハードコードされており、Codexプロバイダー使用時に judge評価が動作しなかった。agents/ai-judge.tsに移動し、runAgent経由で プロバイダーを正しく解決するように修正。
8 lines
263 B
TypeScript
8 lines
263 B
TypeScript
/**
|
|
* Agents module - exports agent execution utilities
|
|
*/
|
|
|
|
export { AgentRunner, runAgent } from './runner.js';
|
|
export { callAiJudge, detectJudgeIndex, buildJudgePrompt } from './ai-judge.js';
|
|
export type { RunAgentOptions, StreamCallback } from './types.js';
|