(options: {
stateDir?: string;
})
| 33 | }; |
| 34 | |
| 35 | export async function resolveAgentBrowserTool(options: { |
| 36 | stateDir?: string; |
| 37 | }): Promise<AgentBrowserTool> { |
| 38 | const status = getManagedAgentBrowserStatus(options); |
| 39 | if (status.installed) { |
| 40 | return createManagedTool(status); |
| 41 | } |
| 42 | |
| 43 | throw missingManagedToolError(status); |
| 44 | } |
| 45 | |
| 46 | export async function setupManagedAgentBrowser(options: { |
| 47 | stateDir?: string; |
no test coverage detected
searching dependent graphs…