From cf675bdc7a9d64dbdc7e7fc12f5f83f1bee711f5 Mon Sep 17 00:00:00 2001 From: Alex Yang <himself65@outlook.com> Date: Sun, 10 Nov 2024 16:43:45 -0800 Subject: [PATCH] chore: bump version (#1458) --- package.json | 6 ------ packages/core/src/agent/base.ts | 7 ++++++- packages/llamaindex/package.json | 2 +- pnpm-lock.yaml | 33 ++++++++++++++++++++++++++------ 4 files changed, 34 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index 2ac6d8c68..b2f3151f9 100644 --- a/package.json +++ b/package.json @@ -35,12 +35,6 @@ "typescript-eslint": "^8.13.0" }, "packageManager": "pnpm@9.12.3", - "pnpm": { - "overrides": { - "trim": "1.0.1", - "protobufjs": "7.2.6" - } - }, "lint-staged": { "(!apps/docs/i18n/**/docusaurus-plugin-content-docs/current/api/*).{js,jsx,ts,tsx,md}": "prettier --write" } diff --git a/packages/core/src/agent/base.ts b/packages/core/src/agent/base.ts index 7ee77c55a..15227f18a 100644 --- a/packages/core/src/agent/base.ts +++ b/packages/core/src/agent/base.ts @@ -398,7 +398,12 @@ export abstract class AgentRunner< return output.pipeThrough( new TransformStream<EngineResponse>({ transform(chunk, controller) { - controller.enqueue(EngineResponse.fromChatResponseChunk(chunk)); + controller.enqueue( + EngineResponse.fromChatResponseChunk( + chunk, + chunk.sourceNodes, + ), + ); }, }), ); diff --git a/packages/llamaindex/package.json b/packages/llamaindex/package.json index 0d29a5531..e513c0fa9 100644 --- a/packages/llamaindex/package.json +++ b/packages/llamaindex/package.json @@ -29,7 +29,7 @@ "@discoveryjs/json-ext": "^0.6.1", "@google-cloud/vertexai": "1.2.0", "@google/generative-ai": "0.12.0", - "@grpc/grpc-js": "^1.11.1", + "@grpc/grpc-js": "^1.12.2", "@llamaindex/anthropic": "workspace:*", "@llamaindex/clip": "workspace:*", "@llamaindex/cloud": "workspace:*", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ec6904a27..1dfaa1ba6 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4,10 +4,6 @@ settings: autoInstallPeers: true excludeLinksFromLockfile: false -overrides: - trim: 1.0.1 - protobufjs: 7.2.6 - importers: .: @@ -983,7 +979,7 @@ importers: specifier: 0.12.0 version: 0.12.0 '@grpc/grpc-js': - specifier: ^1.11.1 + specifier: ^1.12.2 version: 1.12.2 '@llamaindex/anthropic': specifier: workspace:* @@ -5379,6 +5375,9 @@ packages: '@types/lodash@4.17.13': resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==} + '@types/long@4.0.2': + resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} + '@types/mdast@3.0.15': resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} @@ -10819,6 +10818,10 @@ packages: proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} + protobufjs@6.11.4: + resolution: {integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==} + hasBin: true + protobufjs@7.2.6: resolution: {integrity: sha512-dgJaEDDL6x8ASUZ1YqWciTRrdOuYNzoOf27oHNfdyvKqHr5i0FV7FSLU+aIeFjyFgVxrpTOtQUi0BLLBymZaBw==} engines: {node: '>=12.0.0'} @@ -18258,6 +18261,8 @@ snapshots: '@types/lodash@4.17.13': {} + '@types/long@4.0.2': {} + '@types/mdast@3.0.15': dependencies: '@types/unist': 2.0.11 @@ -24242,7 +24247,7 @@ snapshots: onnx-proto@4.0.4: dependencies: - protobufjs: 7.2.6 + protobufjs: 6.11.4 onnxruntime-common@1.14.0: {} @@ -25014,6 +25019,22 @@ snapshots: proto-list@1.2.4: {} + protobufjs@6.11.4: + dependencies: + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/long': 4.0.2 + '@types/node': 22.9.0 + long: 4.0.0 + protobufjs@7.2.6: dependencies: '@protobufjs/aspromise': 1.1.2 -- GitLab