// SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
//
// SPDX-License-Identifier: GPL-3.0-or-later

import type { RumiloConfig } from "./schema.js";

export const defaultConfig: RumiloConfig = {
  defaults: {
    model: "anthropic:claude-sonnet-4-20250514",
    cleanup: true,
  },
  web: {
    model: "anthropic:claude-sonnet-4-20250514",
  },
  repo: {
    model: "anthropic:claude-sonnet-4-20250514",
    default_depth: 1,
    blob_limit: "5m",
  },
  custom_models: {},
};
