I previously shared how to maintain past context when interacting with an OpenAI GPT model, by setting and updating a global variable using Bot Framework Composer, here: Set and update global variables using Bot Framework Composer and how to retain conversation context ....
Today I'd like to show how to do the same, but this time using Azure OpenAI ChatGPT model that just came out.
I find that model much better suited for conversation experiences and automatically formats code samples:
Couple of useful resources on this topic:
Solved! Go to Solution.
I'm going to use the Fallback topic so that I can use Power Automate to query the Azure OpenAI ChatGPT model (note: you can also make HTTP requests directly in Bot Framework Composer) whenever PVA doesn't find a matching topic for a user utterance.
It's good to understand Chat Markup Language to understand how to scope the conversation and provide instructions to ChatGPT prior to it returning an answer. That way, you can give personality traits to the bot, rules to follow when providing answers, and data or information needed for the model.
Here's an example:
<|im_start|>system
Assistant is an intelligent chatbot designed to help users answer their tax related questions.
<|im_end|>
<|im_start|>user
When do I need to file my taxes by?
<|im_end|>
<|im_start|>assistant
In 2023, you will need to file your taxes by April 18th. The date falls after the usual April 15th deadline because April 15th falls on a Saturday in 2023. For more details, see https://www.irs.gov/filing/individuals/when-to-file
<|im_end|>
<|im_start|>user
How can I check the status of my tax refund?
<|im_end|>
<|im_start|>assistant
You can check the status of your tax refund by visiting https://www.irs.gov/refunds
<|im_end|>
For our example, I'll use a very basic system message that you can customize
<|im_start|>system
Assistant helps Contoso employees with their questions.
<|im_end|>
The idea for our PVA ChatGPT bot is to keep the full conversation when sending new prompts to the ChatGPT API.
To manage a global variable keeping track of the conversation with Azure OpenAI ChatGPT, I'm going to use Bot Framework Composer to do 2 things:
I start by opening the Bot Framework Composer
If you need help setting things up, refer to this: Getting started with Bot Framework Composer - Power Virtual Agents | Microsoft Learn
I then add a new dialog to my chatbot
I call it "InitializeFullDialog"
I create one new Output for it, that I call FullDialog, of type string:
In BeginDialog, I add a Manage properties > Set a property node, in order set the FullDialog variable to my system message as well as the necessary chat markup language before I add the user utterence:
Property: dialog.result.FullDialog
Value: ='<|im_start|>system\nAssistant helps Contoso employees with their questions.\n<|im_end|>\n<|im_start|>user\n'
I then add another dialog, SetFullDialog, this time with no outputs.
In the BeginDialog, I add a Manage properties > Set a property node, in order set the Power Virtual Agents FullDialog variable as a concatenation of the previous FullDialog value as well as new values that Power Automate pass me back (I'm showing this later in this article, but they're OK to set up in advance) and some chat markup language to piece it together:
Property: virtualagent.ConversationFullDialog
Value: =concat(virtualagent.FullDialog,virtualagent.OriginalTriggerPhrase,'\n<|im_end|>\n<|im_start|>assistant',virtualagent.ChatGPTResponse,'\n<|im_end|>\n<|im_start|>user\n')
Then I publish my bot in Bot Framework Composer:
As I interact in this example with the Azure OpenAI ChatGPT API, I'm using the Power Virtual Agents Fallback topic. This means that whenever a user asks a question that PVA doesn't know how to answer with an existing topic (i.e. there is no match with the topics trigger phrases), it goes to the Fallback topic, and in the Fallback topic I'm calling the Azure OpenAI ChatGPT API.
If you haven't enabled the Fallback topic in your chatbot, learn how here: Use a system fallback topic - Power Virtual Agents | Microsoft Learn
In the Fallback topic, I start by removing the existing nodes as I'm changing its behavior.
Just after the 'Trigger Phrases' node, I add a "Redirect to another topic" node, and select the InitializeFullDialog dialog.
I click on the variable name, name it FullDialog, and change its usage to "Bot (any topic can access)" and also check "External sources can set values":
Next step is to call the Azure OpenAI ChatGPT API using Power Automate.
I add a new node, select Call an action > Create a flow.
I assume you already have an Azure OpenAI account and an API key, but if you don't, check these:
In your cloud flow, you'll first want to add 2 text inputs, UnrecognizedTriggerPhrase and ConversationFullDialog:
Then, to call the Azure OpenAI GPT API, I use the HTTP action, with this configuration
Method: POST
URI: you can get the URI from the ChatGPT playground in the Azure OpenAI Studio, in view code, in curl
Headers:
api-key: {YourAPIKey}
Content-Type: application/json
Body:
{
"prompt": "{ExpressionBelow}",
"temperature": 0.7,
"top_p": 0.95,
"frequency_penalty": 0,
"presence_penalty": 0,
"max_tokens": 800,
"stop": [
"<|im_end|>"
]
}
For the prompt, this is where I need to pass the user question.
To keep context, the trick is to provide past questions and answers, as well as the new question.
So, I append the FullConversation with the UnrecognizedTriggerPhrase and a bit of chat language markup to let it know I expect a response from the bot.:
concat(
triggerBody()['text_1'],
triggerBody()['text'],
'\n<|im_end|>\n<|im_start|>assistant'
)
Now I need to pass back a few things to PVA.
body('HTTP:_Azure_OpenAI_ChatGPT')?['choices'][0]?['text']
I give my flow a name, and save it.
Back in PVA, still in my Fallback topic, I select my flow, and can map the UnrecognizedTriggerPhrase and FullDialog to the Power Automate inputs.
I can see that Power Automate has 2 ouputs. I set their Usage to "Bot (any topic can access)":
I now add a new Show a message node, where I select the bot.ChatGPTResponse variable:
The final step is to add a "Redirect to another topic" node, and select the SetFullDialog dialog, that will take care of updating the FullDialog variable with the past questions and answers.
And that's it! 🎉
This is awesome, @HenryJammes !
I just went through a very similar exercise, but am using Unified Canvas instead, so I thought I'd share the code view of my Fallback topic, since it's a breeze copy/pasting a topic in the Unified Canvas! 😀
A few notes to get it set up:
kind: AdaptiveDialog
beginDialog:
kind: OnUnknownIntent
id: main
actions:
- kind: SetVariable
id: setVariable_Kyy1Yh
variable: Topic.UserQuery
value: =System.Activity.Text
- kind: ConditionGroup
id: conditionGroup_Nuj40I
conditions:
- id: conditionItem_iRCr9Y
condition: =IsBlank(Global.FullConversation)
actions:
- kind: SetVariable
id: 36cfgS
variable: Global.FullConversation
value: <|im_start|>system\nI am a virtual assistant that can answer questions\n<|im_end|>\n<|im_start|>user\n
- kind: InvokeFlowAction
id: invokeFlowAction_Ho6dKr
input:
binding:
text: =Topic.UserQuery
text_1: =Global.FullConversation
output:
binding:
response: Topic.Response
flowId: 00000000-0000-0000-0000-000000000000
- kind: SendMessage
id: sendMessage_UgHog9
message: "{Topic.Response}"
- kind: SetVariable
id: setVariable_0LLSEn
variable: Global.FullConversation
value: =Concatenate(Global.FullConversation,Topic.UserQuery,"\n<|im_end|>\n<|im_start|>assistant", Topic.Response, "\n<|im_end|>\n<|im_start|>user\n")
I'm going to use the Fallback topic so that I can use Power Automate to query the Azure OpenAI ChatGPT model (note: you can also make HTTP requests directly in Bot Framework Composer) whenever PVA doesn't find a matching topic for a user utterance.
It's good to understand Chat Markup Language to understand how to scope the conversation and provide instructions to ChatGPT prior to it returning an answer. That way, you can give personality traits to the bot, rules to follow when providing answers, and data or information needed for the model.
Here's an example:
<|im_start|>system
Assistant is an intelligent chatbot designed to help users answer their tax related questions.
<|im_end|>
<|im_start|>user
When do I need to file my taxes by?
<|im_end|>
<|im_start|>assistant
In 2023, you will need to file your taxes by April 18th. The date falls after the usual April 15th deadline because April 15th falls on a Saturday in 2023. For more details, see https://www.irs.gov/filing/individuals/when-to-file
<|im_end|>
<|im_start|>user
How can I check the status of my tax refund?
<|im_end|>
<|im_start|>assistant
You can check the status of your tax refund by visiting https://www.irs.gov/refunds
<|im_end|>
For our example, I'll use a very basic system message that you can customize
<|im_start|>system
Assistant helps Contoso employees with their questions.
<|im_end|>
The idea for our PVA ChatGPT bot is to keep the full conversation when sending new prompts to the ChatGPT API.
To manage a global variable keeping track of the conversation with Azure OpenAI ChatGPT, I'm going to use Bot Framework Composer to do 2 things:
I start by opening the Bot Framework Composer
If you need help setting things up, refer to this: Getting started with Bot Framework Composer - Power Virtual Agents | Microsoft Learn
I then add a new dialog to my chatbot
I call it "InitializeFullDialog"
I create one new Output for it, that I call FullDialog, of type string:
In BeginDialog, I add a Manage properties > Set a property node, in order set the FullDialog variable to my system message as well as the necessary chat markup language before I add the user utterence:
Property: dialog.result.FullDialog
Value: ='<|im_start|>system\nAssistant helps Contoso employees with their questions.\n<|im_end|>\n<|im_start|>user\n'
I then add another dialog, SetFullDialog, this time with no outputs.
In the BeginDialog, I add a Manage properties > Set a property node, in order set the Power Virtual Agents FullDialog variable as a concatenation of the previous FullDialog value as well as new values that Power Automate pass me back (I'm showing this later in this article, but they're OK to set up in advance) and some chat markup language to piece it together:
Property: virtualagent.ConversationFullDialog
Value: =concat(virtualagent.FullDialog,virtualagent.OriginalTriggerPhrase,'\n<|im_end|>\n<|im_start|>assistant',virtualagent.ChatGPTResponse,'\n<|im_end|>\n<|im_start|>user\n')
Then I publish my bot in Bot Framework Composer:
As I interact in this example with the Azure OpenAI ChatGPT API, I'm using the Power Virtual Agents Fallback topic. This means that whenever a user asks a question that PVA doesn't know how to answer with an existing topic (i.e. there is no match with the topics trigger phrases), it goes to the Fallback topic, and in the Fallback topic I'm calling the Azure OpenAI ChatGPT API.
If you haven't enabled the Fallback topic in your chatbot, learn how here: Use a system fallback topic - Power Virtual Agents | Microsoft Learn
In the Fallback topic, I start by removing the existing nodes as I'm changing its behavior.
Just after the 'Trigger Phrases' node, I add a "Redirect to another topic" node, and select the InitializeFullDialog dialog.
I click on the variable name, name it FullDialog, and change its usage to "Bot (any topic can access)" and also check "External sources can set values":
Next step is to call the Azure OpenAI ChatGPT API using Power Automate.
I add a new node, select Call an action > Create a flow.
I assume you already have an Azure OpenAI account and an API key, but if you don't, check these:
In your cloud flow, you'll first want to add 2 text inputs, UnrecognizedTriggerPhrase and ConversationFullDialog:
Then, to call the Azure OpenAI GPT API, I use the HTTP action, with this configuration
Method: POST
URI: you can get the URI from the ChatGPT playground in the Azure OpenAI Studio, in view code, in curl
Headers:
api-key: {YourAPIKey}
Content-Type: application/json
Body:
{
"prompt": "{ExpressionBelow}",
"temperature": 0.7,
"top_p": 0.95,
"frequency_penalty": 0,
"presence_penalty": 0,
"max_tokens": 800,
"stop": [
"<|im_end|>"
]
}
For the prompt, this is where I need to pass the user question.
To keep context, the trick is to provide past questions and answers, as well as the new question.
So, I append the FullConversation with the UnrecognizedTriggerPhrase and a bit of chat language markup to let it know I expect a response from the bot.:
concat(
triggerBody()['text_1'],
triggerBody()['text'],
'\n<|im_end|>\n<|im_start|>assistant'
)
Now I need to pass back a few things to PVA.
body('HTTP:_Azure_OpenAI_ChatGPT')?['choices'][0]?['text']
I give my flow a name, and save it.
Back in PVA, still in my Fallback topic, I select my flow, and can map the UnrecognizedTriggerPhrase and FullDialog to the Power Automate inputs.
I can see that Power Automate has 2 ouputs. I set their Usage to "Bot (any topic can access)":
I now add a new Show a message node, where I select the bot.ChatGPTResponse variable:
The final step is to add a "Redirect to another topic" node, and select the SetFullDialog dialog, that will take care of updating the FullDialog variable with the past questions and answers.
And that's it! 🎉
This is awesome, @HenryJammes !
I just went through a very similar exercise, but am using Unified Canvas instead, so I thought I'd share the code view of my Fallback topic, since it's a breeze copy/pasting a topic in the Unified Canvas! 😀
A few notes to get it set up:
kind: AdaptiveDialog
beginDialog:
kind: OnUnknownIntent
id: main
actions:
- kind: SetVariable
id: setVariable_Kyy1Yh
variable: Topic.UserQuery
value: =System.Activity.Text
- kind: ConditionGroup
id: conditionGroup_Nuj40I
conditions:
- id: conditionItem_iRCr9Y
condition: =IsBlank(Global.FullConversation)
actions:
- kind: SetVariable
id: 36cfgS
variable: Global.FullConversation
value: <|im_start|>system\nI am a virtual assistant that can answer questions\n<|im_end|>\n<|im_start|>user\n
- kind: InvokeFlowAction
id: invokeFlowAction_Ho6dKr
input:
binding:
text: =Topic.UserQuery
text_1: =Global.FullConversation
output:
binding:
response: Topic.Response
flowId: 00000000-0000-0000-0000-000000000000
- kind: SendMessage
id: sendMessage_UgHog9
message: "{Topic.Response}"
- kind: SetVariable
id: setVariable_0LLSEn
variable: Global.FullConversation
value: =Concatenate(Global.FullConversation,Topic.UserQuery,"\n<|im_end|>\n<|im_start|>assistant", Topic.Response, "\n<|im_end|>\n<|im_start|>user\n")
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.
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.
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.
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)
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/
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