Copilot Studio : Add Actions Toolbar to your Copilot Response

  Рет қаралды 1,081

Parag Dessai

Parag Dessai

Күн бұрын

Пікірлер: 18
@kiesviswa7665
@kiesviswa7665 2 ай бұрын
Amazing!!
@AudrieGordon
@AudrieGordon 3 ай бұрын
Absolutely amazing! Thanks Parag!🤯
@kiesviswa7665
@kiesviswa7665 2 ай бұрын
Have you set the Message Event variable to be Global?
@antenorteles
@antenorteles 2 ай бұрын
Nice Video, Parag! Do you know by chance if you can make a multi selection input box in the copilot studio?
@sindhusm01
@sindhusm01 3 ай бұрын
Adaptive card sample is not available in the description. Please add
@paragdesai
@paragdesai 3 ай бұрын
See my last comment which has the adaptive card sample
@sirajkhan6945
@sirajkhan6945 2 ай бұрын
Hi Parag, thank you so much for sharing the knowledge, your videos help a lot. Can we send copilot answer to user's email?
@microsoftbizappsfico
@microsoftbizappsfico 3 ай бұрын
Hi, where can I find the adaptive card sample?
@ParagDessai
@ParagDessai 3 ай бұрын
{ '$schema': "adaptivecards.io/schemas/adaptive-card.json", type: "AdaptiveCard", version: "1.4", body: [ { type: "TextBlock", text: Global.Answer.Text.Content, wrap: true }, { type: "Container", spacing: "Medium", items: [ { type: "ColumnSet", columns: [ { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/home.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Home", selectAction: { type: "Action.Submit", data: { action: "Home", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/email.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Send Email", selectAction: { type: "Action.Submit", data: { action: "Send Email", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/feedback.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Provide Feedback", selectAction: { type: "Action.Submit", data: { action: "Provide Feedback", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/light-on.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Suggestions", selectAction: { type: "Action.Submit", data: { action: "Suggestions", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/customer-support.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Transfer to Agent", selectAction: { type: "Action.Submit", data: { action: "Transfer to Agent", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/phone.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Call", selectAction: { type: "Action.Submit", data: { action: "Call", MessageEvent: "ActionSet" } } } ] } ] } ], style: "emphasis", bleed: true } ] }
@louishubert7702
@louishubert7702 3 ай бұрын
Hello, May I also have the adaptive card template?
@louishubert7831
@louishubert7831 3 ай бұрын
Or even a .zip of the copilot in a solution
@paragdesai
@paragdesai 3 ай бұрын
See my last comment which has the adaptive card sample
@louishubert7702
@louishubert7702 3 ай бұрын
@@paragdesai It is not showing. Maybe youtube is interpreting the card and messing it up?
@louishubert7702
@louishubert7702 3 ай бұрын
@paragdesai You could also use Pastebin to paste it.
@ParagDessai
@ParagDessai 3 ай бұрын
@@louishubert7702 Thanks ! here you go : pastebin.com/66d8TSiJ
@ashokjangili2333
@ashokjangili2333 3 ай бұрын
Could please give me the adaptive card which your using?
@ParagDessai
@ParagDessai 3 ай бұрын
{ '$schema': "adaptivecards.io/schemas/adaptive-card.json", type: "AdaptiveCard", version: "1.4", body: [ { type: "TextBlock", text: Global.Answer.Text.Content, wrap: true }, { type: "Container", spacing: "Medium", items: [ { type: "ColumnSet", columns: [ { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/home.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Home", selectAction: { type: "Action.Submit", data: { action: "Home", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/email.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Send Email", selectAction: { type: "Action.Submit", data: { action: "Send Email", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/feedback.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Provide Feedback", selectAction: { type: "Action.Submit", data: { action: "Provide Feedback", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/light-on.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Suggestions", selectAction: { type: "Action.Submit", data: { action: "Suggestions", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/customer-support.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Transfer to Agent", selectAction: { type: "Action.Submit", data: { action: "Transfer to Agent", MessageEvent: "ActionSet" } } } ] }, { type: "Column", width: "auto", items: [ { type: "Image", url: "img.icons8.com/fluency/48/0000ff/phone.png", pixelWidth: 10, pixelHeight: 10, tooltip: "Call", selectAction: { type: "Action.Submit", data: { action: "Call", MessageEvent: "ActionSet" } } } ] } ] } ], style: "emphasis", bleed: true } ] }
How To Build a ServiceNow Copilot in Copilot Studio and Generative Actions
19:49
Dewain Robinson - The Copilot Studio Dude
Рет қаралды 12 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН
Cheerleader Transformation That Left Everyone Speechless! #shorts
00:27
Fabiosa Best Lifehacks
Рет қаралды 16 МЛН
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
Master Copilot Agents for Microsoft 365 - Tips By a Microsoft Engineer
21:47
Collaboration Simplified
Рет қаралды 52 М.
Build Your First Autonomous Agent with Copilot Studio
33:00
Lisa Crosbie
Рет қаралды 41 М.
How to Build Effective AI Agents (without the hype)
24:27
Dave Ebbelaar
Рет қаралды 61 М.
Understanding Copilot Studio Knowledge and the Importance of Indexing
19:52
Dewain Robinson - The Copilot Studio Dude
Рет қаралды 7 М.
Collecting Custom Feedback on Copilot Studio's Generative Answers
17:17
Microsoft Community Learning
Рет қаралды 2,1 М.
I Discovered the GOD TIER Prompt Chain to Make AI Coding Foolproof!
25:00
Get the most of your enterprise knowledge with Copilot Studio | BRK181
41:53
Copilot Studio : Use Generative Answers on SharePoint List
19:09
Parag Dessai
Рет қаралды 19 М.
Best Ways to Use Gemini 2.0 (over ChatGPT & Perplexity)!
16:06
Grace Leung
Рет қаралды 57 М.
So Cute 🥰 who is better?
00:15
dednahype
Рет қаралды 19 МЛН