添加 rich 库支持,用于增强命令行输出显示
This commit is contained in:
parent
ede06cd102
commit
bae7b2fc19
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue