very useful video , please explain last two steps while creating a flow after step reply with a message , how to get that text json field in the message body
hi! Great lesson. I follow ur steps well! "when a new channel message is added"(1step) and "get message details"(2step) works. But at the 3step sth problem. When I test it, the running time is too long. "Your flow is running" don't disappear, soI can show no checked green circle. That means I can't show orange circle..... Finally Flow run timed out and can't move the parse JSON(4step), Apply to each(5step) . I need your help! Thank you!!
Pls post the json which you used in parse json schema
Hi,
Click on the button generate schema from sample and paste this:
{
"id": "cmpl-GERzeJQ4lvqPk8SkZu4XMIuR",
"object": "text_completion",
"created": 1586839808,
"model": "text-davinci:003",
"choices": [
{
"text": "
This is indeed a test",
"index": 0,
"logprobs": null,
"finish_reason": "length"
}
],
"usage": {
"prompt_tokens": 5,
"completion_tokens": 7,
"total_tokens": 12
}
}
Hi I just tried it, the http is not responsive, taking multiple retries, should the authorization be set to 'None'?
Hello Giuliano !
Thanks for the video.
Can you share your Json Schema ?
Hi,
Thanks click on generate schema from sample and add this:
{
"id": "cmpl-GERzeJQ4lvqPk8SkZu4XMIuR",
"object": "text_completion",
"created": 1586839808,
"model": "text-davinci:003",
"choices": [
{
"text": "
This is indeed a test",
"index": 0,
"logprobs": null,
"finish_reason": "length"
}
],
"usage": {
"prompt_tokens": 5,
"completion_tokens": 7,
"total_tokens": 12
}
}
thank you; what about power virtual agent?
It is possible as well.
More is coming this year in terms of new ChatGPT functionalities
hi Giuliano do you have something using ChatGPT which can get the answers form sharepoint docuemnts list
Hi, this will come and it will be integrated by Microsoft, the name is Microsoft 365 copilot
Please for the last step, I cannot find an option of "text". Do you know why? Many thanks.
Sorry I don't get it, which minute and second of the video are you referring to?
I do not get the parse JSON "text" option on that last part of the flow, what could this be?
me either
Can Global Admin create this flow from Power Automate admin center and roll out to the all users?
Hi,
You can offer this flow in workflow catalogue of Teams
very useful video , please explain last two steps while creating a flow after step reply with a message , how to get that text json field in the message body
i am able to sort that out
Sorry it showing blank replies. Can you please share jason code for schema
@@ThePunjabiTravelerRP try with this schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"object": {
"type": "string"
},
"created": {
"type": "integer"
},
"model": {
"type": "string"
},
"choices": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"index": {
"type": "integer"
},
"logprobs": {},
"finish_reason": {
"type": "string"
}
},
"required": [
"text",
"index",
"logprobs",
"finish_reason"
]
}
},
"usage": {
"type": "object",
"properties": {
"prompt_tokens": {
"type": "integer"
},
"completion_tokens": {
"type": "integer"
},
"total_tokens": {
"type": "integer"
}
}
}
}
}
hi! Great lesson. I follow ur steps well! "when a new channel message is added"(1step) and "get message details"(2step) works. But at the 3step sth problem. When I test it, the running time is too long. "Your flow is running" don't disappear, soI can show no checked green circle. That means I can't show orange circle..... Finally Flow run timed out and can't move the parse JSON(4step), Apply to each(5step) . I need your help! Thank you!!
Hi,
here you can find the schema:
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"object": {
"type": "string"
},
"created": {
"type": "integer"
},
"model": {
"type": "string"
},
"choices": {
"type": "array",
"items": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"index": {
"type": "integer"
},
"logprobs": {},
"finish_reason": {
"type": "string"
}
},
"required": [
"text",
"index",
"logprobs",
"finish_reason"
]
}
},
"usage": {
"type": "object",
"properties": {
"prompt_tokens": {
"type": "integer"
},
"completion_tokens": {
"type": "integer"
},
"total_tokens": {
"type": "integer"
}
}
}
}
}
Thanks for the video .... If we don't have an appropriate license we need go to Logic Apps.... Could you please share how implement in this way ?
Hi,
You have to follow exactly the same steps of Power Automate