piralocoplasticone commited on
Commit
9778c43
β€’
1 Parent(s): 02ebd03

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ # Import your entry script - adjust this line as per your script's structure
3
+ from entry_with_update import create_interface
4
+
5
+ # Initialize your Gradio interface - this function call will depend on your script
6
+ interface = create_interface()
7
+
8
+ # Launch the interface
9
+ if __name__ == "__main__":
10
+ interface.launch()