feat(config): make small model configurable (#1030)

This commit is contained in:
Timo Clasen
2025-07-18 20:16:50 +02:00
committed by GitHub
parent 01e7dc2d02
commit 18abcab208
2 changed files with 13 additions and 0 deletions

View File

@@ -149,6 +149,12 @@ export namespace Config {
autoupdate: z.boolean().optional().describe("Automatically update to the latest version"),
disabled_providers: z.array(z.string()).optional().describe("Disable providers that are loaded automatically"),
model: z.string().describe("Model to use in the format of provider/model, eg anthropic/claude-2").optional(),
small_model: z
.string()
.describe(
"Small model to use for tasks like summarization and title generation in the format of provider/model",
)
.optional(),
username: z
.string()
.optional()