16 lines
382 B
Python
16 lines
382 B
Python
|
from llm_server.config.model import ConfigModel
|
||
|
|
||
|
|
||
|
class GlobalConfig:
|
||
|
__config_model: ConfigModel = None
|
||
|
|
||
|
@classmethod
|
||
|
def initalize(cls, config: ConfigModel):
|
||
|
if cls.__config_model is not None:
|
||
|
raise Exception('Config is already initialised')
|
||
|
cls.__config_model = config
|
||
|
|
||
|
@classmethod
|
||
|
def get(cls):
|
||
|
return cls.__config_model
|