(model)
| 199 | }, |
| 200 | // 获取 option key |
| 201 | getOption(model) { |
| 202 | return GM_getValue("model_" + model) || ''; |
| 203 | }, |
| 204 | setOption(model, value) { |
| 205 | // LLM 才有 option 选项 |
| 206 | if (LLM.has(model)) GM_setValue("model_" + model, value); |
nothing calls this directly
no outgoing calls
no test coverage detected