cardus 0.0.82 → 0.0.83
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.
- package/dist/index.js +1 -1
- package/index.ts +1 -2
- package/package.json +1 -1
- package/types/index.ts +1 -2
package/dist/index.js
CHANGED
|
@@ -219,7 +219,7 @@ class IntegrationManager {
|
|
|
219
219
|
let taric = null;
|
|
220
220
|
try {
|
|
221
221
|
if (detail.bulto.nombre_producto) {
|
|
222
|
-
taric = yield llmAPIService.
|
|
222
|
+
taric = yield llmAPIService.getTaricCodeFromContentDescription(detail.bulto.nombre_producto);
|
|
223
223
|
}
|
|
224
224
|
}
|
|
225
225
|
catch (e) {
|
package/index.ts
CHANGED
|
@@ -309,8 +309,7 @@ export class IntegrationManager {
|
|
|
309
309
|
|
|
310
310
|
try {
|
|
311
311
|
if (detail.bulto.nombre_producto) {
|
|
312
|
-
taric = await llmAPIService.
|
|
313
|
-
'chatgpt',
|
|
312
|
+
taric = await llmAPIService.getTaricCodeFromContentDescription(
|
|
314
313
|
detail.bulto.nombre_producto
|
|
315
314
|
);
|
|
316
315
|
}
|
package/package.json
CHANGED
package/types/index.ts
CHANGED