Feat: update stepfun list (#12991)

### What problem does this PR solve?

Update stepfun list.

Add TTS and Sequence2Text functionalities.

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
Yongteng Lei
2026-02-05 12:47:04 +08:00
committed by GitHub
parent 803b480f9c
commit 6361fc4b33
3 changed files with 122 additions and 11 deletions

View File

@ -1600,9 +1600,30 @@
{
"name": "StepFun",
"logo": "",
"tags": "LLM",
"tags": "LLM,IMAGE2TEXT,SPEECH2TEXT,TTS",
"status": "1",
"llm": [
{
"llm_name": "step-3",
"tags": "LLM,CHAT,IMAGE2TEXT,64k",
"max_tokens": 65536,
"model_type": "image2text",
"is_tools": true
},
{
"llm_name": "step-2-mini",
"tags": "LLM,CHAT,32k",
"max_tokens": 32768,
"model_type": "chat",
"is_tools": true
},
{
"llm_name": "step-2-16k",
"tags": "LLM,CHAT,16k",
"max_tokens": 16384,
"model_type": "chat",
"is_tools": true
},
{
"llm_name": "step-1-8k",
"tags": "LLM,CHAT,8k",
@ -1617,13 +1638,6 @@
"model_type": "chat",
"is_tools": true
},
{
"llm_name": "step-1-128k",
"tags": "LLM,CHAT,128k",
"max_tokens": 131072,
"model_type": "chat",
"is_tools": true
},
{
"llm_name": "step-1-256k",
"tags": "LLM,CHAT,256k",
@ -1631,12 +1645,61 @@
"model_type": "chat",
"is_tools": true
},
{
"llm_name": "step-r1-v-mini",
"tags": "LLM,CHAT,IMAGE2TEXT,100k",
"max_tokens": 102400,
"model_type": "image2text",
"is_tools": true
},
{
"llm_name": "step-1v-8k",
"tags": "LLM,CHAT,IMAGE2TEXT",
"tags": "LLM,CHAT,IMAGE2TEXT,8k",
"max_tokens": 8192,
"model_type": "image2text",
"is_tools": true
},
{
"llm_name": "step-1v-32k",
"tags": "LLM,CHAT,IMAGE2TEXT,32k",
"max_tokens": 32768,
"model_type": "image2text",
"is_tools": true
},
{
"llm_name": "step-1o-vision-32k",
"tags": "LLM,CHAT,IMAGE2TEXT,32k",
"max_tokens": 32768,
"model_type": "image2text",
"is_tools": true
},
{
"llm_name": "step-1o-turbo-vision",
"tags": "LLM,CHAT,IMAGE2TEXT,32k",
"max_tokens": 32768,
"model_type": "image2text",
"is_tools": true
},
{
"llm_name": "step-tts-mini",
"tags": "TTS,1000c",
"max_tokens": 1000,
"model_type": "tts",
"is_tools": false
},
{
"llm_name": "step-tts-vivid",
"tags": "TTS,1000c",
"max_tokens": 1000,
"model_type": "tts",
"is_tools": false
},
{
"llm_name": "step-asr",
"tags": "SPEECH2TEXT,100MB",
"max_tokens": 32768,
"model_type": "speech2text",
"is_tools": false
}
]
},