()
| 250 | |
| 251 | /** 获取快速模型 slot */ |
| 252 | export function getFastModelSlot(): import('./model-types').ModelSlot | null { |
| 253 | const store = loadConfigStore() |
| 254 | if (store.fastModel === null) return null |
| 255 | return resolveSlot(store.fastModel, store.configs) |
| 256 | } |
| 257 | |
| 258 | /** 获取快速模型配置(会话摘要),未配置时回退到默认助手 */ |
| 259 | export function getFastModelConfig(): AIServiceConfig | null { |
nothing calls this directly
no test coverage detected