BounharAbdelaziz commited on
Commit
13be506
·
1 Parent(s): cbd6186
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ from utils import create_interface
2
+
3
+ if __name__ == "__main__":
4
+
5
+ # Create the Gradio interface
6
+ app = create_interface()
7
+ # Launch the app
8
+ app.launch()