Skip to content

Commit bdf01d6

Browse files
committed
Updates from PR review
1 parent 8f6a700 commit bdf01d6

File tree

4 files changed

+23
-15
lines changed

4 files changed

+23
-15
lines changed

hub/apps/develop/action-framework/action-json.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: Action JSON schema for Windows Copilot Action Framework providers
3-
description: Describes the format of the action definition JSON file format for Windows Copilot Action Framework.
2+
title: Action definition JSON schema for Windows Copilot Runtime Action providers
3+
description: Describes the format of the action definition JSON file format for Windows Copilot Runtime Action providers.
44
ms.topic: article
55
ms.date: 02/04/2025
66
ms.localizationpriority: medium
77
---
88

99

1010

11-
# Action JSON schema for Windows Copilot Action Framework providers
11+
# Action definition JSON schema for Windows Copilot Runtime Action providers
1212

13-
Describes the format of the action definition JSON file format for Action Framework. This file must be included in your project with the **Build Action** set to "Content" and **Copy to Output Directory** set to “Copy if newer”. Specify the package-relative path to the JSON file in your package manifest XML file. For more information, see [Action provider package manifest XML format](action-provider-manifest.md).
13+
Describes the format of the action definition JSON file format for Windows Copilot Runtime Actions. This file must be included in your project with the **Build Action** set to "Content" and **Copy to Output Directory** set to “Copy if newer”. Specify the package-relative path to the JSON file in your package manifest XML file. For more information, see [Action provider package manifest XML format](action-provider-manifest.md).
1414

1515
## Example action definition JSON file
1616

@@ -137,7 +137,7 @@ The tables below describe the properties of the action definition JSON file.
137137

138138
## ActionEntityKind enumeration
139139

140-
The **ActionEntityKind** enumeration specifies the types of entities that are supported by the Action Framework. In the context of a JSON action definition, the entity kinds are string literals that are case-sensitive.
140+
The **ActionEntityKind** enumeration specifies the types of entities that are supported by the Windows Copilot Runtime Actions. In the context of a JSON action definition, the entity kinds are string literals that are case-sensitive.
141141

142142
| Entity kind string | Description |
143143
|-------|------------|-------------|

hub/apps/develop/action-framework/action-provider-manifest.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
title: Action provider package manifest XML format
3-
description: Describes the package manifest XML format for action providers.
2+
title: Windows Copilot Runtime Action provider package manifest XML format
3+
description: Describes the package manifest XML format for Windows Copilot Runtime Actions providers.
44
ms.topic: article
55
ms.date: 02/05/2024
66
ms.localizationpriority: medium
77
---
88

9-
# Action provider package manifest XML format
9+
# Windows Copilot Runtime Action provider package manifest XML format
1010

11-
This article describes the package manifest XML format for action providers for the Windows Copilot Action Framework.
11+
This article describes the package manifest XML format for Windows Copilot Runtime Actions.
1212

1313
## App extension
1414

1515
The app package manifest file supports many different extensions and features for Windows apps. The app package manifest format is defined by a set of schemas that are documented in the [Package manifest schema reference](/uwp/schemas/appxpackage/uapmanifestschema/schema-root). Action providers declare their registration information within the [uap3:AppExtension](/uwp/schemas/appxpackage/uapmanifestschema/element-uap3-appextension-manual). The **Name** attribute of the extension must be set to "com.microsoft.windows.ai.actions".
1616

1717
Action providers should include the [uap3:Properties](/uwp/schemas/appxpackage/uapmanifestschema/element-uap3-properties-manual) as the child of **uap3:AppExtension**. The package manifest schema does not enforce the structure of the **uap3:Properties** element other than requiring well-formed XML.
1818

19-
Action providers must provide a **Registration** element which specifies the path to the action definition JSON file. For more information, see [Action JSON schema for Action Framework providers](action-json.md).
19+
Action providers must provide a **Registration** element which specifies the path to the action definition JSON file. For more information, see [Action JSON schema for Windows Copilot Action providers](action-json.md).
2020

2121
```xml
2222
<uap3:Extension Category="windows.appExtension">

hub/apps/develop/action-framework/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Action Framework providers
3-
description: Learn about Action Framework providers for Windows apps.
2+
title: Windows Copilot Runtime Actions providers
3+
description: Learn about Windows Copilot Runtime Actions providers for Windows apps.
44
ms.topic: article
55
ms.date: 02/05/2025
66
ms.localizationpriority: medium
77
---
88

9-
# Action Framework providers
9+
# Windows Copilot Runtime Actions providers
1010

1111
TBD - Overview content
1212

@@ -20,5 +20,5 @@ When building AI backed actions, it is your responsibility as the Action author
2020
2121
## Related articles
2222

23-
[Action JSON schema for Action Framework providers](action-json.md)
24-
23+
[Action definition JSON schema for Windows Copilot Runtime Actions providers](action-json.md)
24+
[Windows Copilot Runtime Actions provider package manifest XML format](action-provider-manifest.md)

hub/apps/toc.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,14 @@ items:
305305
- name: Integrate with Windows
306306
href: develop/windows-integration/index.md
307307
items:
308+
- name: Windows Copilot Runtime Actions providers
309+
items:
310+
- name: Overview
311+
href: develop/action-framework/index.md
312+
- name: Action definition JSON schema
313+
href: develop/action-framework/action-json.md
314+
- name: Action provider package manifest XML format
315+
href: develop/action-framework/action-provider-manifest.md
308316
- name: Feed providers
309317
items:
310318
- name: Overview

0 commit comments

Comments
 (0)