meg HF Staff commited on
Commit
f0ab7ff
·
verified ·
1 Parent(s): 76edd3a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,10 +11,10 @@ def update(name):
11
 
12
  with gr.Blocks() as demo:
13
  gr.Markdown("This is a super basic example 'frontend'. Start typing below and then click **Run** to launch the job.")
14
- gr.Markdown("The job will be launches at EnergyStarAI/launch-computation-example")
15
  with gr.Row():
16
  inp = gr.Textbox(placeholder="Textfields/dropdowns/etc for different options would go here.")
17
- out = gr.Textbox()
18
  btn = gr.Button("Run")
19
  btn.click(fn=update, inputs=inp, outputs=out)
20
 
 
11
 
12
  with gr.Blocks() as demo:
13
  gr.Markdown("This is a super basic example 'frontend'. Start typing below and then click **Run** to launch the job.")
14
+ gr.Markdown("The job will be launched at [EnergyStarAI/launch-computation-example](https://huggingface.co/spaces/EnergyStarAI/launch-computation-example)")
15
  with gr.Row():
16
  inp = gr.Textbox(placeholder="Textfields/dropdowns/etc for different options would go here.")
17
+ out = gr.Markdown()
18
  btn = gr.Button("Run")
19
  btn.click(fn=update, inputs=inp, outputs=out)
20