isayahc commited on
Commit
f70d7c5
Β·
1 Parent(s): d95850e

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +1 -1
utils.py CHANGED
@@ -13,7 +13,7 @@ def download_from_google_drive(file_id: str, destination: Optional[str] = None)
13
  """
14
  url = f'https://drive.google.com/uc?id={file_id}'
15
  output = destination if destination else f"{file_id}.file"
16
- print(output)
17
  gdown.download(url, output, quiet=False)
18
 
19
  def unzip_file(zip_path: str, extract_to: Optional[str] = None) -> None:
 
13
  """
14
  url = f'https://drive.google.com/uc?id={file_id}'
15
  output = destination if destination else f"{file_id}.file"
16
+ output = "gdown_chroma_db.zip"
17
  gdown.download(url, output, quiet=False)
18
 
19
  def unzip_file(zip_path: str, extract_to: Optional[str] = None) -> None: