Fix invalid JSON in config.json
Browse filesAdd missing quotes around model_type key to make the JSON valid and parseable.
- config.json +1 -1
config.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
{
|
| 2 |
-
model_type: "llama"
|
| 3 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"model_type": "llama"
|
| 3 |
}
|