mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-04-29 22:47:56 -05:00
Fix tagline consistency: Don't import it. Build it.
- Remove 'just' from all instances of the tagline - Update banner to lead with tagline - Consistent branding across docs, CLI, and demos
This commit is contained in:
7
tito/commands/dev/__init__.py
Normal file
7
tito/commands/dev/__init__.py
Normal file
@@ -0,0 +1,7 @@
|
||||
"""Developer command group for TinyTorch CLI."""
|
||||
|
||||
from .dev import DevCommand
|
||||
from .preflight import PreflightCommand
|
||||
|
||||
__all__ = ['DevCommand', 'PreflightCommand']
|
||||
|
||||
@@ -33,7 +33,7 @@ def print_banner(compact: bool = False):
|
||||
banner_text.append("Tiny", style="dim cyan")
|
||||
banner_text.append("🔥", style="red")
|
||||
banner_text.append("TORCH", style="bold orange1")
|
||||
banner_text.append(": Don't just import it. Build it.", style="dim")
|
||||
banner_text.append(": Don't import it. Build it.", style="dim")
|
||||
console.print(Panel(banner_text, style="bright_blue", padding=(1, 2)))
|
||||
|
||||
def print_compact_banner():
|
||||
@@ -44,7 +44,7 @@ def print_compact_banner():
|
||||
banner_text.append("Tiny", style="dim cyan")
|
||||
banner_text.append("\n🔥", style="red")
|
||||
banner_text.append("TORCH", style="bold orange1")
|
||||
banner_text.append(": Don't just import it. Build it.", style="dim")
|
||||
banner_text.append(": Don't import it. Build it.", style="dim")
|
||||
console.print(Panel(banner_text, style="bright_blue", padding=(1, 2)))
|
||||
|
||||
def print_ascii_logo(compact: bool = False):
|
||||
|
||||
Reference in New Issue
Block a user