Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
@@ -171,8 +171,8 @@ else:
|
|
171 |
st.success('Running in Production mode!', icon="✅")
|
172 |
|
173 |
st.subheader("Tell us about your Databricks and Labelbox environments", divider='grey')
|
174 |
-
cloud = "GCP"
|
175 |
-
|
176 |
title = st.text_input('Enter Databricks Domain (e.g., <instance>.<cloud>.databricks.com)', '')
|
177 |
databricks_api_key = st.text_input('Databricks API Key', type='password')
|
178 |
labelbox_api_key = st.text_input('Labelbox API Key', type='password')
|
|
|
171 |
st.success('Running in Production mode!', icon="✅")
|
172 |
|
173 |
st.subheader("Tell us about your Databricks and Labelbox environments", divider='grey')
|
174 |
+
#cloud = "GCP"
|
175 |
+
cloud = st.selectbox('Which cloud environment does your Databricks Workspace run in?', ['AWS', 'Azure', 'GCP'], index=None)
|
176 |
title = st.text_input('Enter Databricks Domain (e.g., <instance>.<cloud>.databricks.com)', '')
|
177 |
databricks_api_key = st.text_input('Databricks API Key', type='password')
|
178 |
labelbox_api_key = st.text_input('Labelbox API Key', type='password')
|