Spaces:
Running
Running
File size: 1,531 Bytes
1fc0d15 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | typescript
export type TargetKI = 'GPT-5' | 'GPT-5.1' | 'Claude 4.5 Opus' | 'Gemini 3 Pro' | 'Llama 3' | 'KimiK2' | 'Replit Agent' | 'GitHub Copilot' | 'v0.dev' | 'Base44';
export type FrameworkName = 'Lyra v2' | 'Jen' | 'Meta Prompt Architekt' | 'Prompt Engineer' | 'Prompt Spezialist';
export type Mode = 'Quick Boost' | 'Deep Dive' | 'Revolutionär' | 'Basic' | 'Detail' | 'Simple' | 'Pro' | 'Critical';
interface Framework {
name: FrameworkName;
modes: Mode[];
description: string;
}
export const KI_MODELS: TargetKI[] = ['GPT-5', 'GPT-5.1', 'Claude 4.5 Opus', 'Gemini 3 Pro', 'Llama 3', 'KimiK2', 'Replit Agent', 'GitHub Copilot', 'v0.dev', 'Base44'];
export const OPTIMIZATION_FRAMEWORKS: Framework[] = [
{ name: 'Lyra v2', modes: ['Quick Boost', 'Deep Dive', 'Revolutionär'], description: 'Fokus auf kognitive Architektur (CoT/ToT) und iterativen Dialog.' },
{ name: 'Jen', modes: ['Basic', 'Detail'], description: 'Fokus auf die 4-D-Methode (Dekonstruktion/Diagnose) und klare Struktur.' },
{ name: 'Meta Prompt Architekt', modes: ['Simple', 'Pro', 'Critical'], description: 'Fokus auf Validierungs-Gates, Metakognition (CoVe) und Architekten-Report.' },
{ name: 'Prompt Engineer', modes: ['Pro', 'Critical'], description: 'Fokus auf RACE-Framework, technische Optimierung und professionelle Standards.' },
{ name: 'Prompt Spezialist', modes: ['Simple', 'Pro'], description: 'Fokus auf iterative Verfeinerung und Schwachstellenanalyse.' }
];
export const MAX_CHAR_LIMIT = 8000;
</html> |