Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
| import gradio as gr | |
| MESSAGE = """ | |
| <div style="text-align: center; padding: 60px 20px;"> | |
| <h1>SGS-1 Research Demo</h1> | |
| <p style="font-size: 1.2em;"> | |
| The SGS-1 Research Demo has ended. Stay tuned for SGS-2, coming in Q3 2026. | |
| </p> | |
| <p style="font-size: 1.1em;"> | |
| <a href="https://spectrallabs.ai">spectrallabs.ai</a> | |
| </p> | |
| </div> | |
| """ | |
| with gr.Blocks() as demo: | |
| gr.HTML(MESSAGE) | |
| if __name__ == "__main__": | |
| demo.launch() | |