gautamethiraj commited on
Commit
d9ebf35
·
verified ·
1 Parent(s): bdfdf23

Direct users to new location

Browse files
Files changed (1) hide show
  1. app.py +10 -2
app.py CHANGED
@@ -1,7 +1,15 @@
1
  import gradio as gr
2
  import os
3
 
4
- hf_token = os.environ['GRADIO_API_KEY']
 
 
 
 
 
 
5
 
6
- demo = gr.load("gautamethiraj/talk-to-ttl", src="spaces", hf_token=hf_token)
 
 
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()