export function createAssistant(client: CozyClient, assistantData: Assistant): Promise; export function deleteAssistant(client: CozyClient, assistantId: string): Promise; export function editAssistant(client: CozyClient, assistantId: string, assistantData: Assistant): Promise; export type Assistant = { /** * - Name of the assistant */ name: string; /** * - Prompt for the assistant */ prompt: string; /** * - Optional icon for the assistant */ icon?: string; /** * - Model identifier */ model: string; /** * - Provider's base URL */ baseUrl: string; /** * - API key for authentication */ apiKey?: string; /** * - ID of the provider */ providerId: string; }; import CozyClient from "../CozyClient";