rm redundant json

This commit is contained in:
Konstantin Gukov 2023-05-25 17:16:16 +02:00 committed by Richard Guo
parent 810a3b12cc
commit adc599b0a6

View File

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