mirror of
https://github.com/github/awesome-copilot.git
synced 2026-06-17 13:11:27 +00:00
chore: publish from staged
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
#:package GitHub.Copilot.SDK@*
|
||||
|
||||
using GitHub.Copilot.SDK;
|
||||
// The GitHub.Copilot.SDK package exposes the GitHub.Copilot namespace.
|
||||
using GitHub.Copilot;
|
||||
|
||||
// Create and start client
|
||||
await using var client = new CopilotClient();
|
||||
@@ -33,12 +34,11 @@ await using var session = await client.CreateSessionAsync(new SessionConfig
|
||||
Model = "claude-opus-4.6",
|
||||
Streaming = true,
|
||||
OnPermissionRequest = PermissionHandler.ApproveAll,
|
||||
McpServers = new Dictionary<string, object>()
|
||||
McpServers = new Dictionary<string, McpServerConfig>()
|
||||
{
|
||||
["playwright"] =
|
||||
new McpLocalServerConfig
|
||||
new McpStdioServerConfig
|
||||
{
|
||||
Type = "local",
|
||||
Command = "npx",
|
||||
Args = ["@playwright/mcp@latest"],
|
||||
Tools = ["*"]
|
||||
|
||||
Reference in New Issue
Block a user