Spaces:
Running
Running
Direct users to new location
Browse files
app.py
CHANGED
@@ -1,7 +1,15 @@
|
|
1 |
import gradio as gr
|
2 |
import os
|
3 |
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
|
|
|
|
|
7 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
import os
|
3 |
|
4 |
+
with gr.Blocks(css="footer {visibility: hidden}") as demo:
|
5 |
+
gr.Markdown(
|
6 |
+
"""
|
7 |
+
# Sutra-X: Column-mapping helper
|
8 |
+
This app has moved to [Reaugment AI](https://sutra-x.reaugment.ai) and includes additional functionality.
|
9 |
+
Please click the link to take you there. Thanks!
|
10 |
+
""")
|
11 |
|
12 |
+
#hf_token = os.environ['GRADIO_API_KEY']
|
13 |
+
|
14 |
+
#demo = gr.load("gautamethiraj/talk-to-ttl", src="spaces", hf_token=hf_token)
|
15 |
demo.launch()
|