Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -15,5 +15,5 @@ def chat(prompt):
|
|
15 |
return completion.choices[0].message.content
|
16 |
|
17 |
demo = gr.Interface(fn=chat, inputs="text", outputs="text")
|
18 |
-
demo.launch()
|
19 |
|
|
|
15 |
return completion.choices[0].message.content
|
16 |
|
17 |
demo = gr.Interface(fn=chat, inputs="text", outputs="text")
|
18 |
+
demo.launch(auth=(os.getenv('LOGNAME'),os.getenv('PASSWORD')))
|
19 |
|