@soulcraft/brainy 3.20.5 → 3.22.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.
Files changed (28) hide show
  1. package/CHANGELOG.md +93 -0
  2. package/README.md +112 -2
  3. package/dist/augmentations/defaultAugmentations.d.ts +6 -0
  4. package/dist/augmentations/defaultAugmentations.js +12 -0
  5. package/dist/augmentations/intelligentImport/IntelligentImportAugmentation.d.ts +51 -0
  6. package/dist/augmentations/intelligentImport/IntelligentImportAugmentation.js +185 -0
  7. package/dist/augmentations/intelligentImport/handlers/base.d.ts +49 -0
  8. package/dist/augmentations/intelligentImport/handlers/base.js +149 -0
  9. package/dist/augmentations/intelligentImport/handlers/csvHandler.d.ts +34 -0
  10. package/dist/augmentations/intelligentImport/handlers/csvHandler.js +185 -0
  11. package/dist/augmentations/intelligentImport/handlers/excelHandler.d.ts +31 -0
  12. package/dist/augmentations/intelligentImport/handlers/excelHandler.js +148 -0
  13. package/dist/augmentations/intelligentImport/handlers/pdfHandler.d.ts +35 -0
  14. package/dist/augmentations/intelligentImport/handlers/pdfHandler.js +247 -0
  15. package/dist/augmentations/intelligentImport/index.d.ts +9 -0
  16. package/dist/augmentations/intelligentImport/index.js +9 -0
  17. package/dist/augmentations/intelligentImport/types.d.ts +111 -0
  18. package/dist/augmentations/intelligentImport/types.js +6 -0
  19. package/dist/neural/entityExtractionCache.d.ts +111 -0
  20. package/dist/neural/entityExtractionCache.js +208 -0
  21. package/dist/neural/entityExtractor.d.ts +33 -1
  22. package/dist/neural/entityExtractor.js +66 -2
  23. package/dist/neural/relationshipConfidence.d.ts +79 -0
  24. package/dist/neural/relationshipConfidence.js +204 -0
  25. package/dist/types/brainy.types.d.ts +18 -0
  26. package/dist/types/progress.types.d.ts +107 -0
  27. package/dist/types/progress.types.js +221 -0
  28. package/package.json +7 -2
