chore: initial snapshot for gitea/github upload
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
# LiteLLM ASCII banner
|
||||
LITELLM_BANNER = """ ██╗ ██╗████████╗███████╗██╗ ██╗ ███╗ ███╗
|
||||
██║ ██║╚══██╔══╝██╔════╝██║ ██║ ████╗ ████║
|
||||
██║ ██║ ██║ █████╗ ██║ ██║ ██╔████╔██║
|
||||
██║ ██║ ██║ ██╔══╝ ██║ ██║ ██║╚██╔╝██║
|
||||
███████╗██║ ██║ ███████╗███████╗███████╗██║ ╚═╝ ██║
|
||||
╚══════╝╚═╝ ╚═╝ ╚══════╝╚══════╝╚══════╝╚═╝ ╚═╝"""
|
||||
|
||||
|
||||
def show_banner():
|
||||
"""Display the LiteLLM CLI banner."""
|
||||
try:
|
||||
import click
|
||||
|
||||
click.echo(f"\n{LITELLM_BANNER}\n")
|
||||
except ImportError:
|
||||
print("\n") # noqa: T201
|
||||
Reference in New Issue
Block a user