hkqiu commited on
Commit
05b6b79
·
1 Parent(s): 775b5e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -3,12 +3,12 @@ import gradio as gr
3
 
4
 
5
  def stay_tuned(a, b):
6
- print("Stay tuned!")
7
 
8
  gr.Interface(
9
  stay_tuned,
10
- inputs=["number", "number"],
11
- outputs="number",
12
  title="PolyNC Playground is coming soon, please stay tuned.",
13
  live=True
14
  ).launch()
 
3
 
4
 
5
  def stay_tuned(a, b):
6
+ return "Stay tuned! Repo.: https://github.com/HKQiu/Unified_ML4Polymers"
7
 
8
  gr.Interface(
9
  stay_tuned,
10
+ inputs=["text", "text"],
11
+ outputs="text",
12
  title="PolyNC Playground is coming soon, please stay tuned.",
13
  live=True
14
  ).launch()