Skip to content

Commit

Permalink
CI: Use LLama-3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Oct 11, 2024
1 parent ed59eb3 commit 0dacc7a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-deepinfra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://api.deepinfra.com/v1/openai'
LLM_API_KEY: ${{ secrets.DEEPINFRA_API_KEY }}
LLM_CHAT_MODEL: 'meta-llama/Meta-Llama-3.1-8B-Instruct'
LLM_CHAT_MODEL: 'meta-llama/Llama-3.2-3B-Instruct'

- run: cat output.txt
2 changes: 1 addition & 1 deletion .github/workflows/test-fireworks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://api.fireworks.ai/inference/v1'
LLM_API_KEY: ${{ secrets.FIREWORKS_API_KEY }}
LLM_CHAT_MODEL: 'accounts/fireworks/models/llama-v3p1-8b-instruct'
LLM_CHAT_MODEL: 'accounts/fireworks/models/llama-v3p2-3b-instruct'

- run: cat output.txt
2 changes: 1 addition & 1 deletion .github/workflows/test-groq.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://api.groq.com/openai/v1'
LLM_API_KEY: ${{ secrets.GROQ_API_KEY }}
LLM_CHAT_MODEL: 'llama-3.1-8b-instant'
LLM_CHAT_MODEL: 'llama-3.2-1b-preview'

- run: cat output.txt
2 changes: 1 addition & 1 deletion .github/workflows/test-hyperbolic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://api.hyperbolic.xyz/v1'
LLM_API_KEY: ${{ secrets.HYPERBOLIC_API_KEY }}
LLM_CHAT_MODEL: 'meta-llama/Meta-Llama-3.1-8B-Instruct'
LLM_CHAT_MODEL: 'meta-llama/Llama-3.2-3B-Instruct'

- run: cat output.txt
2 changes: 1 addition & 1 deletion .github/workflows/test-lepton.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- run: echo 'Which planet in our solar system is the largest?' | ./ask-llm.js | tee output.txt | grep -i jupiter
timeout-minutes: 3
env:
LLM_API_BASE_URL: 'https://llama3-1-8b.lepton.run/api/v1'
LLM_API_BASE_URL: 'https://llama3-2-3b.lepton.run/api/v1/'
LLM_API_KEY: ${{ secrets.LEPTON_API_KEY }}
LLM_CHAT_MODEL: 'llama3-1-8b'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-openrouter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://openrouter.ai/api/v1'
LLM_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
LLM_CHAT_MODEL: 'meta-llama/llama-3-8b-instruct'
LLM_CHAT_MODEL: 'meta-llama/llama-3.2-1b-instruct'

- run: cat output.txt
2 changes: 1 addition & 1 deletion .github/workflows/test-together.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://api.together.xyz/v1'
LLM_API_KEY: ${{ secrets.TOGETHER_API_KEY }}
LLM_CHAT_MODEL: 'meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo'
LLM_CHAT_MODEL: 'meta-llama/Llama-3.2-3B-Instruct-Turbo'

- run: cat output.txt

0 comments on commit 0dacc7a

Please sign in to comment.