defaults.ts
1import type { RumiloConfig } from "./schema.js";
2
3export const defaultConfig: RumiloConfig = {
4 defaults: {
5 model: "anthropic:claude-sonnet-4-20250514",
6 cleanup: true,
7 },
8 web: {
9 model: "anthropic:claude-sonnet-4-20250514",
10 },
11 repo: {
12 model: "anthropic:claude-sonnet-4-20250514",
13 default_depth: 1,
14 blob_limit: "5m",
15 },
16 custom_models: {},
17};