From c835f78dd00636474d736f34507174bbecccfe1d Mon Sep 17 00:00:00 2001 From: Marcus Schiesser Date: Tue, 2 Jan 2024 16:07:12 +0700 Subject: [PATCH] docs: added changesets for core --- .changeset/loud-files-do.md | 5 +++++ .changeset/moody-berries-reflect.md | 5 +++++ .changeset/small-paws-sneeze.md | 5 +++++ CONTRIBUTING.md | 6 +++--- 4 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 .changeset/loud-files-do.md create mode 100644 .changeset/moody-berries-reflect.md create mode 100644 .changeset/small-paws-sneeze.md diff --git a/.changeset/loud-files-do.md b/.changeset/loud-files-do.md new file mode 100644 index 0000000000..eba197acf5 --- /dev/null +++ b/.changeset/loud-files-do.md @@ -0,0 +1,5 @@ +--- +"llamaindex": patch +--- + +Use compromise as sentence tokenizer diff --git a/.changeset/moody-berries-reflect.md b/.changeset/moody-berries-reflect.md new file mode 100644 index 0000000000..4246db648e --- /dev/null +++ b/.changeset/moody-berries-reflect.md @@ -0,0 +1,5 @@ +--- +"llamaindex": patch +--- + +Removed pdf-parse, and directly use latest pdf.js diff --git a/.changeset/small-paws-sneeze.md b/.changeset/small-paws-sneeze.md new file mode 100644 index 0000000000..cc53336947 --- /dev/null +++ b/.changeset/small-paws-sneeze.md @@ -0,0 +1,5 @@ +--- +"llamaindex": patch +--- + +Added pinecone vector DB diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0ea2b309f2..568d125efd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ Right now there are two packages of importance: packages/core which is the main NPM library llamaindex -apps/simple is where the demo code lives +examples is where the demo code lives ### Turborepo docs @@ -47,7 +47,7 @@ We use Jest https://jestjs.io/ to write our test cases. Jest comes with a bunch ### Demo applications -There is an existing ["simple"](/apps/simple/README.md) demos folder with mainly NodeJS scripts. Feel free to add additional demos to that folder. If you would like to try out your changes in the core package with a new demo, you need to run the build command in the README. +There is an existing ["example"](/examples/README.md) demos folder with mainly NodeJS scripts. Feel free to add additional demos to that folder. If you would like to try out your changes in the core package with a new demo, you need to run the build command in the README. You can create new demo applications in the apps folder. Just run pnpm init in the folder after you create it to create its own package.json @@ -56,7 +56,7 @@ You can create new demo applications in the apps folder. Just run pnpm init in t To install packages for a specific package or demo application, run ``` -pnpm add [NPM Package] --filter [package or application i.e. core or simple] +pnpm add [NPM Package] --filter [package or application i.e. core or docs] ``` To install packages for every package or application run