(id: string, updates: Partial<AIServiceConfigInput>)
| 59 | } |
| 60 | |
| 61 | async updateConfig(id: string, updates: Partial<AIServiceConfigInput>) { |
| 62 | return put<{ success: boolean; error?: string }>(`/ai/llm/configs/${id}`, updates) |
| 63 | } |
| 64 | |
| 65 | async deleteConfig(id: string) { |
| 66 | return del<{ success: boolean; error?: string }>(`/ai/llm/configs/${id}`) |