@@ -6,7 +6,7 @@ This is a monorepo built with Turborepo
...
@@ -6,7 +6,7 @@ This is a monorepo built with Turborepo
Right now there are two packages of importance:
Right now there are two packages of importance:
packages/core which is the main NPM library llamaindex
packages/llamaindex which is the main NPM library llamaindex
examples is where the demo code lives
examples is where the demo code lives
...
@@ -41,7 +41,7 @@ To run them, run
...
@@ -41,7 +41,7 @@ To run them, run
pnpm run test
pnpm run test
```
```
To write new test cases write them in [packages/core/src/tests](/packages/llamaindex/src/tests)
To write new test cases write them in [packages/llamaindex/tests](/packages/llamaindex/tests)
We use Jest https://jestjs.io/ to write our test cases. Jest comes with a bunch of built in assertions using the expect function: https://jestjs.io/docs/expect
We use Jest https://jestjs.io/ to write our test cases. Jest comes with a bunch of built in assertions using the expect function: https://jestjs.io/docs/expect
...
@@ -56,7 +56,7 @@ You can create new demo applications in the apps folder. Just run pnpm init in t
...
@@ -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
To install packages for a specific package or demo application, run
```
```
pnpm add [NPM Package] --filter [package or application i.e. core or docs]
pnpm add [NPM Package] --filter [package or application i.e. llamaindex or docs]
```
```
To install packages for every package or application run
To install packages for every package or application run