#Privacy concerns with Gradio

13 messages · Page 1 of 1 (latest)

jolly viper
sage linden
#

Well, in the code it uses "os.environ['GRADIO_ANALYTICS_ENABLED'] = 'False'" in server.py.
You could add a few more variables from the post if you're concerned.

jolly viper
sage linden
#

No. You can even try to set them up as environmental variables of your OS instead of modifying the code.

#

This way it might work even for other gradio apps

jolly viper
sage linden
#

For system variables it would be GRADIO_ANALYTICS_ENABLED="False" and similar with others.

#

If you set it outside of the app, for example in bat file or for system wide variables.
"os.environ" it's for python code

jolly viper
#

gotcha, does this look correct?

sage linden
#

No, variable name in the left side, value in the right side.
So GRADIO_ANALYTICS_ENABLED on the left, False on the right.

jolly viper
#

Oh duh. lol

sage linden
#

Yes