添加 rich 库支持,用于增强命令行输出显示

This commit is contained in:
songsenand 2026-01-25 01:54:37 +08:00
parent ede06cd102
commit bae7b2fc19
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,12 @@
import subprocess
from rich.console import Console
from .llm import LLMClient
console = Console()
class GitHandler:
def __init__(self, llm_client=None):
if llm_client: