chatterbox
chatterbox copied to clipboard
frpc_windows_amd64_v0.3 malicious warning
while gradio_tts_app.py is running triggers warnings in AV software.
Probably because of:
if __name__ == "__main__":
demo.queue(
max_size=50,
default_concurrency_limit=1,
).launch(share=True)
which seems to be solved by disabling reverse proxy with share=False
if __name__ == "__main__":
demo.queue(
max_size=50,
default_concurrency_limit=1,
).launch(share=False)
In the ****_app.py files You may also want to add to the gr.Blocks. from with gr.Blocks() as demo:
to with gr.Blocks(analytics_enabled=False) as demo:
or if you like to use all screen space
with gr.Blocks(analytics_enabled=False, fill_width=True, fill_height=True)