How to show an active hyperlink in the output of a gradio chatbot? I checked this but don't fully understand if the issue has been resolved or not, and where's the solution: https://github.com/gradio-app/gradio/issues/837
This is the closest I've gotten to it, but the link shows as text and is not active:
def my_function(text):
href = "https://www.google.com/"
return f"This is a link to Google: {href}"
gr.Interface(my_function, inputs="text", outputs="text").launch()