cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
jdriscollpro
Advocate I
Advocate I

Customize look and feel of a government GCC bot

I was using this line of code for my non-GCC test bot; however, it is not working for my gcc bot. Is there a different URL for GCC or is this not currently supported? Not including my BOT ID for security reasons. 

 

 

<!DOCTYPE html>
<html>
<head>
    <title>TEST CHAT BOT</title> 
    <!-- This styling is for the Web Chat demonstration purposes. It is recommended that style is moved to separate file for organization in larger projects -->
    <style>
        html, body {
            height: 100%;
        }

        body {
            margin: 0;
        }

        h1 {
            font-size: 24px;
            font-family: Source Sans Pro Bold 700;
            line-height: 20px;
            color: whitesmoke;
            display: table-cell;
            padding: 13px 0px 0px 20px;
        }

        #heading {
            background-color: #FFFFFF;
            height: 50px;
        }

        .main {
            margin: 18px;
            border-radius: 4px;
        }

        div[role="form"]{
            background-color: #FFFFFF;
        }

        #webchat {
            position: fixed;
            height: calc(100% - 50px);
            width: 100%;
            top: 50px;
            overflow: hidden;
        }

    </style>

</head>
<body>
    <div>
        <div id="heading">
            <!-- Change the h1 text to change the bot name -->    
            <h1></h1>
        </div>
        <div id="webchat" role="main"></div>
    </div>    

  <script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script>

  <script>

                const styleOptions = {
        
           // Add styleOptions to customize Web Chat canvas - hide upload button
          hideUploadButton: true,
          
           // Primary font
          primaryFont: "Source Sans Pro",
          userAvatarInitials: "ME",
          userAvatarBackgroundColor: "Grey",
          
		   // Change bubble from BOT
          bubbleTextColor: "#FFFFFF",
          bubbleBackground: "#007D85",
		  bubbleBorderRadius: 10,
          bubbleNubSize: 10,
          bubbleBorderColor: "#FFFFFF",
          bubbleNubOffset: "top",
		   
           // Change bubble from USER
          bubbleFromUserBackground: "#EDEDED",
          bubbleFromUserTextColor: "#000000",
          bubbleFromUserBorderRadius: 10,
          bubbleFromUserBorderColor: "#EDEDED",
          bubbleFromUserNubSize: 10,
          bubbleFromUserNubOffset: "top",
          
 
           // Add avatar images and user avatar images and BG color for BOT
          botAvatarInitials: 'BT',
          accent: '#00809d',
          botAvatarBackgroundColor: "#FFFFFF",
          botAvatarImage: 'https://docs.microsoft.com/en-us/azure/bot-service/v4sdk/media/logo_bot.svg',
          userAvatarImage: 'https://avatars.githubusercontent.com/u/661465',
          
          //Change the suggested action layout buttons
          suggestedActionLayout: 'carousel',
          suggestedActionBorderRadius: 10,	 
          suggestedActionBackgroundColorOnHover: '#007D85',
          suggestedActionTextColorOnHover: '#FFFFFF',
        };

        // Add your BOT ID below 
        var BOT_ID = "<<INSERT BOT ID>>"; 
        var theURL = "https://powerva.microsoft.com/api/botmanagement/v1/directline/directlinetoken?botId=" + BOT_ID;

      fetch(theURL)
            .then(response => response.json())
            .then(conversationInfo => {
                window.WebChat.renderWebChat(
                    {
                        directLine: window.WebChat.createDirectLine({
                            token: conversationInfo.token,
                        }),
                        styleOptions
                    },
                    document.getElementById('webchat')
                );
            })
            .catch(err => console.error("An error occurred: " + err));

    </script>
  </body>
</html>

 

  

1 ACCEPTED SOLUTION

Accepted Solutions
PowerPuffKK
Resolver IV
Resolver IV

Hi @jdriscollpro,

 

Thanks for the question!

 

Just to confirm, PVA is indeed supported for GCC.

 

I have found the issue with your code - the following properties do not exist in Bot Framework, they are used in Adaptive Cards Framework and were breaking your code.

 

bubbleNubOffset

 

 

 

bubbleNubSize: 10,

 

 

 

