-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
Milestone
Description
Is your feature request related to a problem?
Despite the bot always send the response, the content of the response could be from other sources. The bot is referencing to the original source.
Will be great if we can show the origin/originator of the response, with a link to the it.
Describe the suggestion or request in detail
Ability to add a link about the origin/originator of the response.
Describe alternatives you have considered
Adding the origin/originator in the bot message.
Additional context
Current proposal is to use the entities
field:
{
"from": {
"id": "bot",
"role": "bot"
},
"text": "Reprehenderit enim ullamco esse deserunt minim enim sunt do non et est nisi.",
"type": "message",
"entities": [
{
"@id": "ms-bf-channel-account-id:bot",
"@context": "https://schema.org/",
"@type": "Person",
"type": "https://schema.org/Person",
"description": "Article from microsoft.com",
"url": "https://www.microsoft.com/"
}
]
}