Compare commits

..

3 Commits

Author SHA1 Message Date
github-actions[bot] 0111f5c8b0 Release 0.9.7 (#1703)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: marcusschiesser <17126+marcusschiesser@users.noreply.github.com>
2025-03-05 16:59:05 +07:00
Thuc Pham beb922b743 fix: build fail in edge runtime (#1705)
Co-authored-by: Marcus Schiesser <mail@marcusschiesser.de>
2025-03-05 16:35:00 +07:00
patryktop e28c29d1f5 feat: add Llama 3.3 70B Instruct to community package (#1702) 2025-03-04 17:27:35 -08:00
102 changed files with 630 additions and 166 deletions
+13
View File
@@ -1,5 +1,18 @@
# @llamaindex/doc # @llamaindex/doc
## 0.1.7
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/core@0.5.6
- llamaindex@0.9.7
- @llamaindex/cloud@3.0.7
- @llamaindex/node-parser@1.0.6
- @llamaindex/openai@0.1.58
- @llamaindex/readers@2.0.6
- @llamaindex/workflow@0.0.13
## 0.1.6 ## 0.1.6
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/doc", "name": "@llamaindex/doc",
"version": "0.1.6", "version": "0.1.7",
"private": true, "private": true,
"scripts": { "scripts": {
"build": "pnpm run build:docs && next build", "build": "pnpm run build:docs && next build",
@@ -3,6 +3,8 @@ title: With Node.js/Bun/Deno
description: In this guide, you'll learn how to use LlamaIndex with Node.js, Bun, and Deno. description: In this guide, you'll learn how to use LlamaIndex with Node.js, Bun, and Deno.
--- ---
import { Tab, Tabs } from "fumadocs-ui/components/tabs";
## Adding environment variables ## Adding environment variables
By default, LlamaIndex uses OpenAI provider, which requires an API key. You can set the `OPENAI_API_KEY` environment variable to authenticate with OpenAI. By default, LlamaIndex uses OpenAI provider, which requires an API key. You can set the `OPENAI_API_KEY` environment variable to authenticate with OpenAI.
@@ -22,6 +24,26 @@ node --env-file .env your-script.js
For more information, see the [How to read environment variables from Node.js](https://nodejs.org/en/learn/command-line/how-to-read-environment-variables-from-nodejs). For more information, see the [How to read environment variables from Node.js](https://nodejs.org/en/learn/command-line/how-to-read-environment-variables-from-nodejs).
## Performance Optimization
By the default, we are using `js-tiktoken` for tokenization. You can install `gpt-tokenizer` which is then automatically used by LlamaIndex to get a 60x speedup for tokenization:
<Tabs groupId="install" items={["npm", "yarn", "pnpm"]} persist>
```shell tab="npm"
npm install gpt-tokenizer
```
```shell tab="yarn"
yarn add gpt-tokenizer
```
```shell tab="pnpm"
pnpm add gpt-tokenizer
```
</Tabs>
> Note: This only works for Node.js
## TypeScript support ## TypeScript support
<Card <Card
@@ -1,5 +1,12 @@
# @llamaindex/cloudflare-worker-agent-test # @llamaindex/cloudflare-worker-agent-test
## 0.0.141
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
## 0.0.140 ## 0.0.140
### Patch Changes ### Patch Changes
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/cloudflare-worker-agent-test", "name": "@llamaindex/cloudflare-worker-agent-test",
"version": "0.0.140", "version": "0.0.141",
"type": "module", "type": "module",
"private": true, "private": true,
"scripts": { "scripts": {
@@ -1,5 +1,11 @@
# @llamaindex/llama-parse-browser-test # @llamaindex/llama-parse-browser-test
## 0.0.52
### Patch Changes
- @llamaindex/cloud@3.0.7
## 0.0.51 ## 0.0.51
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/llama-parse-browser-test", "name": "@llamaindex/llama-parse-browser-test",
"private": true, "private": true,
"version": "0.0.51", "version": "0.0.52",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/next-agent-test # @llamaindex/next-agent-test
## 0.1.141
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
## 0.1.140 ## 0.1.140
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/next-agent-test", "name": "@llamaindex/next-agent-test",
"version": "0.1.140", "version": "0.1.141",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
@@ -1,5 +1,12 @@
# test-edge-runtime # test-edge-runtime
## 0.1.140
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
## 0.1.139 ## 0.1.139
### Patch Changes ### Patch Changes
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/nextjs-edge-runtime-test", "name": "@llamaindex/nextjs-edge-runtime-test",
"version": "0.1.139", "version": "0.1.140",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
@@ -1,5 +1,14 @@
# @llamaindex/next-node-runtime # @llamaindex/next-node-runtime
## 0.1.7
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
- @llamaindex/huggingface@0.0.42
- @llamaindex/readers@2.0.6
## 0.1.6 ## 0.1.6
### Patch Changes ### Patch Changes
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/next-node-runtime-test", "name": "@llamaindex/next-node-runtime-test",
"version": "0.1.6", "version": "0.1.7",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
@@ -1,5 +1,12 @@
# vite-import-llamaindex # vite-import-llamaindex
## 0.0.7
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
## 0.0.6 ## 0.0.6
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "vite-import-llamaindex", "name": "vite-import-llamaindex",
"private": true, "private": true,
"version": "0.0.6", "version": "0.0.7",
"type": "module", "type": "module",
"scripts": { "scripts": {
"build": "vite build", "build": "vite build",
@@ -1,5 +1,13 @@
# @llamaindex/waku-query-engine-test # @llamaindex/waku-query-engine-test
## 0.0.141
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- llamaindex@0.9.7
## 0.0.140 ## 0.0.140
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/waku-query-engine-test", "name": "@llamaindex/waku-query-engine-test",
"version": "0.0.140", "version": "0.0.141",
"type": "module", "type": "module",
"private": true, "private": true,
"scripts": { "scripts": {
+40
View File
@@ -1,5 +1,45 @@
# examples # examples
## 0.2.6
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
- llamaindex@0.9.7
- @llamaindex/cloud@3.0.7
- @llamaindex/node-parser@1.0.6
- @llamaindex/anthropic@0.2.4
- @llamaindex/clip@0.0.42
- @llamaindex/cohere@0.0.11
- @llamaindex/deepinfra@0.0.42
- @llamaindex/google@0.0.13
- @llamaindex/groq@0.0.57
- @llamaindex/huggingface@0.0.42
- @llamaindex/mistral@0.0.11
- @llamaindex/mixedbread@0.0.11
- @llamaindex/ollama@0.0.46
- @llamaindex/openai@0.1.58
- @llamaindex/portkey-ai@0.0.39
- @llamaindex/replicate@0.0.39
- @llamaindex/astra@0.0.11
- @llamaindex/azure@0.1.6
- @llamaindex/chroma@0.0.11
- @llamaindex/firestore@1.0.4
- @llamaindex/milvus@0.1.6
- @llamaindex/mongodb@0.0.11
- @llamaindex/pinecone@0.0.11
- @llamaindex/postgres@0.0.39
- @llamaindex/qdrant@0.1.6
- @llamaindex/upstash@0.0.11
- @llamaindex/weaviate@0.0.11
- @llamaindex/voyage-ai@1.0.3
- @llamaindex/readers@2.0.6
- @llamaindex/workflow@0.0.13
- @llamaindex/vercel@0.0.17
- @llamaindex/vllm@0.0.28
## 0.2.5 ## 0.2.5
### Patch Changes ### Patch Changes
+35 -36
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/examples", "name": "@llamaindex/examples",
"version": "0.2.5", "version": "0.2.6",
"private": true, "private": true,
"scripts": { "scripts": {
"lint": "eslint .", "lint": "eslint .",
@@ -11,39 +11,39 @@
"@azure/cosmos": "^4.1.1", "@azure/cosmos": "^4.1.1",
"@azure/identity": "^4.4.1", "@azure/identity": "^4.4.1",
"@azure/search-documents": "^12.1.0", "@azure/search-documents": "^12.1.0",
"@llamaindex/anthropic": "^0.2.3", "@llamaindex/anthropic": "^0.2.4",
"@llamaindex/astra": "^0.0.10", "@llamaindex/astra": "^0.0.11",
"@llamaindex/azure": "^0.1.5", "@llamaindex/azure": "^0.1.6",
"@llamaindex/chroma": "^0.0.10", "@llamaindex/chroma": "^0.0.11",
"@llamaindex/clip": "^0.0.41", "@llamaindex/clip": "^0.0.42",
"@llamaindex/cloud": "^3.0.6", "@llamaindex/cloud": "^3.0.7",
"@llamaindex/cohere": "^0.0.10", "@llamaindex/cohere": "^0.0.11",
"@llamaindex/core": "^0.5.5", "@llamaindex/core": "^0.5.6",
"@llamaindex/deepinfra": "^0.0.41", "@llamaindex/deepinfra": "^0.0.42",
"@llamaindex/env": "^0.1.28", "@llamaindex/env": "^0.1.29",
"@llamaindex/firestore": "^1.0.3", "@llamaindex/firestore": "^1.0.4",
"@llamaindex/google": "^0.0.12", "@llamaindex/google": "^0.0.13",
"@llamaindex/groq": "^0.0.56", "@llamaindex/groq": "^0.0.57",
"@llamaindex/huggingface": "^0.0.41", "@llamaindex/huggingface": "^0.0.42",
"@llamaindex/milvus": "^0.1.5", "@llamaindex/milvus": "^0.1.6",
"@llamaindex/mistral": "^0.0.10", "@llamaindex/mistral": "^0.0.11",
"@llamaindex/mixedbread": "^0.0.10", "@llamaindex/mixedbread": "^0.0.11",
"@llamaindex/mongodb": "^0.0.10", "@llamaindex/mongodb": "^0.0.11",
"@llamaindex/node-parser": "^1.0.5", "@llamaindex/node-parser": "^1.0.6",
"@llamaindex/ollama": "^0.0.45", "@llamaindex/ollama": "^0.0.46",
"@llamaindex/openai": "^0.1.57", "@llamaindex/openai": "^0.1.58",
"@llamaindex/pinecone": "^0.0.10", "@llamaindex/pinecone": "^0.0.11",
"@llamaindex/portkey-ai": "^0.0.38", "@llamaindex/portkey-ai": "^0.0.39",
"@llamaindex/postgres": "^0.0.38", "@llamaindex/postgres": "^0.0.39",
"@llamaindex/qdrant": "^0.1.5", "@llamaindex/qdrant": "^0.1.6",
"@llamaindex/readers": "^2.0.5", "@llamaindex/readers": "^2.0.6",
"@llamaindex/replicate": "^0.0.38", "@llamaindex/replicate": "^0.0.39",
"@llamaindex/upstash": "^0.0.10", "@llamaindex/upstash": "^0.0.11",
"@llamaindex/vercel": "^0.0.16", "@llamaindex/vercel": "^0.0.17",
"@llamaindex/vllm": "^0.0.27", "@llamaindex/vllm": "^0.0.28",
"@llamaindex/voyage-ai": "^1.0.2", "@llamaindex/voyage-ai": "^1.0.3",
"@llamaindex/weaviate": "^0.0.10", "@llamaindex/weaviate": "^0.0.11",
"@llamaindex/workflow": "^0.0.12", "@llamaindex/workflow": "^0.0.13",
"@notionhq/client": "^2.2.15", "@notionhq/client": "^2.2.15",
"@pinecone-database/pinecone": "^4.0.0", "@pinecone-database/pinecone": "^4.0.0",
"@vercel/postgres": "^0.10.0", "@vercel/postgres": "^0.10.0",
@@ -52,9 +52,8 @@
"commander": "^12.1.0", "commander": "^12.1.0",
"dotenv": "^16.4.5", "dotenv": "^16.4.5",
"js-tiktoken": "^1.0.14", "js-tiktoken": "^1.0.14",
"llamaindex": "^0.9.6", "llamaindex": "^0.9.7",
"mongodb": "6.7.0", "mongodb": "6.7.0",
"pathe": "^1.1.2",
"postgres": "^3.4.4", "postgres": "^3.4.4",
"wikipedia": "^2.1.2", "wikipedia": "^2.1.2",
"zod": "^3.23.8" "zod": "^3.23.8"
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/autotool # @llamaindex/autotool
## 6.0.7
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
## 6.0.6 ## 6.0.6
### Patch Changes ### Patch Changes
@@ -1,5 +1,13 @@
# @llamaindex/autotool-01-node-example # @llamaindex/autotool-01-node-example
## 0.0.88
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
- @llamaindex/autotool@6.0.7
## 0.0.87 ## 0.0.87
### Patch Changes ### Patch Changes
@@ -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.87" "version": "0.0.88"
} }
@@ -1,5 +1,13 @@
# @llamaindex/autotool-02-next-example # @llamaindex/autotool-02-next-example
## 0.1.132
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
- @llamaindex/autotool@6.0.7
## 0.1.131 ## 0.1.131
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/autotool-02-next-example", "name": "@llamaindex/autotool-02-next-example",
"private": true, "private": true,
"version": "0.1.131", "version": "0.1.132",
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
+1 -1
View File
@@ -6,7 +6,7 @@
"url": "git+https://github.com/run-llama/LlamaIndexTS.git", "url": "git+https://github.com/run-llama/LlamaIndexTS.git",
"directory": "packages/autotool" "directory": "packages/autotool"
}, },
"version": "6.0.6", "version": "6.0.7",
"description": "auto transpile your JS function to LLM Agent compatible", "description": "auto transpile your JS function to LLM Agent compatible",
"files": [ "files": [
"dist", "dist",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/cloud # @llamaindex/cloud
## 3.0.7
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 3.0.6 ## 3.0.6
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/cloud", "name": "@llamaindex/cloud",
"version": "3.0.6", "version": "3.0.7",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
+9
View File
@@ -1,5 +1,14 @@
# @llamaindex/community # @llamaindex/community
## 0.0.88
### Patch Changes
- e28c29d: Added Llama 3.3 70B Instruct support
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.87 ## 0.0.87
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/community", "name": "@llamaindex/community",
"description": "Community package for LlamaIndexTS", "description": "Community package for LlamaIndexTS",
"version": "0.0.87", "version": "0.0.88",
"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",
@@ -81,6 +81,7 @@ export const BEDROCK_MODELS = {
META_LLAMA3_2_3B_INSTRUCT: "meta.llama3-2-3b-instruct-v1:0", META_LLAMA3_2_3B_INSTRUCT: "meta.llama3-2-3b-instruct-v1:0",
META_LLAMA3_2_11B_INSTRUCT: "meta.llama3-2-11b-instruct-v1:0", META_LLAMA3_2_11B_INSTRUCT: "meta.llama3-2-11b-instruct-v1:0",
META_LLAMA3_2_90B_INSTRUCT: "meta.llama3-2-90b-instruct-v1:0", META_LLAMA3_2_90B_INSTRUCT: "meta.llama3-2-90b-instruct-v1:0",
META_LLAMA3_3_70B_INSTRUCT: "meta.llama3-3-70b-instruct-v1:0",
MISTRAL_7B_INSTRUCT: "mistral.mistral-7b-instruct-v0:2", MISTRAL_7B_INSTRUCT: "mistral.mistral-7b-instruct-v0:2",
MISTRAL_MIXTRAL_7B_INSTRUCT: "mistral.mixtral-8x7b-instruct-v0:1", MISTRAL_MIXTRAL_7B_INSTRUCT: "mistral.mixtral-8x7b-instruct-v0:1",
MISTRAL_MIXTRAL_LARGE_2402: "mistral.mistral-large-2402-v1:0", MISTRAL_MIXTRAL_LARGE_2402: "mistral.mistral-large-2402-v1:0",
@@ -107,6 +108,7 @@ export const INFERENCE_BEDROCK_MODELS = {
US_META_LLAMA_3_2_3B_INSTRUCT: "us.meta.llama3-2-3b-instruct-v1:0", US_META_LLAMA_3_2_3B_INSTRUCT: "us.meta.llama3-2-3b-instruct-v1:0",
US_META_LLAMA_3_2_11B_INSTRUCT: "us.meta.llama3-2-11b-instruct-v1:0", US_META_LLAMA_3_2_11B_INSTRUCT: "us.meta.llama3-2-11b-instruct-v1:0",
US_META_LLAMA_3_2_90B_INSTRUCT: "us.meta.llama3-2-90b-instruct-v1:0", US_META_LLAMA_3_2_90B_INSTRUCT: "us.meta.llama3-2-90b-instruct-v1:0",
US_META_LLAMA_3_3_70B_INSTRUCT: "us.meta.llama3-3-70b-instruct-v1:0",
US_AMAZON_NOVA_PRO_1: "us.amazon.nova-pro-v1:0", US_AMAZON_NOVA_PRO_1: "us.amazon.nova-pro-v1:0",
US_AMAZON_NOVA_LITE_1: "us.amazon.nova-lite-v1:0", US_AMAZON_NOVA_LITE_1: "us.amazon.nova-lite-v1:0",
US_AMAZON_NOVA_MICRO_1: "us.amazon.nova-micro-v1:0", US_AMAZON_NOVA_MICRO_1: "us.amazon.nova-micro-v1:0",
@@ -151,6 +153,8 @@ export const INFERENCE_TO_BEDROCK_MAP: Record<
BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT, BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT,
[INFERENCE_BEDROCK_MODELS.US_META_LLAMA_3_2_90B_INSTRUCT]: [INFERENCE_BEDROCK_MODELS.US_META_LLAMA_3_2_90B_INSTRUCT]:
BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT, BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT,
[INFERENCE_BEDROCK_MODELS.US_META_LLAMA_3_3_70B_INSTRUCT]:
BEDROCK_MODELS.META_LLAMA3_3_70B_INSTRUCT,
[INFERENCE_BEDROCK_MODELS.US_AMAZON_NOVA_PRO_1]: [INFERENCE_BEDROCK_MODELS.US_AMAZON_NOVA_PRO_1]:
BEDROCK_MODELS.AMAZON_NOVA_PRO_1, BEDROCK_MODELS.AMAZON_NOVA_PRO_1,
@@ -212,6 +216,7 @@ const CHAT_ONLY_MODELS = {
[BEDROCK_MODELS.META_LLAMA3_2_3B_INSTRUCT]: 131000, [BEDROCK_MODELS.META_LLAMA3_2_3B_INSTRUCT]: 131000,
[BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT]: 128000, [BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT]: 128000,
[BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT]: 128000, [BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT]: 128000,
[BEDROCK_MODELS.META_LLAMA3_3_70B_INSTRUCT]: 128000,
[BEDROCK_MODELS.MISTRAL_7B_INSTRUCT]: 32000, [BEDROCK_MODELS.MISTRAL_7B_INSTRUCT]: 32000,
[BEDROCK_MODELS.MISTRAL_MIXTRAL_7B_INSTRUCT]: 32000, [BEDROCK_MODELS.MISTRAL_MIXTRAL_7B_INSTRUCT]: 32000,
[BEDROCK_MODELS.MISTRAL_MIXTRAL_LARGE_2402]: 32000, [BEDROCK_MODELS.MISTRAL_MIXTRAL_LARGE_2402]: 32000,
@@ -252,6 +257,7 @@ export const STREAMING_MODELS = new Set([
BEDROCK_MODELS.META_LLAMA3_2_3B_INSTRUCT, BEDROCK_MODELS.META_LLAMA3_2_3B_INSTRUCT,
BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT, BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT,
BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT, BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT,
BEDROCK_MODELS.META_LLAMA3_3_70B_INSTRUCT,
BEDROCK_MODELS.MISTRAL_7B_INSTRUCT, BEDROCK_MODELS.MISTRAL_7B_INSTRUCT,
BEDROCK_MODELS.MISTRAL_MIXTRAL_7B_INSTRUCT, BEDROCK_MODELS.MISTRAL_MIXTRAL_7B_INSTRUCT,
BEDROCK_MODELS.MISTRAL_MIXTRAL_LARGE_2402, BEDROCK_MODELS.MISTRAL_MIXTRAL_LARGE_2402,
@@ -273,6 +279,7 @@ export const TOOL_CALL_MODELS: BEDROCK_MODELS[] = [
BEDROCK_MODELS.META_LLAMA3_2_3B_INSTRUCT, BEDROCK_MODELS.META_LLAMA3_2_3B_INSTRUCT,
BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT, BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT,
BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT, BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT,
BEDROCK_MODELS.META_LLAMA3_3_70B_INSTRUCT,
BEDROCK_MODELS.AMAZON_NOVA_PRO_1, BEDROCK_MODELS.AMAZON_NOVA_PRO_1,
BEDROCK_MODELS.AMAZON_NOVA_LITE_1, BEDROCK_MODELS.AMAZON_NOVA_LITE_1,
BEDROCK_MODELS.AMAZON_NOVA_MICRO_1, BEDROCK_MODELS.AMAZON_NOVA_MICRO_1,
@@ -318,6 +325,7 @@ export const BEDROCK_MODEL_MAX_TOKENS: Partial<Record<BEDROCK_MODELS, number>> =
[BEDROCK_MODELS.META_LLAMA3_2_3B_INSTRUCT]: 2048, [BEDROCK_MODELS.META_LLAMA3_2_3B_INSTRUCT]: 2048,
[BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT]: 2048, [BEDROCK_MODELS.META_LLAMA3_2_11B_INSTRUCT]: 2048,
[BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT]: 2048, [BEDROCK_MODELS.META_LLAMA3_2_90B_INSTRUCT]: 2048,
[BEDROCK_MODELS.META_LLAMA3_3_70B_INSTRUCT]: 2048,
}; };
const DEFAULT_BEDROCK_PARAMS = { const DEFAULT_BEDROCK_PARAMS = {
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/core # @llamaindex/core
## 0.5.6
### Patch Changes
- beb922b: Fix edge runtime builds by adding missing packages to env package. Make gpt-tokenizer optional for llamaindex to reduce package size.
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
## 0.5.5 ## 0.5.5
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/core", "name": "@llamaindex/core",
"type": "module", "type": "module",
"version": "0.5.5", "version": "0.5.6",
"description": "LlamaIndex Core Module", "description": "LlamaIndex Core Module",
"exports": { "exports": {
"./agent": { "./agent": {
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/env # @llamaindex/env
## 0.1.29
### Patch Changes
- beb922b: Fix edge runtime builds by adding missing packages to env package. Make gpt-tokenizer optional for llamaindex to reduce package size.
## 0.1.28 ## 0.1.28
### Patch Changes ### Patch Changes
+8 -17
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/env", "name": "@llamaindex/env",
"description": "environment wrapper, supports all JS environment including node, deno, bun, edge runtime, and cloudflare worker", "description": "environment wrapper, supports all JS environment including node, deno, bun, edge runtime, and cloudflare worker",
"version": "0.1.28", "version": "0.1.29",
"type": "module", "type": "module",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"module": "dist/index.js", "module": "dist/index.js",
@@ -120,31 +120,22 @@
"@types/node": "^22.9.0", "@types/node": "^22.9.0",
"@types/readable-stream": "^4.0.15", "@types/readable-stream": "^4.0.15",
"bunchee": "6.3.4", "bunchee": "6.3.4",
"gpt-tokenizer": "^2.6.2",
"pathe": "^1.1.2",
"vitest": "^2.1.5" "vitest": "^2.1.5"
}, },
"peerDependencies": { "dependencies": {
"pathe": "^1.1.2",
"@aws-crypto/sha256-js": "^5.2.0", "@aws-crypto/sha256-js": "^5.2.0",
"js-tiktoken": "^1.0.12"
},
"peerDependencies": {
"@huggingface/transformers": "^3.0.2", "@huggingface/transformers": "^3.0.2",
"gpt-tokenizer": "^2.5.0", "gpt-tokenizer": "^2.5.0"
"js-tiktoken": "^1.0.12",
"pathe": "^1.1.2"
}, },
"peerDependenciesMeta": { "peerDependenciesMeta": {
"@aws-crypto/sha256-js": {
"optional": true
},
"@huggingface/transformers": { "@huggingface/transformers": {
"optional": true "optional": true
}, },
"pathe": { "gpt-tokenizer": {
"optional": true
},
"tiktoken": {
"optional": true
},
"js-tiktoken": {
"optional": true "optional": true
} }
} }
+37 -9
View File
@@ -1,20 +1,48 @@
import { getEncoding } from "js-tiktoken";
import type { Tokenizer } from "./types.js"; import type { Tokenizer } from "./types.js";
import { Tokenizers } from "./types.js"; import { Tokenizers } from "./types.js";
import cl100kBase from "gpt-tokenizer"; function tryLoadGptTokenizer() {
try {
// eslint-disable-next-line @typescript-eslint/no-require-imports
return require("gpt-tokenizer"); // using require for CommonJS compatibility
} catch (e) {
return null;
}
}
const gptTokenizerModule = tryLoadGptTokenizer();
class TokenizerSingleton { class TokenizerSingleton {
#defaultTokenizer: Tokenizer; #defaultTokenizer: Tokenizer;
constructor() { constructor() {
this.#defaultTokenizer = { // Use gpt-tokenizer if available, otherwise use js-tiktoken
encode: (text: string): Uint32Array => { if (gptTokenizerModule) {
return new Uint32Array(cl100kBase.encode(text)); this.#defaultTokenizer = {
}, encode: (text: string): Uint32Array => {
decode: (tokens: Uint32Array) => { return new Uint32Array(gptTokenizerModule.encode(text));
return cl100kBase.decode(tokens); },
}, decode: (tokens: Uint32Array): string => {
}; return gptTokenizerModule.decode(Array.from(tokens));
},
};
} else {
// Fall back to js-tiktoken which is always available
// Note: js-tiktoken it's 60x slower than gpt-tokenizer
const encoding = getEncoding("cl100k_base");
this.#defaultTokenizer = {
encode: (text: string) => {
return new Uint32Array(encoding.encode(text));
},
decode: (tokens: Uint32Array) => {
const numberArray = Array.from(tokens);
const text = encoding.decode(numberArray);
const uint8Array = new TextEncoder().encode(text);
return new TextDecoder().decode(uint8Array);
},
};
}
} }
tokenizer(encoding?: Tokenizers): Tokenizer { tokenizer(encoding?: Tokenizers): Tokenizer {
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/experimental # @llamaindex/experimental
## 0.0.157
### Patch Changes
- Updated dependencies [beb922b]
- llamaindex@0.9.7
## 0.0.156 ## 0.0.156
### Patch Changes ### Patch Changes
+2 -4
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/experimental", "name": "@llamaindex/experimental",
"description": "Experimental package for LlamaIndexTS", "description": "Experimental package for LlamaIndexTS",
"version": "0.0.156", "version": "0.0.157",
"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",
@@ -55,12 +55,10 @@
"dev": "concurrently \"pnpm run build:esm --watch\" \"pnpm run build:cjs --watch\" \"pnpm run build:type --watch\"" "dev": "concurrently \"pnpm run build:esm --watch\" \"pnpm run build:cjs --watch\" \"pnpm run build:type --watch\""
}, },
"devDependencies": { "devDependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@swc/cli": "^0.5.0", "@swc/cli": "^0.5.0",
"@swc/core": "^1.9.2", "@swc/core": "^1.9.2",
"@types/jsonpath": "^0.2.4", "@types/jsonpath": "^0.2.4",
"concurrently": "^9.1.0", "concurrently": "^9.1.0"
"pathe": "^1.1.2"
}, },
"dependencies": { "dependencies": {
"@types/lodash": "^4.17.7", "@types/lodash": "^4.17.7",
+13
View File
@@ -1,5 +1,18 @@
# llamaindex # llamaindex
## 0.9.7
### Patch Changes
- beb922b: Fix edge runtime builds by adding missing packages to env package. Make gpt-tokenizer optional for llamaindex to reduce package size.
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
- @llamaindex/cloud@3.0.7
- @llamaindex/node-parser@1.0.6
- @llamaindex/openai@0.1.58
- @llamaindex/workflow@0.0.13
## 0.9.6 ## 0.9.6
### Patch Changes ### Patch Changes
+2 -3
View File
@@ -1,6 +1,6 @@
{ {
"name": "llamaindex", "name": "llamaindex",
"version": "0.9.6", "version": "0.9.7",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"keywords": [ "keywords": [
@@ -30,8 +30,7 @@
"@types/node": "^22.9.0", "@types/node": "^22.9.0",
"ajv": "^8.17.1", "ajv": "^8.17.1",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"magic-bytes.js": "^1.10.0", "magic-bytes.js": "^1.10.0"
"gpt-tokenizer": "^2.6.2"
}, },
"devDependencies": { "devDependencies": {
"@swc/cli": "^0.5.0", "@swc/cli": "^0.5.0",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/node-parser # @llamaindex/node-parser
## 1.0.6
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 1.0.5 ## 1.0.5
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/node-parser", "name": "@llamaindex/node-parser",
"version": "1.0.5", "version": "1.0.6",
"description": "Node parser for LlamaIndex", "description": "Node parser for LlamaIndex",
"type": "module", "type": "module",
"exports": { "exports": {
@@ -1,5 +1,13 @@
# @llamaindex/anthropic # @llamaindex/anthropic
## 0.2.4
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.2.3 ## 0.2.3
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/anthropic", "name": "@llamaindex/anthropic",
"description": "Anthropic Adapter for LlamaIndex", "description": "Anthropic Adapter for LlamaIndex",
"version": "0.2.3", "version": "0.2.4",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
+9
View File
@@ -1,5 +1,14 @@
# @llamaindex/clip # @llamaindex/clip
## 0.0.42
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
- @llamaindex/openai@0.1.58
## 0.0.41 ## 0.0.41
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/clip", "name": "@llamaindex/clip",
"description": "Clip Embedding Adapter for LlamaIndex", "description": "Clip Embedding Adapter for LlamaIndex",
"version": "0.0.41", "version": "0.0.42",
"type": "module", "type": "module",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"main": "dist/index.cjs", "main": "dist/index.cjs",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/cohere # @llamaindex/cohere
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/cohere", "name": "@llamaindex/cohere",
"description": "Cohere Adapter for LlamaIndex", "description": "Cohere Adapter for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,14 @@
# @llamaindex/deepinfra # @llamaindex/deepinfra
## 0.0.42
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
- @llamaindex/openai@0.1.58
## 0.0.41 ## 0.0.41
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/deepinfra", "name": "@llamaindex/deepinfra",
"description": "Deepinfra Adapter for LlamaIndex", "description": "Deepinfra Adapter for LlamaIndex",
"version": "0.0.41", "version": "0.0.42",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/google # @llamaindex/google
## 0.0.13
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.12 ## 0.0.12
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/google", "name": "@llamaindex/google",
"description": "Google Adapter for LlamaIndex", "description": "Google Adapter for LlamaIndex",
"version": "0.0.12", "version": "0.0.13",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/groq # @llamaindex/groq
## 0.0.57
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/openai@0.1.58
## 0.0.56 ## 0.0.56
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/groq", "name": "@llamaindex/groq",
"description": "Groq Adapter for LlamaIndex", "description": "Groq Adapter for LlamaIndex",
"version": "0.0.56", "version": "0.0.57",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,14 @@
# @llamaindex/huggingface # @llamaindex/huggingface
## 0.0.42
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
- @llamaindex/openai@0.1.58
## 0.0.41 ## 0.0.41
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/huggingface", "name": "@llamaindex/huggingface",
"description": "Huggingface Adapter for LlamaIndex", "description": "Huggingface Adapter for LlamaIndex",
"version": "0.0.41", "version": "0.0.42",
"type": "module", "type": "module",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"main": "dist/index.cjs", "main": "dist/index.cjs",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/mistral # @llamaindex/mistral
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/mistral", "name": "@llamaindex/mistral",
"description": "Mistral Adapter for LlamaIndex", "description": "Mistral Adapter for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/mixedbread # @llamaindex/mixedbread
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/mixedbread", "name": "@llamaindex/mixedbread",
"description": "Mixedbread Adapter for LlamaIndex", "description": "Mixedbread Adapter for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/ollama # @llamaindex/ollama
## 0.0.46
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.45 ## 0.0.45
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/ollama", "name": "@llamaindex/ollama",
"description": "Ollama Adapter for LlamaIndex", "description": "Ollama Adapter for LlamaIndex",
"version": "0.0.45", "version": "0.0.46",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/openai # @llamaindex/openai
## 0.1.58
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.1.57 ## 0.1.57
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/openai", "name": "@llamaindex/openai",
"description": "OpenAI Adapter for LlamaIndex", "description": "OpenAI Adapter for LlamaIndex",
"version": "0.1.57", "version": "0.1.58",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/portkey-ai # @llamaindex/portkey-ai
## 0.0.39
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.38 ## 0.0.38
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/portkey-ai", "name": "@llamaindex/portkey-ai",
"description": "Portkey Adapter for LlamaIndex", "description": "Portkey Adapter for LlamaIndex",
"version": "0.0.38", "version": "0.0.39",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/replicate # @llamaindex/replicate
## 0.0.39
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.38 ## 0.0.38
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/replicate", "name": "@llamaindex/replicate",
"description": "Replicate Adapter for LlamaIndex", "description": "Replicate Adapter for LlamaIndex",
"version": "0.0.38", "version": "0.0.39",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/astra # @llamaindex/astra
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/astra", "name": "@llamaindex/astra",
"description": "Astra Storage for LlamaIndex", "description": "Astra Storage for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/azure # @llamaindex/azure
## 0.1.6
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.1.5 ## 0.1.5
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/azure", "name": "@llamaindex/azure",
"description": "Azure Storage for LlamaIndex", "description": "Azure Storage for LlamaIndex",
"version": "0.1.5", "version": "0.1.6",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/chroma # @llamaindex/chroma
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/chroma", "name": "@llamaindex/chroma",
"description": "Chroma Storage for LlamaIndex", "description": "Chroma Storage for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/firestore # @llamaindex/firestore
## 1.0.4
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 1.0.3 ## 1.0.3
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/firestore", "name": "@llamaindex/firestore",
"description": "Firestore Storage for LlamaIndex", "description": "Firestore Storage for LlamaIndex",
"version": "1.0.3", "version": "1.0.4",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/milvus # @llamaindex/milvus
## 0.1.6
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.1.5 ## 0.1.5
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/milvus", "name": "@llamaindex/milvus",
"description": "Milvus Storage for LlamaIndex", "description": "Milvus Storage for LlamaIndex",
"version": "0.1.5", "version": "0.1.6",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/mongodb # @llamaindex/mongodb
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/mongodb", "name": "@llamaindex/mongodb",
"description": "MongoDB Storage for LlamaIndex", "description": "MongoDB Storage for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/pinecone # @llamaindex/pinecone
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/pinecone", "name": "@llamaindex/pinecone",
"description": "Pinecone Storage for LlamaIndex", "description": "Pinecone Storage for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/postgres # @llamaindex/postgres
## 0.0.39
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.38 ## 0.0.38
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/postgres", "name": "@llamaindex/postgres",
"description": "PostgreSQL Storage for LlamaIndex", "description": "PostgreSQL Storage for LlamaIndex",
"version": "0.0.38", "version": "0.0.39",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/qdrant # @llamaindex/qdrant
## 0.1.6
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.1.5 ## 0.1.5
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/qdrant", "name": "@llamaindex/qdrant",
"description": "Qdrant Storage for LlamaIndex", "description": "Qdrant Storage for LlamaIndex",
"version": "0.1.5", "version": "0.1.6",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/upstash # @llamaindex/upstash
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/upstash", "name": "@llamaindex/upstash",
"description": "Upstash Storage for LlamaIndex", "description": "Upstash Storage for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/weaviate # @llamaindex/weaviate
## 0.0.11
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.10 ## 0.0.10
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/weaviate", "name": "@llamaindex/weaviate",
"description": "Weaviate Storage for LlamaIndex", "description": "Weaviate Storage for LlamaIndex",
"version": "0.0.10", "version": "0.0.11",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/vercel # @llamaindex/vercel
## 0.0.17
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/core@0.5.6
## 0.0.16 ## 0.0.16
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/vercel", "name": "@llamaindex/vercel",
"description": "Vercel Adapter for LlamaIndex", "description": "Vercel Adapter for LlamaIndex",
"version": "0.0.16", "version": "0.0.17",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/vllm # @llamaindex/vllm
## 0.0.28
### Patch Changes
- @llamaindex/openai@0.1.58
## 0.0.27 ## 0.0.27
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/vllm", "name": "@llamaindex/vllm",
"description": "vLLM Adapter for LlamaIndex", "description": "vLLM Adapter for LlamaIndex",
"version": "0.0.27", "version": "0.0.28",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,13 @@
# @llamaindex/voyage-ai # @llamaindex/voyage-ai
## 1.0.3
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 1.0.2 ## 1.0.2
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/voyage-ai", "name": "@llamaindex/voyage-ai",
"description": "VoyageAI Adapter for LlamaIndex", "description": "VoyageAI Adapter for LlamaIndex",
"version": "1.0.2", "version": "1.0.3",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/readers # @llamaindex/readers
## 2.0.6
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 2.0.5 ## 2.0.5
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/readers", "name": "@llamaindex/readers",
"description": "LlamaIndex Readers", "description": "LlamaIndex Readers",
"version": "2.0.5", "version": "2.0.6",
"type": "module", "type": "module",
"exports": { "exports": {
"./node/hook": "./node/dist/hook.js", "./node/hook": "./node/dist/hook.js",
+8
View File
@@ -1,5 +1,13 @@
# @llamaindex/workflow # @llamaindex/workflow
## 0.0.13
### Patch Changes
- Updated dependencies [beb922b]
- @llamaindex/env@0.1.29
- @llamaindex/core@0.5.6
## 0.0.12 ## 0.0.12
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/workflow", "name": "@llamaindex/workflow",
"description": "Workflow API", "description": "Workflow API",
"version": "0.0.12", "version": "0.0.13",
"type": "module", "type": "module",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"module": "dist/index.js", "module": "dist/index.js",
+40 -52
View File
@@ -596,103 +596,103 @@ importers:
specifier: ^12.1.0 specifier: ^12.1.0
version: 12.1.0 version: 12.1.0
'@llamaindex/anthropic': '@llamaindex/anthropic':
specifier: ^0.2.3 specifier: ^0.2.4
version: link:../packages/providers/anthropic version: link:../packages/providers/anthropic
'@llamaindex/astra': '@llamaindex/astra':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/storage/astra version: link:../packages/providers/storage/astra
'@llamaindex/azure': '@llamaindex/azure':
specifier: ^0.1.5 specifier: ^0.1.6
version: link:../packages/providers/storage/azure version: link:../packages/providers/storage/azure
'@llamaindex/chroma': '@llamaindex/chroma':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/storage/chroma version: link:../packages/providers/storage/chroma
'@llamaindex/clip': '@llamaindex/clip':
specifier: ^0.0.41 specifier: ^0.0.42
version: link:../packages/providers/clip version: link:../packages/providers/clip
'@llamaindex/cloud': '@llamaindex/cloud':
specifier: ^3.0.6 specifier: ^3.0.7
version: link:../packages/cloud version: link:../packages/cloud
'@llamaindex/cohere': '@llamaindex/cohere':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/cohere version: link:../packages/providers/cohere
'@llamaindex/core': '@llamaindex/core':
specifier: ^0.5.5 specifier: ^0.5.6
version: link:../packages/core version: link:../packages/core
'@llamaindex/deepinfra': '@llamaindex/deepinfra':
specifier: ^0.0.41 specifier: ^0.0.42
version: link:../packages/providers/deepinfra version: link:../packages/providers/deepinfra
'@llamaindex/env': '@llamaindex/env':
specifier: ^0.1.28 specifier: ^0.1.29
version: link:../packages/env version: link:../packages/env
'@llamaindex/firestore': '@llamaindex/firestore':
specifier: ^1.0.3 specifier: ^1.0.4
version: link:../packages/providers/storage/firestore version: link:../packages/providers/storage/firestore
'@llamaindex/google': '@llamaindex/google':
specifier: ^0.0.12 specifier: ^0.0.13
version: link:../packages/providers/google version: link:../packages/providers/google
'@llamaindex/groq': '@llamaindex/groq':
specifier: ^0.0.56 specifier: ^0.0.57
version: link:../packages/providers/groq version: link:../packages/providers/groq
'@llamaindex/huggingface': '@llamaindex/huggingface':
specifier: ^0.0.41 specifier: ^0.0.42
version: link:../packages/providers/huggingface version: link:../packages/providers/huggingface
'@llamaindex/milvus': '@llamaindex/milvus':
specifier: ^0.1.5 specifier: ^0.1.6
version: link:../packages/providers/storage/milvus version: link:../packages/providers/storage/milvus
'@llamaindex/mistral': '@llamaindex/mistral':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/mistral version: link:../packages/providers/mistral
'@llamaindex/mixedbread': '@llamaindex/mixedbread':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/mixedbread version: link:../packages/providers/mixedbread
'@llamaindex/mongodb': '@llamaindex/mongodb':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/storage/mongodb version: link:../packages/providers/storage/mongodb
'@llamaindex/node-parser': '@llamaindex/node-parser':
specifier: ^1.0.5 specifier: ^1.0.6
version: link:../packages/node-parser version: link:../packages/node-parser
'@llamaindex/ollama': '@llamaindex/ollama':
specifier: ^0.0.45 specifier: ^0.0.46
version: link:../packages/providers/ollama version: link:../packages/providers/ollama
'@llamaindex/openai': '@llamaindex/openai':
specifier: ^0.1.57 specifier: ^0.1.58
version: link:../packages/providers/openai version: link:../packages/providers/openai
'@llamaindex/pinecone': '@llamaindex/pinecone':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/storage/pinecone version: link:../packages/providers/storage/pinecone
'@llamaindex/portkey-ai': '@llamaindex/portkey-ai':
specifier: ^0.0.38 specifier: ^0.0.39
version: link:../packages/providers/portkey-ai version: link:../packages/providers/portkey-ai
'@llamaindex/postgres': '@llamaindex/postgres':
specifier: ^0.0.38 specifier: ^0.0.39
version: link:../packages/providers/storage/postgres version: link:../packages/providers/storage/postgres
'@llamaindex/qdrant': '@llamaindex/qdrant':
specifier: ^0.1.5 specifier: ^0.1.6
version: link:../packages/providers/storage/qdrant version: link:../packages/providers/storage/qdrant
'@llamaindex/readers': '@llamaindex/readers':
specifier: ^2.0.5 specifier: ^2.0.6
version: link:../packages/readers version: link:../packages/readers
'@llamaindex/replicate': '@llamaindex/replicate':
specifier: ^0.0.38 specifier: ^0.0.39
version: link:../packages/providers/replicate version: link:../packages/providers/replicate
'@llamaindex/upstash': '@llamaindex/upstash':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/storage/upstash version: link:../packages/providers/storage/upstash
'@llamaindex/vercel': '@llamaindex/vercel':
specifier: ^0.0.16 specifier: ^0.0.17
version: link:../packages/providers/vercel version: link:../packages/providers/vercel
'@llamaindex/vllm': '@llamaindex/vllm':
specifier: ^0.0.27 specifier: ^0.0.28
version: link:../packages/providers/vllm version: link:../packages/providers/vllm
'@llamaindex/voyage-ai': '@llamaindex/voyage-ai':
specifier: ^1.0.2 specifier: ^1.0.3
version: link:../packages/providers/voyage-ai version: link:../packages/providers/voyage-ai
'@llamaindex/weaviate': '@llamaindex/weaviate':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/storage/weaviate version: link:../packages/providers/storage/weaviate
'@llamaindex/workflow': '@llamaindex/workflow':
specifier: ^0.0.12 specifier: ^0.0.13
version: link:../packages/workflow version: link:../packages/workflow
'@notionhq/client': '@notionhq/client':
specifier: ^2.2.15 specifier: ^2.2.15
@@ -719,14 +719,11 @@ importers:
specifier: ^1.0.14 specifier: ^1.0.14
version: 1.0.18 version: 1.0.18
llamaindex: llamaindex:
specifier: ^0.9.6 specifier: ^0.9.7
version: link:../packages/llamaindex version: link:../packages/llamaindex
mongodb: mongodb:
specifier: 6.7.0 specifier: 6.7.0
version: 6.7.0(@aws-sdk/credential-providers@3.744.0)(socks@2.8.4) version: 6.7.0(@aws-sdk/credential-providers@3.744.0)(socks@2.8.4)
pathe:
specifier: ^1.1.2
version: 1.1.2
postgres: postgres:
specifier: ^3.4.4 specifier: ^3.4.4
version: 3.4.5 version: 3.4.5
@@ -1002,9 +999,15 @@ importers:
'@aws-crypto/sha256-js': '@aws-crypto/sha256-js':
specifier: ^5.2.0 specifier: ^5.2.0
version: 5.2.0 version: 5.2.0
gpt-tokenizer:
specifier: ^2.5.0
version: 2.8.1
js-tiktoken: js-tiktoken:
specifier: ^1.0.12 specifier: ^1.0.12
version: 1.0.18 version: 1.0.18
pathe:
specifier: ^1.1.2
version: 1.1.2
devDependencies: devDependencies:
'@huggingface/transformers': '@huggingface/transformers':
specifier: ^3.0.2 specifier: ^3.0.2
@@ -1018,12 +1021,6 @@ importers:
bunchee: bunchee:
specifier: 6.3.4 specifier: 6.3.4
version: 6.3.4(patch_hash=pavboztthlgni7m5gzw7643oru)(typescript@5.7.3) version: 6.3.4(patch_hash=pavboztthlgni7m5gzw7643oru)(typescript@5.7.3)
gpt-tokenizer:
specifier: ^2.6.2
version: 2.8.1
pathe:
specifier: ^1.1.2
version: 1.1.2
vitest: vitest:
specifier: ^2.1.5 specifier: ^2.1.5
version: 2.1.5(@edge-runtime/vm@4.0.4)(@types/node@22.9.0)(happy-dom@15.11.7)(msw@2.7.0(@types/node@22.9.0)(typescript@5.7.3))(terser@5.38.2) version: 2.1.5(@edge-runtime/vm@4.0.4)(@types/node@22.9.0)(happy-dom@15.11.7)(msw@2.7.0(@types/node@22.9.0)(typescript@5.7.3))(terser@5.38.2)
@@ -1046,9 +1043,6 @@ importers:
specifier: ^4.17.21 specifier: ^4.17.21
version: 4.17.21 version: 4.17.21
devDependencies: devDependencies:
'@aws-crypto/sha256-js':
specifier: ^5.2.0
version: 5.2.0
'@swc/cli': '@swc/cli':
specifier: ^0.5.0 specifier: ^0.5.0
version: 0.5.2(@swc/core@1.10.15(@swc/helpers@0.5.15))(chokidar@3.6.0) version: 0.5.2(@swc/core@1.10.15(@swc/helpers@0.5.15))(chokidar@3.6.0)
@@ -1061,9 +1055,6 @@ importers:
concurrently: concurrently:
specifier: ^9.1.0 specifier: ^9.1.0
version: 9.1.2 version: 9.1.2
pathe:
specifier: ^1.1.2
version: 1.1.2
packages/llamaindex: packages/llamaindex:
dependencies: dependencies:
@@ -1094,9 +1085,6 @@ importers:
ajv: ajv:
specifier: ^8.17.1 specifier: ^8.17.1
version: 8.17.1 version: 8.17.1
gpt-tokenizer:
specifier: ^2.6.2
version: 2.8.1
lodash: lodash:
specifier: ^4.17.21 specifier: ^4.17.21
version: 4.17.21 version: 4.17.21

Some files were not shown because too many files have changed in this diff Show More