takt/src/agents/index.ts
nrslib 89f2b635cf fix: callAiJudgeをプロバイダーシステム経由に変更(Codex対応)
callAiJudgeがinfra/claude/にハードコードされており、Codexプロバイダー使用時に
judge評価が動作しなかった。agents/ai-judge.tsに移動し、runAgent経由で
プロバイダーを正しく解決するように修正。
2026-02-10 16:31:03 +09:00

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';