System AI

This commit is contained in:
Joey Yakimowich-Payne 2026-01-15 19:39:38 -07:00
commit a7ad1e9bba
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
10 changed files with 271 additions and 13 deletions

View file

@ -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 {