(t: string)
| 597 | // still contains the thinking delimiters, so we can't use it directly. |
| 598 | let answer = ''; |
| 599 | const collectAndForward = (t: string) => { answer += t; onToken?.(t); }; |
| 600 | const router = makeLlamaCppThinkingRouter(collectAndForward, onReasoningToken); |
| 601 | await manager.generate(messages, router); |
| 602 | router.flush(); |
nothing calls this directly
no outgoing calls
no test coverage detected