I have updated your code and have tried it in browser with my sample PVA and can confirm that it's successfully loading, please see screenshot below.

 

Here's the code snippet(I have removed my bot ID): 

 

 

<!DOCTYPE html>
<html>
<head>
    <title>TEST CHAT BOT</title> 
    <!-- This styling is for the Web Chat demonstration purposes. It is recommended that style is moved to separate file for organization in larger projects -->
    <style>
        html, body {
            height: 100%;
        }

        body {
            margin: 0;
        }

        h1 {
            font-size: 24px;
            font-family: Source Sans Pro Bold 700;
            line-height: 20px;
            color: whitesmoke;
            display: table-cell;
            padding: 13px 0px 0px 20px;
        }

        #heading {
            background-color: #FFFFFF;
            height: 50px;
        }

        .main {
            margin: 18px;
            border-radius: 4px;
        }

        div[role="form"]{
            background-color: #FFFFFF;
        }

        #webchat {
            position: fixed;
            height: calc(100% - 50px);
            width: 100%;
            top: 50px;
            overflow: hidden;
        }

    </style>

</head>
<body>
    <div>
        <div id="heading">
            <!-- Change the h1 text to change the bot name -->    
            <h1></h1>
        </div>
        <div id="webchat" role="main"></div>
    </div>    

  <script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script>

  <script>

                const styleOptions = {
        
           // Add styleOptions to customize Web Chat canvas - hide upload button
          hideUploadButton: true,
          
           // Primary font
          primaryFont: "Source Sans Pro",
          userAvatarInitials: "ME",
          userAvatarBackgroundColor: "Grey",
          
		   // Change bubble from BOT
          bubbleTextColor: "#FFFFFF",
          bubbleBackground: "#007D85",
		  bubbleBorderRadius: 10,
      
          bubbleBorderColor: "#FFFFFF",
         
		   
           // Change bubble from USER
          bubbleFromUserBackground: "#EDEDED",
          bubbleFromUserTextColor: "#000000",
          bubbleFromUserBorderRadius: 10,
          bubbleFromUserBorderColor: "#EDEDED",
       
   
          
 
           // Add avatar images and user avatar images and BG color for BOT
          botAvatarInitials: 'BT',
          accent: '#00809d',
          botAvatarBackgroundColor: "#FFFFFF",
          botAvatarImage: 'https://docs.microsoft.com/en-us/azure/bot-service/v4sdk/media/logo_bot.svg',
          userAvatarImage: 'https://avatars.githubusercontent.com/u/661465',
          
          //Change the suggested action layout buttons
          suggestedActionLayout: 'carousel',
          suggestedActionBorderRadius: 10,	 
          suggestedActionBackgroundColorOnHover: '#007D85',
          suggestedActionTextColorOnHover: '#FFFFFF',
        };

        // Add your BOT ID below 
        var BOT_ID = ""; 
        var theURL = "https://powerva.microsoft.com/api/botmanagement/v1/directline/directlinetoken?botId=" + BOT_ID;

      fetch(theURL)
            .then(response => response.json())
            .then(conversationInfo => {
                window.WebChat.renderWebChat(
                    {
                        directLine: window.WebChat.createDirectLine({
                            token: conversationInfo.token,
                        }),
                        styleOptions
                    },
                    document.getElementById('webchat')
                );
            })
            .catch(err => console.error("An error occurred: " + err));

    </script>
  </body>
</html>

 

 

 

And here's a screenshot of your working chatbot with the formatting you applied in your code:

 

PowerPuffKK_0-1653763978129.png

 

Hope this helps! If it does, I'd be really grateful if you could mark it as a solution for future forum visitors who might be experiencing the same issue.

 

Have a good day 😊

Kristine

View solution in original post

2 REPLIES 2
PowerPuffKK
Resolver IV
Resolver IV

Hi @jdriscollpro,

 

Thanks for the question!

 

Just to confirm, PVA is indeed supported for GCC.

 

I have found the issue with your code - the following properties do not exist in Bot Framework, they are used in Adaptive Cards Framework and were breaking your code.

 

bubbleNubOffset

 

 

 

bubbleNubSize: 10,

 

 

 

