from fasthtml.common import * from fasthtml_hf import setup_hf_backup app,rt = fast_app() @rt('/') def get(): return Div(P('Hello World3!'), hx_get="/change") setup_hf_backup(app) serve()