12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
export interface Settings {
|
|
chatModelProviders: {
|
|
[key: string]: string[];
|
|
};
|
|
embeddingModelProviders: {
|
|
[key: string]: string[];
|
|
};
|
|
openaiApiKey: string;
|
|
groqApiKey: string;
|
|
ollamaApiUrl: string;
|
|
copilotEnabled: boolean;
|
|
}
|