Skip to content
name: Update Open LLM Leaderboard
on:
workflow_dispatch:
push:
branches:
- update-llm-perf
schedule:
- cron: "0 0 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
update_open_llm_leaderboard:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install requirements
run: |
pip install --upgrade pip
pip install pandas huggingface-hub
- name: Update Open LLM Leaderboard
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: |
python llm_perf/update_open_llm_leaderboard.py