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!

10 Replies

@Hélio Potelicki pra vc acompanhar tbm
Hmmm
@Baptiste I should add that SOME links are clickable, but most are not
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
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
Ok I will re-explore that tomorrow. I'll find a solution
Unknown User•4mo ago
Message Not Public
Sign In & Join Server To View
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