@equinor/fusion-framework-cli 13.0.0-cli-search-index.3 → 13.0.0-cli-search-index.5
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 +14 -0
- package/README.md +1 -1
- package/bin/build/bin.mjs +1 -1
- package/bin/build/cli.mjs +3 -3
- package/dist/esm/version.js +1 -1
- package/dist/types/cli/commands/ai/utils/markdown/parser.d.ts +5 -5
- package/dist/types/version.d.ts +1 -1
- package/docs/ai-commands.md +573 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 13.0.0-cli-search-index.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3757](https://github.com/equinor/fusion-framework/pull/3757) [`91fbb14`](https://github.com/equinor/fusion-framework/commit/91fbb14c3618d4d494e0468fdef691a8cb48253d) Thanks [@odinr](https://github.com/odinr)! - Refactor `ai embeddings` command pipeline to improve performance and maintainability.
|
|
8
|
+
|
|
9
|
+
- Optimize file deletion with batch operations instead of one-by-one processing
|
|
10
|
+
- Improve RxJS stream handling with better separation of removed vs new/modified files
|
|
11
|
+
- Enhance result tracking to report deleted files and added document IDs
|
|
12
|
+
- Add clearer logging and comments throughout the pipeline
|
|
13
|
+
- Ensure deletions happen before additions using concat operator
|
|
14
|
+
|
|
15
|
+
No public API changes; internal improvements only.
|
|
16
|
+
|
|
3
17
|
## 13.0.0-cli-search-index.3
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -154,7 +154,7 @@ A minimal example for a Fusion Framework app:
|
|
|
154
154
|
- [Troubleshooting Guide](docs/application.md#troubleshooting-faq): Common issues and solutions
|
|
155
155
|
|
|
156
156
|
**Internal Tools** (Fusion Core Team Only)
|
|
157
|
-
- [AI Commands](
|
|
157
|
+
- [AI Commands](docs/ai-commands.md): ⚠️ **Internal use only** - AI-powered chat, embeddings, and search commands for codebase understanding (not supported for third-party users ...yet)
|
|
158
158
|
|
|
159
159
|
## Troubleshooting
|
|
160
160
|
|