Skip to content

Commit 2751fc1

Browse files
authored
Copilot SDK - Public preview note (#60605)
1 parent b1671d2 commit 2751fc1

12 files changed

Lines changed: 12 additions & 23 deletions

File tree

content/copilot/how-tos/copilot-sdk/integrations/microsoft-agent-framework.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ product: '{% data reusables.gated-features.copilot-sdk %}'
88
contentType: how-tos
99
---
1010

11-
> [!NOTE]
12-
> {% data variables.copilot.copilot_sdk_short %} is currently in {% data variables.release-phases.technical_preview %}. Functionality and availability are subject to change.
11+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1312

1413
Use {% data variables.copilot.copilot_sdk_short %} as an agent provider inside the [Microsoft Agent Framework](https://devblogs.microsoft.com/semantic-kernel/build-ai-agents-with-github-copilot-sdk-and-microsoft-agent-framework/) (MAF) to compose multi-agent workflows alongside Azure OpenAI, Anthropic, and other providers.
1514

content/copilot/how-tos/copilot-sdk/sdk-getting-started.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ category:
1212
- Author and optimize with Copilot
1313
---
1414

15-
> [!NOTE]
16-
>{% data variables.copilot.copilot_sdk_short %} is currently in {% data variables.release-phases.technical_preview %}. Functionality and availability are subject to change.
15+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1716

1817
{% data variables.copilot.copilot_sdk %} lets you build applications powered by {% data variables.product.prodname_copilot %} in your preferred programming language. In this guide, you'll install the SDK using `npm`, send your first message, and add streaming responses.
1918

content/copilot/how-tos/copilot-sdk/troubleshooting/debug-copilot-sdk.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ versions:
88
contentType: how-tos
99
---
1010

11-
> [!NOTE]
12-
> {% data reusables.copilot.copilot-sdk.technical-preview-note %}
11+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1312

1413
## Enable debug logging
1514

content/copilot/how-tos/copilot-sdk/troubleshooting/debug-mcp-servers.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ versions:
88
contentType: how-tos
99
---
1010

11-
> [!NOTE]
12-
> {% data reusables.copilot.copilot-sdk.technical-preview-note %}
11+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1312

1413
## Quick diagnostics
1514

content/copilot/how-tos/copilot-sdk/troubleshooting/sdk-and-cli-compatibility.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ versions:
88
contentType: how-tos
99
---
1010

11-
> [!NOTE]
12-
> {% data reusables.copilot.copilot-sdk.technical-preview-note %}
11+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1312

1413
{% data variables.copilot.copilot_sdk %} communicates with {% data variables.copilot.copilot_cli %} via JSON-RPC protocol. Features must be explicitly exposed through this protocol to be available in the SDK. Many interactive CLI features are terminal-specific and not available programmatically.
1514

content/copilot/how-tos/copilot-sdk/use-hooks/error-handling.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ category:
1010
- Author and optimize with Copilot
1111
---
1212

13-
> [!NOTE]
14-
> {% data reusables.copilot.copilot-sdk.technical-preview-note %}
13+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1514

1615
The `onErrorOccurred` hook is called when errors occur during session execution. Use it to:
1716

content/copilot/how-tos/copilot-sdk/use-hooks/post-tool-use.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ category:
1010
- Author and optimize with Copilot
1111
---
1212

13-
> [!NOTE]
14-
> {% data reusables.copilot.copilot-sdk.technical-preview-note %}
13+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1514

1615
The `onPostToolUse` hook is called **after** a tool executes. Use it to:
1716

content/copilot/how-tos/copilot-sdk/use-hooks/pre-tool-use.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ category:
1010
- Author and optimize with Copilot
1111
---
1212

13-
> [!NOTE]
14-
> {% data reusables.copilot.copilot-sdk.technical-preview-note %}
13+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1514

1615
The `onPreToolUse` hook is called **before** a tool executes. Use it to:
1716

content/copilot/how-tos/copilot-sdk/use-hooks/quickstart.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ category:
1111
- Author and optimize with Copilot
1212
---
1313

14-
> [!NOTE]
15-
> {% data reusables.copilot.copilot-sdk.technical-preview-note %}
14+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1615

1716
Hooks allow you to intercept and customize the behavior of {% data variables.copilot.copilot_sdk_short %} sessions at key points in the conversation lifecycle. Use hooks to:
1817

content/copilot/how-tos/copilot-sdk/use-hooks/session-lifecycle.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ category:
1010
- Author and optimize with Copilot
1111
---
1212

13-
> [!NOTE]
14-
> {% data reusables.copilot.copilot-sdk.technical-preview-note %}
13+
{% data reusables.copilot.copilot-sdk.technical-preview-note %}
1514

1615
Session lifecycle hooks let you respond to session start and end events. Use them to:
1716

0 commit comments

Comments
 (0)