diff --git a/packages/fx-core/resource/package.nls.json b/packages/fx-core/resource/package.nls.json index 70f0daef2f..54890a852f 100644 --- a/packages/fx-core/resource/package.nls.json +++ b/packages/fx-core/resource/package.nls.json @@ -257,6 +257,7 @@ "core.copilotPlugin.scaffold.summary.warning.teamsManifest.mitigation": "Mitigation: update \"%s\" field in \"%s\".", "core.createCapabilityQuestion.titleNew": "Capabilities", "core.createCapabilityQuestion.placeholder": "Select a capability", + "core.createProjectQuestion.option.description.preview": "Preview", "core.createProjectQuestion.option.description.previewOnWindow": "Preview on Windows", "core.createProjectQuestion.option.description.worksInOutlook": "Works in Teams and Outlook", "core.createProjectQuestion.option.description.worksInOutlookM365": "Works in Teams, Outlook and the Microsoft 365 app", diff --git a/packages/fx-core/src/question/create.ts b/packages/fx-core/src/question/create.ts index 349d4f97a0..0e100404aa 100644 --- a/packages/fx-core/src/question/create.ts +++ b/packages/fx-core/src/question/create.ts @@ -488,6 +488,7 @@ export class CapabilityOptions { id: "ai-bot", label: getLocalizedString("core.aiBotOption.label"), detail: getLocalizedString("core.aiBotOption.detail"), + description: getLocalizedString("core.createProjectQuestion.option.description.preview"), }; } } diff --git a/templates/js/ai-bot/README.md b/templates/js/ai-bot/README.md index 70c613f209..e9994de8cb 100644 --- a/templates/js/ai-bot/README.md +++ b/templates/js/ai-bot/README.md @@ -21,6 +21,10 @@ The app template is built using the Teams AI library, which provides the capabil > - A [Microsoft 365 account for development](https://docs.microsoft.com/microsoftteams/platform/toolkit/accounts) > - [Teams Toolkit Visual Studio Code Extension](https://aka.ms/teams-toolkit) version 5.0.0 and higher or [Teams Toolkit CLI](https://aka.ms/teamsfx-cli) > - An account with [OpenAI](https://platform.openai.com/). +> +> **Note** +> +> Teams AI Library is currently in preview version. 1. First, select the Teams Toolkit icon on the left in the VS Code toolbar. 1. In the Account section, sign in with your [Microsoft 365 account](https://docs.microsoft.com/microsoftteams/platform/toolkit/accounts) if you haven't already. diff --git a/templates/ts/ai-bot/README.md b/templates/ts/ai-bot/README.md index 734c014163..e1e2c3918b 100644 --- a/templates/ts/ai-bot/README.md +++ b/templates/ts/ai-bot/README.md @@ -21,6 +21,10 @@ The app template is built using the Teams AI library, which provides the capabil > - A [Microsoft 365 account for development](https://docs.microsoft.com/microsoftteams/platform/toolkit/accounts) > - [Teams Toolkit Visual Studio Code Extension](https://aka.ms/teams-toolkit) version 5.0.0 and higher or [Teams Toolkit CLI](https://aka.ms/teamsfx-cli) > - An account with [OpenAI](https://platform.openai.com/). +> +> **Note** +> +> Teams AI Library is currently in preview version. 1. First, select the Teams Toolkit icon on the left in the VS Code toolbar. 1. In the Account section, sign in with your [Microsoft 365 account](https://docs.microsoft.com/microsoftteams/platform/toolkit/accounts) if you haven't already.