显示增强版启动横幅
()
| 26 | |
| 27 | |
| 28 | def print_enhanced_banner(): |
| 29 | """显示增强版启动横幅""" |
| 30 | banner = f""" |
| 31 | {Colors.CYAN}╔══════════════════════════════════════════════════════════════════════════════╗ |
| 32 | ║ ║ |
| 33 | ║ {Colors.BOLD}{Colors.MAGENTA}🧬 DeepCode - Open-Source Code Agent{Colors.CYAN} ║ |
| 34 | ║ ║ |
| 35 | ║ {Colors.BOLD}{Colors.YELLOW}⚡ DATA INTELLIGENCE LAB @ HKU ⚡{Colors.CYAN} ║ |
| 36 | ║ ║ |
| 37 | ║ Revolutionizing research reproducibility through collaborative AI ║ |
| 38 | ║ Building the future where code is reproduced from natural language ║ |
| 39 | ║ ║ |
| 40 | ║ {Colors.BOLD}{Colors.GREEN}🤖 Key Features:{Colors.CYAN} ║ |
| 41 | ║ • Automated paper-to-code reproduction ║ |
| 42 | ║ • Multi-agent collaborative architecture ║ |
| 43 | ║ • Open-source and extensible design ║ |
| 44 | ║ • Join our growing research community ║ |
| 45 | ║ ║ |
| 46 | ╚══════════════════════════════════════════════════════════════════════════════╝{Colors.ENDC} |
| 47 | """ |
| 48 | print(banner) |
| 49 | |
| 50 | |
| 51 | def check_environment(): |