skeleton of the core app

This commit is contained in:
Lucas Tettamanti
2026-01-02 00:21:46 -03:00
parent a1fb46f70c
commit 947b0bd1ee
12 changed files with 735 additions and 152 deletions

View File

@@ -10,7 +10,7 @@ export async function llmPlan({ promptSystem, input }) {
model: "gpt-5-mini", // o gpt-5 (más caro/mejor) / el que estés usando
input: [
{ role: "system", content: promptSystem },
{ role: "user", content: JSON.stringify(input) }
{ role: "user", content: JSON.stringify(llmInput) }
],
// Si estás usando "Structured Outputs" nativo, acá va tu schema.
// En caso de que tu SDK no lo soporte directo, lo hacemos con zod/JSON parse robusto.