mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 13:27:21 +00:00
fix(ci): fixup checksum scanning pipeline (#3631)
Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
This commit is contained in:
parent
4edd8c80b4
commit
3e8e71f8b6
1 changed files with 8 additions and 3 deletions
11
.github/check_and_update.py
vendored
11
.github/check_and_update.py
vendored
|
|
@ -29,9 +29,14 @@ def calculate_sha256(file_path):
|
||||||
def manual_safety_check_hf(repo_id):
|
def manual_safety_check_hf(repo_id):
|
||||||
scanResponse = requests.get('https://huggingface.co/api/models/' + repo_id + "/scan")
|
scanResponse = requests.get('https://huggingface.co/api/models/' + repo_id + "/scan")
|
||||||
scan = scanResponse.json()
|
scan = scanResponse.json()
|
||||||
if scan['hasUnsafeFile']:
|
# Check if 'hasUnsafeFile' exists in the response
|
||||||
return scan
|
if 'hasUnsafeFile' in scan:
|
||||||
return None
|
if scan['hasUnsafeFile']:
|
||||||
|
return scan
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
return None
|
||||||
|
|
||||||
download_type, repo_id_or_url = parse_uri(uri)
|
download_type, repo_id_or_url = parse_uri(uri)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue