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

release v0.2.9

parent 238ca865
No related branches found
No related tags found
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 @@
"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": {
......
# 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
......
{
"name": "llamaindex",
"version": "0.2.8",
"version": "0.2.9",
"expectedMinorVersion": "2",
"license": "MIT",
"type": "module",
......
.turbo
README.md
LICENSE
CHANGELOG.md
# @llamaindex/edge
## 0.2.7
### Patch Changes
- Updated dependencies
- @llamaindex/env@0.0.7
{
"name": "@llamaindex/edge",
"version": "0.2.8",
"version": "0.2.9",
"license": "MIT",
"type": "module",
"dependencies": {
......@@ -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"
......
# @llamaindex/experimental
## 0.0.12
### Patch Changes
- Updated dependencies [76c3fd6]
- Updated dependencies [208282d]
- llamaindex@0.2.9
## 0.0.11
### Patch Changes
......
{
"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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment