An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
Hi Gilbert Wong,
I understand what you mean. The Contoso name and logo you see is part of the default sample web app experience that gets deployed. The Microsoft Foundry portal branding itself is not something you can rename in the UI.
What you can do is rebrand the deployed web app, because it is an Azure App Service behind the scenes.
Open the deployed web app resource in Azure Go to the Azure portal and open the App Service that was created by the deployment. In the App Service, go to Configuration and look for Application settings. [Use the Az...soft Learn | Learn.Microsoft.com]
Update the UI settings used by the sample app Microsoft documents the environment variables that control the UI. You can change the title, logo, chat title, chat logo, description, and favicon by setting these values in the web app configuration. Examples of what you can set include UI_TITLE, UI_LOGO, UI_CHAT_TITLE, UI_CHAT_LOGO, UI_CHAT_DESCRIPTION, and UI_FAVICON. The same doc also lists optional switches like UI_SHOW_SHARE_BUTTON and UI_SHOW_CHAT_HISTORY_BUTTON.
Save and restart the web app After you add or update the settings, save the changes and restart the App Service so the new branding loads. The doc explains these values are read from the web app environment settings.
I Hope this helps. Do let me know if you have any further queries.
Thankyou!