mirror of
https://git.isriupjv.fr/ISRI/ai-server
synced 2025-04-24 10:08:11 +02:00
fixed the configuration name for "response_mimetype"
This commit is contained in:
parent
71eff944dd
commit
dc8e42e94d
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ class BaseModel(abc.ABC):
|
|||
# the model manager
|
||||
self.manager = manager
|
||||
# the mimetype of the model responses
|
||||
self.response_mimetype: str = configuration.get("response_type", "application/json")
|
||||
self.response_mimetype: str = configuration.get("response_mimetype", "application/json")
|
||||
|
||||
self._loaded = False
|
||||
|
||||
|
|
Loading…
Reference in a new issue