diff --git a/src/lib/ai-edition/schema/index.ts b/src/lib/ai-edition/schema/index.ts index 00c429de5..6ad211016 100644 --- a/src/lib/ai-edition/schema/index.ts +++ b/src/lib/ai-edition/schema/index.ts @@ -800,17 +800,6 @@ export const createProjectInputSchema = z.object({ title: z.string().trim().min(1).default("Untitled Project"), }); -export const addAssetInputSchema = z.object({ - path: z.string().trim().min(1), - label: z.string().trim().optional(), - autoTranscribe: z.boolean().default(true), -}); - -export const chatInputSchema = z.object({ - sessionId: z.string().trim().min(1).optional(), - message: z.string().trim().min(1), -}); - // Every code whisper.cpp's multilingual model can resolve, plus "auto" for // detection. Codes and order mirror whisper.cpp's own `g_lang` table // (`src/whisper.cpp`, verified against the tag `nix/whisper-stt.nix` pins — @@ -946,8 +935,6 @@ export type AxcutLegacyEditor = z.infer; export type AxcutDocument = z.infer; export type AxcutDocumentInput = z.input; export type CreateProjectInput = z.infer; -export type AddAssetInput = z.infer; -export type ChatInput = z.infer; export type TranscriptLanguageCode = z.infer; /** A real whisper.cpp language code — `TranscriptLanguageCode` minus the "auto" detection sentinel. */ export type WhisperLanguageCode = Exclude;