Links provided by the AI bot are not clickable

I'm using Dify to generate most of the answers in my conversation flow. Whenever the bot provides links in its responses, although they are shown as proper links in the Dify conversation logs, they're displayed in the Typebot chat interface as regular text, which the user has to copy and paste into the browser to access. How can I make these links clickable? Thanks in advance for any help!
No description
10 Replies
João Morossini
João MorossiniOP13mo ago
No description
João Morossini
João MorossiniOP13mo ago
@Hélio Potelicki pra vc acompanhar tbm
Baptiste
Baptiste13mo ago
Hmmm
João Morossini
João MorossiniOP13mo ago
@Baptiste I should add that SOME links are clickable, but most are not
Baptiste
Baptiste13mo ago
Right, we can't really do something about it. You are saying Dify make all the links clickable? I'm just not sure how to do that without taking the risking of breaking well formated links
João Morossini
João MorossiniOP13mo ago
All links, as far as I've noticed, are clickable inside the Dify interface, but in Typebot they're not. I'm not sure what to do about it either. At first, asking the llm to format the answers as markdown solved it, but now it doesn't for some reason
Baptiste
Baptiste13mo ago
Ok I will re-explore that tomorrow. I'll find a solution
Unknown User
Unknown User4mo ago
Message Not Public
Sign In & Join Server To View
Anthony
Anthony4mo ago
An easy fix would be to use inline scripting to replace the Text bubble's content to format hyperlinks in Markdown. In other words, the goal is for the script to detect when any "word" in the content starts with "http" (or essentially looks like a valid URL), take that word, and format it that way [$1]($1) where $1 is the URL matched by the script, effectively turning the link into a clickable one

Did you find this page helpful?