File size: 308 Bytes
70f2779
 
aa1a756
 
 
 
 
70f2779
 
 
aa1a756
70f2779
aa1a756
70f2779
 
 
aa1a756
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()