(self, cache_manager: CacheManager)
| 1114 | """LoRA manager with enhanced error handling and caching""" |
| 1115 | |
| 1116 | def __init__(self, cache_manager: CacheManager): |
| 1117 | self.cache_manager = cache_manager |
| 1118 | self.loaded_adapters = {} |
| 1119 | self.adapter_names = {} # Maps adapter_id to valid adapter name |
| 1120 | |
| 1121 | def _get_adapter_name(self, adapter_id: str) -> str: |
| 1122 | """Create a valid adapter name from adapter_id.""" |
nothing calls this directly
no outgoing calls
no test coverage detected