diff --git a/environments/huggingface.yml b/environments/huggingface.yml index 7f834906..0f6380a9 100644 --- a/environments/huggingface.yml +++ b/environments/huggingface.yml @@ -59,3 +59,4 @@ dependencies: - windows-curses; sys_platform == 'win32' - pynvml - xformers==0.0.21 + - omegaconf diff --git a/environments/ipex.yml b/environments/ipex.yml index de2e3de8..45dad2b5 100644 --- a/environments/ipex.yml +++ b/environments/ipex.yml @@ -46,4 +46,5 @@ dependencies: - einops - peft==0.3.0 - windows-curses; sys_platform == 'win32' - - pynvml \ No newline at end of file + - pynvml + - omegaconf \ No newline at end of file diff --git a/environments/rocm.yml b/environments/rocm.yml index 5b56bef7..6a405f03 100644 --- a/environments/rocm.yml +++ b/environments/rocm.yml @@ -45,4 +45,5 @@ dependencies: - einops - peft==0.3.0 - windows-curses; sys_platform == 'win32' - - pynvml \ No newline at end of file + - pynvml + - omegaconf \ No newline at end of file diff --git a/gensettings.py b/gensettings.py index 9b69af43..d1aa22d1 100644 --- a/gensettings.py +++ b/gensettings.py @@ -795,8 +795,6 @@ gensettingstf = [ "sub_path": "UI", "classname": "story", "name": "gen_audio", - "extra_classes": "var_sync_alt_system_experimental_features" - , "ui_level": 1 }, { diff --git a/koboldai_settings.py b/koboldai_settings.py index c2fb90b3..0deef220 100644 --- a/koboldai_settings.py +++ b/koboldai_settings.py @@ -2054,7 +2054,7 @@ class KoboldStoryRegister(object): return action_text_split def gen_audio(self, action_id=None, overwrite=True): - if self.story_settings.gen_audio and self._koboldai_vars.experimental_features: + if self.story_settings.gen_audio: if action_id is None: action_id = self.action_count @@ -2160,7 +2160,7 @@ class KoboldStoryRegister(object): logger.info("Slow audio took {} for {} characters".format(time.time()-start_time, text_length)) def gen_all_audio(self, overwrite=False): - if self.story_settings.gen_audio and self._koboldai_vars.experimental_features: + if self.story_settings.gen_audio: for i in reversed([-1]+list(self.actions.keys())): self.gen_audio(i, overwrite=False) #else: diff --git a/requirements.txt b/requirements.txt index 65e68b07..39fb208b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -47,3 +47,4 @@ https://github.com/PanQiWei/AutoGPTQ/releases/download/v0.4.1/auto_gptq-0.4.1+cu https://github.com/PanQiWei/AutoGPTQ/releases/download/v0.4.1/auto_gptq-0.4.1+cu118-cp38-cp38-win_amd64.whl; sys_platform == 'win32' and python_version == '3.8' windows-curses; sys_platform == 'win32' pynvml +omegaconf diff --git a/requirements_mtj.txt b/requirements_mtj.txt index 3b95c7fe..a4466752 100644 --- a/requirements_mtj.txt +++ b/requirements_mtj.txt @@ -33,4 +33,5 @@ flask_compress ijson ftfy pydub -sentencepiece \ No newline at end of file +sentencepiece +omegaconf \ No newline at end of file