Messing around with models
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 34s

This commit is contained in:
Jon Michael Aanes 2025-04-14 23:40:19 +02:00
parent 5d2e003a39
commit d77991a543

View File

@ -74,6 +74,7 @@ import sys
import tempfile
from pathlib import Path
from . import secrets
from ._version import __version__ # noqa: F401
logger = logging.getLogger(__name__)
@ -129,7 +130,7 @@ For code tasks:
"""
# MODEL = 'ollama/gemma3:27b'
MODEL = 'ollama_chat/gemma3:27b'
#MODEL = 'ollama_chat/gemma3:27b'
def create_aider_command(issue: str) -> list[str]:
@ -137,18 +138,18 @@ def create_aider_command(issue: str) -> list[str]:
'aider',
'--chat-language',
'english',
'--cache-prompts'
'--no-stream'
'--model',
MODEL,
'--cache-prompts',
'--no-stream',
#'--model',
#MODEL,
'--test-cmd',
AIDER_TEST,
'--lint-cmd',
AIDER_LINT,
'--auto-test',
'--no-auto-lint',
#'--api-key',
# secrets.llm_api_key(),
'--api-key',
secrets.llm_api_key(),
'--read',
'CONVENTIONS.md',
'--message',