Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
@@ -6,4 +6,8 @@ def greet(name):
|
|
6 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
|
8 |
if __name__ == "__main__":
|
9 |
-
demo.launch(
|
|
|
|
|
|
|
|
|
|
6 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
|
8 |
if __name__ == "__main__":
|
9 |
+
demo.launch(
|
10 |
+
show_api=False,
|
11 |
+
auth=('test', 'test'),
|
12 |
+
auth_message='Auth now'
|
13 |
+
)
|