sivan22 commited on
Commit
e9ce916
verified
1 Parent(s): a2e592b

Update tools.py

Browse files
Files changed (1) hide show
  1. tools.py +8 -7
tools.py CHANGED
@@ -6,20 +6,21 @@ from pydantic import BaseModel, Field
6
 
7
  from app import INDEX_PATH
8
 
9
- def download_index_from_gdrive(self) -> bool:
10
- try:
11
  zip_path = "index.zip"
12
  url = f"https://drive.google.com/uc?id={self.gdrive_index_id}"
13
  gdown.download(url, zip_path, quiet=False)
14
  with zipfile.ZipFile(zip_path, 'r') as zip_ref:
15
  zip_ref.extractall(".")
16
  os.remove(zip_path)
17
- return True
18
-
19
- except Exception as e:
20
- st.error(f"Failed to download index: {str(e)}")
21
- return False
22
 
 
 
 
 
 
 
23
  class ReadTextArgs(BaseModel):
24
  reference: str = Field(description="The reference to retrieve the text for. examples: 讘专讗砖讬转 讗 驻专拽 讗, Genesis 1:1")
25
 
 
6
 
7
  from app import INDEX_PATH
8
 
9
+ def download_index_from_gdrive(self) :
10
+
11
  zip_path = "index.zip"
12
  url = f"https://drive.google.com/uc?id={self.gdrive_index_id}"
13
  gdown.download(url, zip_path, quiet=False)
14
  with zipfile.ZipFile(zip_path, 'r') as zip_ref:
15
  zip_ref.extractall(".")
16
  os.remove(zip_path)
 
 
 
 
 
17
 
18
+
19
+
20
+ if not os.path.exists(INDEX_PATH):
21
+ download_index_from_gdrive():
22
+
23
+
24
  class ReadTextArgs(BaseModel):
25
  reference: str = Field(description="The reference to retrieve the text for. examples: 讘专讗砖讬转 讗 驻专拽 讗, Genesis 1:1")
26