diff --git a/README.md b/README.md index bff82af2..8b2e4cda 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ In the future, you'll even be able to use the `AI` CLI to dynamically create cod You can install the Azure `AI` CLI locally on Linux, Mac, or Windows computers, or use it thru an internet browser or Docker container. -During this private preview, we recommend using the Azure `AI` CLI thru GitHub Codespaces. This will allow you to quickly get started without having to install anything locally. +During this public preview, we recommend using the Azure `AI` CLI thru GitHub Codespaces. This will allow you to quickly get started without having to install anything locally. ### OPTION 1: GitHub Codespaces @@ -120,8 +120,8 @@ ai search index update --files "../../data/3-product-info/*.md" --index-name "pr AI - Azure AI CLI, Version 1.0.0 Copyright (c) 2023 Microsoft Corporation. All Rights Reserved. -This PRIVATE PREVIEW version may change at any time. -See: https://aka.ms/azure-ai-cli-private-preview +This PUBLIC PREVIEW version may change at any time. +See: https://aka.ms/azure-ai-cli-public-preview SEARCH INDEX UPDATE diff --git a/src/ai/.x/help/flow b/src/ai/.x/help/flow index 6b82d456..5c8b7d77 100644 --- a/src/ai/.x/help/flow +++ b/src/ai/.x/help/flow @@ -8,11 +8,14 @@ COMMANDS ai flow new [...] (see: ai help flow new) ai flow invoke [...] (see: ai help flow invoke) - ai flow serve [...] (see: ai help flow serve) + ai flow serve [...] (see: ai help flow serve) ai flow upload [...] (see: ai help flow upload) + ai flow package [...] (see: ai help flow package) - ai flow deploy [...] (see: ai help flow deploy) +`#e_;*` ai flow deploy [...] (see: ai help flow deploy) + +`#e_;* - COMING SOON` ADDITIONAL TOPICS diff --git a/src/ai/Program_AI.cs b/src/ai/Program_AI.cs index 8a504dcc..01e28653 100644 --- a/src/ai/Program_AI.cs +++ b/src/ai/Program_AI.cs @@ -28,7 +28,7 @@ public class AiProgramData : IProgramData #region name data public string Name => "ai"; public string DisplayName => "Azure AI CLI"; - public string WarningBanner => "`#e_;This PRIVATE PREVIEW version may change at any time.\nSee: https://aka.ms/azure-ai-cli-public-preview"; + public string WarningBanner => "`#e_;This PUBLIC PREVIEW version may change at any time.\nSee: https://aka.ms/azure-ai-cli-public-preview"; public string TelemetryUserAgent => "ai-cli 0.0.1"; #endregion