Set the default model to use when no specific model is requested
(cls, model: str)
| 16 | |
| 17 | @classmethod |
| 18 | def set_default_model(cls, model: str): |
| 19 | """Set the default model to use when no specific model is requested""" |
| 20 | cls._default_model = model |
| 21 | cls._instance = None # Reset instance to force recreation with new model |
| 22 | |
| 23 | @classmethod |
| 24 | def revert_to_default_model(cls): |