Skip to content
Snippets Groups Projects
Unverified Commit fa01fa20 authored by github-actions[bot]'s avatar github-actions[bot] Committed by GitHub
Browse files
Showing
with 91 additions and 40 deletions
---
"@llamaindex/cloud": patch
---
fix: backport for node.js 18
There could have one missing API in the node.js 18, so we need to backport it to make it work.
---
"@llamaindex/cloud": patch
---
fix: print warning when llama parse reader has error
---
"@llamaindex/core": patch
"@llamaindex/experimental": patch
"llamaindex": patch
---
refactor: align `response-synthesizers` & `chat-engine` module
- builtin event system
- correct class extends
- aligin APIs, naming with llama-index python
- move stream out of first parameter to second parameter for the better tyep checking
- remove JSONQueryEngine in `@llamaindex/experimental`, as the code quality is not satisify and we will bring it back later
---
"llamaindex": patch
---
Extend JinaAPIEmbedding parameters
# docs # docs
## 0.0.72
### Patch Changes
- Updated dependencies [2cd1383]
- Updated dependencies [5c4badb]
- llamaindex@0.6.3
## 0.0.71 ## 0.0.71
### Patch Changes ### Patch Changes
......
{ {
"name": "docs", "name": "docs",
"version": "0.0.71", "version": "0.0.72",
"private": true, "private": true,
"scripts": { "scripts": {
"docusaurus": "docusaurus", "docusaurus": "docusaurus",
......
# @llamaindex/autotool # @llamaindex/autotool
## 3.0.3
### Patch Changes
- Updated dependencies [2cd1383]
- Updated dependencies [5c4badb]
- llamaindex@0.6.3
## 3.0.2 ## 3.0.2
### Patch Changes ### Patch Changes
......
# @llamaindex/autotool-01-node-example # @llamaindex/autotool-01-node-example
## 0.0.12
### Patch Changes
- Updated dependencies [2cd1383]
- Updated dependencies [5c4badb]
- llamaindex@0.6.3
- @llamaindex/autotool@3.0.3
## 0.0.11 ## 0.0.11
### Patch Changes ### Patch Changes
......
...@@ -13,5 +13,5 @@ ...@@ -13,5 +13,5 @@
"scripts": { "scripts": {
"start": "node --import tsx --import @llamaindex/autotool/node ./src/index.ts" "start": "node --import tsx --import @llamaindex/autotool/node ./src/index.ts"
}, },
"version": "0.0.11" "version": "0.0.12"
} }
# @llamaindex/autotool-02-next-example # @llamaindex/autotool-02-next-example
## 0.1.56
### Patch Changes
- Updated dependencies [2cd1383]
- Updated dependencies [5c4badb]
- llamaindex@0.6.3
- @llamaindex/autotool@3.0.3
## 0.1.55 ## 0.1.55
### Patch Changes ### Patch Changes
......
{ {
"name": "@llamaindex/autotool-02-next-example", "name": "@llamaindex/autotool-02-next-example",
"private": true, "private": true,
"version": "0.1.55", "version": "0.1.56",
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
......
{ {
"name": "@llamaindex/autotool", "name": "@llamaindex/autotool",
"type": "module", "type": "module",
"version": "3.0.2", "version": "3.0.3",
"description": "auto transpile your JS function to LLM Agent compatible", "description": "auto transpile your JS function to LLM Agent compatible",
"files": [ "files": [
"dist", "dist",
......
# @llamaindex/cloud # @llamaindex/cloud
## 0.2.7
### Patch Changes
- fb36eff: fix: backport for node.js 18
There could have one missing API in the node.js 18, so we need to backport it to make it work.
- d24d3d1: fix: print warning when llama parse reader has error
- Updated dependencies [2cd1383]
- @llamaindex/core@0.2.3
## 0.2.6 ## 0.2.6
### Patch Changes ### Patch Changes
......
{ {
"name": "@llamaindex/cloud", "name": "@llamaindex/cloud",
"version": "0.2.6", "version": "0.2.7",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
...@@ -50,12 +50,12 @@ ...@@ -50,12 +50,12 @@
"devDependencies": { "devDependencies": {
"@hey-api/client-fetch": "^0.2.4", "@hey-api/client-fetch": "^0.2.4",
"@hey-api/openapi-ts": "^0.53.0", "@hey-api/openapi-ts": "^0.53.0",
"@llamaindex/core": "workspace:^0.2.2", "@llamaindex/core": "workspace:^0.2.3",
"@llamaindex/env": "workspace:^0.1.11", "@llamaindex/env": "workspace:^0.1.11",
"bunchee": "5.3.2" "bunchee": "5.3.2"
}, },
"peerDependencies": { "peerDependencies": {
"@llamaindex/core": "workspace:^0.2.2", "@llamaindex/core": "workspace:^0.2.3",
"@llamaindex/env": "workspace:^0.1.11" "@llamaindex/env": "workspace:^0.1.11"
}, },
"dependencies": { "dependencies": {
......
# @llamaindex/community # @llamaindex/community
## 0.0.37
### Patch Changes
- Updated dependencies [2cd1383]
- @llamaindex/core@0.2.3
## 0.0.36 ## 0.0.36
### Patch Changes ### Patch Changes
......
{ {
"name": "@llamaindex/community", "name": "@llamaindex/community",
"description": "Community package for LlamaIndexTS", "description": "Community package for LlamaIndexTS",
"version": "0.0.36", "version": "0.0.37",
"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",
......
# @llamaindex/core # @llamaindex/core
## 0.2.3
### Patch Changes
- 2cd1383: refactor: align `response-synthesizers` & `chat-engine` module
- builtin event system
- correct class extends
- aligin APIs, naming with llama-index python
- move stream out of first parameter to second parameter for the better tyep checking
- remove JSONQueryEngine in `@llamaindex/experimental`, as the code quality is not satisify and we will bring it back later
## 0.2.2 ## 0.2.2
### Patch Changes ### Patch Changes
......
{ {
"name": "@llamaindex/core", "name": "@llamaindex/core",
"type": "module", "type": "module",
"version": "0.2.2", "version": "0.2.3",
"description": "LlamaIndex Core Module", "description": "LlamaIndex Core Module",
"exports": { "exports": {
"./node-parser": { "./node-parser": {
......
# @llamaindex/experimental # @llamaindex/experimental
## 0.0.81
### Patch Changes
- 2cd1383: refactor: align `response-synthesizers` & `chat-engine` module
- builtin event system
- correct class extends
- aligin APIs, naming with llama-index python
- move stream out of first parameter to second parameter for the better tyep checking
- remove JSONQueryEngine in `@llamaindex/experimental`, as the code quality is not satisify and we will bring it back later
- Updated dependencies [2cd1383]
- Updated dependencies [5c4badb]
- llamaindex@0.6.3
## 0.0.80 ## 0.0.80
### Patch Changes ### Patch Changes
......
{ {
"name": "@llamaindex/experimental", "name": "@llamaindex/experimental",
"description": "Experimental package for LlamaIndexTS", "description": "Experimental package for LlamaIndexTS",
"version": "0.0.80", "version": "0.0.81",
"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.
Finish editing this message first!
Please register or to comment