Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -857,11 +857,9 @@ class GradioInterface:
|
|
857 |
refined_output = self.prompt_refiner.apply_prompt(refined_prompt)
|
858 |
return original_output, refined_output
|
859 |
|
860 |
-
def launch(self):
|
861 |
-
self.interface.launch()
|
862 |
|
863 |
-
def launch(self, share=False):
|
864 |
-
|
865 |
|
866 |
# Main code to run the application
|
867 |
if __name__ == '__main__':
|
|
|
857 |
refined_output = self.prompt_refiner.apply_prompt(refined_prompt)
|
858 |
return original_output, refined_output
|
859 |
|
|
|
|
|
860 |
|
861 |
+
def launch(self, share=False):
|
862 |
+
self.interface.launch(share=share)
|
863 |
|
864 |
# Main code to run the application
|
865 |
if __name__ == '__main__':
|