fixed model information being incorrect

This commit is contained in:
faraphel 2025-01-10 00:25:07 +01:00
parent 7bd84c8570
commit 639425ad7d

View file

@ -3,7 +3,6 @@ import gc
import typing
from pathlib import Path
from source import api
from source.manager import ModelManager
@ -42,7 +41,7 @@ class BaseModel(abc.ABC):
return {
"name": self.name,
"response_mimetype": self.response_mimetype,
"output_type": self.output_type,
}
def load(self) -> None: