web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Copilot Studio - Autonomous Agents
Unanswered

Hyperlinks Only

(1) ShareShare
ReportReport
Posted on by 2
Hi, 
i want my agent to be able to act like a google search in this case i added the source knowledge, i want it to return only the links or hyperlinks only , i don't want it to summarise or generate. i just where it returns only the link and users can click on the link and they will read it themselves, please is this possible in anyway, i have tried prompting and adding topics but its still not working, also i notices when i tried creating a trigger topic i got this error "

Error Message: The expression on the 'ConditionItem' node at 'ca_agent.topic.search_Adn/main/main/ConditionGroup_ya2IVR/ConditionItem_paC6oK' failed with the following errors: 'Expected operator. We expect an operator such as +, *, or & at this point in the formula.' (!),

 

'Unexpected characters. Characters are used in the formula in an unexpected way.' (=),

 

'Unexpected characters. Characters are used in the formula in an unexpected way.' (null),

 

'Name isn't valid. 'Response' isn't recognized.' (.Response),

 

'The '.' operator cannot be used on Error values.' (.Citations). Error Code: ContentValidationError Conversation Id: 3b5028ea-ba45-4d9c-911d-d4e0ebb99b46 Time (UTC): 2025-11-18T14:35:25.272Z


" i wanted to use the condition system.response.citations
I have the same question (0)
  • sannavajjala87 Profile Picture
    56 on at
    Hyperlinks Only
    Hi,
     
    You can do this with System.Response.Citations and by turning off the default response.
    1. Use a Generative Answers node to query your knowledge
    Add your knowledge node as usual and make sure Citations are enabled.
    2. Capture the citations and stop the default answer
    Right after the generative node, add two actions:
    Set variable value (optional, for debugging)
    Name: Global.Citations
    Value: System.Response.Citations
    Set variable value
    Name: System.ContinueResponse
    Value: false
    This tells Copilot not to send its own summary.
    3. Send your own “links-only” reply
    Add a Send a message node with something like this in the message (Power Fx):
    If(
        IsEmpty(System.Response.Citations),
        "I couldn’t find any links for that query.",
        "Here are some links you can check:" 
            & Char(10) 
            & Char(10) 
            & Concat(
                System.Response.Citations As c,
                "- [" & c.Name & "](" & c.Url & ")" & Char(10)
            )
    )

    That will output only a bullet list of clickable links pulled from the citations.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Coming soon: forum hierarchy changes

In our never-ending quest to improve we are simplifying the forum hierarchy…

Chiara Carbone – Community Spotlight

We are honored to recognize Chiara Carbone as our Community Spotlight for November…

Leaderboard > Copilot Studio

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 356 Super User 2025 Season 2

#2
Romain The Low-Code Bearded Bear Profile Picture

Romain The Low-Code... 345 Super User 2025 Season 2

#3
S-Venkadesh Profile Picture

S-Venkadesh 57 Moderator

Last 30 days Overall leaderboard