Skip to content

Commit

Permalink
feat: ascii art on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
tjbck committed Apr 2, 2024
1 parent 57530d8 commit aa6c8b1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions backend/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,21 @@ async def get_response(self, path: str, scope):
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
Expand Down

0 comments on commit aa6c8b1

Please sign in to comment.