@soulcraft/brainy 3.27.1 → 3.29.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/CHANGELOG.md +12 -0
- package/dist/brainy.d.ts +50 -0
- package/dist/brainy.js +54 -2
- package/dist/config/storageAutoConfig.d.ts +2 -1
- package/dist/config/storageAutoConfig.js +5 -4
- package/dist/import/EntityDeduplicator.d.ts +84 -0
- package/dist/import/EntityDeduplicator.js +255 -0
- package/dist/import/FormatDetector.d.ts +65 -0
- package/dist/import/FormatDetector.js +263 -0
- package/dist/import/ImportCoordinator.d.ts +160 -0
- package/dist/import/ImportCoordinator.js +498 -0
- package/dist/import/ImportHistory.d.ts +92 -0
- package/dist/import/ImportHistory.js +183 -0
- package/dist/import/index.d.ts +16 -0
- package/dist/import/index.js +14 -0
- package/dist/importers/SmartCSVImporter.d.ts +136 -0
- package/dist/importers/SmartCSVImporter.js +308 -0
- package/dist/importers/SmartExcelImporter.d.ts +131 -0
- package/dist/importers/SmartExcelImporter.js +302 -0
- package/dist/importers/SmartImportOrchestrator.d.ts +125 -0
- package/dist/importers/SmartImportOrchestrator.js +531 -0
- package/dist/importers/SmartJSONImporter.d.ts +135 -0
- package/dist/importers/SmartJSONImporter.js +325 -0
- package/dist/importers/SmartMarkdownImporter.d.ts +159 -0
- package/dist/importers/SmartMarkdownImporter.js +369 -0
- package/dist/importers/SmartPDFImporter.d.ts +154 -0
- package/dist/importers/SmartPDFImporter.js +337 -0
- package/dist/importers/VFSStructureGenerator.d.ts +82 -0
- package/dist/importers/VFSStructureGenerator.js +260 -0
- package/dist/importers/index.d.ts +28 -0
- package/dist/importers/index.js +29 -0
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Smart Import System
|
|
3
|
+
*
|
|
4
|
+
* Production-ready entity and relationship extraction from multiple formats:
|
|
5
|
+
* - Excel (.xlsx)
|
|
6
|
+
* - PDF (.pdf)
|
|
7
|
+
* - CSV (.csv)
|
|
8
|
+
* - JSON (.json)
|
|
9
|
+
* - Markdown (.md)
|
|
10
|
+
*
|
|
11
|
+
* Uses brainy's built-in NeuralEntityExtractor and NaturalLanguageProcessor
|
|
12
|
+
*
|
|
13
|
+
* NO MOCKS - Real working implementation
|
|
14
|
+
*/
|
|
15
|
+
export { SmartExcelImporter } from './SmartExcelImporter.js';
|
|
16
|
+
export type { SmartExcelOptions, ExtractedRow, SmartExcelResult } from './SmartExcelImporter.js';
|
|
17
|
+
export { SmartPDFImporter } from './SmartPDFImporter.js';
|
|
18
|
+
export type { SmartPDFOptions, ExtractedSection, SmartPDFResult } from './SmartPDFImporter.js';
|
|
19
|
+
export { SmartCSVImporter } from './SmartCSVImporter.js';
|
|
20
|
+
export type { SmartCSVOptions, SmartCSVResult } from './SmartCSVImporter.js';
|
|
21
|
+
export { SmartJSONImporter } from './SmartJSONImporter.js';
|
|
22
|
+
export type { SmartJSONOptions, ExtractedJSONEntity, ExtractedJSONRelationship, SmartJSONResult } from './SmartJSONImporter.js';
|
|
23
|
+
export { SmartMarkdownImporter } from './SmartMarkdownImporter.js';
|
|
24
|
+
export type { SmartMarkdownOptions, MarkdownSection, SmartMarkdownResult } from './SmartMarkdownImporter.js';
|
|
25
|
+
export { VFSStructureGenerator } from './VFSStructureGenerator.js';
|
|
26
|
+
export type { VFSStructureOptions, VFSStructureResult } from './VFSStructureGenerator.js';
|
|
27
|
+
export { SmartImportOrchestrator } from './SmartImportOrchestrator.js';
|
|
28
|
+
export type { SmartImportOptions, SmartImportProgress, SmartImportResult } from './SmartImportOrchestrator.js';
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Smart Import System
|
|
3
|
+
*
|
|
4
|
+
* Production-ready entity and relationship extraction from multiple formats:
|
|
5
|
+
* - Excel (.xlsx)
|
|
6
|
+
* - PDF (.pdf)
|
|
7
|
+
* - CSV (.csv)
|
|
8
|
+
* - JSON (.json)
|
|
9
|
+
* - Markdown (.md)
|
|
10
|
+
*
|
|
11
|
+
* Uses brainy's built-in NeuralEntityExtractor and NaturalLanguageProcessor
|
|
12
|
+
*
|
|
13
|
+
* NO MOCKS - Real working implementation
|
|
14
|
+
*/
|
|
15
|
+
// Excel Importer
|
|
16
|
+
export { SmartExcelImporter } from './SmartExcelImporter.js';
|
|
17
|
+
// PDF Importer
|
|
18
|
+
export { SmartPDFImporter } from './SmartPDFImporter.js';
|
|
19
|
+
// CSV Importer
|
|
20
|
+
export { SmartCSVImporter } from './SmartCSVImporter.js';
|
|
21
|
+
// JSON Importer
|
|
22
|
+
export { SmartJSONImporter } from './SmartJSONImporter.js';
|
|
23
|
+
// Markdown Importer
|
|
24
|
+
export { SmartMarkdownImporter } from './SmartMarkdownImporter.js';
|
|
25
|
+
// VFS Structure Generator
|
|
26
|
+
export { VFSStructureGenerator } from './VFSStructureGenerator.js';
|
|
27
|
+
// Orchestrator (Main entry point)
|
|
28
|
+
export { SmartImportOrchestrator } from './SmartImportOrchestrator.js';
|
|
29
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soulcraft/brainy",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.29.0",
|
|
4
4
|
"description": "Universal Knowledge Protocol™ - World's first Triple Intelligence database unifying vector, graph, and document search in one API. 31 nouns × 40 verbs for infinite expressiveness.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|