mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2024-10-01 01:06:10 -04:00
reduce nesting, better error reporting
This commit is contained in:
parent
a067f38544
commit
2b6fb7b95e
@ -87,7 +87,9 @@ class GPT4All():
|
||||
else:
|
||||
model_path = model_path.replace("\\", "\\\\")
|
||||
|
||||
if os.path.exists(model_path):
|
||||
if not os.path.exists(model_path):
|
||||
raise ValueError("Invalid model directory: {}".format(model_path))
|
||||
|
||||
model_dest = os.path.join(model_path, model_filename).replace("\\", "\\\\")
|
||||
if os.path.exists(model_dest):
|
||||
print("Found model file at ", model_dest)
|
||||
@ -102,8 +104,6 @@ class GPT4All():
|
||||
return GPT4All.download_model(model_filename, model_path)
|
||||
else:
|
||||
raise ValueError("Failed to retrieve model")
|
||||
else:
|
||||
raise ValueError("Invalid model directory")
|
||||
|
||||
@staticmethod
|
||||
def download_model(model_filename: str, model_path: str) -> str:
|
||||
|
Loading…
Reference in New Issue
Block a user