File size: 650 Bytes
a88f878 | 1 2 3 4 5 6 7 8 9 10 11 12 | # Copyright (c) ModelScope Contributors. All rights reserved.
from . import templates
from .base import MaxLengthError, Template
from .constant import TemplateType
from .grounding import draw_bbox
from .register import TEMPLATE_MAPPING, get_template, get_template_meta, register_template
from .template_inputs import StdTemplateInputs, TemplateInputs
from .template_meta import TemplateMeta
from .utils import (ContextType, History, Messages, Prompt, Tool, Word, get_last_user_round, history_to_messages,
messages_to_history, split_str_parts_by, update_generation_config_eos_token)
from .vision_utils import load_file, load_image
|