1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/src/infrastructure/models/__init__.py

38 lines
784 B
Python

"""Infrastructure models package."""
from infrastructure.models.multimodal import (
ModelCapability,
ModelInfo,
MultiModalManager,
get_model_for_capability,
get_multimodal_manager,
model_supports_tools,
model_supports_vision,
pull_model_with_fallback,
)
from infrastructure.models.registry import (
CustomModel,
ModelFormat,
ModelRegistry,
ModelRole,
model_registry,
)
__all__ = [
# Registry
"CustomModel",
"ModelFormat",
"ModelRegistry",
"ModelRole",
"model_registry",
# Multi-modal
"ModelCapability",
"ModelInfo",
"MultiModalManager",
"get_model_for_capability",
"get_multimodal_manager",
"model_supports_tools",
"model_supports_vision",
"pull_model_with_fallback",
]