Skip to content

Commit

Permalink
Update llm.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rjambrecic committed Jan 15, 2025
1 parent e7b6298 commit 6fc3602
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/llm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install packages and dependencies
if: matrix.llm == 'openai'
run: |
docker --version
uv pip install --system -e ".[test,redis,interop]"
python -c "import autogen"
- name: Install packages for ${{ matrix.llm }}
if: matrix.llm == 'gemini' # Add other LLMs here
run: uv pip install --system -e ".[${{ matrix.llm }}]"
if: matrix.llm == 'gemini'
run: |
docker --version
uv pip install --system -e ".[test,redis,interop,${{ matrix.llm }}]"
python -c "import autogen"
- name: Tests - ${{ matrix.llm }}
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
Expand Down

0 comments on commit 6fc3602

Please sign in to comment.