blob: 209ff98ee065cc21b03e03d9beded642e948ccde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { getDefaultToolStates } from "./tools";
export interface AIOrganizerSettings {
ollamaUrl: string;
model: string;
enabledTools: Record<string, boolean>;
}
export const DEFAULT_SETTINGS: AIOrganizerSettings = {
ollamaUrl: "http://localhost:11434",
model: "",
enabledTools: getDefaultToolStates(),
};
|