You've already forked Irene-Voice-Assistant
mirror of
https://github.com/janvarev/Irene-Voice-Assistant.git
synced 2025-12-11 23:17:05 +02:00
21 lines
605 B
Python
21 lines
605 B
Python
import traceback
|
|
|
|
from vacore import VACore
|
|
import time
|
|
import gradio as gr
|
|
|
|
|
|
|
|
# ------------------- main loop ------------------
|
|
if __name__ == "__main__":
|
|
cmd_core = VACore()
|
|
cmd_core.init_with_plugins()
|
|
print("Settings manager for VoiceAssistantCore.")
|
|
|
|
gr_int = cmd_core.gradio_render_settings_interface(
|
|
title="Менеджер настроек для голосового помощника Ирины",
|
|
#required_fields_to_show_plugin=["options","description"]
|
|
required_fields_to_show_plugin=["options","description"]
|
|
)
|
|
gr_int.launch(inbrowser=True)
|