Spaces:
Runtime error
Runtime error
import gradio as gr | |
# Function to display the embedded HTML page | |
def show_did_agent(): | |
return """ | |
<iframe src="index.html" width="100%" height="500px" style="border:none;"></iframe> | |
""" | |
# Gradio interface | |
with gr.Blocks() as app: | |
gr.HTML(show_did_agent()) | |
# Launch the app | |
app.launch() | |