nakas's picture
Update app.py
5b43964 verified
raw
history blame
724 Bytes
import gradio as gr
import subprocess
import threading
# Function to launch the new Gradio app
def launch_new_gradio_app():
# Use subprocess to run the new Gradio app (new_gradio_app.py)
subprocess.Popen(["python", "new_gradio_app.py"])
return "New Gradio app is now running. Check the space to see the result!"
# Main Gradio UI with a button to start the new Gradio app
with gr.Blocks() as ui:
gr.Markdown("### Dynamic Gradio App Loader")
launch_button = gr.Button("Launch New Gradio App")
status = gr.Textbox(label="Status")
launch_button.click(launch_new_gradio_app, outputs=status)
# Launch the initial UI
if __name__ == "__main__":
ui.launch(server_name="0.0.0.0", server_port=7860)