Update app.py
Browse files
app.py
CHANGED
@@ -77,14 +77,14 @@ demo = gr.Interface(
|
|
77 |
description="Enter a list of names separated by newlines in the 'Reset' tab to start.",
|
78 |
)
|
79 |
|
80 |
-
reset_demo = gr.Interface(
|
81 |
-
|
82 |
-
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
)
|
87 |
|
88 |
if __name__ == "__main__":
|
89 |
demo.launch()
|
90 |
-
reset_demo.launch()
|
|
|
77 |
description="Enter a list of names separated by newlines in the 'Reset' tab to start.",
|
78 |
)
|
79 |
|
80 |
+
# reset_demo = gr.Interface(
|
81 |
+
# fn=reset_names,
|
82 |
+
# inputs=[gr.Textbox(label="List of Names (separated by newline)")],
|
83 |
|
84 |
+
# title="Reset Names",
|
85 |
+
# description="Enter new list of names here to reset the app.",
|
86 |
+
# )
|
87 |
|
88 |
if __name__ == "__main__":
|
89 |
demo.launch()
|
90 |
+
# reset_demo.launch()
|