option to use venv or not per module, added tts

This commit is contained in:
Believethehype
2023-12-17 14:38:58 +01:00
parent 6792fbc7dd
commit f2c7aa3c1e
21 changed files with 247 additions and 364 deletions

View File

@@ -135,19 +135,5 @@ def process_venv():
DVMTaskInterface.write_output(result, args.output)
#if __name__ == '__main__':
# env_path = Path('.env')
# if env_path.is_file():
# print(f'loading environment from {env_path.resolve()}')
# dotenv.load_dotenv(env_path, verbose=True, override=True)
# else:
# raise FileNotFoundError(f'.env file not found at {env_path} ')
#
# admin_config = AdminConfig()
# admin_config.REBROADCAST_NIP89 = False
# admin_config.UPDATE_PROFILE = False
#
# dvm = build_example("LLM", "llmlite", admin_config)
# dvm.run()
# keep_alive()
if __name__ == '__main__':
process_venv()