This commit is contained in:
Brandon Rising 2024-03-07 17:19:38 -05:00 committed by Brandon
parent e52274ecac
commit b1f5ac4548

View File

@ -581,6 +581,9 @@ class ModelInstallService(ModelInstallServiceBase):
info = info or ModelProbe.probe(model_path, config)
if not model_path.is_absolute():
model_path = (self._app_config.models_path / model_path)
model_path = model_path.resolve()
info.path = model_path.as_posix()