Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge: nightly changes to main #81

Merged
merged 25 commits into from
Feb 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3e707e9
chore: bring back gemma
aarnphm Feb 7, 2025
7a21a50
chore: make bentos
github-actions[bot] Feb 7, 2025
8f683fa
chore: use coroutine to initialize app state (#77)
aarnphm Feb 7, 2025
941e046
chore: make bentos
github-actions[bot] Feb 7, 2025
467e008
Merge branch 'main' into nightly
aarnphm Feb 7, 2025
1c15786
chore: make bentos
github-actions[bot] Feb 7, 2025
6ef7c2e
chore: use correct 2b 2 instruct
aarnphm Feb 7, 2025
41303fb
chore: make bentos
github-actions[bot] Feb 7, 2025
9aac000
chore: add 1b and 3b variants of Llama
aarnphm Feb 7, 2025
29e1d8e
chore: make bentos
github-actions[bot] Feb 7, 2025
7eef4b5
chore: update with chat templates
aarnphm Feb 7, 2025
b7d7edd
Merge branch 'main' into nightly
aarnphm Feb 7, 2025
2d058b5
chore: make bentos
github-actions[bot] Feb 7, 2025
991bf86
fix: correct use server_config field
aarnphm Feb 7, 2025
7a53874
chore: make bentos
github-actions[bot] Feb 7, 2025
3ece6b2
chore: update to use 2vl
aarnphm Feb 11, 2025
5ac5e45
chore: make bentos
github-actions[bot] Feb 11, 2025
339a11d
fix(models): make sure to set max_model_len (bad merge)
aarnphm Feb 11, 2025
14754f7
Merge branch 'main' into nightly
aarnphm Feb 11, 2025
56b5786
chore: make bentos
github-actions[bot] Feb 11, 2025
3711fe5
merge: branch 'main' of github.com:bentoml/openllm-models into nightly
aarnphm Feb 14, 2025
3bed3b9
chore: update conditional ignore for vision endpoint
aarnphm Feb 15, 2025
16479e8
chore(ci): uses uv
aarnphm Feb 15, 2025
25c9974
chore: make bentos [generated]
github-actions[bot] Feb 15, 2025
33759b6
chore: use uv to run all script
aarnphm Feb 15, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
80 changes: 39 additions & 41 deletions .github/workflows/make_bentos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,44 +13,42 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'

- name: Make bentos
run: |
python -m pip install --upgrade pip
cd src
pip install -r make_requirements.txt
make
cd ..

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install jinja2 openllm

- name: Run gen_readme.py
run: python gen_readme.py

- name: Configure git
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'

- name: Commit and push changes
run: |
if [[ -n $(git status -s) ]]; then
git add bentoml/bentos/*
git add README.md
git commit -m "chore: make bentos"
git push origin nightly
else
echo "No changes to commit"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"

- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"

- name: Make bentos
run: |
cd src
make
cd ..

- name: Run gen_readme.py
run: uv run gen_readme.py

- name: Configure git
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'

- name: Commit and push changes
run: |
if [[ -n $(git status -s) ]]; then
git add bentoml/bentos/*
git add README.md
git commit -m "chore: make bentos [generated]"
git push origin nightly
else
echo "No changes to commit"
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
78 changes: 39 additions & 39 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading