| """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""" | |
| <div style="text-align:center; padding: 4em 2em; font-family: sans-serif;"> | |
| <h1>This Space has moved</h1> | |
| <p style="font-size: 1.2em;"> | |
| ECFlow has been renamed to <strong>TRACE</strong> | |
| (Trace Recognition and Amortized Chemistry Estimation). | |
| </p> | |
| <p style="font-size: 1.4em; margin-top: 2em;"> | |
| <a href="{NEW_URL}" style="color: #2563eb; text-decoration: underline;"> | |
| Continue to the TRACE Space | |
| </a> | |
| </p> | |
| <p style="margin-top: 3em; color: #888;"> | |
| New URL: <code>{NEW_URL}</code> | |
| </p> | |
| </div> | |
| """ | |
| ) | |
| if __name__ == "__main__": | |
| app.launch() | |