diff --git a/packages/spec-parser/src/constants.ts b/packages/spec-parser/src/constants.ts index e9318e7c16..0fe585681b 100644 --- a/packages/spec-parser/src/constants.ts +++ b/packages/spec-parser/src/constants.ts @@ -127,5 +127,5 @@ export class ConstantString { static readonly FunctionDescriptionMaxLens = 100; static readonly DefaultPluginId = "plugin_1"; static readonly PluginManifestSchema = - "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json"; + "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json"; } diff --git a/templates/common/api-plugin-existing-api/appPackage/declarativeCopilot.json.tpl b/templates/common/api-plugin-existing-api/appPackage/declarativeCopilot.json.tpl index acbedc180f..21100357fc 100644 --- a/templates/common/api-plugin-existing-api/appPackage/declarativeCopilot.json.tpl +++ b/templates/common/api-plugin-existing-api/appPackage/declarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}", "description": "Declarative copilot created with Teams Toolkit", diff --git a/templates/common/copilot-gpt-basic/appPackage/declarativeCopilot.json.tpl b/templates/common/copilot-gpt-basic/appPackage/declarativeCopilot.json.tpl index acbedc180f..21100357fc 100644 --- a/templates/common/copilot-gpt-basic/appPackage/declarativeCopilot.json.tpl +++ b/templates/common/copilot-gpt-basic/appPackage/declarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}", "description": "Declarative copilot created with Teams Toolkit", diff --git a/templates/csharp/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl b/templates/csharp/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl index 3ee7a949ad..f2412103cc 100644 --- a/templates/csharp/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl +++ b/templates/csharp/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", "namespace": "repairs", diff --git a/templates/csharp/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl b/templates/csharp/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl index 9e34c51b81..e901d2c183 100644 --- a/templates/csharp/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl +++ b/templates/csharp/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/csharp/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl b/templates/csharp/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl index b42248160f..847e0ed4d0 100644 --- a/templates/csharp/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl +++ b/templates/csharp/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/csharp/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl b/templates/csharp/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl index 802f76a72d..22b59deaff 100644 --- a/templates/csharp/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl +++ b/templates/csharp/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", "namespace": "repairs", diff --git a/templates/csharp/copilot-gpt-basic/appPackage/declarativeCopilot.json.tpl b/templates/csharp/copilot-gpt-basic/appPackage/declarativeCopilot.json.tpl index f14138625b..8a917f1aff 100644 --- a/templates/csharp/copilot-gpt-basic/appPackage/declarativeCopilot.json.tpl +++ b/templates/csharp/copilot-gpt-basic/appPackage/declarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}", "description": "Declarative copilot created with Teams Toolkit", diff --git a/templates/csharp/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl b/templates/csharp/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl index 95e0ddc948..0186738438 100644 --- a/templates/csharp/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl +++ b/templates/csharp/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", "namespace": "repairs", diff --git a/templates/csharp/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl b/templates/csharp/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl index 5361f2b13b..0e8edb1159 100644 --- a/templates/csharp/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/csharp/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This GPT helps you with finding car repair records.", diff --git a/templates/js/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl b/templates/js/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl index cb6ec650ed..d75b0d8a58 100644 --- a/templates/js/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl +++ b/templates/js/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/js/api-plugin-from-scratch-bearer/appPackage/repairDeclarativeCopilot.json.tpl b/templates/js/api-plugin-from-scratch-bearer/appPackage/repairDeclarativeCopilot.json.tpl index 4a436a8bc5..73336ede20 100644 --- a/templates/js/api-plugin-from-scratch-bearer/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/js/api-plugin-from-scratch-bearer/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This declarative copilot helps you with finding car repair records.", diff --git a/templates/js/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl b/templates/js/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl index 9e34c51b81..e901d2c183 100644 --- a/templates/js/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl +++ b/templates/js/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/js/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl b/templates/js/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl index b42248160f..847e0ed4d0 100644 --- a/templates/js/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl +++ b/templates/js/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/js/api-plugin-from-scratch-oauth/appPackage/repairDeclarativeCopilot.json.tpl b/templates/js/api-plugin-from-scratch-oauth/appPackage/repairDeclarativeCopilot.json.tpl index d8cbb8ce88..4ecde73888 100644 --- a/templates/js/api-plugin-from-scratch-oauth/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/js/api-plugin-from-scratch-oauth/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This declarative copilot helps you with finding car repair records.", diff --git a/templates/js/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl b/templates/js/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl index 802f76a72d..22b59deaff 100644 --- a/templates/js/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl +++ b/templates/js/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", "namespace": "repairs", diff --git a/templates/js/api-plugin-from-scratch/appPackage/repairDeclarativeCopilot.json.tpl b/templates/js/api-plugin-from-scratch/appPackage/repairDeclarativeCopilot.json.tpl index 4a436a8bc5..73336ede20 100644 --- a/templates/js/api-plugin-from-scratch/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/js/api-plugin-from-scratch/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This declarative copilot helps you with finding car repair records.", diff --git a/templates/js/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl b/templates/js/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl index 1a51780f34..1df65408a9 100644 --- a/templates/js/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl +++ b/templates/js/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/js/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl b/templates/js/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl index 5361f2b13b..0e8edb1159 100644 --- a/templates/js/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/js/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This GPT helps you with finding car repair records.", diff --git a/templates/ts/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl b/templates/ts/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl index cb6ec650ed..d75b0d8a58 100644 --- a/templates/ts/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl +++ b/templates/ts/api-plugin-from-scratch-bearer/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/ts/api-plugin-from-scratch-bearer/appPackage/repairDeclarativeCopilot.json.tpl b/templates/ts/api-plugin-from-scratch-bearer/appPackage/repairDeclarativeCopilot.json.tpl index 4a436a8bc5..73336ede20 100644 --- a/templates/ts/api-plugin-from-scratch-bearer/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/ts/api-plugin-from-scratch-bearer/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This declarative copilot helps you with finding car repair records.", diff --git a/templates/ts/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl b/templates/ts/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl index 9e34c51b81..e901d2c183 100644 --- a/templates/ts/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl +++ b/templates/ts/api-plugin-from-scratch-oauth/appPackage/ai-plugin.dev.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/ts/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl b/templates/ts/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl index b42248160f..847e0ed4d0 100644 --- a/templates/ts/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl +++ b/templates/ts/api-plugin-from-scratch-oauth/appPackage/ai-plugin.local.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/ts/api-plugin-from-scratch-oauth/appPackage/repairDeclarativeCopilot.json.tpl b/templates/ts/api-plugin-from-scratch-oauth/appPackage/repairDeclarativeCopilot.json.tpl index d8cbb8ce88..4ecde73888 100644 --- a/templates/ts/api-plugin-from-scratch-oauth/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/ts/api-plugin-from-scratch-oauth/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This declarative copilot helps you with finding car repair records.", diff --git a/templates/ts/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl b/templates/ts/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl index e7dcbb4096..29f4dfeeca 100644 --- a/templates/ts/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl +++ b/templates/ts/api-plugin-from-scratch/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "{{appName}}${{APP_NAME_SUFFIX}}", diff --git a/templates/ts/api-plugin-from-scratch/appPackage/repairDeclarativeCopilot.json.tpl b/templates/ts/api-plugin-from-scratch/appPackage/repairDeclarativeCopilot.json.tpl index 4a436a8bc5..73336ede20 100644 --- a/templates/ts/api-plugin-from-scratch/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/ts/api-plugin-from-scratch/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This declarative copilot helps you with finding car repair records.", diff --git a/templates/ts/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl b/templates/ts/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl index 4ebf389b44..3cb906bc21 100644 --- a/templates/ts/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl +++ b/templates/ts/copilot-gpt-from-scratch-plugin/appPackage/ai-plugin.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/v2.1/plugin.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/plugin/v2.1/schema.json", "schema_version": "v2.1", "namespace": "repairs", "name_for_human": "ttk-plugin-copilot${{APP_NAME_SUFFIX}}", diff --git a/templates/ts/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl b/templates/ts/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl index 5361f2b13b..0e8edb1159 100644 --- a/templates/ts/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl +++ b/templates/ts/copilot-gpt-from-scratch-plugin/appPackage/repairDeclarativeCopilot.json.tpl @@ -1,5 +1,5 @@ { - "$schema": "https://aka.ms/json-schemas/copilot-extensions/vNext/declarative-copilot.schema.json", + "$schema": "https://aka.ms/json-schemas/copilot/declarative-agent/v1.0/schema.json", "version": "v1.0", "name": "{{appName}}${{APP_NAME_SUFFIX}}", "description": "This GPT helps you with finding car repair records.",