Method
addCustomModel
(input: CustomModelInput)
Source from the content-addressed store, hash-verified
| 105 | } |
| 106 | |
| 107 | async addCustomModel(input: CustomModelInput) { |
| 108 | return post<{ success: boolean; model?: ModelCatalogItem; error?: string }>('/ai/llm/custom-models', input) |
| 109 | } |
| 110 | |
| 111 | async updateCustomModel(providerId: string, modelId: string, updates: Partial<CustomModelInput>) { |
| 112 | return put<{ success: boolean; error?: string }>( |
Callers
nothing calls this directly
Tested by
no test coverage detected