From c1f10f7dff1c9207f4cec82883371738a52430ce Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 28 Jan 2026 23:38:12 +0000 Subject: [PATCH] Add missing imports to Manual Server Control example Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com> --- instructions/copilot-sdk-python.instructions.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/instructions/copilot-sdk-python.instructions.md b/instructions/copilot-sdk-python.instructions.md index 867b6c3d..8bc46757 100644 --- a/instructions/copilot-sdk-python.instructions.md +++ b/instructions/copilot-sdk-python.instructions.md @@ -60,6 +60,9 @@ When creating a CopilotClient, use a dict with these keys: For explicit control: ```python +from copilot import CopilotClient +import asyncio + async def main(): client = CopilotClient({"auto_start": False}) await client.start()