| 70 | } |
| 71 | |
| 72 | interface ChoiceGenerate { |
| 73 | index: number; |
| 74 | message: Message; |
| 75 | logprobs: boolean | null; |
| 76 | finish_reason: string; |
| 77 | } |
| 78 | |
| 79 | interface Tool { |
| 80 | run: (...args: any[]) => Promise<any>; |
nothing calls this directly
no outgoing calls
no test coverage detected