MCPcopy Index your code
hub / github.com/ChatLab/ChatLab / updateCustomProvider

Method updateCustomProvider

src/services/llm/fetch.ts:99–101  ·  view source on GitHub ↗
(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

Calls 1

putFunction · 0.90

Tested by

no test coverage detected