Cannot access spaces

what did HF change?

There are probably more than one.

  1. Stricter cookie policy (the above phenomenon)
  2. Gradio behavior change
  3. Other bugs

The behavior change in Gradio is a very difficult topic, but in short, it occurs when you are using a newer version of Gradio 5. In many cases, you can avoid this by doing the following in app.py.

# demo.launch() # now
demo.launch(ssr_mode=False) # fix

Technical details on Discord.