diff --git a/docs/getting-started.md b/docs/getting-started.md index dc56b865..2c4e6159 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -1033,7 +1033,8 @@ using GitHub.Copilot.SDK; using var client = new CopilotClient(new CopilotClientOptions { - CliUrl = "localhost:4321" + CliUrl = "localhost:4321", + UseStdio = false }); // Use the client normally diff --git a/dotnet/src/Client.cs b/dotnet/src/Client.cs index 88946eef..112e988e 100644 --- a/dotnet/src/Client.cs +++ b/dotnet/src/Client.cs @@ -70,7 +70,7 @@ public partial class CopilotClient : IDisposable, IAsyncDisposable /// var client = new CopilotClient(); /// /// // Connect to an existing server - /// var client = new CopilotClient(new CopilotClientOptions { CliUrl = "localhost:3000" }); + /// var client = new CopilotClient(new CopilotClientOptions { CliUrl = "localhost:3000", UseStdio = false }); /// /// // Custom CLI path with specific log level /// var client = new CopilotClient(new CopilotClientOptions