We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a17a830 commit c6284dcCopy full SHA for c6284dc
1 file changed
aider/models.py
@@ -12,7 +12,6 @@
12
from pathlib import Path
13
from typing import Optional, Union
14
15
-import json5
16
import yaml
17
from PIL import Image
18
@@ -1095,7 +1094,7 @@ def register_litellm_models(model_fnames):
1095
1094
data = Path(model_fname).read_text()
1096
if not data.strip():
1097
continue
1098
- model_def = json5.loads(data)
+ model_def = json.loads(data)
1099
if not model_def:
1100
1101
0 commit comments