"""ECFlow Space has moved to TRACE. This Space now serves only a redirect notice. The active app is at https://huggingface.co/spaces/bing-yan/trace """ import gradio as gr NEW_URL = "https://huggingface.co/spaces/bing-yan/trace" with gr.Blocks(title="ECFlow has moved to TRACE") as app: gr.HTML( f"""

This Space has moved

ECFlow has been renamed to TRACE (Trace Recognition and Amortized Chemistry Estimation).

Continue to the TRACE Space

New URL: {NEW_URL}

""" ) if __name__ == "__main__": app.launch()