I have updated your code and have tried it in browser with my sample PVA and can confirm that it's successfully loading, please see screenshot below.

 

Here's the code snippet(I have removed my bot ID): 

 

 

<!DOCTYPE html>
<html>
<head>
    <title>TEST CHAT BOT</title> 
    <!-- This styling is for the Web Chat demonstration purposes. It is recommended that style is moved to separate file for organization in larger projects -->
    <style>
        html, body {
            height: 100%;
        }

        body {
            margin: 0;
        }

        h1 {
            font-size: 24px;
            font-family: Source Sans Pro Bold 700;
            line-height: 20px;
            color: whitesmoke;
            display: table-cell;
            padding: 13px 0px 0px 20px;
        }

        #heading {
            background-color: #FFFFFF;
            height: 50px;
        }

        .main {
            margin: 18px;
            border-radius: 4px;
        }

        div[role="form"]{
            background-color: #FFFFFF;
        }

        #webchat {
            position: fixed;
            height: calc(100% - 50px);
            width: 100%;
            top: 50px;
            overflow: hidden;
        }

    </style>

</head>
<body>
    <div>
        <div id="heading">
            <!-- Change the h1 text to change the bot name -->    
            <h1></h1>
        </div>
        <div id="webchat" role="main"></div>
    </div>    

  <script src="https://cdn.botframework.com/botframework-webchat/latest/webchat.js"></script>

  <script>

                const styleOptions = {
        
           // Add styleOptions to customize Web Chat canvas - hide upload button
          hideUploadButton: true,
          
           // Primary font
          primaryFont: "Source Sans Pro",
          userAvatarInitials: "ME",
          userAvatarBackgroundColor: "Grey",
          
		   // Change bubble from BOT
          bubbleTextColor: "#FFFFFF",
          bubbleBackground: "#007D85",
		  bubbleBorderRadius: 10,
      
          bubbleBorderColor: "#FFFFFF",
         
		   
           // Change bubble from USER
          bubbleFromUserBackground: "#EDEDED",
          bubbleFromUserTextColor: "#000000",
          bubbleFromUserBorderRadius: 10,
          bubbleFromUserBorderColor: "#EDEDED",
       
   
          
 
           // Add avatar images and user avatar images and BG color for BOT
          botAvatarInitials: 'BT',
          accent: '#00809d',
          botAvatarBackgroundColor: "#FFFFFF",
          botAvatarImage: 'https://docs.microsoft.com/en-us/azure/bot-service/v4sdk/media/logo_bot.svg',
          userAvatarImage: 'https://avatars.githubusercontent.com/u/661465',
          
          //Change the suggested action layout buttons
          suggestedActionLayout: 'carousel',
          suggestedActionBorderRadius: 10,	 
          suggestedActionBackgroundColorOnHover: '#007D85',
          suggestedActionTextColorOnHover: '#FFFFFF',
        };

        // Add your BOT ID below 
        var BOT_ID = ""; 
        var theURL = "https://powerva.microsoft.com/api/botmanagement/v1/directline/directlinetoken?botId=" + BOT_ID;

      fetch(theURL)
            .then(response => response.json())
            .then(conversationInfo => {
                window.WebChat.renderWebChat(
                    {
                        directLine: window.WebChat.createDirectLine({
                            token: conversationInfo.token,
                        }),
                        styleOptions
                    },
                    document.getElementById('webchat')
                );
            })
            .catch(err => console.error("An error occurred: " + err));

    </script>
  </body>
</html>

 

 

 

And here's a screenshot of your working chatbot with the formatting you applied in your code:

 

PowerPuffKK_0-1653763978129.png

 

Hope this helps! If it does, I'd be really grateful if you could mark it as a solution for future forum visitors who might be experiencing the same issue.

 

Have a good day 😊

Kristine

Hi @PowerPuffKK 

 

This worked for my non-GCC test bot, but for my GCC bot ID, this would not connect. IS there a different URL for GCC bots?

Jarrett

Helpful resources

Announcements

Power Platform Connections - Episode 6 | March 23, 2023

