@stevenvo780/autologic 1.0.0
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/LICENSE +21 -0
- package/README.md +166 -0
- package/dist/atoms/coreference.d.ts +29 -0
- package/dist/atoms/coreference.d.ts.map +1 -0
- package/dist/atoms/coreference.js +75 -0
- package/dist/atoms/coreference.js.map +1 -0
- package/dist/atoms/identifier-gen.d.ts +23 -0
- package/dist/atoms/identifier-gen.d.ts.map +1 -0
- package/dist/atoms/identifier-gen.js +83 -0
- package/dist/atoms/identifier-gen.js.map +1 -0
- package/dist/atoms/index.d.ts +20 -0
- package/dist/atoms/index.d.ts.map +1 -0
- package/dist/atoms/index.js +112 -0
- package/dist/atoms/index.js.map +1 -0
- package/dist/atoms/keyword-extractor.d.ts +29 -0
- package/dist/atoms/keyword-extractor.d.ts.map +1 -0
- package/dist/atoms/keyword-extractor.js +73 -0
- package/dist/atoms/keyword-extractor.js.map +1 -0
- package/dist/autologic.d.ts +63 -0
- package/dist/autologic.d.ts.map +1 -0
- package/dist/autologic.js +107 -0
- package/dist/autologic.js.map +1 -0
- package/dist/discourse/index.d.ts +18 -0
- package/dist/discourse/index.d.ts.map +1 -0
- package/dist/discourse/index.js +43 -0
- package/dist/discourse/index.js.map +1 -0
- package/dist/discourse/markers-en.d.ts +7 -0
- package/dist/discourse/markers-en.d.ts.map +1 -0
- package/dist/discourse/markers-en.js +113 -0
- package/dist/discourse/markers-en.js.map +1 -0
- package/dist/discourse/markers-es.d.ts +7 -0
- package/dist/discourse/markers-es.d.ts.map +1 -0
- package/dist/discourse/markers-es.js +134 -0
- package/dist/discourse/markers-es.js.map +1 -0
- package/dist/discourse/pattern-detector.d.ts +16 -0
- package/dist/discourse/pattern-detector.d.ts.map +1 -0
- package/dist/discourse/pattern-detector.js +95 -0
- package/dist/discourse/pattern-detector.js.map +1 -0
- package/dist/discourse/role-classifier.d.ts +12 -0
- package/dist/discourse/role-classifier.d.ts.map +1 -0
- package/dist/discourse/role-classifier.js +141 -0
- package/dist/discourse/role-classifier.js.map +1 -0
- package/dist/formalize.d.ts +25 -0
- package/dist/formalize.d.ts.map +1 -0
- package/dist/formalize.js +123 -0
- package/dist/formalize.js.map +1 -0
- package/dist/formula/connectors.d.ts +31 -0
- package/dist/formula/connectors.d.ts.map +1 -0
- package/dist/formula/connectors.js +90 -0
- package/dist/formula/connectors.js.map +1 -0
- package/dist/formula/first-order.d.ts +11 -0
- package/dist/formula/first-order.d.ts.map +1 -0
- package/dist/formula/first-order.js +156 -0
- package/dist/formula/first-order.js.map +1 -0
- package/dist/formula/index.d.ts +15 -0
- package/dist/formula/index.d.ts.map +1 -0
- package/dist/formula/index.js +49 -0
- package/dist/formula/index.js.map +1 -0
- package/dist/formula/modal.d.ts +11 -0
- package/dist/formula/modal.d.ts.map +1 -0
- package/dist/formula/modal.js +138 -0
- package/dist/formula/modal.js.map +1 -0
- package/dist/formula/propositional.d.ts +11 -0
- package/dist/formula/propositional.d.ts.map +1 -0
- package/dist/formula/propositional.js +241 -0
- package/dist/formula/propositional.js.map +1 -0
- package/dist/formula/temporal.d.ts +11 -0
- package/dist/formula/temporal.d.ts.map +1 -0
- package/dist/formula/temporal.js +134 -0
- package/dist/formula/temporal.js.map +1 -0
- package/dist/generator/index.d.ts +6 -0
- package/dist/generator/index.d.ts.map +1 -0
- package/dist/generator/index.js +12 -0
- package/dist/generator/index.js.map +1 -0
- package/dist/generator/st-emitter.d.ts +23 -0
- package/dist/generator/st-emitter.d.ts.map +1 -0
- package/dist/generator/st-emitter.js +134 -0
- package/dist/generator/st-emitter.js.map +1 -0
- package/dist/generator/validator.d.ts +22 -0
- package/dist/generator/validator.d.ts.map +1 -0
- package/dist/generator/validator.js +53 -0
- package/dist/generator/validator.js.map +1 -0
- package/dist/index.d.ts +32 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +44 -0
- package/dist/index.js.map +1 -0
- package/dist/nlp/index.d.ts +8 -0
- package/dist/nlp/index.d.ts.map +1 -0
- package/dist/nlp/index.js +17 -0
- package/dist/nlp/index.js.map +1 -0
- package/dist/nlp/stemmer-en.d.ts +10 -0
- package/dist/nlp/stemmer-en.d.ts.map +1 -0
- package/dist/nlp/stemmer-en.js +149 -0
- package/dist/nlp/stemmer-en.js.map +1 -0
- package/dist/nlp/stemmer-es.d.ts +10 -0
- package/dist/nlp/stemmer-es.d.ts.map +1 -0
- package/dist/nlp/stemmer-es.js +117 -0
- package/dist/nlp/stemmer-es.js.map +1 -0
- package/dist/nlp/stopwords.d.ts +11 -0
- package/dist/nlp/stopwords.d.ts.map +1 -0
- package/dist/nlp/stopwords.js +73 -0
- package/dist/nlp/stopwords.js.map +1 -0
- package/dist/nlp/tokenizer.d.ts +13 -0
- package/dist/nlp/tokenizer.d.ts.map +1 -0
- package/dist/nlp/tokenizer.js +36 -0
- package/dist/nlp/tokenizer.js.map +1 -0
- package/dist/segmenter/clause-splitter.d.ts +15 -0
- package/dist/segmenter/clause-splitter.d.ts.map +1 -0
- package/dist/segmenter/clause-splitter.js +192 -0
- package/dist/segmenter/clause-splitter.js.map +1 -0
- package/dist/segmenter/index.d.ts +11 -0
- package/dist/segmenter/index.d.ts.map +1 -0
- package/dist/segmenter/index.js +25 -0
- package/dist/segmenter/index.js.map +1 -0
- package/dist/segmenter/sentence-splitter.d.ts +13 -0
- package/dist/segmenter/sentence-splitter.d.ts.map +1 -0
- package/dist/segmenter/sentence-splitter.js +69 -0
- package/dist/segmenter/sentence-splitter.js.map +1 -0
- package/dist/types.d.ts +184 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +6 -0
- package/dist/types.js.map +1 -0
- package/package.json +51 -0
- package/readme.md +1 -0
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.extractKeywords = extractKeywords;
|
|
4
|
+
exports.extractStems = extractStems;
|
|
5
|
+
exports.bagOfStems = bagOfStems;
|
|
6
|
+
exports.extractSubjectPredicate = extractSubjectPredicate;
|
|
7
|
+
const tokenizer_1 = require("../nlp/tokenizer");
|
|
8
|
+
/**
|
|
9
|
+
* Extrae las palabras clave principales de un texto.
|
|
10
|
+
* Filtra stopwords y selecciona las más significativas.
|
|
11
|
+
*/
|
|
12
|
+
function extractKeywords(text, language = 'es', maxWords = 4) {
|
|
13
|
+
const tokens = (0, tokenizer_1.contentWords)(text, language);
|
|
14
|
+
if (tokens.length === 0) {
|
|
15
|
+
// Fallback: usar todas las palabras
|
|
16
|
+
return (0, tokenizer_1.tokenize)(text, language)
|
|
17
|
+
.filter(t => t.normalized.length > 2)
|
|
18
|
+
.slice(0, maxWords)
|
|
19
|
+
.map(t => t.normalized);
|
|
20
|
+
}
|
|
21
|
+
// Priorizar palabras más largas (generalmente más significativas)
|
|
22
|
+
const sorted = [...tokens].sort((a, b) => b.normalized.length - a.normalized.length);
|
|
23
|
+
return sorted.slice(0, maxWords).map(t => t.normalized);
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Obtiene los stems de las palabras de contenido para comparación.
|
|
27
|
+
*/
|
|
28
|
+
function extractStems(text, language = 'es') {
|
|
29
|
+
const tokens = (0, tokenizer_1.contentWords)(text, language);
|
|
30
|
+
return tokens
|
|
31
|
+
.filter(t => t.stem && t.stem.length > 1)
|
|
32
|
+
.map(t => t.stem);
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* Calcula un bag-of-stems para comparación de similitud.
|
|
36
|
+
*/
|
|
37
|
+
function bagOfStems(text, language = 'es') {
|
|
38
|
+
return new Set(extractStems(text, language));
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Extrae sujeto y predicado para lógica de primer orden.
|
|
42
|
+
* Heurística: el primer sustantivo es el sujeto, el verbo + complemento es el predicado.
|
|
43
|
+
*/
|
|
44
|
+
function extractSubjectPredicate(text, language = 'es') {
|
|
45
|
+
const tokens = (0, tokenizer_1.tokenize)(text, language);
|
|
46
|
+
const content = tokens.filter(t => !t.isStopword);
|
|
47
|
+
if (content.length < 2)
|
|
48
|
+
return null;
|
|
49
|
+
// Heurística para español: "[sujeto] es [predicado]"
|
|
50
|
+
const copulaPatterns = language === 'es'
|
|
51
|
+
? ['es', 'son', 'está', 'están', 'fue', 'será']
|
|
52
|
+
: ['is', 'are', 'was', 'were', 'will be'];
|
|
53
|
+
const copulaIndex = tokens.findIndex(t => copulaPatterns.includes(t.normalized));
|
|
54
|
+
if (copulaIndex > 0) {
|
|
55
|
+
const subject = tokens.slice(0, copulaIndex)
|
|
56
|
+
.filter(t => !t.isStopword)
|
|
57
|
+
.map(t => t.normalized)
|
|
58
|
+
.join('_');
|
|
59
|
+
const predicate = tokens.slice(copulaIndex + 1)
|
|
60
|
+
.filter(t => !t.isStopword)
|
|
61
|
+
.map(t => t.normalized)
|
|
62
|
+
.join('_');
|
|
63
|
+
if (subject && predicate) {
|
|
64
|
+
return { subject, predicate };
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
// Fallback: primera palabra = sujeto, resto = predicado
|
|
68
|
+
return {
|
|
69
|
+
subject: content[0].normalized,
|
|
70
|
+
predicate: content.slice(1).map(t => t.normalized).join('_'),
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
//# sourceMappingURL=keyword-extractor.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keyword-extractor.js","sourceRoot":"","sources":["../../src/atoms/keyword-extractor.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Autologic — Clase facade con estado (para sesiones)
|
|
3
|
+
*
|
|
4
|
+
* Envuelve formalize() con configuración persistente y
|
|
5
|
+
* permite agregar marcadores personalizados.
|
|
6
|
+
*/
|
|
7
|
+
import type { FormalizeOptions, FormalizationResult, AutologicConfig, Language, MarkerDefinition, DiscourseAnalysis } from './types';
|
|
8
|
+
/**
|
|
9
|
+
* Clase principal con estado para sesiones de formalización.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* ```ts
|
|
13
|
+
* const al = new Autologic({ language: 'es', defaultProfile: 'classical.propositional' });
|
|
14
|
+
* const r1 = al.formalize("Si llueve, la calle se moja.");
|
|
15
|
+
* const analysis = al.analyze("Si P entonces Q, pero no Q, luego no P.");
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare class Autologic {
|
|
19
|
+
private config;
|
|
20
|
+
private customMarkers;
|
|
21
|
+
private history;
|
|
22
|
+
constructor(config?: AutologicConfig);
|
|
23
|
+
/**
|
|
24
|
+
* Formaliza texto natural a código ST.
|
|
25
|
+
*/
|
|
26
|
+
formalize(text: string, options?: FormalizeOptions): FormalizationResult;
|
|
27
|
+
/**
|
|
28
|
+
* Solo analiza sin generar ST. Retorna el análisis discursivo.
|
|
29
|
+
*/
|
|
30
|
+
analyze(text: string, language?: Language): DiscourseAnalysis;
|
|
31
|
+
/**
|
|
32
|
+
* Valida código ST existente.
|
|
33
|
+
*/
|
|
34
|
+
validate(stCode: string): {
|
|
35
|
+
ok: boolean;
|
|
36
|
+
errors: string[];
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Agrega un marcador discursivo personalizado.
|
|
40
|
+
*/
|
|
41
|
+
addMarker(marker: {
|
|
42
|
+
text: string;
|
|
43
|
+
role: MarkerDefinition['role'];
|
|
44
|
+
language?: Language;
|
|
45
|
+
}): void;
|
|
46
|
+
/**
|
|
47
|
+
* Obtiene el historial de formalizaciones.
|
|
48
|
+
*/
|
|
49
|
+
getHistory(): FormalizationResult[];
|
|
50
|
+
/**
|
|
51
|
+
* Limpia el historial.
|
|
52
|
+
*/
|
|
53
|
+
clearHistory(): void;
|
|
54
|
+
/**
|
|
55
|
+
* Obtiene la configuración actual.
|
|
56
|
+
*/
|
|
57
|
+
getConfig(): Required<AutologicConfig>;
|
|
58
|
+
/**
|
|
59
|
+
* Actualiza la configuración.
|
|
60
|
+
*/
|
|
61
|
+
setConfig(config: Partial<AutologicConfig>): void;
|
|
62
|
+
}
|
|
63
|
+
//# sourceMappingURL=autologic.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"autologic.d.ts","sourceRoot":"","sources":["../src/autologic.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,KAAK,EACV,gBAAgB,EAAE,mBAAmB,EAAE,eAAe,EACxC,QAAQ,EAAE,gBAAgB,EAAE,iBAAiB,EAC5D,MAAM,SAAS,CAAC;AAQjB;;;;;;;;;GASG;AACH,qBAAa,SAAS;IACpB,OAAO,CAAC,MAAM,CAA4B;IAC1C,OAAO,CAAC,aAAa,CAA0B;IAC/C,OAAO,CAAC,OAAO,CAA6B;gBAEhC,MAAM,GAAE,eAAoB;IAQxC;;OAEG;IACH,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,GAAE,gBAAqB,GAAG,mBAAmB;IAe5E;;OAEG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,QAAQ,GAAG,iBAAiB;IAM7D;;OAEG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG;QAAE,EAAE,EAAE,OAAO,CAAC;QAAC,MAAM,EAAE,MAAM,EAAE,CAAA;KAAE;IAI3D;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;QAAC,QAAQ,CAAC,EAAE,QAAQ,CAAA;KAAE,GAAG,IAAI;IAa9F;;OAEG;IACH,UAAU,IAAI,mBAAmB,EAAE;IAInC;;OAEG;IACH,YAAY,IAAI,IAAI;IAIpB;;OAEG;IACH,SAAS,IAAI,QAAQ,CAAC,eAAe,CAAC;IAItC;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE,OAAO,CAAC,eAAe,CAAC,GAAG,IAAI;CAKlD"}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Autologic = void 0;
|
|
4
|
+
const formalize_1 = require("./formalize");
|
|
5
|
+
const segmenter_1 = require("./segmenter");
|
|
6
|
+
const discourse_1 = require("./discourse");
|
|
7
|
+
const markers_es_1 = require("./discourse/markers-es");
|
|
8
|
+
const markers_en_1 = require("./discourse/markers-en");
|
|
9
|
+
const validator_1 = require("./generator/validator");
|
|
10
|
+
/**
|
|
11
|
+
* Clase principal con estado para sesiones de formalización.
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```ts
|
|
15
|
+
* const al = new Autologic({ language: 'es', defaultProfile: 'classical.propositional' });
|
|
16
|
+
* const r1 = al.formalize("Si llueve, la calle se moja.");
|
|
17
|
+
* const analysis = al.analyze("Si P entonces Q, pero no Q, luego no P.");
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
class Autologic {
|
|
21
|
+
config;
|
|
22
|
+
customMarkers = [];
|
|
23
|
+
history = [];
|
|
24
|
+
constructor(config = {}) {
|
|
25
|
+
this.config = {
|
|
26
|
+
language: config.language || 'es',
|
|
27
|
+
defaultProfile: config.defaultProfile || 'classical.propositional',
|
|
28
|
+
defaultAtomStyle: config.defaultAtomStyle || 'keywords',
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Formaliza texto natural a código ST.
|
|
33
|
+
*/
|
|
34
|
+
formalize(text, options = {}) {
|
|
35
|
+
const mergedOptions = {
|
|
36
|
+
profile: options.profile || this.config.defaultProfile,
|
|
37
|
+
language: options.language || this.config.language,
|
|
38
|
+
atomStyle: options.atomStyle || this.config.defaultAtomStyle,
|
|
39
|
+
includeComments: options.includeComments ?? true,
|
|
40
|
+
validateOutput: options.validateOutput ?? true,
|
|
41
|
+
maxClauseDepth: options.maxClauseDepth ?? 3,
|
|
42
|
+
};
|
|
43
|
+
const result = (0, formalize_1.formalize)(text, mergedOptions);
|
|
44
|
+
this.history.push(result);
|
|
45
|
+
return result;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Solo analiza sin generar ST. Retorna el análisis discursivo.
|
|
49
|
+
*/
|
|
50
|
+
analyze(text, language) {
|
|
51
|
+
const lang = language || this.config.language;
|
|
52
|
+
const sentences = (0, segmenter_1.segment)(text, lang);
|
|
53
|
+
return (0, discourse_1.analyzeDiscourse)(sentences, lang);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Valida código ST existente.
|
|
57
|
+
*/
|
|
58
|
+
validate(stCode) {
|
|
59
|
+
return (0, validator_1.validateST)(stCode);
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* Agrega un marcador discursivo personalizado.
|
|
63
|
+
*/
|
|
64
|
+
addMarker(marker) {
|
|
65
|
+
const lang = marker.language || this.config.language;
|
|
66
|
+
const custom = (0, discourse_1.createCustomMarker)(marker.text, marker.role, lang);
|
|
67
|
+
this.customMarkers.push(custom);
|
|
68
|
+
// Agregar al diccionario correspondiente
|
|
69
|
+
if (lang === 'es') {
|
|
70
|
+
markers_es_1.MARKERS_ES.push(custom);
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
markers_en_1.MARKERS_EN.push(custom);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Obtiene el historial de formalizaciones.
|
|
78
|
+
*/
|
|
79
|
+
getHistory() {
|
|
80
|
+
return [...this.history];
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Limpia el historial.
|
|
84
|
+
*/
|
|
85
|
+
clearHistory() {
|
|
86
|
+
this.history = [];
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Obtiene la configuración actual.
|
|
90
|
+
*/
|
|
91
|
+
getConfig() {
|
|
92
|
+
return { ...this.config };
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Actualiza la configuración.
|
|
96
|
+
*/
|
|
97
|
+
setConfig(config) {
|
|
98
|
+
if (config.language)
|
|
99
|
+
this.config.language = config.language;
|
|
100
|
+
if (config.defaultProfile)
|
|
101
|
+
this.config.defaultProfile = config.defaultProfile;
|
|
102
|
+
if (config.defaultAtomStyle)
|
|
103
|
+
this.config.defaultAtomStyle = config.defaultAtomStyle;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
exports.Autologic = Autologic;
|
|
107
|
+
//# sourceMappingURL=autologic.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"autologic.js","sourceRoot":"","sources":["../src/autologic.ts"],"names":[],"mappings":";;;AAUA,2CAAwC;AACxC,2CAAsC;AACtC,2CAAmE;AACnE,uDAAoD;AACpD,uDAAoD;AACpD,qDAAmD;AAEnD;;;;;;;;;GASG;AACH,MAAa,SAAS;IACZ,MAAM,CAA4B;IAClC,aAAa,GAAuB,EAAE,CAAC;IACvC,OAAO,GAA0B,EAAE,CAAC;IAE5C,YAAY,SAA0B,EAAE;QACtC,IAAI,CAAC,MAAM,GAAG;YACZ,QAAQ,EAAE,MAAM,CAAC,QAAQ,IAAI,IAAI;YACjC,cAAc,EAAE,MAAM,CAAC,cAAc,IAAI,yBAAyB;YAClE,gBAAgB,EAAE,MAAM,CAAC,gBAAgB,IAAI,UAAU;SACxD,CAAC;IACJ,CAAC;IAED;;OAEG;IACH,SAAS,CAAC,IAAY,EAAE,UAA4B,EAAE;QACpD,MAAM,aAAa,GAAqB;YACtC,OAAO,EAAE,OAAO,CAAC,OAAO,IAAI,IAAI,CAAC,MAAM,CAAC,cAAc;YACtD,QAAQ,EAAE,OAAO,CAAC,QAAQ,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ;YAClD,SAAS,EAAE,OAAO,CAAC,SAAS,IAAI,IAAI,CAAC,MAAM,CAAC,gBAAgB;YAC5D,eAAe,EAAE,OAAO,CAAC,eAAe,IAAI,IAAI;YAChD,cAAc,EAAE,OAAO,CAAC,cAAc,IAAI,IAAI;YAC9C,cAAc,EAAE,OAAO,CAAC,cAAc,IAAI,CAAC;SAC5C,CAAC;QAEF,MAAM,MAAM,GAAG,IAAA,qBAAS,EAAC,IAAI,EAAE,aAAa,CAAC,CAAC;QAC9C,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1B,OAAO,MAAM,CAAC;IAChB,CAAC;IAED;;OAEG;IACH,OAAO,CAAC,IAAY,EAAE,QAAmB;QACvC,MAAM,IAAI,GAAG,QAAQ,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC;QAC9C,MAAM,SAAS,GAAG,IAAA,mBAAO,EAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QACtC,OAAO,IAAA,4BAAgB,EAAC,SAAS,EAAE,IAAI,CAAC,CAAC;IAC3C,CAAC;IAED;;OAEG;IACH,QAAQ,CAAC,MAAc;QACrB,OAAO,IAAA,sBAAU,EAAC,MAAM,CAAC,CAAC;IAC5B,CAAC;IAED;;OAEG;IACH,SAAS,CAAC,MAA6E;QACrF,MAAM,IAAI,GAAG,MAAM,CAAC,QAAQ,IAAI,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC;QACrD,MAAM,MAAM,GAAG,IAAA,8BAAkB,EAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;QAClE,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAEhC,yCAAyC;QACzC,IAAI,IAAI,KAAK,IAAI,EAAE,CAAC;YAClB,uBAAU,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1B,CAAC;aAAM,CAAC;YACN,uBAAU,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;QAC1B,CAAC;IACH,CAAC;IAED;;OAEG;IACH,UAAU;QACR,OAAO,CAAC,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;IAC3B,CAAC;IAED;;OAEG;IACH,YAAY;QACV,IAAI,CAAC,OAAO,GAAG,EAAE,CAAC;IACpB,CAAC;IAED;;OAEG;IACH,SAAS;QACP,OAAO,EAAE,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC;IAC5B,CAAC;IAED;;OAEG;IACH,SAAS,CAAC,MAAgC;QACxC,IAAI,MAAM,CAAC,QAAQ;YAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,GAAG,MAAM,CAAC,QAAQ,CAAC;QAC5D,IAAI,MAAM,CAAC,cAAc;YAAE,IAAI,CAAC,MAAM,CAAC,cAAc,GAAG,MAAM,CAAC,cAAc,CAAC;QAC9E,IAAI,MAAM,CAAC,gBAAgB;YAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,GAAG,MAAM,CAAC,gBAAgB,CAAC;IACtF,CAAC;CACF;AA5FD,8BA4FC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Discourse — Analizador discursivo
|
|
3
|
+
*/
|
|
4
|
+
export { MARKERS_ES } from './markers-es';
|
|
5
|
+
export { MARKERS_EN } from './markers-en';
|
|
6
|
+
export { classifyClauses } from './role-classifier';
|
|
7
|
+
export { detectPatterns, buildArgumentStructure } from './pattern-detector';
|
|
8
|
+
import type { Sentence, Language, DiscourseAnalysis, MarkerDefinition } from '../types';
|
|
9
|
+
/**
|
|
10
|
+
* Analiza discursivamente un conjunto de oraciones segmentadas.
|
|
11
|
+
* Retorna análisis completo con roles, patrones y estructura argumental.
|
|
12
|
+
*/
|
|
13
|
+
export declare function analyzeDiscourse(sentences: Sentence[], language?: Language): DiscourseAnalysis;
|
|
14
|
+
/**
|
|
15
|
+
* Registra un marcador personalizado (para extensibilidad).
|
|
16
|
+
*/
|
|
17
|
+
export declare function createCustomMarker(text: string, role: MarkerDefinition['role'], language: Language, priority?: number): MarkerDefinition;
|
|
18
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/discourse/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC1C,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAE5E,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,iBAAiB,EAAoB,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAI1G;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,QAAQ,EAAE,EAAE,QAAQ,GAAE,QAAe,GAAG,iBAAiB,CAiBpG;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,gBAAgB,CAAC,MAAM,CAAC,EAC9B,QAAQ,EAAE,QAAQ,EAClB,QAAQ,GAAE,MAAU,GACnB,gBAAgB,CAElB"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.buildArgumentStructure = exports.detectPatterns = exports.classifyClauses = exports.MARKERS_EN = exports.MARKERS_ES = void 0;
|
|
4
|
+
exports.analyzeDiscourse = analyzeDiscourse;
|
|
5
|
+
exports.createCustomMarker = createCustomMarker;
|
|
6
|
+
/**
|
|
7
|
+
* Discourse — Analizador discursivo
|
|
8
|
+
*/
|
|
9
|
+
var markers_es_1 = require("./markers-es");
|
|
10
|
+
Object.defineProperty(exports, "MARKERS_ES", { enumerable: true, get: function () { return markers_es_1.MARKERS_ES; } });
|
|
11
|
+
var markers_en_1 = require("./markers-en");
|
|
12
|
+
Object.defineProperty(exports, "MARKERS_EN", { enumerable: true, get: function () { return markers_en_1.MARKERS_EN; } });
|
|
13
|
+
var role_classifier_1 = require("./role-classifier");
|
|
14
|
+
Object.defineProperty(exports, "classifyClauses", { enumerable: true, get: function () { return role_classifier_1.classifyClauses; } });
|
|
15
|
+
var pattern_detector_1 = require("./pattern-detector");
|
|
16
|
+
Object.defineProperty(exports, "detectPatterns", { enumerable: true, get: function () { return pattern_detector_1.detectPatterns; } });
|
|
17
|
+
Object.defineProperty(exports, "buildArgumentStructure", { enumerable: true, get: function () { return pattern_detector_1.buildArgumentStructure; } });
|
|
18
|
+
const role_classifier_2 = require("./role-classifier");
|
|
19
|
+
const pattern_detector_2 = require("./pattern-detector");
|
|
20
|
+
/**
|
|
21
|
+
* Analiza discursivamente un conjunto de oraciones segmentadas.
|
|
22
|
+
* Retorna análisis completo con roles, patrones y estructura argumental.
|
|
23
|
+
*/
|
|
24
|
+
function analyzeDiscourse(sentences, language = 'es') {
|
|
25
|
+
// 1. Clasificar cláusulas de cada oración
|
|
26
|
+
const analyzedSentences = sentences.map(sentence => (0, role_classifier_2.classifyClauses)(sentence.clauses, language));
|
|
27
|
+
// 2. Detectar patrones argumentales
|
|
28
|
+
const detectedPatterns = (0, pattern_detector_2.detectPatterns)(analyzedSentences);
|
|
29
|
+
// 3. Construir estructura argumental
|
|
30
|
+
const argumentStructure = (0, pattern_detector_2.buildArgumentStructure)(analyzedSentences);
|
|
31
|
+
return {
|
|
32
|
+
sentences: analyzedSentences,
|
|
33
|
+
argumentStructure,
|
|
34
|
+
detectedPatterns,
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Registra un marcador personalizado (para extensibilidad).
|
|
39
|
+
*/
|
|
40
|
+
function createCustomMarker(text, role, language, priority = 5) {
|
|
41
|
+
return { text: text.toLowerCase(), role, language, priority };
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/discourse/index.ts"],"names":[],"mappings":";;;AAgBA,4CAiBC;AAKD,gDAOC;AA7CD;;GAEG;AACH,2CAA0C;AAAjC,wGAAA,UAAU,OAAA;AACnB,2CAA0C;AAAjC,wGAAA,UAAU,OAAA;AACnB,qDAAoD;AAA3C,kHAAA,eAAe,OAAA;AACxB,uDAA4E;AAAnE,kHAAA,cAAc,OAAA;AAAE,0HAAA,sBAAsB,OAAA;AAG/C,uDAAoD;AACpD,yDAA4E;AAE5E;;;GAGG;AACH,SAAgB,gBAAgB,CAAC,SAAqB,EAAE,WAAqB,IAAI;IAC/E,0CAA0C;IAC1C,MAAM,iBAAiB,GAAuB,SAAS,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE,CACrE,IAAA,iCAAe,EAAC,QAAQ,CAAC,OAAO,EAAE,QAAQ,CAAC,CAC5C,CAAC;IAEF,oCAAoC;IACpC,MAAM,gBAAgB,GAAG,IAAA,iCAAc,EAAC,iBAAiB,CAAC,CAAC;IAE3D,qCAAqC;IACrC,MAAM,iBAAiB,GAAG,IAAA,yCAAsB,EAAC,iBAAiB,CAAC,CAAC;IAEpE,OAAO;QACL,SAAS,EAAE,iBAAiB;QAC5B,iBAAiB;QACjB,gBAAgB;KACjB,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,SAAgB,kBAAkB,CAChC,IAAY,EACZ,IAA8B,EAC9B,QAAkB,EAClB,WAAmB,CAAC;IAEpB,OAAO,EAAE,IAAI,EAAE,IAAI,CAAC,WAAW,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC;AAChE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"markers-en.d.ts","sourceRoot":"","sources":["../../src/discourse/markers-en.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD,eAAO,MAAM,UAAU,EAAE,gBAAgB,EAwHxC,CAAC"}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MARKERS_EN = void 0;
|
|
4
|
+
exports.MARKERS_EN = [
|
|
5
|
+
// ── Conditionals ────────────────────────────────
|
|
6
|
+
{ text: 'if and only if', role: 'biconditional', language: 'en', priority: 10 },
|
|
7
|
+
{ text: 'provided that', role: 'condition', language: 'en', priority: 8 },
|
|
8
|
+
{ text: 'on the condition that', role: 'condition', language: 'en', priority: 9 },
|
|
9
|
+
{ text: 'assuming that', role: 'condition', language: 'en', priority: 7 },
|
|
10
|
+
{ text: 'in the event that', role: 'condition', language: 'en', priority: 8 },
|
|
11
|
+
{ text: 'on condition that', role: 'condition', language: 'en', priority: 8 },
|
|
12
|
+
{ text: 'as long as', role: 'condition', language: 'en', priority: 7 },
|
|
13
|
+
{ text: 'given that', role: 'premise', language: 'en', priority: 7 },
|
|
14
|
+
{ text: 'suppose that', role: 'condition', language: 'en', priority: 7 },
|
|
15
|
+
{ text: 'whenever', role: 'condition', language: 'en', priority: 6 },
|
|
16
|
+
{ text: 'if', role: 'condition', language: 'en', priority: 3 },
|
|
17
|
+
// ── Consequents / Conclusions ───────────────────
|
|
18
|
+
{ text: 'it follows that', role: 'conclusion', language: 'en', priority: 9 },
|
|
19
|
+
{ text: 'we can conclude that', role: 'conclusion', language: 'en', priority: 9 },
|
|
20
|
+
{ text: 'it can be concluded that', role: 'conclusion', language: 'en', priority: 9 },
|
|
21
|
+
{ text: 'as a result', role: 'conclusion', language: 'en', priority: 7 },
|
|
22
|
+
{ text: 'as a consequence', role: 'conclusion', language: 'en', priority: 7 },
|
|
23
|
+
{ text: 'consequently', role: 'conclusion', language: 'en', priority: 7 },
|
|
24
|
+
{ text: 'for this reason', role: 'conclusion', language: 'en', priority: 7 },
|
|
25
|
+
{ text: 'in conclusion', role: 'conclusion', language: 'en', priority: 8 },
|
|
26
|
+
{ text: 'therefore', role: 'conclusion', language: 'en', priority: 7 },
|
|
27
|
+
{ text: 'thus', role: 'conclusion', language: 'en', priority: 6 },
|
|
28
|
+
{ text: 'hence', role: 'conclusion', language: 'en', priority: 6 },
|
|
29
|
+
{ text: 'so', role: 'conclusion', language: 'en', priority: 3 },
|
|
30
|
+
{ text: 'then', role: 'consequent', language: 'en', priority: 4 },
|
|
31
|
+
{ text: 'ergo', role: 'conclusion', language: 'en', priority: 6 },
|
|
32
|
+
// ── Premises / Reasons ──────────────────────────
|
|
33
|
+
{ text: 'since', role: 'premise', language: 'en', priority: 5 },
|
|
34
|
+
{ text: 'because', role: 'premise', language: 'en', priority: 5 },
|
|
35
|
+
{ text: 'due to the fact that', role: 'premise', language: 'en', priority: 8 },
|
|
36
|
+
{ text: 'on account of', role: 'premise', language: 'en', priority: 7 },
|
|
37
|
+
{ text: 'considering that', role: 'premise', language: 'en', priority: 7 },
|
|
38
|
+
{ text: 'in view of the fact that', role: 'premise', language: 'en', priority: 9 },
|
|
39
|
+
{ text: 'inasmuch as', role: 'premise', language: 'en', priority: 7 },
|
|
40
|
+
{ text: 'for', role: 'premise', language: 'en', priority: 3 },
|
|
41
|
+
// ── Conjunction ─────────────────────────────────
|
|
42
|
+
{ text: 'in addition to', role: 'and', language: 'en', priority: 7 },
|
|
43
|
+
{ text: 'furthermore', role: 'and', language: 'en', priority: 6 },
|
|
44
|
+
{ text: 'moreover', role: 'and', language: 'en', priority: 6 },
|
|
45
|
+
{ text: 'in addition', role: 'and', language: 'en', priority: 6 },
|
|
46
|
+
{ text: 'likewise', role: 'and', language: 'en', priority: 5 },
|
|
47
|
+
{ text: 'also', role: 'and', language: 'en', priority: 4 },
|
|
48
|
+
{ text: 'as well as', role: 'and', language: 'en', priority: 6 },
|
|
49
|
+
// ── Disjunction ─────────────────────────────────
|
|
50
|
+
{ text: 'either', role: 'or', language: 'en', priority: 5 },
|
|
51
|
+
{ text: 'alternatively', role: 'or', language: 'en', priority: 6 },
|
|
52
|
+
// ── Adversative ─────────────────────────────────
|
|
53
|
+
{ text: 'on the other hand', role: 'adversative', language: 'en', priority: 8 },
|
|
54
|
+
{ text: 'on the contrary', role: 'adversative', language: 'en', priority: 7 },
|
|
55
|
+
{ text: 'in contrast', role: 'adversative', language: 'en', priority: 7 },
|
|
56
|
+
{ text: 'nevertheless', role: 'adversative', language: 'en', priority: 7 },
|
|
57
|
+
{ text: 'nonetheless', role: 'adversative', language: 'en', priority: 7 },
|
|
58
|
+
{ text: 'however', role: 'adversative', language: 'en', priority: 6 },
|
|
59
|
+
{ text: 'although', role: 'adversative', language: 'en', priority: 5 },
|
|
60
|
+
{ text: 'even though', role: 'adversative', language: 'en', priority: 6 },
|
|
61
|
+
{ text: 'but', role: 'adversative', language: 'en', priority: 4 },
|
|
62
|
+
{ text: 'yet', role: 'adversative', language: 'en', priority: 4 },
|
|
63
|
+
// ── Negation ────────────────────────────────────
|
|
64
|
+
{ text: 'it is not the case that', role: 'negation', language: 'en', priority: 9 },
|
|
65
|
+
{ text: 'it is not true that', role: 'negation', language: 'en', priority: 9 },
|
|
66
|
+
{ text: 'by no means', role: 'negation', language: 'en', priority: 8 },
|
|
67
|
+
{ text: 'in no case', role: 'negation', language: 'en', priority: 8 },
|
|
68
|
+
{ text: 'never', role: 'negation', language: 'en', priority: 5 },
|
|
69
|
+
{ text: 'neither', role: 'negation', language: 'en', priority: 5 },
|
|
70
|
+
{ text: 'not', role: 'negation', language: 'en', priority: 3 },
|
|
71
|
+
// ── Universal ───────────────────────────────────
|
|
72
|
+
{ text: 'for all', role: 'universal', language: 'en', priority: 7 },
|
|
73
|
+
{ text: 'for every', role: 'universal', language: 'en', priority: 7 },
|
|
74
|
+
{ text: 'every', role: 'universal', language: 'en', priority: 5 },
|
|
75
|
+
{ text: 'all', role: 'universal', language: 'en', priority: 4 },
|
|
76
|
+
{ text: 'each', role: 'universal', language: 'en', priority: 5 },
|
|
77
|
+
{ text: 'any', role: 'universal', language: 'en', priority: 4 },
|
|
78
|
+
{ text: 'always', role: 'universal', language: 'en', priority: 4 },
|
|
79
|
+
// ── Existential ─────────────────────────────────
|
|
80
|
+
{ text: 'there exists at least', role: 'existential', language: 'en', priority: 8 },
|
|
81
|
+
{ text: 'there exists', role: 'existential', language: 'en', priority: 7 },
|
|
82
|
+
{ text: 'there is at least', role: 'existential', language: 'en', priority: 7 },
|
|
83
|
+
{ text: 'there is', role: 'existential', language: 'en', priority: 5 },
|
|
84
|
+
{ text: 'there are', role: 'existential', language: 'en', priority: 5 },
|
|
85
|
+
{ text: 'some', role: 'existential', language: 'en', priority: 4 },
|
|
86
|
+
// ── Modal: Necessity ────────────────────────────
|
|
87
|
+
{ text: 'it is necessary that', role: 'necessity', language: 'en', priority: 8 },
|
|
88
|
+
{ text: 'necessarily', role: 'necessity', language: 'en', priority: 7 },
|
|
89
|
+
{ text: 'it is obligatory that', role: 'necessity', language: 'en', priority: 8 },
|
|
90
|
+
{ text: 'must', role: 'necessity', language: 'en', priority: 4 },
|
|
91
|
+
{ text: 'ought to', role: 'necessity', language: 'en', priority: 5 },
|
|
92
|
+
// ── Modal: Possibility ──────────────────────────
|
|
93
|
+
{ text: 'it is possible that', role: 'possibility', language: 'en', priority: 8 },
|
|
94
|
+
{ text: 'it is permitted that', role: 'possibility', language: 'en', priority: 8 },
|
|
95
|
+
{ text: 'possibly', role: 'possibility', language: 'en', priority: 7 },
|
|
96
|
+
{ text: 'perhaps', role: 'possibility', language: 'en', priority: 5 },
|
|
97
|
+
{ text: 'maybe', role: 'possibility', language: 'en', priority: 5 },
|
|
98
|
+
{ text: 'may', role: 'possibility', language: 'en', priority: 3 },
|
|
99
|
+
{ text: 'might', role: 'possibility', language: 'en', priority: 4 },
|
|
100
|
+
// ── Biconditional ───────────────────────────────
|
|
101
|
+
{ text: 'is equivalent to', role: 'biconditional', language: 'en', priority: 8 },
|
|
102
|
+
{ text: 'amounts to saying that', role: 'biconditional', language: 'en', priority: 8 },
|
|
103
|
+
{ text: 'iff', role: 'biconditional', language: 'en', priority: 7 },
|
|
104
|
+
// ── Temporal ────────────────────────────────────
|
|
105
|
+
{ text: 'after that', role: 'temporal_next', language: 'en', priority: 6 },
|
|
106
|
+
{ text: 'after', role: 'temporal_next', language: 'en', priority: 5 },
|
|
107
|
+
{ text: 'next', role: 'temporal_next', language: 'en', priority: 4 },
|
|
108
|
+
{ text: 'until', role: 'temporal_until', language: 'en', priority: 6 },
|
|
109
|
+
{ text: 'while', role: 'temporal', language: 'en', priority: 5 },
|
|
110
|
+
{ text: 'before', role: 'temporal', language: 'en', priority: 5 },
|
|
111
|
+
{ text: 'eventually', role: 'temporal_eventually', language: 'en', priority: 5 },
|
|
112
|
+
];
|
|
113
|
+
//# sourceMappingURL=markers-en.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"markers-en.js","sourceRoot":"","sources":["../../src/discourse/markers-en.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"markers-es.d.ts","sourceRoot":"","sources":["../../src/discourse/markers-es.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD,eAAO,MAAM,UAAU,EAAE,gBAAgB,EA6IxC,CAAC"}
|