Spaces:
Runtime error
Runtime error
Eric Michael Martinez
commited on
Commit
·
eba7095
1
Parent(s):
4cb4928
update
Browse files- app/app.py +2 -2
- main.py +1 -1
app/app.py
CHANGED
@@ -230,5 +230,5 @@ async def on_startup():
|
|
230 |
|
231 |
gradio_gui = get_chatbot_app()
|
232 |
gradio_gui.auth = api_login
|
233 |
-
gradio_gui.auth_message = "
|
234 |
-
app = gr.mount_gradio_app(app, gradio_gui, path="/
|
|
|
230 |
|
231 |
gradio_gui = get_chatbot_app()
|
232 |
gradio_gui.auth = api_login
|
233 |
+
gradio_gui.auth_message = "Welcome, to the 3341 OpenAI Service"
|
234 |
+
app = gr.mount_gradio_app(app, gradio_gui, path="/")
|
main.py
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
import subprocess
|
2 |
|
3 |
-
subprocess.run("uvicorn app:app --host 0.0.0.0 --port 7860", shell=True)
|
|
|
1 |
import subprocess
|
2 |
|
3 |
+
subprocess.run("uvicorn app.app:app --host 0.0.0.0 --port 7860", shell=True)
|