Skip to content

Commit b79c925

Browse files
DarkLight1337skyloevil
authored andcommitted
[Bugfix] Fix Apertus HF repo name (vllm-project#24447)
Signed-off-by: DarkLight1337 <[email protected]>
1 parent bb6c4c0 commit b79c925

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

docs/models/supported_models.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@ th {
322322

323323
| Architecture | Models | Example HF Models | [LoRA](../features/lora.md) | [PP](../serving/parallelism_scaling.md) | [V1](gh-issue:8779) |
324324
|--------------|--------|-------------------|----------------------|---------------------------|---------------------|
325+
| `ApertusForCausalLM` | Apertus | `swiss-ai/Apertus-8B-2509`, `swiss-ai/Apertus-70B-Instruct-2509`, etc. | ✅︎ | ✅︎ | ✅︎ |
325326
| `AquilaForCausalLM` | Aquila, Aquila2 | `BAAI/Aquila-7B`, `BAAI/AquilaChat-7B`, etc. | ✅︎ | ✅︎ | ✅︎ |
326327
| `ArceeForCausalLM` | Arcee (AFM) | `arcee-ai/AFM-4.5B-Base`, etc. | ✅︎ | ✅︎ | ✅︎ |
327328
| `ArcticForCausalLM` | Arctic | `Snowflake/snowflake-arctic-base`, `Snowflake/snowflake-arctic-instruct`, etc. | | ✅︎ | ✅︎ |

tests/models/language/generation/test_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"allenai/OLMoE-1B-7B-0924-Instruct",
9494
marks=[pytest.mark.cpu_model],
9595
),
96-
pytest.param("swiss-ai/Apertus-8B"), # apertus
96+
pytest.param("swiss-ai/Apertus-8B-2509"), # apertus
9797
])
9898
@pytest.mark.parametrize("max_tokens", [32])
9999
@pytest.mark.parametrize("num_logprobs", [5])

tests/models/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def check_available_online(
158158
# yapf: disable
159159
_TEXT_GENERATION_EXAMPLE_MODELS = {
160160
# [Decoder-only]
161-
"ApertusForCausalLM": _HfExamplesInfo("swiss-ai/Apertus-8B",
161+
"ApertusForCausalLM": _HfExamplesInfo("swiss-ai/Apertus-8B-2509",
162162
min_transformers_version="4.56.0",
163163
trust_remote_code=True),
164164
"AquilaModel": _HfExamplesInfo("BAAI/AquilaChat-7B",

0 commit comments

Comments
 (0)