@runnerpro/backend 1.13.27 → 1.13.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -424,6 +424,7 @@ const cambiarTonoEntrenadorNeutro = (text, idCliente) => __awaiter(void 0, void
424
424
 
425
425
  Devuelve solo el texto corregido y reescrito, sin añadir explicaciones.
426
426
  `);
427
+ console.log('textCorregido', textCorregido);
427
428
  console.timeEnd('sendPrompt');
428
429
  return textCorregido;
429
430
  }
@@ -30,12 +30,14 @@ function sendPrompt(prompt, options = {}) {
30
30
  topK: options.topK || 20,
31
31
  },
32
32
  });
33
+ console.log('prompt', prompt);
34
+ console.log('generativeModel', generativeModel);
33
35
  try {
34
- // Timeout para evitar esperas largas
35
- const timeoutPromise = new Promise((_, reject) => setTimeout(() => reject(new Error('Timeout en sendPrompt')), options.timeout || 15000));
36
- const resp = yield Promise.race([generativeModel.generateContent(prompt), timeoutPromise]);
36
+ const resp = yield generativeModel.generateContent(prompt);
37
+ console.log('resp', resp);
37
38
  const content = resp.response.candidates[0].content;
38
39
  // Asumiendo que la respuesta es de tipo texto
40
+ console.log('content', content.parts);
39
41
  if (content.parts && content.parts.length > 0 && content.parts[0].text)
40
42
  return content.parts[0].text;
41
43
  return '';
@@ -1 +1 @@
1
- {"version":3,"file":"conversation.d.ts","sourceRoot":"","sources":["../../../../../src/chat/api/conversation.ts"],"names":[],"mappings":"AAmBA,QAAA,MAAM,iBAAiB,0BAA2B,GAAG,SAuBpD,CAAC;AAybF,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
1
+ {"version":3,"file":"conversation.d.ts","sourceRoot":"","sources":["../../../../../src/chat/api/conversation.ts"],"names":[],"mappings":"AAmBA,QAAA,MAAM,iBAAiB,0BAA2B,GAAG,SAuBpD,CAAC;AA0bF,OAAO,EAAE,iBAAiB,EAAE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/prompt/index.ts"],"names":[],"mappings":"AAEA,UAAU,iBAAiB;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,iBAAe,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,GAAE,iBAAsB,gBAqCxE;AAED,OAAO,EAAE,UAAU,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/prompt/index.ts"],"names":[],"mappings":"AAEA,UAAU,iBAAiB;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,iBAAe,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,GAAE,iBAAsB,gBAsCxE;AAED,OAAO,EAAE,UAAU,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runnerpro/backend",
3
- "version": "1.13.27",
3
+ "version": "1.13.29",
4
4
  "description": "A collection of common backend functions",
5
5
  "exports": {
6
6
  ".": "./lib/cjs/index.js"