piralocoplasticone commited on
Commit
bc7a317
β€’
1 Parent(s): d6e0179

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -5,6 +5,9 @@ from entry_with_update import create_interface
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()
 
5
  # Initialize your Gradio interface - this function call will depend on your script
6
  interface = create_interface()
7
 
8
+ with open('entry_with_update.py', 'r') as file:
9
+ exec(file.read())
10
+
11
  # Launch the interface
12
  if __name__ == "__main__":
13
  interface.launch()