|
| 1 | +name: French tests |
| 2 | + |
| 3 | +on: [workflow_dispatch, push, pull_request] |
| 4 | + |
| 5 | +jobs: |
| 6 | + |
| 7 | + canary-multi-turn: |
| 8 | + runs-on: ubuntu-22.04 |
| 9 | + timeout-minutes: 3 |
| 10 | + strategy: |
| 11 | + max-parallel: 3 |
| 12 | + fail-fast: false |
| 13 | + matrix: |
| 14 | + model: |
| 15 | + - meta-llama/llama-3.2-3b-instruct # $0.0100/$0.0200 [ 128K] |
| 16 | + - google/gemma-3n-e4b-it # $0.0200/$0.0400 [ 32K] |
| 17 | + - google/gemma-3-4b-it # $0.0200/$0.0400 [ 128K] |
| 18 | + - mistralai/mistral-small-3.2-24b-instruct # $0.0500/$0.1000 [ 32K] |
| 19 | + - google/gemma-3-12b-it # $0.0500/$0.1000 [ 128K] |
| 20 | + - qwen/qwen3-8b # $0.0350/$0.1380 [ 128K] |
| 21 | + - google/gemini-flash-1.5-8b # $0.0380/$0.1500 [1000K] |
| 22 | + |
| 23 | + steps: |
| 24 | + - uses: actions/checkout@v4 |
| 25 | + |
| 26 | + - run: ./chat-llm.js tests/fr/canary-single-turn.txt |
| 27 | + env: |
| 28 | + LLM_API_BASE_URL: https://openrouter.ai/api/v1 |
| 29 | + LLM_API_KEY: ${{ secrets.LLM_API_KEY }} |
| 30 | + LLM_CHAT_MODEL: ${{ matrix.model }} |
| 31 | + |
| 32 | + - run: ./chat-llm.js tests/fr/canary-multi-turn.txt |
| 33 | + env: |
| 34 | + LLM_API_BASE_URL: https://openrouter.ai/api/v1 |
| 35 | + LLM_API_KEY: ${{ secrets.LLM_API_KEY }} |
| 36 | + LLM_CHAT_MODEL: ${{ matrix.model }} |
| 37 | + |
| 38 | + |
| 39 | + high-school-stem: |
| 40 | + runs-on: ubuntu-22.04 |
| 41 | + timeout-minutes: 5 |
| 42 | + strategy: |
| 43 | + max-parallel: 3 |
| 44 | + fail-fast: false |
| 45 | + matrix: |
| 46 | + model: |
| 47 | + - meta-llama/llama-3.2-3b-instruct # $0.0100/$0.0200 [ 128K] |
| 48 | + - google/gemma-3n-e4b-it # $0.0200/$0.0400 [ 32K] |
| 49 | + - google/gemma-3-4b-it # $0.0200/$0.0400 [ 128K] |
| 50 | + - mistralai/mistral-small-3.2-24b-instruct # $0.0500/$0.1000 [ 32K] |
| 51 | + - google/gemma-3-12b-it # $0.0500/$0.1000 [ 128K] |
| 52 | + - qwen/qwen3-8b # $0.0350/$0.1380 [ 128K] |
| 53 | + - google/gemini-flash-1.5-8b # $0.0380/$0.1500 [1000K] |
| 54 | + |
| 55 | + steps: |
| 56 | + - uses: actions/checkout@v4 |
| 57 | + |
| 58 | + - run: ./chat-llm.js tests/fr/high-school-stem.txt |
| 59 | + env: |
| 60 | + LLM_API_BASE_URL: https://openrouter.ai/api/v1 |
| 61 | + LLM_API_KEY: ${{ secrets.LLM_API_KEY }} |
| 62 | + LLM_CHAT_MODEL: ${{ matrix.model }} |
0 commit comments