chansung commited on
Commit
b96e226
·
1 Parent(s): b9ba013

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -11
app.py CHANGED
@@ -63,20 +63,13 @@ with gr.Blocks() as demo:
63
  """
64
  # Your own Stable Diffusion on Google Cloud Platform
65
  """)
66
-
67
- with gr.Row():
68
- gr.Markdown(
69
- """
70
- GCP project ID
71
- """)
72
- gr.Markdown(
73
- """
74
- GCP region
75
- """)
76
 
77
  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
 
63
  """
64
  # Your own Stable Diffusion on Google Cloud Platform
65
  """)
 
 
 
 
 
 
 
 
 
 
66
 
67
  with gr.Row():
68
+ gcp_project_id = gr.Textbox(
69
+ label="GCP project ID",
70
+ )
71
  gcp_region = gr.Dropdown(
72
+ label="GCP Region"
73
  ["us-central1", "asia‑east1", "asia-northeast1"],
74
  value="us-central1",
75
  interactive=True