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 when interacting with OpenAI GPT models.
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:
@mboninco I have created an FAQ bot. But my bot is facing a hard time in maintaining context. I am saving the entities provided by user in his response and thus I can use them. I was wondering is there a way to access/save bot's response in any variable.
To provide full context of a session to bot, the only solution I can think of is to append these to and fro messages in a string variable. But I am clueless how can I set/append this new variable with the texts being exchanged between the bot and the user.
@HenryJammes How can this be done in MS copilot studio . I want my bot to maintain the context of the conversation, however currently it is not.
FYI I've created a new version of this article using the Chat Completion API format, in both the classic and new version of Power Virtual Agents:
Integrate a PVA chatbot with Azure OpenAI ChatGPT using the Chat Completion API format
now It's worked good in our prod env.
our PVA in teams version bot face to about 1000+ users
I already use the same way to use azure openai gpt-4. thank you!
Thank you ! Hope you got Azure OpenAI GPT-4 soon...
Hi @angerfire1213 the example above was created on the GPT 3.5 Turbo model with Chat Markup Language and works.
I haven't tried the Chat Completion format yet, and GPT-4 might require that format, so the above approach would indeed need reworking to meet the new JSON format requirements, but the approach should be the same.
I'll try to update or create a new article once I get access to GPT-4.
How to do that for GPT-35-Turbo (preview) & GPT-4 (preview) ?
In GPT-35-Turbo (preview) & GPT-4 (preview) use messages not prompt
messages=[ {"role": "system", "content": "Assistant is a large language model trained by OpenAI."}, {"role": "user", "content": "What's the difference between garbanzo beans and chickpeas?"}, ]
learn more about GPT-35-Turbo (preview) & GPT-4 (preview):
https://learn.microsoft.com/en-us/azure/cognitive-services/openai/how-to/chatgpt?pivots=programming-language-chat-completions#working-with-the-chatgpt-and-gpt-4-models-preview
WarrenBelz
146,513
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,681
Most Valuable Professional