mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-01-03 03:35:15 +08:00
21 lines
523 B
Python
21 lines
523 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
from abc import ABC, abstractmethod
|
|
from pathlib import Path
|
|
|
|
from transformers import PretrainedConfig
|
|
|
|
|
|
class ConfigParserBase(ABC):
|
|
@abstractmethod
|
|
def parse(
|
|
self,
|
|
model: str | Path,
|
|
trust_remote_code: bool,
|
|
revision: str | None = None,
|
|
code_revision: str | None = None,
|
|
**kwargs,
|
|
) -> tuple[dict, PretrainedConfig]:
|
|
raise NotImplementedError
|