Episode Six of Power Platform Connections sees David Warner and Hugo Bernier talk to talk to Business Applications MVP Shane Young, alongside the latest news, product updates, and community blogs.    Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!      Show schedule in this episode: 0:00 Cold Open 00:24 Show Intro 01:02 Shane Young Interview 22:00 Blogs & Articles 22:20 Integrate FullCalendar.io with Power Pages 23:50 Text Data 25:15 Zero to Hero Power Apps Saga 25:44 Parent Hub Association 26:33 Using Custom Values for OneNote Power Automate References​ 28:04 ​Dynamics Power Israel 28:44 Create Beautiful Canvas Apps in Dataverse for Teams ​ 30:36 Outro & Bloopers  Check out the blogs and articles featured in this week’s episode:   https://francomusso.com/integrate-fullcalendar-io-with-power-pages-from-json-basics-to-advanced-output-with-bootstrap-modal @crmbizcoach https://yerawizardcat.com/text/ @YerAWizardCat www.fromzerotoheroes.com/mentorship ​ @thevictordantas https://www.expiscornovus.com/2023/03/16/parent-hub-association/ ​ @Expiscornovus https://lindsaytshelton.com/2023/03/15/the-painful-process-of-custom-values-for-onenote-power-automate-references/ @lshelton_Tech https://never-stop-learning.de/create-beautiful-canvas-apps-in-dataverse-for-teams/ @MMe2K    Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse.  This episode premiered live on our YouTube at 12pm PST on Thursday 23rd March 2023.  Video series available at Power Platform Community YouTube channel.    Upcoming events:  Business Applications Launch – April 4th – Free and Virtual! M365 Conference - May 1-5th - Las Vegas Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas  Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community  If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.       

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.    Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218   tom_riha      theapurva   takolota     Akash17   momlo     BCLS776   Shuvam-rpa     rampprakash   ScottShearer     Rusk   ChristianAbata     cchannon   Koen5     a33ik        AaronKnox        Matren        Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg     rubin_boer     cwebb365       If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.         Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.    Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

PVA Conversation Boosters Release

Today, we are excited to unveil new features within Power Platform that incorporate next-generation AI, in including conversation boosters with Power Virtual Agents and AI Builder introducing a create text with GPT model. These features bring both a new way for developers to solve business problems and a new way for end-users to leverage AI in the flow of their work to be more productive. This is a glimpse of what’s to come as we continue to ramp up our investment in AI across Power Platform.   We recognize the significance of both AI and low code for organizations and the benefits these technologies in union can have for all developers: a more intuitive, iterative experience for citizen developers and accelerated development for professional developers.      We announced AI Builder 4 years ago as the first AI capability in Power Platform, followed by Power Apps Ideas 18 months ago, which was the first infusion of generative AI in a commercially- available product.  And we have continued to invest, with the addition of express design in Power Apps, and description to flow in Power Automate late last year.      Today, we’re taking another big step forward in this journey with the launch of next-generation AI features for Power Virtual Agents and AI Builder, enabled by Azure Open AI service.     New! – Conversation booster in Microsoft Power Virtual Agents New! – Create text with GPT model in AI Builder AI Builder create text with GPT model  Read the full Product blog here: https://aka.ms/PP-GPT     **Tips & tricks for using the Power Virtual Agents Boost Conversational Coverage Preview:  Solved: Tips & tricks for using the Power Virtual Agents B... - Power Platform Community (microsoft.com)  

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Announcing Copilot in Power Virtual Agents!

Following our recent release of Conversation Boosters for PVA, today we’re excited to go further and announce Copilot for Power Virtual Agents!     With Copilot, using the power of Azure Open AI, you simply describe what you would like your bot to, using natural language, and Copilot will build an entire PVA topic - ready to use in seconds!     What can the new Copilot in Power Virtual Agents do?    CREATE entire topic from scratch with a simple description.  REFINE content in an existing topic, such as asking for additional questions to be added or updating existing nodes (example: providing message variations).   SUMMARIZE information collected from a user with adaptive cards.  ITERATE over just part of a dialog with specific node selection.    Try Copilot in Power Virtual Agents now: https://aka.ms/tryPVA     Learn more in the full blog post: https://aka.ms/GPT-PP  

Top Solution Authors
Top Kudoed Authors
Users online (4,362)