Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
3633035a
Unverified
Commit
3633035a
authored
Dec 05, 2025
by
Russell Bryant
Committed by
GitHub
Dec 05, 2025
Browse files
[Misc] Rename CohereForAI references to CohereLabs (#30147)
Signed-off-by:
Russell Bryant
<
rbryant@redhat.com
>
parent
bff78310
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
docs/models/supported_models.md
docs/models/supported_models.md
+1
-1
examples/offline_inference/vision_language.py
examples/offline_inference/vision_language.py
+1
-1
examples/offline_inference/vision_language_multi_image.py
examples/offline_inference/vision_language_multi_image.py
+1
-1
tests/distributed/test_pipeline_parallel.py
tests/distributed/test_pipeline_parallel.py
+1
-1
tests/models/multimodal/generation/test_common.py
tests/models/multimodal/generation/test_common.py
+2
-2
tests/models/registry.py
tests/models/registry.py
+3
-3
No files found.
docs/models/supported_models.md
View file @
3633035a
...
...
@@ -666,7 +666,7 @@ These models primarily accept the [`LLM.generate`](./generative_models.md#llmgen
| Architecture | Models | Inputs | Example HF Models |
[
LoRA
](
../features/lora.md
)
|
[
PP
](
../serving/parallelism_scaling.md
)
|
|--------------|--------|--------|-------------------|----------------------|---------------------------|
|
`AriaForConditionalGeneration`
| Aria | T + I
<sup>
+
</sup>
|
`rhymes-ai/Aria`
| | |
|
`AyaVisionForConditionalGeneration`
| Aya Vision | T + I
<sup>
+
</sup>
|
`Cohere
ForAI
/aya-vision-8b`
,
`Cohere
ForAI
/aya-vision-32b`
, etc. | | ✅︎ |
|
`AyaVisionForConditionalGeneration`
| Aya Vision | T + I
<sup>
+
</sup>
|
`Cohere
Labs
/aya-vision-8b`
,
`Cohere
Labs
/aya-vision-32b`
, etc. | | ✅︎ |
|
`BeeForConditionalGeneration`
| Bee-8B | T + I
<sup>
E+
</sup>
|
`Open-Bee/Bee-8B-RL`
,
`Open-Bee/Bee-8B-SFT`
| | ✅︎ |
|
`Blip2ForConditionalGeneration`
| BLIP-2 | T + I
<sup>
E
</sup>
|
`Salesforce/blip2-opt-2.7b`
,
`Salesforce/blip2-opt-6.7b`
, etc. | | ✅︎ |
|
`ChameleonForConditionalGeneration`
| Chameleon | T + I |
`facebook/chameleon-7b`
, etc. | | ✅︎ |
...
...
examples/offline_inference/vision_language.py
View file @
3633035a
...
...
@@ -72,7 +72,7 @@ def run_aria(questions: list[str], modality: str) -> ModelRequestData:
# Aya Vision
def
run_aya_vision
(
questions
:
list
[
str
],
modality
:
str
)
->
ModelRequestData
:
assert
modality
==
"image"
model_name
=
"Cohere
ForAI
/aya-vision-8b"
model_name
=
"Cohere
Labs
/aya-vision-8b"
engine_args
=
EngineArgs
(
model
=
model_name
,
...
...
examples/offline_inference/vision_language_multi_image.py
View file @
3633035a
...
...
@@ -76,7 +76,7 @@ def load_aria(question: str, image_urls: list[str]) -> ModelRequestData:
def
load_aya_vision
(
question
:
str
,
image_urls
:
list
[
str
])
->
ModelRequestData
:
model_name
=
"Cohere
ForAI
/aya-vision-8b"
model_name
=
"Cohere
Labs
/aya-vision-8b"
engine_args
=
EngineArgs
(
model
=
model_name
,
...
...
tests/distributed/test_pipeline_parallel.py
View file @
3633035a
...
...
@@ -109,7 +109,7 @@ TEXT_GENERATION_MODELS = {
"baichuan-inc/Baichuan2-13B-Chat"
:
PPTestSettings
.
fast
(),
"bigscience/bloomz-1b1"
:
PPTestSettings
.
fast
(),
"zai-org/chatglm3-6b"
:
PPTestSettings
.
fast
(),
"Cohere
ForAI
/c4ai-command-r-v01"
:
PPTestSettings
.
fast
(
load_format
=
"dummy"
),
"Cohere
Labs
/c4ai-command-r-v01"
:
PPTestSettings
.
fast
(
load_format
=
"dummy"
),
"databricks/dbrx-instruct"
:
PPTestSettings
.
fast
(
load_format
=
"dummy"
),
"Deci/DeciLM-7B-instruct"
:
PPTestSettings
.
fast
(),
"deepseek-ai/deepseek-llm-7b-chat"
:
PPTestSettings
.
fast
(),
...
...
tests/models/multimodal/generation/test_common.py
View file @
3633035a
...
...
@@ -278,7 +278,7 @@ VLM_TEST_SETTINGS = {
marks
=
[
large_gpu_mark
(
min_gb
=
64
)],
),
"aya_vision"
:
VLMTestInfo
(
models
=
[
"Cohere
ForAI
/aya-vision-8b"
],
models
=
[
"Cohere
Labs
/aya-vision-8b"
],
test_type
=
(
VLMTestType
.
IMAGE
),
prompt_formatter
=
lambda
img_prompt
:
f
"<|START_OF_TURN_TOKEN|><|USER_TOKEN|>
{
img_prompt
}
<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>"
,
# noqa: E501
single_image_prompts
=
IMAGE_ASSETS
.
prompts
(
...
...
@@ -294,7 +294,7 @@ VLM_TEST_SETTINGS = {
vllm_runner_kwargs
=
{
"mm_processor_kwargs"
:
{
"crop_to_patches"
:
True
}},
),
"aya_vision-multi_image"
:
VLMTestInfo
(
models
=
[
"Cohere
ForAI
/aya-vision-8b"
],
models
=
[
"Cohere
Labs
/aya-vision-8b"
],
test_type
=
(
VLMTestType
.
MULTI_IMAGE
),
prompt_formatter
=
lambda
img_prompt
:
f
"<|START_OF_TURN_TOKEN|><|USER_TOKEN|>
{
img_prompt
}
<|END_OF_TURN_TOKEN|><|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>"
,
# noqa: E501
single_image_prompts
=
IMAGE_ASSETS
.
prompts
(
...
...
tests/models/registry.py
View file @
3633035a
...
...
@@ -211,10 +211,10 @@ _TEXT_GENERATION_EXAMPLE_MODELS = {
trust_remote_code
=
True
,
),
"CohereForCausalLM"
:
_HfExamplesInfo
(
"Cohere
ForAI
/c4ai-command-r-v01"
,
trust_remote_code
=
True
"Cohere
Labs
/c4ai-command-r-v01"
,
trust_remote_code
=
True
),
"Cohere2ForCausalLM"
:
_HfExamplesInfo
(
"Cohere
ForAI
/c4ai-command-r7b-12-2024"
,
"Cohere
Labs
/c4ai-command-r7b-12-2024"
,
trust_remote_code
=
True
,
),
"CwmForCausalLM"
:
_HfExamplesInfo
(
"facebook/cwm"
,
min_transformers_version
=
"4.58"
),
...
...
@@ -581,7 +581,7 @@ _AUTOMATIC_CONVERTED_MODELS = {
_MULTIMODAL_EXAMPLE_MODELS
=
{
# [Decoder-only]
"AriaForConditionalGeneration"
:
_HfExamplesInfo
(
"rhymes-ai/Aria"
),
"AyaVisionForConditionalGeneration"
:
_HfExamplesInfo
(
"Cohere
ForAI
/aya-vision-8b"
),
"AyaVisionForConditionalGeneration"
:
_HfExamplesInfo
(
"Cohere
Labs
/aya-vision-8b"
),
"BeeForConditionalGeneration"
:
_HfExamplesInfo
(
"Open-Bee/Bee-8B-RL"
,
trust_remote_code
=
True
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment