(provider: 'qwen' | 'volcengine', modelId: string)
| 217 | * 获取模型说明 |
| 218 | */ |
| 219 | export function getModelDescription(provider: 'qwen' | 'volcengine', modelId: string): string { |
| 220 | const descriptions = MODEL_DESCRIPTIONS[provider]; |
| 221 | return descriptions[modelId as keyof typeof descriptions] || modelId; |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * 获取所有模型及其说明 |
no outgoing calls
no test coverage detected