From aa6c8b1bfd2cf3ed5a17fb1a6fd190e05cf66685 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Tue, 2 Apr 2024 03:03:55 -0700 Subject: [PATCH] feat: ascii art on startup --- backend/main.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/backend/main.py b/backend/main.py index 8cc704a26..a4cb7f889 100644 --- a/backend/main.py +++ b/backend/main.py @@ -62,6 +62,21 @@ class SPAStaticFiles(StaticFiles): raise ex +print( + f""" + ___ __ __ _ _ _ ___ + / _ \ _ __ ___ _ __ \ \ / /__| |__ | | | |_ _| +| | | | '_ \ / _ \ '_ \ \ \ /\ / / _ \ '_ \| | | || | +| |_| | |_) | __/ | | | \ V V / __/ |_) | |_| || | + \___/| .__/ \___|_| |_| \_/\_/ \___|_.__/ \___/|___| + |_| + + +v{VERSION} - building the best open-source AI user interface. +https://github.com/open-webui/open-webui +""" +) + app = FastAPI(docs_url="/docs" if ENV == "dev" else None, redoc_url=None) app.state.MODEL_FILTER_ENABLED = MODEL_FILTER_ENABLED