Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ api_key = st.secrets.get("gkg", {}).get("api_key") if isinstance(st.secrets.get(
|
|
18 |
|
19 |
# If not found, ask for it
|
20 |
if not api_key:
|
21 |
-
api_key = st.text_input('
|
22 |
|
23 |
search_query = st.text_input('Enter Search Query:', 'Python Programming')
|
24 |
output_count = st.slider('Number of Results:', min_value=1, max_value=10, value=1)
|
|
|
18 |
|
19 |
# If not found, ask for it
|
20 |
if not api_key:
|
21 |
+
api_key = st.text_input('Enter your Google API Key:', type="password")
|
22 |
|
23 |
search_query = st.text_input('Enter Search Query:', 'Python Programming')
|
24 |
output_count = st.slider('Number of Results:', min_value=1, max_value=10, value=1)
|