Method
updateCustomProvider
(id: string, updates: Partial<CustomProviderInput>)
Source from the content-addressed store, hash-verified
| 97 | } |
| 98 | |
| 99 | async updateCustomProvider(id: string, updates: Partial<CustomProviderInput>) { |
| 100 | return put<{ success: boolean; error?: string }>(`/ai/llm/custom-providers/${id}`, updates) |
| 101 | } |
| 102 | |
| 103 | async deleteCustomProvider(id: string) { |
| 104 | return del<{ success: boolean; error?: string }>(`/ai/llm/custom-providers/${id}`) |
Callers
nothing calls this directly
Tested by
no test coverage detected