How can I modify the logo of my Azure OpenAI chatbot which I deployed in Azure App Service? with no code writing

Syedbabar Ali 400 Reputation points
2023-09-14T12:07:10.2633333+00:00

How can I modify the style of my Azure OpenAI chatbot which I deployed in Azure App Service?

Please help me how to change azure logo on my chatbot without use pythone code deployment (I deployed throgh from chatplay ground) ?

Azure OpenAI Service
Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
4,092 questions
{count} votes

Accepted answer
  1. Saurabh Sharma 23,851 Reputation points Microsoft Employee Moderator
    2023-09-14T19:48:05.0466667+00:00

    Hi @Syedbabar Ali ,

    Thanks for using Microsoft Q&A!!

    If you want to do any customization, I will highly recommend you use the source code of the deployed web application to prevent any unwanted issues. Refer to this page for the web app customization.

    However, you can try checking the Kudu console if you can leverage it do any changes to the published code.

    Please let me know if you have any other questions.

    Thanks

    Saurabh


    Please do not forget to "Accept the answer" wherever the information provided helps you to help others in the community.

    2 people found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Ignacio Sales 5 Reputation points
    2024-03-20T17:35:56.8333333+00:00

    I was trying to customize the app simply through setting environment variables. I can see in the source code for instance the below setting for the page title. So I added an environment variable with the name UI_TITLE to my app configuration, with my custom text. But no matter how many times I restart or refresh the application, I do not see the change.

    I think this is the right approach for customizing basic UI Settings, I'm just a bit lost on what to do to actually get the app to read the new values for the environment variables.

    UI_TITLE = os.environ.get("UI_TITLE") or "Contoso"
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.