[Model] Support Dots OCR (#24645)

Signed-off-by: Roger Wang <hey@rogerw.io>
Co-authored-by: yinz-aizip <yinz@aizip.ai>
This commit is contained in:
Roger Wang
2025-09-21 19:24:40 -07:00
committed by GitHub
parent 5aeb925452
commit 7b57a433da
7 changed files with 917 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ Model configs may be defined in this directory for the following reasons:
from vllm.transformers_utils.configs.chatglm import ChatGLMConfig
from vllm.transformers_utils.configs.deepseek_vl2 import DeepseekVLV2Config
from vllm.transformers_utils.configs.dotsocr import DotsOCRConfig
from vllm.transformers_utils.configs.eagle import EAGLEConfig
# RWConfig is for the original tiiuae/falcon-40b(-instruct) and
# tiiuae/falcon-7b(-instruct) models. Newer Falcon models will use the
@@ -36,6 +37,7 @@ from vllm.transformers_utils.configs.ultravox import UltravoxConfig
__all__ = [
"ChatGLMConfig",
"DeepseekVLV2Config",
"DotsOCRConfig",
"EAGLEConfig",
"RWConfig",
"JAISConfig",