Skip to content

Commit 01f1f2e

Browse files
authored
Merge pull request #2 from AlexTkDev/codex/update-model-to-use-google-gemma4
Add Google Gemma local LLM support, harden config parsing, improve local LLM handling, and update CI/docs
2 parents 69435e4 + 8174fca commit 01f1f2e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ["3.10", "3.11", "3.12", "3.13"]
10+
python-version: ["3.10", "3.14"]
1111
steps:
1212
- uses: actions/checkout@v4
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v3
14+
uses: actions/setup-python@v5
1515
with:
1616
python-version: ${{ matrix.python-version }}
1717
- name: Install dependencies

services/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from config import GROQ_API_KEY
99
from config import OPENAI_MODEL
1010
from config import GROQ_MODEL
11-
from .local_llm import ask_local_llm
11+
from services.local_llm import ask_local_llm
1212

1313

1414
# Configure logging

0 commit comments

Comments
 (0)