From 0dacc7aaac2595b098cdd7cf213cc72a81fda8b1 Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Thu, 10 Oct 2024 22:01:23 -0700 Subject: [PATCH] CI: Use LLama-3.2 --- .github/workflows/test-deepinfra.yml | 2 +- .github/workflows/test-fireworks.yml | 2 +- .github/workflows/test-groq.yml | 2 +- .github/workflows/test-hyperbolic.yml | 2 +- .github/workflows/test-lepton.yml | 2 +- .github/workflows/test-openrouter.yml | 2 +- .github/workflows/test-together.yml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-deepinfra.yml b/.github/workflows/test-deepinfra.yml index 2eaa130..64208b6 100644 --- a/.github/workflows/test-deepinfra.yml +++ b/.github/workflows/test-deepinfra.yml @@ -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 diff --git a/.github/workflows/test-fireworks.yml b/.github/workflows/test-fireworks.yml index aba960f..b371702 100644 --- a/.github/workflows/test-fireworks.yml +++ b/.github/workflows/test-fireworks.yml @@ -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 diff --git a/.github/workflows/test-groq.yml b/.github/workflows/test-groq.yml index 64ab6b4..55f6b8b 100644 --- a/.github/workflows/test-groq.yml +++ b/.github/workflows/test-groq.yml @@ -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 diff --git a/.github/workflows/test-hyperbolic.yml b/.github/workflows/test-hyperbolic.yml index d4b738d..2ecbb50 100644 --- a/.github/workflows/test-hyperbolic.yml +++ b/.github/workflows/test-hyperbolic.yml @@ -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 diff --git a/.github/workflows/test-lepton.yml b/.github/workflows/test-lepton.yml index be6a18c..5c3a89b 100644 --- a/.github/workflows/test-lepton.yml +++ b/.github/workflows/test-lepton.yml @@ -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' diff --git a/.github/workflows/test-openrouter.yml b/.github/workflows/test-openrouter.yml index addc7c3..39a7501 100644 --- a/.github/workflows/test-openrouter.yml +++ b/.github/workflows/test-openrouter.yml @@ -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 diff --git a/.github/workflows/test-together.yml b/.github/workflows/test-together.yml index dbbb8e4..05bbed4 100644 --- a/.github/workflows/test-together.yml +++ b/.github/workflows/test-together.yml @@ -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