Messing around with models
This commit is contained in:
parent
5d2e003a39
commit
d77991a543
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue
Block a user