From 90a064972c536acd24d3dc31c1f25bbe19563e75 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sat, 7 Sep 2024 05:07:37 +0100 Subject: [PATCH] fix --- backend/open_webui/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/open_webui/__init__.py b/backend/open_webui/__init__.py index bb1db0dea..5c4050005 100644 --- a/backend/open_webui/__init__.py +++ b/backend/open_webui/__init__.py @@ -10,7 +10,7 @@ app = typer.Typer() KEY_FILE = Path.cwd() / ".webui_secret_key" -os.environ["RUNNING_FROM_INIT_PY"] = "true" +os.environ["FROM_INIT_PY"] = "true" @app.command()