Stop using title frontmatter and fix doc that can only be reached by search (#20623)

Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
Harry Mellor
2025-07-08 11:27:40 +01:00
committed by GitHub
parent b4bab81660
commit b942c094e3
81 changed files with 82 additions and 238 deletions

View File

@@ -1,6 +1,4 @@
---
title: Summary
---
# Summary
!!! important
Many decoder language models can now be automatically loaded using the [Transformers backend][transformers-backend] without having to implement them in vLLM. See if `vllm serve <model>` works first!

View File

@@ -1,6 +1,4 @@
---
title: Basic Model
---
# Basic Model
This guide walks you through the steps to implement a basic vLLM model.

View File

@@ -1,6 +1,4 @@
---
title: Multi-Modal Support
---
# Multi-Modal Support
This document walks you through the steps to extend a basic model so that it accepts [multi-modal inputs](../../features/multimodal_inputs.md).

View File

@@ -1,6 +1,4 @@
---
title: Registering a Model
---
# Registering a Model
vLLM relies on a model registry to determine how to run each model.
A list of pre-registered architectures can be found [here](../../models/supported_models.md).

View File

@@ -1,6 +1,4 @@
---
title: Unit Testing
---
# Unit Testing
This page explains how to write unit tests to verify the implementation of your model.