| 99 | * be removed in the next major version). |
| 100 | */ |
| 101 | export interface Executor { |
| 102 | execute( |
| 103 | code: string, |
| 104 | providersOrFns: |
| 105 | | ResolvedProvider[] |
| 106 | | Record<string, (...args: unknown[]) => Promise<unknown>> |
| 107 | ): Promise<ExecuteResult>; |
| 108 | } |
| 109 | |
| 110 | // ── ToolDispatcher ──────────────────────────────────────────────────── |
| 111 |
no outgoing calls
no test coverage detected