Spaces:
Runtime error
Runtime error
piralocoplasticone
commited on
Commit
β’
9778c43
1
Parent(s):
02ebd03
Create app.py
Browse files
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()
|