(input: AnalyzeInput)
| 40 | |
| 41 | export interface Engine { |
| 42 | propagate(input: AnalyzeInput): Promise<AnalyzeResult>; |
| 43 | streamEvents(input: AnalyzeInput, signal?: AbortSignal): AsyncIterable<RunEvent>; |
| 44 | /** One-shot deep-thinking LLM call (used by the reflection feature). */ |
| 45 | reflect(prompt: string): Promise<string>; |
no outgoing calls
no test coverage detected