获取模型列表 @param provider: 供应商字符串 @param model_type: 模型类型 @return: 模型列表
(provider, model_type)
| 61 | |
| 62 | |
| 63 | def get_model_list(provider, model_type): |
| 64 | """ |
| 65 | 获取模型列表 |
| 66 | @param provider: 供应商字符串 |
| 67 | @param model_type: 模型类型 |
| 68 | @return: 模型列表 |
| 69 | """ |
| 70 | return get_provider(provider).get_model_list(model_type) |
| 71 | |
| 72 | |
| 73 | def get_model_credential(provider, model_type, model_name): |
nothing calls this directly
no test coverage detected