Compare commits

..

2 Commits

Author SHA1 Message Date
github-actions[bot] b2634e47ca Release 0.9.5 (#1694)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: marcusschiesser <17126+marcusschiesser@users.noreply.github.com>
2025-02-28 18:18:14 +07:00
Thuc Pham ad3c7f1ec1 fix: streaming issues with LLMAgent (#1692) 2025-02-28 18:13:36 +07:00
98 changed files with 589 additions and 130 deletions
+12
View File
@@ -1,5 +1,17 @@
# @llamaindex/doc # @llamaindex/doc
## 0.1.5
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
- @llamaindex/cloud@3.0.5
- llamaindex@0.9.5
- @llamaindex/node-parser@1.0.4
- @llamaindex/openai@0.1.56
- @llamaindex/readers@2.0.4
## 0.1.4 ## 0.1.4
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/doc", "name": "@llamaindex/doc",
"version": "0.1.4", "version": "0.1.5",
"private": true, "private": true,
"scripts": { "scripts": {
"build": "pnpm run build:docs && next build", "build": "pnpm run build:docs && next build",
@@ -1,5 +1,11 @@
# @llamaindex/cloudflare-worker-agent-test # @llamaindex/cloudflare-worker-agent-test
## 0.0.139
### Patch Changes
- llamaindex@0.9.5
## 0.0.138 ## 0.0.138
### Patch Changes ### Patch Changes
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/cloudflare-worker-agent-test", "name": "@llamaindex/cloudflare-worker-agent-test",
"version": "0.0.138", "version": "0.0.139",
"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.50
### Patch Changes
- @llamaindex/cloud@3.0.5
## 0.0.49 ## 0.0.49
### 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.49", "version": "0.0.50",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/next-agent-test # @llamaindex/next-agent-test
## 0.1.139
### Patch Changes
- llamaindex@0.9.5
## 0.1.138 ## 0.1.138
### 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.138", "version": "0.1.139",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
@@ -1,5 +1,11 @@
# test-edge-runtime # test-edge-runtime
## 0.1.138
### Patch Changes
- llamaindex@0.9.5
## 0.1.137 ## 0.1.137
### Patch Changes ### Patch Changes
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/nextjs-edge-runtime-test", "name": "@llamaindex/nextjs-edge-runtime-test",
"version": "0.1.137", "version": "0.1.138",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
@@ -1,5 +1,13 @@
# @llamaindex/next-node-runtime # @llamaindex/next-node-runtime
## 0.1.5
### Patch Changes
- llamaindex@0.9.5
- @llamaindex/huggingface@0.0.40
- @llamaindex/readers@2.0.4
## 0.1.4 ## 0.1.4
### Patch Changes ### Patch Changes
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/next-node-runtime-test", "name": "@llamaindex/next-node-runtime-test",
"version": "0.1.4", "version": "0.1.5",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
@@ -1,5 +1,11 @@
# vite-import-llamaindex # vite-import-llamaindex
## 0.0.5
### Patch Changes
- llamaindex@0.9.5
## 0.0.4 ## 0.0.4
### Patch Changes ### Patch Changes
@@ -1,7 +1,7 @@
{ {
"name": "vite-import-llamaindex", "name": "vite-import-llamaindex",
"private": true, "private": true,
"version": "0.0.4", "version": "0.0.5",
"type": "module", "type": "module",
"scripts": { "scripts": {
"build": "vite build", "build": "vite build",
@@ -1,5 +1,11 @@
# @llamaindex/waku-query-engine-test # @llamaindex/waku-query-engine-test
## 0.0.139
### Patch Changes
- llamaindex@0.9.5
## 0.0.138 ## 0.0.138
### 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.138", "version": "0.0.139",
"type": "module", "type": "module",
"private": true, "private": true,
"scripts": { "scripts": {
+38
View File
@@ -1,5 +1,43 @@
# examples # examples
## 0.2.4
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
- @llamaindex/cloud@3.0.5
- llamaindex@0.9.5
- @llamaindex/node-parser@1.0.4
- @llamaindex/anthropic@0.2.2
- @llamaindex/clip@0.0.40
- @llamaindex/cohere@0.0.9
- @llamaindex/deepinfra@0.0.40
- @llamaindex/google@0.0.11
- @llamaindex/huggingface@0.0.40
- @llamaindex/mistral@0.0.9
- @llamaindex/mixedbread@0.0.9
- @llamaindex/ollama@0.0.44
- @llamaindex/openai@0.1.56
- @llamaindex/portkey-ai@0.0.37
- @llamaindex/replicate@0.0.37
- @llamaindex/astra@0.0.9
- @llamaindex/azure@0.1.4
- @llamaindex/chroma@0.0.9
- @llamaindex/firestore@1.0.2
- @llamaindex/milvus@0.1.4
- @llamaindex/mongodb@0.0.9
- @llamaindex/pinecone@0.0.9
- @llamaindex/postgres@0.0.37
- @llamaindex/qdrant@0.1.4
- @llamaindex/upstash@0.0.9
- @llamaindex/weaviate@0.0.9
- @llamaindex/vercel@0.0.15
- @llamaindex/voyage-ai@1.0.1
- @llamaindex/readers@2.0.4
- @llamaindex/groq@0.0.55
- @llamaindex/vllm@0.0.26
## 0.2.3 ## 0.2.3
### Patch Changes ### Patch Changes
+25
View File
@@ -0,0 +1,25 @@
import { LLMAgent } from "llamaindex";
import { stdin as input, stdout as output } from "node:process";
import readline from "node:readline/promises";
const agent = new LLMAgent({ tools: [] });
(async () => {
const rl = readline.createInterface({ input, output });
while (true) {
const query = await rl.question("User: ");
const startTime = Date.now();
const stream = await agent.chat({ message: query, stream: true });
const timeToGetFirstChunk = Date.now() - startTime;
process.stdout.write(
`Time to get first chunk from LLMAgent: ${timeToGetFirstChunk}ms\n`,
);
process.stdout.write("Assistant with LLMAgent: ");
for await (const chunk of stream) {
process.stdout.write(chunk.response);
}
process.stdout.write("\n");
}
})();
+33 -33
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/examples", "name": "@llamaindex/examples",
"version": "0.2.3", "version": "0.2.4",
"private": true, "private": true,
"scripts": { "scripts": {
"lint": "eslint .", "lint": "eslint .",
@@ -11,38 +11,38 @@
"@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.1", "@llamaindex/anthropic": "^0.2.2",
"@llamaindex/astra": "^0.0.8", "@llamaindex/astra": "^0.0.9",
"@llamaindex/azure": "^0.1.3", "@llamaindex/azure": "^0.1.4",
"@llamaindex/chroma": "^0.0.8", "@llamaindex/chroma": "^0.0.9",
"@llamaindex/clip": "^0.0.39", "@llamaindex/clip": "^0.0.40",
"@llamaindex/cloud": "^3.0.4", "@llamaindex/cloud": "^3.0.5",
"@llamaindex/cohere": "^0.0.8", "@llamaindex/cohere": "^0.0.9",
"@llamaindex/core": "^0.5.3", "@llamaindex/core": "^0.5.4",
"@llamaindex/deepinfra": "^0.0.39", "@llamaindex/deepinfra": "^0.0.40",
"@llamaindex/env": "^0.1.28", "@llamaindex/env": "^0.1.28",
"@llamaindex/firestore": "^1.0.1", "@llamaindex/firestore": "^1.0.2",
"@llamaindex/google": "^0.0.10", "@llamaindex/google": "^0.0.11",
"@llamaindex/groq": "^0.0.54", "@llamaindex/groq": "^0.0.55",
"@llamaindex/huggingface": "^0.0.39", "@llamaindex/huggingface": "^0.0.40",
"@llamaindex/milvus": "^0.1.3", "@llamaindex/milvus": "^0.1.4",
"@llamaindex/mistral": "^0.0.8", "@llamaindex/mistral": "^0.0.9",
"@llamaindex/mixedbread": "^0.0.8", "@llamaindex/mixedbread": "^0.0.9",
"@llamaindex/mongodb": "^0.0.8", "@llamaindex/mongodb": "^0.0.9",
"@llamaindex/node-parser": "^1.0.3", "@llamaindex/node-parser": "^1.0.4",
"@llamaindex/ollama": "^0.0.43", "@llamaindex/ollama": "^0.0.44",
"@llamaindex/openai": "^0.1.55", "@llamaindex/openai": "^0.1.56",
"@llamaindex/pinecone": "^0.0.8", "@llamaindex/pinecone": "^0.0.9",
"@llamaindex/portkey-ai": "^0.0.36", "@llamaindex/portkey-ai": "^0.0.37",
"@llamaindex/postgres": "^0.0.36", "@llamaindex/postgres": "^0.0.37",
"@llamaindex/qdrant": "^0.1.3", "@llamaindex/qdrant": "^0.1.4",
"@llamaindex/readers": "^2.0.3", "@llamaindex/readers": "^2.0.4",
"@llamaindex/replicate": "^0.0.36", "@llamaindex/replicate": "^0.0.37",
"@llamaindex/upstash": "^0.0.8", "@llamaindex/upstash": "^0.0.9",
"@llamaindex/vercel": "^0.0.14", "@llamaindex/vercel": "^0.0.15",
"@llamaindex/vllm": "^0.0.25", "@llamaindex/vllm": "^0.0.26",
"@llamaindex/voyage-ai": "^1.0.0", "@llamaindex/voyage-ai": "^1.0.1",
"@llamaindex/weaviate": "^0.0.8", "@llamaindex/weaviate": "^0.0.9",
"@llamaindex/workflow": "^0.0.11", "@llamaindex/workflow": "^0.0.11",
"@notionhq/client": "^2.2.15", "@notionhq/client": "^2.2.15",
"@pinecone-database/pinecone": "^4.0.0", "@pinecone-database/pinecone": "^4.0.0",
@@ -52,7 +52,7 @@
"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.4", "llamaindex": "^0.9.5",
"mongodb": "6.7.0", "mongodb": "6.7.0",
"pathe": "^1.1.2", "pathe": "^1.1.2",
"postgres": "^3.4.4", "postgres": "^3.4.4",
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/autotool # @llamaindex/autotool
## 6.0.5
### Patch Changes
- llamaindex@0.9.5
## 6.0.4 ## 6.0.4
### Patch Changes ### Patch Changes
@@ -1,5 +1,12 @@
# @llamaindex/autotool-01-node-example # @llamaindex/autotool-01-node-example
## 0.0.86
### Patch Changes
- llamaindex@0.9.5
- @llamaindex/autotool@6.0.5
## 0.0.85 ## 0.0.85
### 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.85" "version": "0.0.86"
} }
@@ -1,5 +1,12 @@
# @llamaindex/autotool-02-next-example # @llamaindex/autotool-02-next-example
## 0.1.130
### Patch Changes
- llamaindex@0.9.5
- @llamaindex/autotool@6.0.5
## 0.1.129 ## 0.1.129
### 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.129", "version": "0.1.130",
"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.4", "version": "6.0.5",
"description": "auto transpile your JS function to LLM Agent compatible", "description": "auto transpile your JS function to LLM Agent compatible",
"files": [ "files": [
"dist", "dist",
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/cloud # @llamaindex/cloud
## 3.0.5
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 3.0.4 ## 3.0.4
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/cloud", "name": "@llamaindex/cloud",
"version": "3.0.4", "version": "3.0.5",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/community # @llamaindex/community
## 0.0.86
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.85 ## 0.0.85
### 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.85", "version": "0.0.86",
"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",
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/core # @llamaindex/core
## 0.5.4
### Patch Changes
- ad3c7f1: fix: streaming issues with LLMAgent
## 0.5.3 ## 0.5.3
### 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.3", "version": "0.5.4",
"description": "LlamaIndex Core Module", "description": "LlamaIndex Core Module",
"exports": { "exports": {
"./agent": { "./agent": {
+26 -18
View File
@@ -193,7 +193,7 @@ export abstract class AgentWorker<
return new ReadableStream< return new ReadableStream<
TaskStepOutput<AI, Store, AdditionalMessageOptions, AdditionalChatOptions> TaskStepOutput<AI, Store, AdditionalMessageOptions, AdditionalChatOptions>
>({ >({
start: async (controller) => { pull: async (controller) => {
for await (const stepOutput of taskOutputStream) { for await (const stepOutput of taskOutputStream) {
this.#taskSet.add(stepOutput.taskStep); this.#taskSet.add(stepOutput.taskStep);
if (stepOutput.isLast) { if (stepOutput.isLast) {
@@ -209,23 +209,31 @@ export abstract class AgentWorker<
} }
const { output, taskStep } = stepOutput; const { output, taskStep } = stepOutput;
if (output instanceof ReadableStream) { if (output instanceof ReadableStream) {
const [pipStream, finalStream] = output.tee(); let content = "";
stepOutput.output = finalStream; let options: AdditionalMessageOptions | undefined = undefined;
const reader = pipStream.getReader(); const transformedStream = output.pipeThrough(
const { value } = await reader.read(); new TransformStream({
reader.releaseLock(); transform(chunk, controller) {
let content: string = value!.delta; content += chunk.delta;
for await (const chunk of pipStream) { if (!options && chunk.options) {
content += chunk.delta; options = chunk.options;
} }
taskStep.context.store.messages = [ controller.enqueue(chunk); // Pass the chunk through unchanged
...taskStep.context.store.messages, },
{ // When stream finishes, store the accumulated message in context
role: "assistant", flush() {
content, taskStep.context.store.messages = [
options: value!.options, ...taskStep.context.store.messages,
}, {
]; role: "assistant",
content,
options,
},
];
},
}),
);
stepOutput.output = transformedStream;
} }
controller.enqueue(stepOutput); controller.enqueue(stepOutput);
controller.close(); controller.close();
+61 -1
View File
@@ -1,4 +1,5 @@
import { validateAgentParams } from "@llamaindex/core/agent"; import { LLMAgent, validateAgentParams } from "@llamaindex/core/agent";
import { MockLLM } from "@llamaindex/core/utils";
import { expect, test } from "vitest"; import { expect, test } from "vitest";
import { ZodError } from "zod"; import { ZodError } from "zod";
@@ -33,3 +34,62 @@ test("validate agent params", () => {
], ],
}); });
}); });
test("LLMAgent streaming: first chunk should be available immediately", async () => {
const responseMessage =
"This is a very long response message that should take a while to stream";
const timeBetweenToken = 20; // delay time between tokens
const agent = new LLMAgent({
tools: [],
llm: new MockLLM({ responseMessage, timeBetweenToken }),
});
const startTime = Date.now();
const stream = await agent.chat({ message: "Hello", stream: true });
let fullResponse = "";
let timeToGetFirstChunk: number | undefined;
for await (const chunk of stream) {
expect(chunk).toHaveProperty("delta");
fullResponse += chunk.delta;
if (timeToGetFirstChunk === undefined) {
timeToGetFirstChunk = Date.now() - startTime;
}
}
expect(fullResponse).toBe(responseMessage);
// the first chunk should be available immediately and no need the whole response to be sent
expect(timeToGetFirstChunk).toBeLessThan(500);
});
test("LLMAgent create task: first task should be executed immediately", async () => {
const responseMessage =
"This is a very long response message that should take a while to stream";
const timeBetweenToken = 20; // delay time between tokens
const agent = new LLMAgent({
tools: [],
llm: new MockLLM({ responseMessage, timeBetweenToken }),
});
const startTime = Date.now();
const task = agent.createTask("Write a long paragraph", true, false, []);
let timeToGetFirstChunk: number | undefined;
let output: ReadableStream | undefined;
for await (const stepOutput of task) {
if (timeToGetFirstChunk === undefined) {
timeToGetFirstChunk = Date.now() - startTime;
}
if (stepOutput.output instanceof ReadableStream) {
output = stepOutput.output;
}
}
expect(timeToGetFirstChunk).toBeLessThan(500);
expect(output).toBeDefined();
expect(output).toBeInstanceOf(ReadableStream);
});
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/experimental # @llamaindex/experimental
## 0.0.155
### Patch Changes
- llamaindex@0.9.5
## 0.0.154 ## 0.0.154
### Patch Changes ### Patch Changes
+1 -1
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.154", "version": "0.0.155",
"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",
+10
View File
@@ -1,5 +1,15 @@
# llamaindex # llamaindex
## 0.9.5
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
- @llamaindex/cloud@3.0.5
- @llamaindex/node-parser@1.0.4
- @llamaindex/openai@0.1.56
## 0.9.4 ## 0.9.4
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "llamaindex", "name": "llamaindex",
"version": "0.9.4", "version": "0.9.5",
"license": "MIT", "license": "MIT",
"type": "module", "type": "module",
"keywords": [ "keywords": [
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/node-parser # @llamaindex/node-parser
## 1.0.4
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 1.0.3 ## 1.0.3
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "@llamaindex/node-parser", "name": "@llamaindex/node-parser",
"version": "1.0.3", "version": "1.0.4",
"description": "Node parser for LlamaIndex", "description": "Node parser for LlamaIndex",
"type": "module", "type": "module",
"exports": { "exports": {
@@ -1,5 +1,12 @@
# @llamaindex/anthropic # @llamaindex/anthropic
## 0.2.2
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.2.1 ## 0.2.1
### 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.1", "version": "0.2.2",
"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/clip # @llamaindex/clip
## 0.0.40
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
- @llamaindex/openai@0.1.56
## 0.0.39 ## 0.0.39
### 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.39", "version": "0.0.40",
"type": "module", "type": "module",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"main": "dist/index.cjs", "main": "dist/index.cjs",
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/cohere # @llamaindex/cohere
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"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/deepinfra # @llamaindex/deepinfra
## 0.0.40
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
- @llamaindex/openai@0.1.56
## 0.0.39 ## 0.0.39
### 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.39", "version": "0.0.40",
"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/google # @llamaindex/google
## 0.0.11
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.10 ## 0.0.10
### 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.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",
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/groq # @llamaindex/groq
## 0.0.55
### Patch Changes
- @llamaindex/openai@0.1.56
## 0.0.54 ## 0.0.54
### 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.54", "version": "0.0.55",
"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/huggingface # @llamaindex/huggingface
## 0.0.40
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
- @llamaindex/openai@0.1.56
## 0.0.39 ## 0.0.39
### 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.39", "version": "0.0.40",
"type": "module", "type": "module",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"main": "dist/index.cjs", "main": "dist/index.cjs",
+7
View File
@@ -1,5 +1,12 @@
# @llamaindex/mistral # @llamaindex/mistral
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/mixedbread # @llamaindex/mixedbread
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"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/ollama # @llamaindex/ollama
## 0.0.44
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.43 ## 0.0.43
### 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.43", "version": "0.0.44",
"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/openai # @llamaindex/openai
## 0.1.56
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.1.55 ## 0.1.55
### 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.55", "version": "0.1.56",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/portkey-ai # @llamaindex/portkey-ai
## 0.0.37
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.36 ## 0.0.36
### 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.36", "version": "0.0.37",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/replicate # @llamaindex/replicate
## 0.0.37
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.36 ## 0.0.36
### 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.36", "version": "0.0.37",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/astra # @llamaindex/astra
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/azure # @llamaindex/azure
## 0.1.4
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.1.3 ## 0.1.3
### 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.3", "version": "0.1.4",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/chroma # @llamaindex/chroma
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/firestore # @llamaindex/firestore
## 1.0.2
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 1.0.1 ## 1.0.1
### 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.1", "version": "1.0.2",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/milvus # @llamaindex/milvus
## 0.1.4
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.1.3 ## 0.1.3
### 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.3", "version": "0.1.4",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/mongodb # @llamaindex/mongodb
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/pinecone # @llamaindex/pinecone
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/postgres # @llamaindex/postgres
## 0.0.37
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.36 ## 0.0.36
### 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.36", "version": "0.0.37",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/qdrant # @llamaindex/qdrant
## 0.1.4
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.1.3 ## 0.1.3
### 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.3", "version": "0.1.4",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/upstash # @llamaindex/upstash
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/weaviate # @llamaindex/weaviate
## 0.0.9
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.8 ## 0.0.8
### 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.8", "version": "0.0.9",
"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.15
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 0.0.14 ## 0.0.14
### 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.14", "version": "0.0.15",
"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.26
### Patch Changes
- @llamaindex/openai@0.1.56
## 0.0.25 ## 0.0.25
### 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.25", "version": "0.0.26",
"type": "module", "type": "module",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
@@ -1,5 +1,12 @@
# @llamaindex/voyage-ai # @llamaindex/voyage-ai
## 1.0.1
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 1.0.0 ## 1.0.0
### Major Changes ### Major 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.0", "version": "1.0.1",
"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/readers # @llamaindex/readers
## 2.0.4
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
## 2.0.3 ## 2.0.3
### 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.3", "version": "2.0.4",
"type": "module", "type": "module",
"exports": { "exports": {
"./node/hook": "./node/dist/hook.js", "./node/hook": "./node/dist/hook.js",
+32 -32
View File
@@ -596,100 +596,100 @@ importers:
specifier: ^12.1.0 specifier: ^12.1.0
version: 12.1.0 version: 12.1.0
'@llamaindex/anthropic': '@llamaindex/anthropic':
specifier: ^0.2.1 specifier: ^0.2.2
version: link:../packages/providers/anthropic version: link:../packages/providers/anthropic
'@llamaindex/astra': '@llamaindex/astra':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/storage/astra version: link:../packages/providers/storage/astra
'@llamaindex/azure': '@llamaindex/azure':
specifier: ^0.1.3 specifier: ^0.1.4
version: link:../packages/providers/storage/azure version: link:../packages/providers/storage/azure
'@llamaindex/chroma': '@llamaindex/chroma':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/storage/chroma version: link:../packages/providers/storage/chroma
'@llamaindex/clip': '@llamaindex/clip':
specifier: ^0.0.39 specifier: ^0.0.40
version: link:../packages/providers/clip version: link:../packages/providers/clip
'@llamaindex/cloud': '@llamaindex/cloud':
specifier: ^3.0.4 specifier: ^3.0.5
version: link:../packages/cloud version: link:../packages/cloud
'@llamaindex/cohere': '@llamaindex/cohere':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/cohere version: link:../packages/providers/cohere
'@llamaindex/core': '@llamaindex/core':
specifier: ^0.5.3 specifier: ^0.5.4
version: link:../packages/core version: link:../packages/core
'@llamaindex/deepinfra': '@llamaindex/deepinfra':
specifier: ^0.0.39 specifier: ^0.0.40
version: link:../packages/providers/deepinfra version: link:../packages/providers/deepinfra
'@llamaindex/env': '@llamaindex/env':
specifier: ^0.1.28 specifier: ^0.1.28
version: link:../packages/env version: link:../packages/env
'@llamaindex/firestore': '@llamaindex/firestore':
specifier: ^1.0.1 specifier: ^1.0.2
version: link:../packages/providers/storage/firestore version: link:../packages/providers/storage/firestore
'@llamaindex/google': '@llamaindex/google':
specifier: ^0.0.10 specifier: ^0.0.11
version: link:../packages/providers/google version: link:../packages/providers/google
'@llamaindex/groq': '@llamaindex/groq':
specifier: ^0.0.54 specifier: ^0.0.55
version: link:../packages/providers/groq version: link:../packages/providers/groq
'@llamaindex/huggingface': '@llamaindex/huggingface':
specifier: ^0.0.39 specifier: ^0.0.40
version: link:../packages/providers/huggingface version: link:../packages/providers/huggingface
'@llamaindex/milvus': '@llamaindex/milvus':
specifier: ^0.1.3 specifier: ^0.1.4
version: link:../packages/providers/storage/milvus version: link:../packages/providers/storage/milvus
'@llamaindex/mistral': '@llamaindex/mistral':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/mistral version: link:../packages/providers/mistral
'@llamaindex/mixedbread': '@llamaindex/mixedbread':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/mixedbread version: link:../packages/providers/mixedbread
'@llamaindex/mongodb': '@llamaindex/mongodb':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/storage/mongodb version: link:../packages/providers/storage/mongodb
'@llamaindex/node-parser': '@llamaindex/node-parser':
specifier: ^1.0.3 specifier: ^1.0.4
version: link:../packages/node-parser version: link:../packages/node-parser
'@llamaindex/ollama': '@llamaindex/ollama':
specifier: ^0.0.43 specifier: ^0.0.44
version: link:../packages/providers/ollama version: link:../packages/providers/ollama
'@llamaindex/openai': '@llamaindex/openai':
specifier: ^0.1.55 specifier: ^0.1.56
version: link:../packages/providers/openai version: link:../packages/providers/openai
'@llamaindex/pinecone': '@llamaindex/pinecone':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/storage/pinecone version: link:../packages/providers/storage/pinecone
'@llamaindex/portkey-ai': '@llamaindex/portkey-ai':
specifier: ^0.0.36 specifier: ^0.0.37
version: link:../packages/providers/portkey-ai version: link:../packages/providers/portkey-ai
'@llamaindex/postgres': '@llamaindex/postgres':
specifier: ^0.0.36 specifier: ^0.0.37
version: link:../packages/providers/storage/postgres version: link:../packages/providers/storage/postgres
'@llamaindex/qdrant': '@llamaindex/qdrant':
specifier: ^0.1.3 specifier: ^0.1.4
version: link:../packages/providers/storage/qdrant version: link:../packages/providers/storage/qdrant
'@llamaindex/readers': '@llamaindex/readers':
specifier: ^2.0.3 specifier: ^2.0.4
version: link:../packages/readers version: link:../packages/readers
'@llamaindex/replicate': '@llamaindex/replicate':
specifier: ^0.0.36 specifier: ^0.0.37
version: link:../packages/providers/replicate version: link:../packages/providers/replicate
'@llamaindex/upstash': '@llamaindex/upstash':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/storage/upstash version: link:../packages/providers/storage/upstash
'@llamaindex/vercel': '@llamaindex/vercel':
specifier: ^0.0.14 specifier: ^0.0.15
version: link:../packages/providers/vercel version: link:../packages/providers/vercel
'@llamaindex/vllm': '@llamaindex/vllm':
specifier: ^0.0.25 specifier: ^0.0.26
version: link:../packages/providers/vllm version: link:../packages/providers/vllm
'@llamaindex/voyage-ai': '@llamaindex/voyage-ai':
specifier: ^1.0.0 specifier: ^1.0.1
version: link:../packages/providers/voyage-ai version: link:../packages/providers/voyage-ai
'@llamaindex/weaviate': '@llamaindex/weaviate':
specifier: ^0.0.8 specifier: ^0.0.9
version: link:../packages/providers/storage/weaviate version: link:../packages/providers/storage/weaviate
'@llamaindex/workflow': '@llamaindex/workflow':
specifier: ^0.0.11 specifier: ^0.0.11
@@ -719,7 +719,7 @@ importers:
specifier: ^1.0.14 specifier: ^1.0.14
version: 1.0.18 version: 1.0.18
llamaindex: llamaindex:
specifier: ^0.9.4 specifier: ^0.9.5
version: link:../packages/llamaindex version: link:../packages/llamaindex
mongodb: mongodb:
specifier: 6.7.0 specifier: 6.7.0
+12
View File
@@ -1,5 +1,17 @@
# @llamaindex/unit-test # @llamaindex/unit-test
## 0.1.5
### Patch Changes
- Updated dependencies [ad3c7f1]
- @llamaindex/core@0.5.4
- @llamaindex/cloud@3.0.5
- llamaindex@0.9.5
- @llamaindex/node-parser@1.0.4
- @llamaindex/openai@0.1.56
- @llamaindex/readers@2.0.4
## 0.1.4 ## 0.1.4
### Patch Changes ### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@llamaindex/unit-test", "name": "@llamaindex/unit-test",
"private": true, "private": true,
"version": "0.1.4", "version": "0.1.5",
"type": "module", "type": "module",
"scripts": { "scripts": {
"test": "vitest run" "test": "vitest run"