I want to use Copilot Studio to build an agent that answers questions about my local wiki. To do this, I exported the entire wiki as JSON in the following structure:
[
{
“Content”: “...”,
“Title”: “...”,
‘ContentLocation’: “EXACT URL TO WIKI PAGE”
}, … ]
I added this JSON as knowledge to my agent.
It answers my questions about the wiki, but always gives me some random URLs. How can I get it to give me the exact URL from the ContentLocation?
I have the same question (0)