forked from EngineX-MetaX/enginex-c_series-vllm
17 lines
558 B
Python
17 lines
558 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
# Adapted from
|
|
# https://huggingface.co/h2oai/h2ovl-mississippi-2b/blob/main/configuration_h2ovl_chat.py
|
|
# --------------------------------------------------------
|
|
# H2OVL-Mississippi
|
|
# Copyright (c) 2024 H2O.AI
|
|
# Licensed under Apache 2.0 License [see LICENSE for details]
|
|
# --------------------------------------------------------
|
|
|
|
from .internvl import InternVLChatConfig
|
|
|
|
|
|
class H2OVLChatConfig(InternVLChatConfig):
|
|
model_type = "h2ovl_chat"
|