Skip to content

Commit c4d8141

Browse files
authored
[All Hosts] (copilot) update agent schema version (#5223)
1 parent 24b0c87 commit c4d8141

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/design/agent-and-add-in-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Combine Copilot Agents with Office Add-ins (preview)
33
description: Get an overview of why and how to combine a Copilot agent with an Office Add-in.
4-
ms.date: 05/19/2025
4+
ms.date: 06/10/2025
55
ms.topic: overview
66
ms.localizationpriority: medium
77
---
@@ -121,8 +121,8 @@ The agent configuration file includes instructions for the agent and specifies o
121121

122122
```json
123123
{
124-
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.3/schema.json",
125-
"version": "v1.3",
124+
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.4/schema.json",
125+
"version": "v1.4",
126126
"name": "Excel Add-in + Agent",
127127
"description": "Agent for working with Excel cells.",
128128
"instructions": "You are an agent for working with an add-in. You can work with any cells, not just a well-formatted table.",

docs/develop/agent-and-add-in.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Add a Copilot agent to an add-in
33
description: Learn how to add a Copilot agent to an add-in.
4-
ms.date: 05/19/2025
4+
ms.date: 06/10/2025
55
ms.topic: how-to
66
ms.service: microsoft-365
77
ms.localizationpriority: medium
@@ -171,8 +171,8 @@ The runtime object should look similar to the following. There may be other prop
171171

172172
```json
173173
{
174-
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.3/schema.json",
175-
"version": "v1.3",
174+
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.4/schema.json",
175+
"version": "v1.4",
176176
"name": "Excel Add-in + Agent",
177177
"description": "Agent for working with Excel cells.",
178178
"instructions": "You are an agent for working with an add-in. You can work with any cells, not just a well-formatted table.",

docs/quickstarts/agent-and-add-in-quickstart.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Build your first add-in as a Copilot skill
33
description: Learn how to build a simple Copilot agent that has an Excel add-in as a skill.
4-
ms.date: 05/19/2025
4+
ms.date: 06/10/2025
55
ms.topic: how-to
66
ms.service: microsoft-365
77
ms.localizationpriority: high
@@ -87,8 +87,8 @@ Add the agent with the following steps.
8787

8888
```json
8989
{
90-
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.3/schema.json",
91-
"version": "v1.3",
90+
"$schema": "https://developer.microsoft.com/json-schemas/copilot/declarative-agent/v1.4/schema.json",
91+
"version": "v1.4",
9292
"name": "Excel Add-in + Agent",
9393
"description": "Agent for working with Excel cells.",
9494
"instructions": "You are an agent for working with an add-in. You can work with any cells, not just a well-formatted table.",

0 commit comments

Comments
 (0)