import gradio as gr html_code = """ Chatbot with GPT Model
""" def app(): return html_code gr.Interface(fn=app, inputs=[], outputs="html", live=True).launch()