[Bug]: ``text The output of
python minicpmv_example.py
`` File "/data/envs/jh_llava/lib/python3.10/site-packages/vllm/model_executor/model_loader/utils.py", line 35, in get_model_architecture ValueError: Model architectures ['MiniCPMV'] are not supported for now. Supported architectures: 这个问题是环境版本的问题吗? 如果是的话能提供一下正确的版本吗
#9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Add Ready Label on Ready Comment | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
add-ready-label: | |
runs-on: ubuntu-latest | |
if: github.event.issue.pull_request && contains(github.event.comment.body, '/ready') | |
steps: | |
- name: Add label | |
uses: actions/github-script@v5 | |
with: | |
script: | | |
github.rest.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
labels: ['ready'] | |
}) | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |