diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index d29f439..f98ed37 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -7,11 +7,11 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10", "3.11", "3.12", "3.13"] + python-version: ["3.10", "3.14"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/services/llm.py b/services/llm.py index 163d507..da87536 100644 --- a/services/llm.py +++ b/services/llm.py @@ -8,7 +8,7 @@ from config import GROQ_API_KEY from config import OPENAI_MODEL from config import GROQ_MODEL -from .local_llm import ask_local_llm +from services.local_llm import ask_local_llm # Configure logging