@agentscope-ai/agentscope 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent/index.d.mts +7 -7
- package/dist/agent/index.d.ts +7 -7
- package/dist/agent/index.js.map +1 -1
- package/dist/agent/index.mjs.map +1 -1
- package/dist/{base-ClilytRZ.d.mts → base-BB9eTlit.d.mts} +1 -1
- package/dist/{base-B_MQMHWr.d.mts → base-BDyDUIhj.d.mts} +3 -3
- package/dist/{base-1YVBgB4n.d.mts → base-BI5s2ksj.d.mts} +2 -2
- package/dist/{base-ChWjyzPL.d.ts → base-CFDeoJRe.d.ts} +2 -2
- package/dist/{base-CY4DMBH1.d.ts → base-DHtZCg94.d.ts} +1 -1
- package/dist/{base-BherSLRs.d.ts → base-qmU135_k.d.ts} +3 -3
- package/dist/{block-B72uPF1H.d.mts → block-BqWf-Qcb.d.mts} +15 -1
- package/dist/{block-B72uPF1H.d.ts → block-BqWf-Qcb.d.ts} +15 -1
- package/dist/event/index.d.mts +1 -14
- package/dist/event/index.d.ts +1 -14
- package/dist/formatter/index.d.mts +3 -3
- package/dist/formatter/index.d.ts +3 -3
- package/dist/formatter/index.js.map +1 -1
- package/dist/formatter/index.mjs.map +1 -1
- package/dist/{index-BNfyKbQN.d.ts → index-9YC8onn7.d.ts} +1 -1
- package/dist/{index-UQCwdfet.d.mts → index-DpRGxYeT.d.mts} +1 -1
- package/dist/mcp/index.d.mts +2 -2
- package/dist/mcp/index.d.ts +2 -2
- package/dist/message/index.d.mts +2 -2
- package/dist/message/index.d.ts +2 -2
- package/dist/message/index.js +17 -1
- package/dist/message/index.js.map +1 -1
- package/dist/message/index.mjs +17 -1
- package/dist/message/index.mjs.map +1 -1
- package/dist/{message-DgpfAaHK.d.mts → message-D-LObC06.d.mts} +1 -1
- package/dist/{message-CPZd0NIc.d.ts → message-DU0_qm3u.d.ts} +1 -1
- package/dist/model/index.d.mts +5 -5
- package/dist/model/index.d.ts +5 -5
- package/dist/model/index.js.map +1 -1
- package/dist/model/index.mjs.map +1 -1
- package/dist/storage/index.d.mts +3 -3
- package/dist/storage/index.d.ts +3 -3
- package/dist/tool/index.d.mts +4 -4
- package/dist/tool/index.d.ts +4 -4
- package/dist/{toolkit-DeOlul5Y.d.ts → toolkit-CLGa-xW0.d.ts} +2 -2
- package/dist/{toolkit-jwe7NmVJ.d.mts → toolkit-DvER4yhm.d.mts} +2 -2
- package/package.json +1 -1
- package/src/message/block.ts +3 -0
- package/src/message/message.ts +19 -1
package/dist/agent/index.d.mts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { M as Msg } from '../message-
|
|
3
|
-
import { b as ToolCallBlock, C as ContentBlock, d as ToolResultBlock } from '../block-
|
|
4
|
-
import { C as ChatModelBase, a as ChatUsage, b as ChatResponse } from '../base-
|
|
5
|
-
import { a as ToolResponse } from '../index-
|
|
6
|
-
import { T as Toolkit } from '../toolkit-
|
|
2
|
+
import { M as Msg } from '../message-D-LObC06.mjs';
|
|
3
|
+
import { b as ToolCallBlock, C as ContentBlock, d as ToolResultBlock } from '../block-BqWf-Qcb.mjs';
|
|
4
|
+
import { C as ChatModelBase, a as ChatUsage, b as ChatResponse } from '../base-BDyDUIhj.mjs';
|
|
5
|
+
import { a as ToolResponse } from '../index-DpRGxYeT.mjs';
|
|
6
|
+
import { T as Toolkit } from '../toolkit-DvER4yhm.mjs';
|
|
7
7
|
import { UserConfirmResultEvent, ExternalExecutionResultEvent, AgentEvent, EventType, ToolResultTextDeltaEvent, ToolResultDataDeltaEvent, ToolResultEndEvent } from '../event/index.mjs';
|
|
8
8
|
import { a as ToolChoice } from '../index-CAxQAkiP.mjs';
|
|
9
|
-
import { S as StorageBase } from '../base-
|
|
10
|
-
import '../base-
|
|
9
|
+
import { S as StorageBase } from '../base-BB9eTlit.mjs';
|
|
10
|
+
import '../base-BI5s2ksj.mjs';
|
|
11
11
|
import '@modelcontextprotocol/sdk/client/index.js';
|
|
12
12
|
import '@modelcontextprotocol/sdk/client/sse.js';
|
|
13
13
|
import '@modelcontextprotocol/sdk/client/streamableHttp.js';
|
package/dist/agent/index.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { M as Msg } from '../message-
|
|
3
|
-
import { b as ToolCallBlock, C as ContentBlock, d as ToolResultBlock } from '../block-
|
|
4
|
-
import { C as ChatModelBase, a as ChatUsage, b as ChatResponse } from '../base-
|
|
5
|
-
import { a as ToolResponse } from '../index-
|
|
6
|
-
import { T as Toolkit } from '../toolkit-
|
|
2
|
+
import { M as Msg } from '../message-DU0_qm3u.js';
|
|
3
|
+
import { b as ToolCallBlock, C as ContentBlock, d as ToolResultBlock } from '../block-BqWf-Qcb.js';
|
|
4
|
+
import { C as ChatModelBase, a as ChatUsage, b as ChatResponse } from '../base-qmU135_k.js';
|
|
5
|
+
import { a as ToolResponse } from '../index-9YC8onn7.js';
|
|
6
|
+
import { T as Toolkit } from '../toolkit-CLGa-xW0.js';
|
|
7
7
|
import { UserConfirmResultEvent, ExternalExecutionResultEvent, AgentEvent, EventType, ToolResultTextDeltaEvent, ToolResultDataDeltaEvent, ToolResultEndEvent } from '../event/index.js';
|
|
8
8
|
import { a as ToolChoice } from '../index-CAxQAkiP.js';
|
|
9
|
-
import { S as StorageBase } from '../base-
|
|
10
|
-
import '../base-
|
|
9
|
+
import { S as StorageBase } from '../base-DHtZCg94.js';
|
|
10
|
+
import '../base-CFDeoJRe.js';
|
|
11
11
|
import '@modelcontextprotocol/sdk/client/index.js';
|
|
12
12
|
import '@modelcontextprotocol/sdk/client/sse.js';
|
|
13
13
|
import '@modelcontextprotocol/sdk/client/streamableHttp.js';
|