fix: model type only support single value (#1884)
Browse files### What problem does this PR solve?
model type only support single value
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
Co-authored-by: Zhedong Cen <[email protected]>
- conf/llm_factories.json +2 -2
conf/llm_factories.json
CHANGED
|
@@ -10,13 +10,13 @@
|
|
| 10 |
"llm_name": "gpt-4o-mini",
|
| 11 |
"tags": "LLM,CHAT,128K",
|
| 12 |
"max_tokens": 128000,
|
| 13 |
-
"model_type": "
|
| 14 |
},
|
| 15 |
{
|
| 16 |
"llm_name": "gpt-4o",
|
| 17 |
"tags": "LLM,CHAT,128K",
|
| 18 |
"max_tokens": 128000,
|
| 19 |
-
"model_type": "chat
|
| 20 |
},
|
| 21 |
{
|
| 22 |
"llm_name": "gpt-3.5-turbo",
|
|
|
|
| 10 |
"llm_name": "gpt-4o-mini",
|
| 11 |
"tags": "LLM,CHAT,128K",
|
| 12 |
"max_tokens": 128000,
|
| 13 |
+
"model_type": "chat"
|
| 14 |
},
|
| 15 |
{
|
| 16 |
"llm_name": "gpt-4o",
|
| 17 |
"tags": "LLM,CHAT,128K",
|
| 18 |
"max_tokens": 128000,
|
| 19 |
+
"model_type": "chat"
|
| 20 |
},
|
| 21 |
{
|
| 22 |
"llm_name": "gpt-3.5-turbo",
|