This file contains hidden or 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
| # SPDX-License-Identifier: Apache-2.0 | |
| # SPDX-FileCopyrightText: Copyright contributors to the vLLM project | |
| """ | |
| Whenever you add an architecture to this page, please also update | |
| `tests/models/registry.py` with example HuggingFace models for it. | |
| """ | |
| import importlib | |
| import os | |
| import pickle | |
| import subprocess |
OlderNewer