import { IpcClient } from "../ipc/ipc_client"; import type { ChatSummary } from "./schemas"; import type { CreateAppParams, CreateAppResult } from "../ipc/ipc_types"; /** * Create a new app with an initial chat and prompt * @param params Object containing name, path, and initialPrompt * @returns The created app and chatId */ export async function createApp( params: CreateAppParams, ): Promise { try { return await IpcClient.getInstance().createApp(params); } catch (error) { console.error("[CHAT] Error creating app:", error); throw error; } } /** * Get all chats from the database * @param appId Optional app ID to filter chats by app * @returns Array of chat summaries with id, title, and createdAt */ export async function getAllChats(appId?: number): Promise { try { return await IpcClient.getInstance().getChats(appId); } catch (error) { console.error("[CHAT] Error getting all chats:", error); throw error; } }