Add separate STT and LLM test commands

This commit is contained in:
2026-05-03 00:44:26 +09:00
parent 48937c684b
commit 7e59013fa4
9 changed files with 274 additions and 22 deletions

View File

@@ -19,6 +19,10 @@ const envSchema = z.object({
.string()
.optional()
.transform((value) => value?.trim().toLowerCase() === "true"),
OLLAMA_BASE_URL: z.string().min(1).default("http://127.0.0.1:11434"),
OLLAMA_MODEL: z.string().min(1).default("qwen3:8b"),
OLLAMA_KEEP_ALIVE: z.string().min(1).default("5m"),
MAX_CONVERSATION_TURNS: z.coerce.number().int().min(1).max(20).default(6),
WHISPER_MODEL: z.string().min(1).default("large-v3-turbo"),
WHISPER_LANGUAGE: z.string().min(1).default("ko"),
WHISPER_DEVICE: z.enum(["auto", "cuda", "cpu"]).default("auto"),