Skip to content

Commit

Permalink
release v0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusschiesser committed Apr 17, 2024
1 parent 238ca86 commit bcc3d0b
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 27 deletions.
5 changes: 0 additions & 5 deletions .changeset/nasty-feet-sparkle.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/perfect-sloths-vanish.md

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"release": "pnpm run check-minor-version && pnpm run build:release && changeset publish",
"release-snapshot": "pnpm run check-minor-version && pnpm run build:release && changeset publish --tag snapshot",
"check-minor-version": "node ./scripts/check-minor-version",
"new-version": "pnpm run build:release && changeset version && pnpm run check-minor-version",
"new-version": "changeset version && pnpm run check-minor-version && pnpm run build:release",
"new-snapshot": "pnpm run build:release && changeset version --snapshot"
},
"devDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# llamaindex

## 0.2.9

### Patch Changes

- 76c3fd6: Add score to source nodes response
- 208282d: feat: init anthropic agent

remove the `tool` | `function` type in `MessageType`. Replace with `assistant` instead.
This is because these two types are only available for `OpenAI`.
Since `OpenAI` deprecates the function type, we support the Claude 3 tool call.

## 0.2.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "llamaindex",
"version": "0.2.8",
"version": "0.2.9",
"expectedMinorVersion": "2",
"license": "MIT",
"type": "module",
Expand Down
1 change: 1 addition & 0 deletions packages/edge/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.turbo
README.md
LICENSE
CHANGELOG.md
8 changes: 0 additions & 8 deletions packages/edge/CHANGELOG.md

This file was deleted.

4 changes: 2 additions & 2 deletions packages/edge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llamaindex/edge",
"version": "0.2.8",
"version": "0.2.9",
"license": "MIT",
"type": "module",
"dependencies": {
Expand Down Expand Up @@ -78,7 +78,7 @@
"directory": "packages/edge"
},
"scripts": {
"copy": "cp -r ../../README.md ../../LICENSE .",
"copy": "cp -r ../../README.md ../../LICENSE ../core/CHANGELOG.md .",
"update:deps": "node scripts/update-deps.js",
"build:core": "pnpm --filter llamaindex build && cp -r ../core/dist . && rm -rf dist/cjs",
"build": "pnpm run update:deps && pnpm run build:core && pnpm copy"
Expand Down
8 changes: 8 additions & 0 deletions packages/experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @llamaindex/experimental

## 0.0.12

### Patch Changes

- Updated dependencies [76c3fd6]
- Updated dependencies [208282d]
- llamaindex@0.2.9

## 0.0.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/experimental/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@llamaindex/experimental",
"description": "Experimental package for LlamaIndexTS",
"version": "0.0.11",
"version": "0.0.12",
"type": "module",
"types": "dist/type/index.d.ts",
"main": "dist/cjs/index.js",
Expand Down

0 comments on commit bcc3d0b

Please sign in to comment.