Skip to content

Commit

Permalink
CI: Phi-3.5 Mini
Browse files Browse the repository at this point in the history
  • Loading branch information
ariya committed Aug 22, 2024
1 parent 93fe158 commit f4dd730
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions .github/actions/prepare-llm/action.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Prepare Phi-3 Mini
description: Download Phi-3 Mini and launch it
name: Prepare Phi-3.5 Mini
description: Download Phi-3.5 Mini and launch it
runs:
using: composite
steps:
- name: Download and unpack llama.cpp
shell: bash
run: |
curl -OL https://github.com/ggerganov/llama.cpp/releases/download/b3065/llama-b3065-bin-ubuntu-x64.zip
unzip llama-b3065-bin-ubuntu-x64.zip
curl -OL https://github.com/ggerganov/llama.cpp/releases/download/b3614/llama-b3614-bin-ubuntu-x64.zip
unzip llama-b3614-bin-ubuntu-x64.zip
- name: Launch llama.cpp with Phi-3 Mini
- name: Launch llama.cpp with Phi-3.5 Mini
shell: bash
run: ./build/bin/server --hf-repo microsoft/Phi-3-mini-4k-instruct-gguf --hf-file Phi-3-mini-4k-instruct-q4.gguf &
run: ./build/bin/llama-server -c 8192 --hf-repo lmstudio-community/Phi-3.5-mini-instruct-GGUF --hf-file Phi-3.5-mini-instruct-Q4_K_M.gguf &

- name: Wait until it is ready
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/canary-multi-turn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- mistralai/mistral-7b-instruct-v0.3 # $0.07 [ 32K]
- qwen/qwen-2-7b-instruct # $0.07 [ 32K]
- meta-llama/llama-3.1-8b-instruct # $0.09 [128K]
- microsoft/phi-3-medium-4k-instruct # $0.14 [ 4K]
- microsoft/phi-3.5-mini-128k-instruct # $0.10 [128K]
- nousresearch/hermes-2-pro-llama-3-8b # $0.15 [ 8K]
- mistralai/mistral-nemo # $0.18 [128K]
- mistralai/mixtral-8x7b-instruct # $0.24 [ 32K]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/general-knowledge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- mistralai/mistral-7b-instruct-v0.3 # $0.07 [ 32K]
- qwen/qwen-2-7b-instruct # $0.07 [ 32K]
- meta-llama/llama-3.1-8b-instruct # $0.09 [128K]
- microsoft/phi-3-medium-4k-instruct # $0.14 [ 4K]
- microsoft/phi-3.5-mini-128k-instruct # $0.10 [128K]
- nousresearch/hermes-2-pro-llama-3-8b # $0.15 [ 8K]
- mistralai/mistral-nemo # $0.18 [128K]
- mistralai/mixtral-8x7b-instruct # $0.24 [ 32K]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/high-school-stem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- mistralai/mistral-7b-instruct-v0.3 # $0.07 [ 32K]
- qwen/qwen-2-7b-instruct # $0.07 [ 32K]
- meta-llama/llama-3.1-8b-instruct # $0.09 [128K]
- microsoft/phi-3-medium-4k-instruct # $0.14 [ 4K]
- microsoft/phi-3.5-mini-128k-instruct # $0.10 [128K]
- nousresearch/hermes-2-pro-llama-3-8b # $0.15 [ 8K]
- mistralai/mistral-nemo # $0.18 [128K]
- mistralai/mixtral-8x7b-instruct # $0.24 [ 32K]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-phi3-mini.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test with Phi-3 Mini
name: Test with Phi-3.5 Mini

on: [push, pull_request]

Expand All @@ -13,7 +13,7 @@ jobs:
with:
node-version: '18'

- name: Prepare LLM (Phi-3 Mini)
- name: Prepare LLM (Phi-3.5 Mini)
uses: ./.github/actions/prepare-llm
timeout-minutes: 3

Expand All @@ -35,7 +35,7 @@ jobs:
with:
node-version: '18'

- name: Prepare LLM (Phi-3 Mini)
- name: Prepare LLM (Phi-3.5 Mini)
uses: ./.github/actions/prepare-llm
timeout-minutes: 3

Expand All @@ -57,7 +57,7 @@ jobs:
with:
node-version: '18'

- name: Prepare LLM (Phi-3 Mini)
- name: Prepare LLM (Phi-3.5 Mini)
uses: ./.github/actions/prepare-llm
timeout-minutes: 3

Expand Down

0 comments on commit f4dd730

Please sign in to comment.