(id: string)
| 101 | } |
| 102 | |
| 103 | async deleteCustomProvider(id: string) { |
| 104 | return del<{ success: boolean; error?: string }>(`/ai/llm/custom-providers/${id}`) |
| 105 | } |
| 106 | |
| 107 | async addCustomModel(input: CustomModelInput) { |
| 108 | return post<{ success: boolean; model?: ModelCatalogItem; error?: string }>('/ai/llm/custom-models', input) |