Spaces:
Paused
Paused
File size: 859 Bytes
a5784e9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | """
browser_utils/model_management.py
---------------------------------
Shim module for backward compatibility.
Refactored logic is now located in browser_utils.models.*
"""
from browser_utils.models.startup import (
_handle_initial_model_state_and_storage,
_set_model_from_page_display,
)
from browser_utils.models.switcher import (
load_excluded_models,
switch_ai_studio_model,
)
from browser_utils.models.ui_state import (
_force_ui_state_settings,
_force_ui_state_with_retry,
_verify_and_apply_ui_state,
_verify_ui_state_settings,
)
__all__ = [
"_verify_ui_state_settings",
"_force_ui_state_settings",
"_force_ui_state_with_retry",
"_verify_and_apply_ui_state",
"switch_ai_studio_model",
"load_excluded_models",
"_handle_initial_model_state_and_storage",
"_set_model_from_page_display",
]
|