@@ -43,7 +43,7 @@ class AskAiSettings(metaclass=Singleton):
43
43
INSTANCE : "AskAiSettings"
44
44
45
45
# Current settings version. Updating this value will trigger a database recreation using the defaults.
46
- _ACTUAL_VERSION : str = "0.2.0 "
46
+ _ACTUAL_VERSION : str = "0.2.1 "
47
47
48
48
RESOURCE_DIR = str (classpath .resource_path ())
49
49
@@ -123,10 +123,10 @@ def defaults(self) -> None:
123
123
self ._settings .put ("askai.camera.min-max.size" , "askai" , "100, 100" )
124
124
self ._settings .put ("askai.camera.identity.max.distance" , "askai" , 0.70 )
125
125
# OpenAI
126
- self ._settings .put ("askai.openai.speech.to.text.model" , "openai " , "whisper-1" )
127
- self ._settings .put ("askai.openai.text.to.speech.model" , "openai " , "tts-1" )
128
- self ._settings .put ("askai.openai.text.to.speech.voice" , "openai " , "onyx" )
129
- self ._settings .put ("askai.openai.text.to.speech.audio.format" , "openai " , "mp3" )
126
+ self ._settings .put ("askai.openai.speech.to.text.model" , "askai " , "whisper-1" )
127
+ self ._settings .put ("askai.openai.text.to.speech.model" , "askai " , "tts-1" )
128
+ self ._settings .put ("askai.openai.text.to.speech.voice" , "askai " , "onyx" )
129
+ self ._settings .put ("askai.openai.text.to.speech.audio.format" , "askai " , "mp3" )
130
130
log .debug (f"Settings database created !" )
131
131
132
132
def get (self , key : str , default_value : str | None = "" ) -> str :
0 commit comments