Skip to content

Commit e28202a

Browse files
authored
[Docs] Align supported models, remove SUPPORTED_MODELS.md (#2435)
Ticket: CVS-169351 Preview: https://yatarkan.github.io/openvino.genai/docs/supported-models/
1 parent f7439b9 commit e28202a

File tree

19 files changed

+186
-560
lines changed

19 files changed

+186
-560
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ int main(int argc, char* argv[]) {
524524
525525
## Additional materials
526526
527-
- [List of supported models](https://github.com/openvinotoolkit/openvino.genai/blob/master/SUPPORTED_MODELS.md) (NOTE: models can work, but were not tried yet)
527+
- [List of supported models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/)
528528
- [OpenVINO Generative AI workflow](https://docs.openvino.ai/2025/openvino-workflow-generative.html)
529529
- [Optimum-intel and OpenVINO](https://huggingface.co/docs/optimum/intel/openvino/export)
530530

SUPPORTED_MODELS.md

Lines changed: 0 additions & 514 deletions
This file was deleted.

samples/cpp/rag/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Follow [Get Started with Samples](https://docs.openvino.ai/2025/get-started/lear
1919

2020
`text_embeddings BAAI/bge-small-en-v1.5 "Document 1" "Document 2"`
2121

22-
See [SUPPORTED_MODELS.md](../../../SUPPORTED_MODELS.md#text-embeddings-models) for the list of supported models.
22+
Refer to the [Supported Models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/#text-embeddings-models) for more details.
2323

2424
# Text Embedding Pipeline Usage
2525

samples/cpp/speech_generation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ to run the sample.
4545

4646
It generates `output_audio.wav` file containing the phrase `Hello OpenVINO GenAI` spoken in the target voice.
4747

48-
See [SUPPORTED_MODELS.md](../../../SUPPORTED_MODELS.md#speech-generation-models) for the list of supported models.
48+
Refer to the [Supported Models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/#speech-generation-models) for more details.
4949

5050
# Text-to-speech pipeline usage
5151

samples/cpp/text_generation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Follow [build instruction](../../../src/docs/BUILD.md) to build GenAI samples
3030

3131
GPUs usually provide better performance compared to CPUs. Modify the source code to change the device for inference to the GPU.
3232

33-
See https://github.com/openvinotoolkit/openvino.genai/blob/master/SUPPORTED_MODELS.md for the list of supported models.
33+
Refer to the [Supported Models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/) for more details.
3434

3535
Install [../../deployment-requirements.txt](../../deployment-requirements.txt) to run samples
3636
```sh

samples/cpp/visual_language_chat/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Follow [Get Started with Samples](https://docs.openvino.ai/2025/get-started/lear
2929

3030
Discrete GPUs (dGPUs) usually provide better performance compared to CPUs. It is recommended to run larger models on a dGPU with 32GB+ RAM. For example, the model `llava-hf/llava-v1.6-mistral-7b-hf` can benefit from being run on a dGPU. Modify the source code to change the device for inference to the `GPU`.
3131

32-
See [SUPPORTED_MODELS.md](../../../SUPPORTED_MODELS.md#visual-language-models) for the list of supported models.
32+
Refer to the [Supported Models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/#visual-language-models-vlms) for more details.
3333

3434
## Run benchmark:
3535

samples/cpp/whisper_speech_recognition/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Output:
3131
timestamps: [0, 2] text: How are you doing today?
3232
```
3333

34-
See [SUPPORTED_MODELS.md](../../../SUPPORTED_MODELS.md#whisper-models) for the list of supported models.
34+
Refer to the [Supported Models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/#speech-recognition-models-whisper-based) for more details.
3535

3636
# Whisper pipeline usage
3737

samples/js/rag/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Compile GenAI JavaScript bindings archive first using [the instructions](../../.
2020

2121
Run `npm install` and the example will be ready to run.
2222

23-
See [SUPPORTED_MODELS.md](../../../SUPPORTED_MODELS.md#text-embeddings-models) for the list of supported models.
23+
Refer to the [Supported Models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/#text-embeddings-models) for more details.
2424

2525
### Text embedding (`text_embeddings`)
2626
- **Description:** This is basic text embedding using a causal embedding model.

samples/python/rag/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Install [deployment-requirements.txt](../../deployment-requirements.txt) via `pi
4040

4141
`python text_embeddings.py BAAI/bge-small-en-v1.5 "Document 1" "Document 2"`
4242

43-
See [SUPPORTED_MODELS.md](../../../SUPPORTED_MODELS.md#text-embeddings-models) for the list of supported models.
43+
Refer to the [Supported Models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/#text-embeddings-models) for more details.
4444

4545
# Text Embedding Pipeline Usage
4646

samples/python/speech_generation/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ via `pip install -r ../../deployment-requirements.txt` and then, run a sample:
6565

6666
It generates `output_audio.wav` file containing the phrase `Hello OpenVINO GenAI` spoken in the target voice.
6767

68-
See [SUPPORTED_MODELS.md](../../../SUPPORTED_MODELS.md#speech-generation-models) for the list of supported models.
68+
Refer to the [Supported Models](https://openvinotoolkit.github.io/openvino.genai/docs/supported-models/#speech-generation-models) for more details.
6969

7070
# Text-to-speech pipeline usage
7171

0 commit comments

Comments
 (0)