Method
addConfig
(config: AIServiceConfigInput)
Source from the content-addressed store, hash-verified
| 55 | } |
| 56 | |
| 57 | async addConfig(config: AIServiceConfigInput) { |
| 58 | return post<{ success: boolean; config?: AIServiceConfigDisplay; error?: string }>('/ai/llm/configs', config) |
| 59 | } |
| 60 | |
| 61 | async updateConfig(id: string, updates: Partial<AIServiceConfigInput>) { |
| 62 | return put<{ success: boolean; error?: string }>(`/ai/llm/configs/${id}`, updates) |
Callers
nothing calls this directly
Tested by
no test coverage detected