ai-station/.venv/lib/python3.12/site-packages/litellm/proxy/common_utils/banner.py

17 lines
1.0 KiB
Python
Raw Normal View History

2025-12-25 14:54:33 +00:00
# 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