Perplexica/ui/types/Settings.ts
Justin Luoma 79d4d87f24 feat: add copilot setting to config
refactor: move getConfig to actions, extracted Settings
2024-05-25 08:12:49 -04:00

12 lines
248 B
TypeScript

export interface Settings {
chatModelProviders: {
[key: string]: string[];
};
embeddingModelProviders: {
[key: string]: string[];
};
openaiApiKey: string;
groqApiKey: string;
ollamaApiUrl: string;
copilotEnabled: boolean;
}