From f44f56e2a4211d2c327590a8454299236227a5e9 Mon Sep 17 00:00:00 2001 From: rrachedEnterprise Date: Fri, 27 Mar 2026 13:36:28 -0400 Subject: [PATCH] Update import statement for PermissionHandler the example uses an outdated SDK API. Fixed PermissionHandler import. --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index ca1f36b72..fa057671e 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -130,7 +130,7 @@ Create `main.py`: ```python import asyncio from copilot import CopilotClient -from copilot.session import PermissionHandler +from copilot.types import PermissionHandler async def main(): client = CopilotClient()