Spaces:
Running
Running
Update app.py
Browse files
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
|
15 |
with gr.Row():
|
16 |
inp = gr.Textbox(placeholder="Textfields/dropdowns/etc for different options would go here.")
|
17 |
-
out = gr.
|
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 |
|