Compare commits

..

3 Commits

Author SHA1 Message Date
9c4e6256f2 Ruff after aider
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
2025-04-24 00:05:02 +02:00
5bd8bd51aa feat: add CLI options to specify aider and evaluator models 2025-04-24 00:04:58 +02:00
b2dc685463 Initial ruff pass 2025-04-24 00:04:12 +02:00

View File

@ -8,7 +8,7 @@ import argparse
import logging
import time
import aider_gitea
import aide_gitea
from . import (
CODE_MODEL,
@ -69,10 +69,8 @@ def parse_args():
def main():
logging.basicConfig(level='INFO')
args = parse_args()
# Override default models from CLI
aider_gitea.CODE_MODEL = args.aider_model
aider_gitea.EVALUATOR_MODEL = args.evaluator_model
aide_gitea.CODE_MODEL = args.aider_model
aide_gitea.EVALUATOR_MODEL = args.evaluator_model
seen_issues_db = SeenIssuesDB()
client = GiteaClient(args.gitea_url, secrets.gitea_token())