Spaces:
Runtime error
Runtime error
Alexander Watson
commited on
Commit
·
685b5bb
1
Parent(s):
9917d34
Update app.py
Browse files
app.py
CHANGED
|
@@ -91,10 +91,10 @@ def main():
|
|
| 91 |
st.subheader("Step 1: API Key Validation")
|
| 92 |
with st.expander("API Key Configuration", expanded=True):
|
| 93 |
api_key = st.text_input(
|
| 94 |
-
"Enter your Gretel API key (https://console.gretel.ai)",
|
| 95 |
value="",
|
| 96 |
type="password",
|
| 97 |
-
help="Your Gretel API key for
|
| 98 |
)
|
| 99 |
if "gretel" not in st.session_state:
|
| 100 |
st.session_state.gretel = None
|
|
|
|
| 91 |
st.subheader("Step 1: API Key Validation")
|
| 92 |
with st.expander("API Key Configuration", expanded=True):
|
| 93 |
api_key = st.text_input(
|
| 94 |
+
"Enter your Gretel API key (Get a free API key at: https://console.gretel.ai/users/me/key)",
|
| 95 |
value="",
|
| 96 |
type="password",
|
| 97 |
+
help="Your Gretel API key is required to authenticate and use Gretel Navigator. If you don't have one yet, sign up for a free account at https://console.gretel.ai to get started.",
|
| 98 |
)
|
| 99 |
if "gretel" not in st.session_state:
|
| 100 |
st.session_state.gretel = None
|