rm redundant json

pull/726/head
Konstantin Gukov 1 year ago committed by Richard Guo
parent 810a3b12cc
commit adc599b0a6

@ -1,7 +1,6 @@
"""
Python only API for running all GPT4All models.
"""
import json
import os
from pathlib import Path
import time
@ -56,9 +55,7 @@ class GPT4All():
Returns:
Model list in JSON format.
"""
response = requests.get("https://gpt4all.io/models/models.json")
model_json = json.loads(response.content)
return model_json
return requests.get("https://gpt4all.io/models/models.json").json()
@staticmethod
def retrieve_model(model_name: str, model_path: str = None, allow_download: bool = True) -> str:

Loading…
Cancel
Save