System AI
This commit is contained in:
parent
e732256cbf
commit
a7ad1e9bba
10 changed files with 271 additions and 13 deletions
3
types.ts
3
types.ts
|
|
@ -36,7 +36,7 @@ export const COLOR_SCHEMES: ColorScheme[] = [
|
|||
{ id: 'rose', name: 'Rose', primary: '#e11d48', primaryDark: '#be123c', primaryDarker: '#5f1a2a' },
|
||||
];
|
||||
|
||||
export type AIProvider = 'gemini' | 'openrouter' | 'openai';
|
||||
export type AIProvider = 'gemini' | 'openrouter' | 'openai' | 'system';
|
||||
|
||||
export interface UserPreferences {
|
||||
colorScheme: string;
|
||||
|
|
@ -140,6 +140,7 @@ export interface GenerateQuizOptions {
|
|||
geminiModel?: string;
|
||||
openRouterModel?: string;
|
||||
openAIModel?: string;
|
||||
accessToken?: string;
|
||||
}
|
||||
|
||||
export interface PointsBreakdown {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue