summaryrefslogtreecommitdiffhomepage
path: root/src/settings.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings.ts')
-rw-r--r--src/settings.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/settings.ts b/src/settings.ts
index 8e73770..eb42c3f 100644
--- a/src/settings.ts
+++ b/src/settings.ts
@@ -1,6 +1,6 @@
import { getDefaultToolStates } from "./tools";
-export interface AIOrganizerSettings {
+export interface AIPulseSettings {
ollamaUrl: string;
model: string;
enabledTools: Record<string, boolean>;
@@ -11,7 +11,7 @@ export interface AIOrganizerSettings {
systemPromptFile: string;
}
-export const DEFAULT_SETTINGS: AIOrganizerSettings = {
+export const DEFAULT_SETTINGS: AIPulseSettings = {
ollamaUrl: "http://localhost:11434",
model: "",
enabledTools: getDefaultToolStates(),