blazingbunny commited on
Commit
8af0b4a
·
verified ·
1 Parent(s): c323d50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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('No Need to Enter your Google API Key here:', 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)
 
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)