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

Method updateConfig

src/services/llm/fetch.ts:61–63  ·  view source on GitHub ↗
(id: string, updates: Partial<AIServiceConfigInput>)

Source from the content-addressed store, hash-verified

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}`)

Callers

nothing calls this directly

Calls 1

putFunction · 0.90

Tested by

no test coverage detected