fix: dev2

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

View File

@ -52,9 +52,10 @@ def serve(
)
os.environ["USE_CUDA_DOCKER"] = "false"
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()

View File

@ -90,10 +90,14 @@ async def periodic_usage_pool_cleanup():
await asyncio.sleep(TIMEOUT_DURATION)
async def on_startup():
asyncio.create_task(periodic_usage_pool_cleanup())
app = socketio.ASGIApp(
sio,
socketio_path="/ws/socket.io",
on_startup=asyncio.create_task(periodic_usage_pool_cleanup()),
on_startup=on_startup(),
)

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "open-webui",
"version": "0.3.27.dev1",
"version": "0.3.27.dev2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "open-webui",
"version": "0.3.27.dev1",
"version": "0.3.27.dev2",
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-python": "^6.1.6",

View File

@ -1,6 +1,6 @@
{
"name": "open-webui",
"version": "0.3.27.dev1",
"version": "0.3.27.dev2",
"private": true,
"scripts": {
"dev": "npm run pyodide:fetch && vite dev --host",