const { PrismaClient } = require('@prisma/client'); const prisma = new PrismaClient(); async function main() { await prisma.voiceProfile.create({ data: { name: 'Özgür AI (Tüm Motorlar)', description: 'İstediğiniz ses motorunu seçebileceğiniz serbest profil.', voice_type: 'cloned', language: 'tr', tags: ['serbest', 'çok-dilli'], preview_url: null, personality: 'Sen yardımcı bir asistansın.', default_engine: 'qwen' } }); console.log('Profile created'); } main().catch(e => { console.error(e); }).finally(() => prisma.$disconnect());