Indeed, ContinueResponse = false and then sending System.Response.FormattedText
I’ve implemented a quick workaround until we find a better solution:
If(
IsEmpty(System.Response.Citations),
System.Response.FormattedText,
System.Response.FormattedText
& Char(10) & Char(10)
& “**Sources:**” & Char(10)
& Concat(
System.Response.Citations As c,
“1. [” & c.Name & “](” & c.Url & “)” & Char(10)
)
)