Skip to content

Commit

Permalink
CI: Use LLama 3.1 8B whenever possible
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Sep 16, 2024
1 parent f6b06a4 commit c34d119
Show file tree
Hide file tree
Showing 7 changed files with 8 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 @@ -21,6 +21,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-8B-Instruct'
LLM_CHAT_MODEL: 'meta-llama/Meta-Llama-3.1-8B-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 @@ -21,6 +21,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-v3-8b-instruct'
LLM_CHAT_MODEL: 'accounts/fireworks/models/llama-v3p1-8b-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 @@ -21,6 +21,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://api.groq.com/openai/v1'
LLM_API_KEY: ${{ secrets.GROQ_API_KEY }}
LLM_CHAT_MODEL: 'llama3-8b-8192'
LLM_CHAT_MODEL: 'llama-3.1-8b-instant'

- run: cat output.txt
3 changes: 2 additions & 1 deletion .github/workflows/test-lepton.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ 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-8b.lepton.run/api/v1'
LLM_API_BASE_URL: 'https://llama3-1-8b.lepton.run/api/v1'
LLM_API_KEY: ${{ secrets.LEPTON_API_KEY }}
LLM_CHAT_MODEL: 'llama3-1-8b'

- run: cat output.txt
2 changes: 1 addition & 1 deletion .github/workflows/test-novita.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://api.novita.ai/v3/openai'
LLM_API_KEY: ${{ secrets.NOVITA_API_KEY }}
LLM_CHAT_MODEL: 'meta-llama/llama-3-8b-instruct'
LLM_CHAT_MODEL: 'meta-llama/llama-3.1-8b-instruct'

- run: cat output.txt
2 changes: 1 addition & 1 deletion .github/workflows/test-octo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
LLM_API_BASE_URL: 'https://text.octoai.run/v1'
LLM_API_KEY: ${{ secrets.OCTOAI_API_KEY }}
LLM_CHAT_MODEL: 'hermes-2-pro-mistral-7b'
LLM_CHAT_MODEL: 'meta-llama-3.1-8b-instruct'
LLM_STREAMING: 'no'

- 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 @@ -21,6 +21,6 @@ jobs:
env:
LLM_API_BASE_URL: 'https://api.together.xyz/v1'
LLM_API_KEY: ${{ secrets.TOGETHER_API_KEY }}
LLM_CHAT_MODEL: 'meta-llama/Llama-3-8b-chat-hf'
LLM_CHAT_MODEL: 'meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo'

- run: cat output.txt

0 comments on commit c34d119

Please sign in to comment.