(id: string, updates: Partial<LLMConfig>)
| 74 | } |
| 75 | |
| 76 | export function updateLLMConfig(id: string, updates: Partial<LLMConfig>): void { |
| 77 | stores.settings.updateLLMConfig(id, updates) |
| 78 | } |
| 79 | |
| 80 | export function deleteLLMConfig(id: string): void { |
| 81 | const { settings } = stores |
nothing calls this directly
no test coverage detected