| 31 | import { verifyBlockCitations } from "./verify-citations"; |
| 32 | |
| 33 | export interface AgentRunInput { |
| 34 | provider: Provider; |
| 35 | model: string; |
| 36 | system: string; |
| 37 | messages: ChatMessage[]; |
| 38 | toolBudget?: number; |
| 39 | signal?: AbortSignal; |
| 40 | mode?: QueryMode; |
| 41 | } |
| 42 | |
| 43 | const DEFAULT_TOOL_BUDGET = 10; |
| 44 | const MAX_TURNS = 12; |
nothing calls this directly
no outgoing calls
no test coverage detected