Perplexica/ui/types/Settings.ts

13 lines
248 B
TypeScript
Raw Normal View History

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