med_expert / app.py
Manasa1's picture
Update app.py
aa1a756 verified
raw
history blame
308 Bytes
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()