chansung commited on
Commit
f8d1449
·
1 Parent(s): 870ee21

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -61,8 +61,7 @@ def welcome(name):
61
  with gr.Blocks() as demo:
62
  gr.Markdown(
63
  """
64
- # Hello World!
65
- Start typing below to see the output.
66
  """)
67
 
68
  with gr.Row():
@@ -79,7 +78,8 @@ with gr.Blocks() as demo:
79
  gcp_project_id = gr.Textbox()
80
  gcp_region = gr.Dropdown(
81
  ["us-central1", "asia‑east1", "asia-northeast1"],
82
- value="us-central1"
 
83
  )
84
 
85
  gr.Markdown(
@@ -101,5 +101,5 @@ with gr.Blocks() as demo:
101
  # btn.click(mirror, inputs=[im], outputs=[im_2])
102
 
103
  gr.TabbedInterface(
104
- [demoInterface, demo], ["Try-out", "Deployment"]
105
  ).launch(enable_queue=True)
 
61
  with gr.Blocks() as demo:
62
  gr.Markdown(
63
  """
64
+ # Deploy your own Stable Diffusion on Google Cloud Platform
 
65
  """)
66
 
67
  with gr.Row():
 
78
  gcp_project_id = gr.Textbox()
79
  gcp_region = gr.Dropdown(
80
  ["us-central1", "asia‑east1", "asia-northeast1"],
81
+ value="us-central1",
82
+ interactive=True
83
  )
84
 
85
  gr.Markdown(
 
101
  # btn.click(mirror, inputs=[im], outputs=[im_2])
102
 
103
  gr.TabbedInterface(
104
+ [demoInterface, demo, demo], ["Try-out", "🚀 Deploy on GCP", "🤗 Deploy on HF Endpoint"]
105
  ).launch(enable_queue=True)