awacke1 commited on
Commit
36cb4f9
·
verified ·
1 Parent(s): 67c01ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -6,6 +6,8 @@ from sklearn.metrics.pairwise import cosine_similarity
6
  import requests
7
  from datetime import datetime
8
 
 
 
9
  # Initialize session state variables
10
  if 'search_history' not in st.session_state:
11
  st.session_state['search_history'] = []
@@ -14,7 +16,7 @@ if 'search_columns' not in st.session_state:
14
  if 'initial_search_done' not in st.session_state:
15
  st.session_state['initial_search_done'] = False
16
  if 'hf_token' not in st.session_state:
17
- st.session_state['hf_token'] = None
18
 
19
  def fetch_dataset_info_auth(dataset_id, hf_token):
20
  """Fetch dataset information with authentication"""
 
6
  import requests
7
  from datetime import datetime
8
 
9
+ HF_KEY = os.getenv('DATASET_KEY')
10
+
11
  # Initialize session state variables
12
  if 'search_history' not in st.session_state:
13
  st.session_state['search_history'] = []
 
16
  if 'initial_search_done' not in st.session_state:
17
  st.session_state['initial_search_done'] = False
18
  if 'hf_token' not in st.session_state:
19
+ st.session_state['hf_token'] = HF_KEY
20
 
21
  def fetch_dataset_info_auth(dataset_id, hf_token):
22
  """Fetch dataset information with authentication"""