-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathintro.py
More file actions
21 lines (17 loc) · 1.54 KB
/
intro.py
File metadata and controls
21 lines (17 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from utils.colors import Color
def print_banner():
banner = f"""
╭──────────────────────────────────────────────────────╮
│ {Color.blue("✻ Welcome to LLM Code under development preview!")} │
╰──────────────────────────────────────────────────────╯
██╗ ██╗ ███╗ ███╗ ██████╗ ██████╗ ██████╗ ███████╗
██║ ██║ ████╗ ████║ ██╔════╝██╔═══██╗██╔══██╗██╔════╝
██║ ██║ ██╔████╔██║ ██║ ██║ ██║██║ ██║█████╗
██║ ██║ ██║╚██╔╝██║ ██║ ██║ ██║██║ ██║██╔══╝
███████╗███████╗██║ ╚═╝ ██║ ╚██████╗╚██████╔╝██████╔╝███████╗
╚══════╝╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝
{Color.dim("Your AI-powered coding companion in the terminal")}
"""
print(banner)
if __name__ == "__main__":
print_banner()