start from scratch again

This commit is contained in:
perf3ct
2025-03-02 18:58:25 -08:00
parent 67509bc92f
commit e09e15ad05
12 changed files with 444 additions and 2 deletions

View File

@@ -46,6 +46,21 @@ export interface OptionDefinitions extends KeyboardShortcutsOptions<KeyboardActi
passwordDerivedKeySalt: string;
encryptedDataKey: string;
// AI/LLM integration options
aiEnabled: string;
openaiApiKey: string;
openaiDefaultModel: string;
openaiBaseUrl: string;
anthropicApiKey: string;
anthropicDefaultModel: string;
anthropicBaseUrl: string;
ollamaEnabled: string;
ollamaBaseUrl: string;
ollamaDefaultModel: string;
aiProviderPrecedence: string;
aiTemperature: string;
aiSystemPrompt: string;
lastSyncedPull: number;
lastSyncedPush: number;
revisionSnapshotTimeInterval: number;