defaults.ts
1// SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5import type { RumiloConfig } from "./schema.js";
6
7export const defaultConfig: RumiloConfig = {
8 defaults: {
9 model: "anthropic:claude-sonnet-4-20250514",
10 cleanup: true,
11 },
12 web: {
13 model: "anthropic:claude-sonnet-4-20250514",
14 },
15 repo: {
16 model: "anthropic:claude-sonnet-4-20250514",
17 default_depth: 1,
18 blob_limit: "5m",
19 },
20 custom_models: {},
21};