Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -70,14 +70,16 @@ with gr.Blocks() as demo:
|
|
70 |
"""
|
71 |
GCP project ID
|
72 |
""")
|
73 |
-
gcp_project_id = gr.Textbox()
|
74 |
-
|
75 |
gr.Markdown(
|
76 |
"""
|
77 |
GCP region
|
78 |
""")
|
|
|
|
|
|
|
79 |
gcp_region = gr.Dropdown(
|
80 |
-
["us-central1", "asia‑east1", "asia-northeast1"]
|
|
|
81 |
)
|
82 |
|
83 |
gr.Markdown(
|
|
|
70 |
"""
|
71 |
GCP project ID
|
72 |
""")
|
|
|
|
|
73 |
gr.Markdown(
|
74 |
"""
|
75 |
GCP region
|
76 |
""")
|
77 |
+
|
78 |
+
with gr.Row():
|
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(
|