Moved default path
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s

This commit is contained in:
Jon Michael Aanes 2025-04-13 17:44:28 +02:00
parent e463a8dbb3
commit 877987787b
2 changed files with 5 additions and 2 deletions

View File

@ -48,7 +48,8 @@ AIDER_LINT=bash_cmd(
)
MODEL = 'o3-mini'
#MODEL = 'o3-mini'
MODEL = 'claude-3-7-sonnet'
LLM_MESSAGE_FORMAT = """
{issue}

View File

@ -1,8 +1,10 @@
import sqlite3
from hashlib import sha256
DEFAULT_DB_PATH = 'output/seen_issues.db'
class SeenIssuesDB:
def __init__(self, db_path='seen_issues.db'):
def __init__(self, db_path=DEFAULT_DB_PATH):
self.conn = sqlite3.connect(db_path)
self._create_table()