fix: dev1

This commit is contained in:
Timothy J. Baek
2024-09-24 16:07:49 +02:00
parent a44e9a8dda
commit ff651ddc36
3 changed files with 5 additions and 5 deletions

View File

@@ -54,7 +54,7 @@ def serve(
os.environ["LD_LIBRARY_PATH"] = ":".join(LD_LIBRARY_PATH)
import open_webui.main # we need set environment variables before importing main
uvicorn.run(open_webui.main.app, host=host, port=port, forwarded_allow_ips="*")
uvicorn.run("open_webui.main:app", host=host, port=port, forwarded_allow_ips="*")
@app.command()