You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/design/agent-and-add-in-overview.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Combine Copilot Agents with Office Add-ins (preview)
3
3
description: Get an overview of why and how to combine a Copilot agent with an Office Add-in.
4
-
ms.date: 10/17/2025
4
+
ms.date: 11/11/2025
5
5
ms.topic: overview
6
6
ms.localizationpriority: medium
7
7
---
@@ -141,8 +141,6 @@ The agent configuration file includes instructions for the agent and specifies o
141
141
}
142
142
```
143
143
144
-
[!INCLUDE [Validation warning about missing 'auth' property](../includes/auth-property-warning-note.md)]
145
-
146
144
The reference documentation for declarative agents is at [Declarative agent schema 1.5 for Microsoft 365 Copilot](/microsoft-365-copilot/extensibility/declarative-agent-manifest-1.5).
147
145
148
146
### Copilot API plug-in configuration
@@ -154,7 +152,8 @@ The API plug-in configuration file specifies the "functions" of the plug-in in t
154
152
- The `"responding.instructions"` property only provides *guidance* to Copilot about how to respond. It doesn't put any limits or structural requirements on the response.
155
153
- The `"runtimes.run_for_functions"` array must include either the same string as `"functions.name"` or a wildcard string that matches it.
156
154
- The `"runtimes.spec.local_endpoint"` property specifies that the JavaScript function that is associated with the "fillcolor" string is available in an Office Add-in, rather than in some REST endpoint.
157
-
-The `"runtimes.spec.allowed_host"` property specifies that the agent should only be visible in Excel.
155
+
- The `"runtimes.spec.allowed_host"` property specifies that the agent should only be visible in Excel.
156
+
- The `"runtimes.auth.type"` property is always "None" for Office Add-in agents.
158
157
159
158
```json
160
159
{
@@ -206,7 +205,10 @@ The API plug-in configuration file specifies the "functions" of the plug-in in t
Copy file name to clipboardExpand all lines: docs/develop/agent-and-add-in.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Add a Copilot agent to an add-in
3
3
description: Learn how to add a Copilot agent to an add-in.
4
-
ms.date: 10/17/2025
4
+
ms.date: 11/11/2025
5
5
ms.topic: how-to
6
6
ms.service: microsoft-365
7
7
ms.localizationpriority: medium
@@ -191,8 +191,6 @@ The runtime object should look similar to the following. There may be other prop
191
191
}
192
192
```
193
193
194
-
[!INCLUDE [Validation warning about missing 'auth' property](../includes/auth-property-warning-note.md)]
195
-
196
194
1.*Replace the property values with new values that are appropriate for your add-in.* For more information about these properties, see [Declarative agent manifest object](/microsoft-365-copilot/extensibility/declarative-agent-manifest-1.2#declarative-agent-manifest-object).
197
195
198
196
> [!NOTE]
@@ -251,7 +249,10 @@ The runtime object should look similar to the following. There may be other prop
251
249
"local_endpoint": "Microsoft.Office.Addin",
252
250
"allowed_host": ["workbook"]
253
251
},
254
-
"run_for_functions": ["FillColor"]
252
+
"run_for_functions": ["FillColor"],
253
+
"auth": {
254
+
"type": "None"
255
+
}
255
256
}
256
257
]
257
258
}
@@ -270,6 +271,7 @@ The runtime object should look similar to the following. There may be other prop
270
271
- The `"runtimes.run_for_functions"` array must include either the same string as `"functions.name"` or a wildcard string that matches it.
271
272
- The `"reasoning.description"` and `"reasoning.instructions"` refer to a JavaScript function, not a REST API.
272
273
- The `"runtimes.spec.local_endpoint"` property tells the Copilot agent to look for functions in an Office Add-in instead of at a REST service URL.
274
+
- The `"runtimes.auth.type"` property is always "None" for Office Add-in agents.
0 commit comments