diff --git a/.changeset/chatty-parents-smell.md b/.changeset/chatty-parents-smell.md deleted file mode 100644 index 0bb55c31e7ebee07862d0e3e0335f385c7095842..0000000000000000000000000000000000000000 --- a/.changeset/chatty-parents-smell.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"llamaindex": patch ---- - -feat(qdrant): Add Qdrant Vector DB diff --git a/.changeset/mighty-chicken-trade.md b/.changeset/mighty-chicken-trade.md deleted file mode 100644 index 4a4e17931823573c4392c0bb3ee39bdccf72a2cf..0000000000000000000000000000000000000000 --- a/.changeset/mighty-chicken-trade.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"llamaindex": patch ---- - -Preview: Add ingestion pipeline (incl. different strategies to handle doc store duplicates) diff --git a/.changeset/popular-grapes-cheat.md b/.changeset/popular-grapes-cheat.md deleted file mode 100644 index bf1b4c9d7ec1f89846a9601f1154e754e644ba84..0000000000000000000000000000000000000000 --- a/.changeset/popular-grapes-cheat.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -"llamaindex": patch ---- - -feat: use conditional exports - -The benefit of conditional exports is we split the llamaindex into different files. This will improve the tree shake if you are building web apps. - -This also requires node16 (see https://nodejs.org/api/packages.html#conditional-exports). - -If you are seeing typescript issue `TS2724`('llamaindex' has no exported member named XXX): - -1. update `moduleResolution` to `bundler` in `tsconfig.json`, more for the web applications like Next.js, and vite, but still works for ts-node or tsx. -2. consider the ES module in your project, add `"type": "module"` into `package.json` and update `moduleResolution` to `node16` or `nodenext` in `tsconfig.json`. - -We still support both cjs and esm, but you should update `tsconfig.json` to make the typescript happy. diff --git a/.changeset/three-hounds-count.md b/.changeset/three-hounds-count.md deleted file mode 100644 index a9ec11e53e3985296b02604fe7d9bd4f491f2a1b..0000000000000000000000000000000000000000 --- a/.changeset/three-hounds-count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"llamaindex": patch ---- - -feat(extractors): add keyword extractor and base extractor diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 4ff09510e267d893199718ad9ed9284acb3d70e0..98cb3ebd9f2ce71b41343aa582d8be1a334cc9e0 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,26 @@ # llamaindex +## 0.0.49 + +### Patch Changes + +- eee3922: feat(qdrant): Add Qdrant Vector DB +- e2790da: Preview: Add ingestion pipeline (incl. different strategies to handle doc store duplicates) +- bff40f2: feat: use conditional exports + + The benefit of conditional exports is we split the llamaindex into different files. This will improve the tree shake if you are building web apps. + + This also requires node16 (see https://nodejs.org/api/packages.html#conditional-exports). + + If you are seeing typescript issue `TS2724`('llamaindex' has no exported member named XXX): + + 1. update `moduleResolution` to `bundler` in `tsconfig.json`, more for the web applications like Next.js, and vite, but still works for ts-node or tsx. + 2. consider the ES module in your project, add `"type": "module"` into `package.json` and update `moduleResolution` to `node16` or `nodenext` in `tsconfig.json`. + + We still support both cjs and esm, but you should update `tsconfig.json` to make the typescript happy. + +- 2d8845b: feat(extractors): add keyword extractor and base extractor + ## 0.0.48 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 76ce2a65cc3510aba65ea64320274f6428d9d433..eb52f0748b5cba1bf49ba25981c61cb7318fe52a 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "llamaindex", - "version": "0.0.48", + "version": "0.0.49", "license": "MIT", "dependencies": { "@anthropic-ai/sdk": "^0.9.1",