Skip to content
Snippets Groups Projects
Commit bcc3d0b4 authored by Marcus Schiesser's avatar Marcus Schiesser
Browse files

release v0.2.9

parent 238ca865
Branches
Tags llamaindex@0.2.9
No related merge requests found
---
"llamaindex": patch
---
Add score to source nodes response
---
"llamaindex": patch
---
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.
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
"release": "pnpm run check-minor-version && pnpm run build:release && changeset publish", "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", "release-snapshot": "pnpm run check-minor-version && pnpm run build:release && changeset publish --tag snapshot",
"check-minor-version": "node ./scripts/check-minor-version", "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" "new-snapshot": "pnpm run build:release && changeset version --snapshot"
}, },
"devDependencies": { "devDependencies": {
......
# llamaindex # 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 ## 0.2.8
### Patch Changes ### Patch Changes
......
{ {
"name": "llamaindex", "name": "llamaindex",
"version": "0.2.8", "version": "0.2.9",
"expectedMinorVersion": "2", "expectedMinorVersion": "2",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
......
.turbo .turbo
README.md README.md
LICENSE LICENSE
CHANGELOG.md
# @llamaindex/edge
## 0.2.7
### Patch Changes
- Updated dependencies
- @llamaindex/env@0.0.7
{ {
"name": "@llamaindex/edge", "name": "@llamaindex/edge",
"version": "0.2.8", "version": "0.2.9",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"dependencies": { "dependencies": {
...@@ -78,7 +78,7 @@ ...@@ -78,7 +78,7 @@
"directory": "packages/edge" "directory": "packages/edge"
}, },
"scripts": { "scripts": {
"copy": "cp -r ../../README.md ../../LICENSE .", "copy": "cp -r ../../README.md ../../LICENSE ../core/CHANGELOG.md .",
"update:deps": "node scripts/update-deps.js", "update:deps": "node scripts/update-deps.js",
"build:core": "pnpm --filter llamaindex build && cp -r ../core/dist . && rm -rf dist/cjs", "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" "build": "pnpm run update:deps && pnpm run build:core && pnpm copy"
......
# @llamaindex/experimental # @llamaindex/experimental
## 0.0.12
### Patch Changes
- Updated dependencies [76c3fd6]
- Updated dependencies [208282d]
- llamaindex@0.2.9
## 0.0.11 ## 0.0.11
### Patch Changes ### Patch Changes
......
{ {
"name": "@llamaindex/experimental", "name": "@llamaindex/experimental",
"description": "Experimental package for LlamaIndexTS", "description": "Experimental package for LlamaIndexTS",
"version": "0.0.11", "version": "0.0.12",
"type": "module", "type": "module",
"types": "dist/type/index.d.ts", "types": "dist/type/index.d.ts",
"main": "dist/cjs/index.js", "main": "dist/cjs/index.js",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment