Print goodbye message
(self)
| 705 | self.print_status(f"Cache cleanup failed: {e}", "warning") |
| 706 | |
| 707 | def print_goodbye(self): |
| 708 | """Print goodbye message""" |
| 709 | # 清理缓存文件 |
| 710 | self.cleanup_cache() |
| 711 | |
| 712 | goodbye = f""" |
| 713 | {Colors.BOLD}{Colors.CYAN}╔═══════════════════════════════════════════════════════════════════════════════╗ |
| 714 | ║ GOODBYE ║ |
| 715 | ╠═══════════════════════════════════════════════════════════════════════════════╣ |
| 716 | ║ {Colors.OKGREEN}🎉 Thank you for using DeepCode CLI! {Colors.CYAN}║ |
| 717 | ║ ║ |
| 718 | ║ {Colors.YELLOW}🧬 Join our community in revolutionizing research reproducibility {Colors.CYAN}║ |
| 719 | ║ {Colors.PURPLE}⚡ Together, we're building the future of automated code generation {Colors.CYAN}║ |
| 720 | ║ ║ |
| 721 | ║ {Colors.OKCYAN}💡 Questions? Contribute to our open-source mission at GitHub {Colors.CYAN}║ |
| 722 | ║ {Colors.GREEN}🧹 Cache files cleaned up for optimal performance {Colors.CYAN}║ |
| 723 | ║ ║ |
| 724 | ╚═══════════════════════════════════════════════════════════════════════════════╝{Colors.ENDC} |
| 725 | """ |
| 726 | print(goodbye) |
| 727 | |
| 728 | def get_requirement_analysis_input(self) -> str: |
| 729 | """Enhanced requirement analysis input interface (NEW: matching UI version)""" |
no test coverage detected