41 lines
953 B
Python
41 lines
953 B
Python
# SPDX-License-Identifier: AGPL-3.0-only - See /studio/LICENSE.AGPL-3.0
|
|
# Copyright © 2025 Unsloth AI
|
|
|
|
"""
|
|
Model and LoRA configuration handling
|
|
"""
|
|
from .model_config import (
|
|
ModelConfig,
|
|
GgufVariantInfo,
|
|
is_vision_model,
|
|
detect_audio_type,
|
|
is_audio_input_type,
|
|
VALID_AUDIO_TYPES,
|
|
scan_trained_loras,
|
|
scan_exported_models,
|
|
load_model_defaults,
|
|
get_base_model_from_lora,
|
|
load_model_config,
|
|
list_gguf_variants,
|
|
MODEL_NAME_MAPPING,
|
|
UI_STATUS_INDICATORS,
|
|
)
|
|
from .checkpoints import scan_checkpoints
|
|
|
|
__all__ = [
|
|
'ModelConfig',
|
|
'GgufVariantInfo',
|
|
'is_vision_model',
|
|
'detect_audio_type',
|
|
'is_audio_input_type',
|
|
'VALID_AUDIO_TYPES',
|
|
'scan_trained_loras',
|
|
'scan_exported_models',
|
|
'load_model_defaults',
|
|
'get_base_model_from_lora',
|
|
'load_model_config',
|
|
'list_gguf_variants',
|
|
'MODEL_NAME_MAPPING',
|
|
'UI_STATUS_INDICATORS',
|
|
'scan_checkpoints',
|
|
]
|