update and cleanup repo

This commit is contained in:
2026-05-26 15:32:01 -07:00
parent 5041d9fbb9
commit 0db899d0c3
72 changed files with 788 additions and 1884 deletions
+3 -3
View File
@@ -61,12 +61,12 @@ def florencevision_missing_modules() -> List[str]:
def _provider_missing_modules(config: Dict[str, Any]) -> Dict[str, List[str]]:
missing: Dict[str, List[str]] = {}
provider_cfg = (config or {}).get("provider")
if not isinstance(provider_cfg, dict):
plugin_cfg = (config or {}).get("plugin")
if not isinstance(plugin_cfg, dict):
return missing
for provider_name, requirements in _PROVIDER_DEPENDENCIES.items():
block = provider_cfg.get(provider_name)
block = plugin_cfg.get(provider_name)
if not isinstance(block, dict) or not block:
continue
missing_for_provider = [