@equinor/fusion-framework-cli-plugin-ai-index 1.0.4 → 1.0.6
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 +34 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +7 -7
- package/src/index.ts +2 -0
- package/src/version.ts +1 -1
package/dist/types/index.d.ts
CHANGED
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.0.
|
|
1
|
+
export declare const version = "1.0.6";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-cli-plugin-ai-index",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "AI indexing plugin for Fusion Framework CLI providing document embedding and chunking utilities",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"find-up": "^8.0.0",
|
|
45
45
|
"globby": "^16.1.0",
|
|
46
46
|
"gray-matter": "^4.0.3",
|
|
47
|
-
"multimatch": "^
|
|
47
|
+
"multimatch": "^8.0.0",
|
|
48
48
|
"read-package-up": "^12.0.0",
|
|
49
49
|
"rxjs": "^7.8.1",
|
|
50
50
|
"simple-git": "^3.28.0",
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"tree-sitter-typescript": "^0.23.2",
|
|
53
53
|
"ts-morph": "^27.0.2",
|
|
54
54
|
"zod": "^4.3.5",
|
|
55
|
-
"@equinor/fusion-framework-
|
|
56
|
-
"@equinor/fusion-framework-module
|
|
57
|
-
"@equinor/fusion-imports": "1.1.
|
|
58
|
-
"@equinor/fusion-framework-
|
|
55
|
+
"@equinor/fusion-framework-cli-plugin-ai-base": "1.0.5",
|
|
56
|
+
"@equinor/fusion-framework-module": "5.0.6",
|
|
57
|
+
"@equinor/fusion-imports": "1.1.11",
|
|
58
|
+
"@equinor/fusion-framework-module-ai": "2.0.2"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
|
-
"@equinor/fusion-framework-cli": "^13.
|
|
61
|
+
"@equinor/fusion-framework-cli": "^13.3.16"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"typescript": "^5.8.2",
|
package/src/index.ts
CHANGED
|
@@ -2,6 +2,8 @@ import type { Command } from 'commander';
|
|
|
2
2
|
import { registerAiPlugin as registerAiPluginBase } from '@equinor/fusion-framework-cli-plugin-ai-base';
|
|
3
3
|
import { command as embeddingsCommand } from './command.js';
|
|
4
4
|
|
|
5
|
+
export { FusionAIConfigWithIndex, IndexConfig } from './config.js';
|
|
6
|
+
|
|
5
7
|
/**
|
|
6
8
|
* Registers the AI index plugin command with the CLI program
|
|
7
9
|
* @param program - The Commander program instance to register commands with
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '1.0.
|
|
2
|
+
export const version = '1.0.6';
|