chatterbox icon indicating copy to clipboard operation
chatterbox copied to clipboard

frpc_windows_amd64_v0.3 malicious warning

Open juniormayhe opened this issue 6 months ago • 1 comments

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)

juniormayhe avatar Jun 13 '25 16:06 juniormayhe

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)

somenewaccountthen avatar Jun 16 '25 11:06 somenewaccountthen