Initial commit — Sistema Generador de Guiones V4.0

Pipeline completo: URL → Whisper → GPT-4o → pgvector → Supabase
Frontend Vue 3 + Tailwind, Backend Express + Vercel serverless functions
This commit is contained in:
2026-03-28 16:02:59 -05:00
commit 7695dd0be6
47 changed files with 7552 additions and 0 deletions

15
api/nichos.js Normal file
View File

@ -0,0 +1,15 @@
import { supabase } from '../backend/lib/supabase.js'
export default async function handler(req, res) {
if (req.method !== 'GET') return res.status(405).json({ error: 'Método no permitido' })
const { data, error } = await supabase
.from('guiones')
.select('niche')
.eq('procesado_ok', true)
if (error) return res.status(500).json({ error: error.message })
const nichos = [...new Set(data.map(r => r.niche))].sort()
res.json(nichos)
}