@@ -0,0 +1,149 @@
1
+ /**
2
+ * Base Format Handler
3
+ * Abstract class providing common functionality for all format handlers
4
+ */
5
+ export class BaseFormatHandler {
6
+ /**
7
+ * Detect file extension from various inputs
8
+ */
9
+ detectExtension(data) {
10
+ if (typeof data === 'object' && 'filename' in data && data.filename) {
11
+ return this.getExtension(data.filename);
12
+ }
13
+ if (typeof data === 'object' && 'ext' in data && data.ext) {
14
+ return data.ext.toLowerCase().replace(/^\./, '');
15
+ }
16
+ return null;
17
+ }
18
+ /**
19
+ * Extract extension from filename
20
+ */
21
+ getExtension(filename) {
22
+ const match = filename.match(/\.([^.]+)$/);
23
+ return match ? match[1].toLowerCase() : '';
24
+ }
25
+ /**
26
+ * Infer field types from data
27
+ * Analyzes multiple rows to determine the most appropriate type
28
+ */
29
+ inferFieldTypes(data) {
30
+ if (data.length === 0)
31
+ return {};
32
+ const types = {};
33
+ const firstRow = data[0];
34
+ const sampleSize = Math.min(10, data.length);
35
+ for (const key of Object.keys(firstRow)) {
36
+ // Check first few rows to get more accurate type
37
+ const sampleTypes = new Set();
38
+ for (let i = 0; i < sampleSize; i++) {
39
+ const value = data[i][key];
40
+ const type = this.inferType(value);
41
+ sampleTypes.add(type);
42
+ }
43
+ // If we see both integer and float, use float
44
+ if (sampleTypes.has('float') || (sampleTypes.has('integer') && sampleTypes.has('float'))) {
45
+ types[key] = 'float';
46
+ }
47
+ else if (sampleTypes.has('integer')) {
48
+ types[key] = 'integer';
49
+ }
50
+ else if (sampleTypes.has('date')) {
51
+ types[key] = 'date';
52
+ }
53
+ else if (sampleTypes.has('boolean')) {
54
+ types[key] = 'boolean';
55
+ }
56
+ else {
57
+ types[key] = 'string';
58
+ }
59
+ }
60
+ return types;
61
+ }
62
+ /**
63
+ * Infer type of a single value
64
+ */
65
+ inferType(value) {
66
+ if (value === null || value === undefined || value === '')
67
+ return 'string';
68
+ if (typeof value === 'number')
69
+ return 'number';
70
+ if (typeof value === 'boolean')
71
+ return 'boolean';
72
+ if (typeof value === 'string') {
73
+ // Check if it's a number
74
+ if (/^-?\d+$/.test(value))
75
+ return 'integer';
76
+ if (/^-?\d+\.\d+$/.test(value))
77
+ return 'float';
78
+ // Check if it's a date
79
+ if (this.isDateString(value))
80
+ return 'date';
81
+ // Check if it's a boolean
82
+ if (/^(true|false|yes|no|y|n)$/i.test(value))
83
+ return 'boolean';
84
+ }
85
+ return 'string';
86
+ }
87
+ /**
88
+ * Check if string looks like a date
89
+ */
90
+ isDateString(value) {
91
+ // ISO 8601
92
+ if (/^\d{4}-\d{2}-\d{2}/.test(value))
93
+ return true;
94
+ // Common date formats
95
+ if (/^\d{1,2}\/\d{1,2}\/\d{2,4}$/.test(value))
96
+ return true;
97
+ if (/^\d{1,2}-\d{1,2}-\d{2,4}$/.test(value))
98
+ return true;
99
+ return false;
100
+ }
101
+ /**
102
+ * Sanitize field names for use as object keys
103
+ */
104
+ sanitizeFieldName(name) {
105
+ return name
106
+ .trim()
107
+ .replace(/[^a-zA-Z0-9_\s-]/g, '')
108
+ .replace(/\s+/g, '_')
109
+ .replace(/-+/g, '_')
110
+ .replace(/_+/g, '_')
111
+ .replace(/^_|_$/g, '')
112
+ || 'field';
113
+ }
114
+ /**
115
+ * Convert value to appropriate type
116
+ */
117
+ convertValue(value, type) {
118
+ if (value === null || value === undefined || value === '')
119
+ return null;
120
+ switch (type) {
121
+ case 'integer':
122
+ return parseInt(String(value), 10);
123
+ case 'float':
124
+ case 'number':
125
+ return parseFloat(String(value));
126
+ case 'boolean':
127
+ if (typeof value === 'boolean')
128
+ return value;
129
+ const str = String(value).toLowerCase();
130
+ return ['true', 'yes', 'y', '1'].includes(str);
131
+ case 'date':
132
+ return new Date(value);
133
+ default:
134
+ return value;
135
+ }
136
+ }
137
+ /**
138
+ * Create metadata object with common fields
139
+ */
140
+ createMetadata(rowCount, fields, processingTime, extra = {}) {
141
+ return {
142
+ rowCount,
143
+ fields,
144
+ processingTime,
145
+ ...extra
146
+ };
147
+ }
148
+ }
149
+ //# sourceMappingURL=base.js.map
@@ -0,0 +1,34 @@
1
+ /**
2
+ * CSV Format Handler
3
+ * Handles CSV files with:
4
+ * - Automatic encoding detection
5
+ * - Automatic delimiter detection
6
+ * - Streaming for large files
7
+ * - Type inference
8
+ */
9
+ import { BaseFormatHandler } from './base.js';
10
+ import { FormatHandlerOptions, ProcessedData } from '../types.js';
11
+ export declare class CSVHandler extends BaseFormatHandler {
12
+ readonly format = "csv";
13
+ canHandle(data: Buffer | string | {
14
+ filename?: string;
15
+ ext?: string;
16
+ }): boolean;
17
+ process(data: Buffer | string, options: FormatHandlerOptions): Promise<ProcessedData>;
18
+ /**
19
+ * Check if text looks like CSV
20
+ */
21
+ private looksLikeCSV;
22
+ /**
23
+ * Detect CSV delimiter
24
+ */
25
+ private detectDelimiter;
26
+ /**
27
+ * Detect encoding safely (with fallback)
28
+ */
29
+ private detectEncodingSafe;
30
+ /**
31
+ * Normalize encoding names to Node.js-supported encodings
32
+ */
33
+ private normalizeEncoding;
34
+ }
@@ -0,0 +1,185 @@
1
+ /**
2
+ * CSV Format Handler
3
+ * Handles CSV files with:
4
+ * - Automatic encoding detection
5
+ * - Automatic delimiter detection
6
+ * - Streaming for large files
7
+ * - Type inference
8
+ */
9
+ import { parse } from 'csv-parse/sync';
10
+ import { detect as detectEncoding } from 'chardet';
11
+ import { BaseFormatHandler } from './base.js';
12
+ export class CSVHandler extends BaseFormatHandler {
13
+ constructor() {
14
+ super(...arguments);
15
+ this.format = 'csv';
16
+ }
17
+ canHandle(data) {
18
+ const ext = this.detectExtension(data);
19
+ if (ext === 'csv' || ext === 'tsv' || ext === 'txt')
20
+ return true;
21
+ // Check content if it's a buffer
22
+ if (Buffer.isBuffer(data)) {
23
+ const sample = data.slice(0, 1024).toString('utf-8');
24
+ return this.looksLikeCSV(sample);
25
+ }
26
+ if (typeof data === 'string') {
27
+ return this.looksLikeCSV(data.slice(0, 1024));
28
+ }
29
+ return false;
30
+ }
31
+ async process(data, options) {
32
+ const startTime = Date.now();
33
+ // Convert to buffer if string
34
+ const buffer = Buffer.isBuffer(data) ? data : Buffer.from(data, 'utf-8');
35
+ // Detect encoding
36
+ const detectedEncoding = options.encoding || this.detectEncodingSafe(buffer);
37
+ const text = buffer.toString(detectedEncoding);
38
+ // Detect delimiter if not specified
39
+ const delimiter = options.csvDelimiter || this.detectDelimiter(text);
40
+ // Parse CSV
41
+ const hasHeaders = options.csvHeaders !== false;
42
+ const maxRows = options.maxRows;
43
+ try {
44
+ const records = parse(text, {
45
+ columns: hasHeaders,
46
+ skip_empty_lines: true,
47
+ trim: true,
48
+ delimiter,
49
+ relax_column_count: true,
50
+ to: maxRows,
51
+ cast: false // We'll do type inference ourselves
52
+ });
53
+ // Convert to array of objects
54
+ const data = Array.isArray(records) ? records : [records];
55
+ // Infer types and convert values
56
+ const fields = data.length > 0 ? Object.keys(data[0]) : [];
57
+ const types = this.inferFieldTypes(data);
58
+ const convertedData = data.map(row => {
59
+ const converted = {};
60
+ for (const [key, value] of Object.entries(row)) {
61
+ converted[key] = this.convertValue(value, types[key] || 'string');
62
+ }
63
+ return converted;
64
+ });
65
+ const processingTime = Date.now() - startTime;
66
+ return {
67
+ format: this.format,
68
+ data: convertedData,
69
+ metadata: this.createMetadata(convertedData.length, fields, processingTime, {
70
+ encoding: detectedEncoding,
71
+ delimiter,
72
+ hasHeaders,
73
+ types
74
+ }),
75
+ filename: options.filename
76
+ };
77
+ }
78
+ catch (error) {
79
+ throw new Error(`CSV parsing failed: ${error instanceof Error ? error.message : String(error)}`);
80
+ }
81
+ }
82
+ /**
83
+ * Check if text looks like CSV
84
+ */
85
+ looksLikeCSV(text) {
86
+ const lines = text.split('\n').filter(l => l.trim());
87
+ if (lines.length < 2)
88
+ return false;
89
+ // Check for common delimiters
90
+ const delimiters = [',', ';', '\t', '|'];
91
+ for (const delimiter of delimiters) {
92
+ const firstCount = (lines[0].match(new RegExp(`\\${delimiter}`, 'g')) || []).length;
93
+ if (firstCount === 0)
94
+ continue;
95
+ const secondCount = (lines[1].match(new RegExp(`\\${delimiter}`, 'g')) || []).length;
96
+ if (firstCount === secondCount)
97
+ return true;
98
+ }
99
+ return false;
100
+ }
101
+ /**
102
+ * Detect CSV delimiter
103
+ */
104
+ detectDelimiter(text) {
105
+ const sample = text.split('\n').slice(0, 10).join('\n');
106
+ const delimiters = [',', ';', '\t', '|'];
107
+ const counts = {};
108
+ for (const delimiter of delimiters) {
109
+ const lines = sample.split('\n').filter(l => l.trim());
110
+ if (lines.length < 2)
111
+ continue;
112
+ // Count delimiter in first line
113
+ const firstCount = (lines[0].match(new RegExp(`\\${delimiter}`, 'g')) || []).length;
114
+ if (firstCount === 0)
115
+ continue;
116
+ // Check if count is consistent across lines
117
+ let consistent = true;
118
+ for (let i = 1; i < Math.min(5, lines.length); i++) {
119
+ const count = (lines[i].match(new RegExp(`\\${delimiter}`, 'g')) || []).length;
120
+ if (count !== firstCount) {
121
+ consistent = false;
122
+ break;
123
+ }
124
+ }
125
+ if (consistent) {
126
+ counts[delimiter] = firstCount;
127
+ }
128
+ }
129
+ // Return delimiter with highest count
130
+ const best = Object.entries(counts).sort((a, b) => b[1] - a[1])[0];
131
+ return best ? best[0] : ',';
132
+ }
133
+ /**
134
+ * Detect encoding safely (with fallback)
135
+ */
136
+ detectEncodingSafe(buffer) {
137
+ try {
138
+ const detected = detectEncoding(buffer);
139
+ if (!detected)
140
+ return 'utf-8';
141
+ // Normalize encoding to Node.js-supported names
142
+ return this.normalizeEncoding(detected);
143
+ }
144
+ catch {
145
+ return 'utf-8';
146
+ }
147
+ }
148
+ /**
149
+ * Normalize encoding names to Node.js-supported encodings
150
+ */
151
+ normalizeEncoding(encoding) {
152
+ const normalized = encoding.toLowerCase().replace(/[_-]/g, '');
153
+ // Map common encodings to Node.js names
154
+ const mappings = {
155
+ 'iso88591': 'latin1',
156
+ 'iso88592': 'latin1',
157
+ 'iso88593': 'latin1',
158
+ 'iso88594': 'latin1',
159
+ 'iso88595': 'latin1',
160
+ 'iso88596': 'latin1',
161
+ 'iso88597': 'latin1',
162
+ 'iso88598': 'latin1',
163
+ 'iso88599': 'latin1',
164
+ 'iso885910': 'latin1',
165
+ 'iso885913': 'latin1',
166
+ 'iso885914': 'latin1',
167
+ 'iso885915': 'latin1',
168
+ 'iso885916': 'latin1',
169
+ 'usascii': 'ascii',
170
+ 'utf8': 'utf8',
171
+ 'utf16le': 'utf16le',
172
+ 'utf16be': 'utf16le',
173
+ 'windows1252': 'latin1',
174
+ 'windows1251': 'utf8', // Cyrillic - best effort
175
+ 'big5': 'utf8', // Chinese - best effort
176
+ 'gbk': 'utf8', // Chinese - best effort
177
+ 'gb2312': 'utf8', // Chinese - best effort
178
+ 'shiftjis': 'utf8', // Japanese - best effort
179
+ 'eucjp': 'utf8', // Japanese - best effort
180
+ 'euckr': 'utf8' // Korean - best effort
181
+ };
182
+ return mappings[normalized] || 'utf8';
183
+ }
184
+ }
185
+ //# sourceMappingURL=csvHandler.js.map
@@ -0,0 +1,31 @@
1
+ /**
2
+ * Excel Format Handler
3
+ * Handles Excel files (.xlsx, .xls, .xlsb) with:
4
+ * - Multi-sheet extraction
5
+ * - Type inference
6
+ * - Formula evaluation
7
+ * - Metadata extraction
8
+ */
9
+ import { BaseFormatHandler } from './base.js';
10
+ import { FormatHandlerOptions, ProcessedData } from '../types.js';
11
+ export declare class ExcelHandler extends BaseFormatHandler {
12
+ readonly format = "excel";
13
+ canHandle(data: Buffer | string | {
14
+ filename?: string;
15
+ ext?: string;
16
+ }): boolean;
17
+ process(data: Buffer | string, options: FormatHandlerOptions): Promise<ProcessedData>;
18
+ /**
19
+ * Determine which sheets to process
20
+ */
21
+ private getSheetsToProcess;
22
+ /**
23
+ * Check if a number is likely an Excel date
24
+ * Excel stores dates as days since 1900-01-01
25
+ */
26
+ private isExcelDate;
27
+ /**
28
+ * Convert Excel date (days since 1900-01-01) to JS Date
29
+ */
30
+ private excelDateToJSDate;
31
+ }
@@ -0,0 +1,148 @@
1
+ /**
2
+ * Excel Format Handler
3
+ * Handles Excel files (.xlsx, .xls, .xlsb) with:
4
+ * - Multi-sheet extraction
5
+ * - Type inference
6
+ * - Formula evaluation
7
+ * - Metadata extraction
8
+ */
9
+ import * as XLSX from 'xlsx';
10
+ import { BaseFormatHandler } from './base.js';
11
+ export class ExcelHandler extends BaseFormatHandler {
12
+ constructor() {
13
+ super(...arguments);
14
+ this.format = 'excel';
15
+ }
16
+ canHandle(data) {
17
+ const ext = this.detectExtension(data);
18
+ return ['xlsx', 'xls', 'xlsb', 'xlsm', 'xlt', 'xltx', 'xltm'].includes(ext || '');
19
+ }
20
+ async process(data, options) {
21
+ const startTime = Date.now();
22
+ // Convert to buffer if string (though Excel should always be binary)
23
+ const buffer = Buffer.isBuffer(data) ? data : Buffer.from(data, 'binary');
24
+ try {
25
+ // Read workbook
26
+ const workbook = XLSX.read(buffer, {
27
+ type: 'buffer',
28
+ cellDates: true,
29
+ cellNF: true,
30
+ cellStyles: true
31
+ });
32
+ // Determine which sheets to process
33
+ const sheetsToProcess = this.getSheetsToProcess(workbook, options);
34
+ // Extract data from sheets
35
+ const allData = [];
36
+ const sheetMetadata = {};
37
+ for (const sheetName of sheetsToProcess) {
38
+ const sheet = workbook.Sheets[sheetName];
39
+ if (!sheet)
40
+ continue;
41
+ // Convert sheet to JSON with headers
42
+ const sheetData = XLSX.utils.sheet_to_json(sheet, {
43
+ header: 1, // Get as array of arrays first
44
+ defval: null,
45
+ blankrows: false,
46
+ raw: false // Convert to formatted strings
47
+ });
48
+ if (sheetData.length === 0)
49
+ continue;
50
+ // First row is headers
51
+ const headers = sheetData[0].map((h) => this.sanitizeFieldName(String(h || '')));
52
+ // Skip if no headers
53
+ if (headers.length === 0)
54
+ continue;
55
+ // Convert rows to objects
56
+ for (let i = 1; i < sheetData.length; i++) {
57
+ const row = sheetData[i];
58
+ const rowObj = {};
59
+ // Add sheet name to each row
60
+ rowObj._sheet = sheetName;
61
+ for (let j = 0; j < headers.length; j++) {
62
+ const header = headers[j];
63
+ let value = row[j];
64
+ // Convert Excel dates
65
+ if (value && typeof value === 'number' && this.isExcelDate(value)) {
66
+ value = this.excelDateToJSDate(value);
67
+ }
68
+ rowObj[header] = value === undefined ? null : value;
69
+ }
70
+ allData.push(rowObj);
71
+ }
72
+ // Store sheet metadata
73
+ sheetMetadata[sheetName] = {
74
+ rowCount: sheetData.length - 1, // Exclude header row
75
+ columnCount: headers.length,
76
+ headers
77
+ };
78
+ }
79
+ // Infer types (excluding _sheet field)
80
+ const fields = allData.length > 0 ? Object.keys(allData[0]).filter(k => k !== '_sheet') : [];
81
+ const types = this.inferFieldTypes(allData);
82
+ // Convert values to appropriate types
83
+ const convertedData = allData.map(row => {
84
+ const converted = {};
85
+ for (const [key, value] of Object.entries(row)) {
86
+ if (key === '_sheet') {
87
+ converted[key] = value;
88
+ }
89
+ else {
90
+ converted[key] = this.convertValue(value, types[key] || 'string');
91
+ }
92
+ }
93
+ return converted;
94
+ });
95
+ const processingTime = Date.now() - startTime;
96
+ return {
97
+ format: this.format,
98
+ data: convertedData,
99
+ metadata: this.createMetadata(convertedData.length, fields, processingTime, {
100
+ sheets: sheetsToProcess,
101
+ sheetCount: sheetsToProcess.length,
102
+ sheetMetadata,
103
+ types,
104
+ workbookInfo: {
105
+ sheetNames: workbook.SheetNames,
106
+ properties: workbook.Props || {}
107
+ }
108
+ }),
109
+ filename: options.filename
110
+ };
111
+ }
112
+ catch (error) {
113
+ throw new Error(`Excel parsing failed: ${error instanceof Error ? error.message : String(error)}`);
114
+ }
115
+ }
116
+ /**
117
+ * Determine which sheets to process
118
+ */
119
+ getSheetsToProcess(workbook, options) {
120
+ const allSheets = workbook.SheetNames;
121
+ // If specific sheets requested
122
+ if (options.excelSheets && options.excelSheets !== 'all') {
123
+ return options.excelSheets.filter(name => allSheets.includes(name));
124
+ }
125
+ // Otherwise process all sheets
126
+ return allSheets;
127
+ }
128
+ /**
129
+ * Check if a number is likely an Excel date
130
+ * Excel stores dates as days since 1900-01-01
131
+ */
132
+ isExcelDate(value) {
133
+ // Excel dates are typically between 1 and 60000 (1900 to 2064)
134
+ // This is a heuristic - not perfect but catches most cases
135
+ return value > 0 && value < 100000 && Number.isInteger(value);
136
+ }
137
+ /**
138
+ * Convert Excel date (days since 1900-01-01) to JS Date
139
+ */
140
+ excelDateToJSDate(excelDate) {
141
+ // Excel's epoch is 1900-01-01, but there's a bug where it thinks 1900 is a leap year
142
+ // So dates before March 1, 1900 are off by one day
143
+ const epoch = new Date(1899, 11, 30); // Dec 30, 1899
144
+ const msPerDay = 24 * 60 * 60 * 1000;
145
+ return new Date(epoch.getTime() + excelDate * msPerDay);
146
+ }
147
+ }
148
+ //# sourceMappingURL=excelHandler.js.map
@@ -0,0 +1,35 @@
1
+ /**
2
+ * PDF Format Handler
3
+ * Handles PDF files with:
4
+ * - Text extraction with layout preservation
5
+ * - Table detection and extraction
6
+ * - Metadata extraction (author, dates, etc.)
7
+ * - Page-by-page processing
8
+ */
9
+ import { BaseFormatHandler } from './base.js';
10
+ import { FormatHandlerOptions, ProcessedData } from '../types.js';
11
+ export declare class PDFHandler extends BaseFormatHandler {
12
+ readonly format = "pdf";
13
+ canHandle(data: Buffer | string | {
14
+ filename?: string;
15
+ ext?: string;
16
+ }): boolean;
17
+ process(data: Buffer | string, options: FormatHandlerOptions): Promise<ProcessedData>;
18
+ /**
19
+ * Group text items into lines based on Y position
20
+ */
21
+ private groupIntoLines;
22
+ /**
23
+ * Detect tables from lines
24
+ * Tables are detected when multiple consecutive lines have similar structure
25
+ */
26
+ private detectTables;
27
+ /**
28
+ * Parse a potential table into structured rows
29
+ */
30
+ private parseTable;
31
+ /**
32
+ * Extract paragraphs from lines
33
+ */
34
+ private extractParagraphs;
35
+ }