()
| 48 | } |
| 49 | |
| 50 | async function createSession(): Promise<CopilotSession> { |
| 51 | return client.createSession({ onPermissionRequest: approveAll }); |
| 52 | } |
| 53 | |
| 54 | async function disconnect(session: CopilotSession | undefined): Promise<void> { |
| 55 | if (!session) { |
no test coverage detected
searching dependent graphs…