refactor: change agent verbosity to verbose=False in gen_commit.py

This commit is contained in:
KaySar12 2025-05-20 16:56:44 +07:00
parent 875edc36d0
commit 10bd144b6e

View File

@ -50,7 +50,7 @@ def gen_commit(project_path):
agent = OpenInterpreter()
agent.llm.model = "gpt-4o"
agent.auto_run = True
agent.quiet = True
agent.verbose = False
convention_path = os.path.join(
os.path.dirname(__file__), "resources/commit_convention.md"
)