Replies: 2 comments 9 replies
-
Based off what you've written, there has probably been a change in the UX for Teams platform so I will bring this up internally with the UI team. Thanks for the heads up. |
Beta Was this translation helpful? Give feedback.
-
Hello, Alternatively, I added data source to my project as following image. It also gave error :( "The chat completion API returned an error I tried to follow the code and I noticed that because of data source part it gives error. Do you have any suggestion to solve this problem? |
Beta Was this translation helpful? Give feedback.
-
I currently have a teams bot with the teams-ai library. I cannot get citations to work if no url is present. I am following the sayCommand extract of citations, which is working, but in teams it doesnt provide the citations unless the URL is present, but in my case I do not have URL.
Here is my code for citations:
`app.ai.action(AI.SayCommandActionName, async (context, state, data, action) => {
let content = data.response.content || '';
const isTeamsChannel = context.activity.channelId === Channels.Msteams;
});`
In teams I just get the text with the citation [1]. However the citation is not clickable or no chevron with a list of the documents.
Beta Was this translation helpful? Give feedback.
All reactions