@assistant-ui/react 0.5.90 → 0.5.92
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/{chunk-C57XMNDQ.mjs → chunk-R4FHI4M6.mjs} +13 -8
- package/dist/chunk-R4FHI4M6.mjs.map +1 -0
- package/dist/{chunk-MRIZ4RHI.js → chunk-YIOTOSE3.js} +13 -8
- package/dist/chunk-YIOTOSE3.js.map +1 -0
- package/dist/{edge-Bycfnl_J.d.mts → edge-C6fKBzDz.d.mts} +3 -0
- package/dist/{edge-Bycfnl_J.d.ts → edge-C6fKBzDz.d.ts} +3 -0
- package/dist/edge.d.mts +3 -0
- package/dist/edge.d.ts +3 -0
- package/dist/edge.js +10 -5
- package/dist/edge.js.map +1 -1
- package/dist/edge.mjs +10 -5
- package/dist/edge.mjs.map +1 -1
- package/dist/index.d.mts +27 -10
- package/dist/index.d.ts +27 -10
- package/dist/index.js +23 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -4
- package/dist/index.mjs.map +1 -1
- package/dist/tailwindcss/index.js +287 -12
- package/dist/tailwindcss/index.js.map +1 -1
- package/dist/tailwindcss/index.mjs +287 -12
- package/dist/tailwindcss/index.mjs.map +1 -1
- package/package.json +5 -4
- package/dist/chunk-C57XMNDQ.mjs.map +0 -1
- package/dist/chunk-MRIZ4RHI.js.map +0 -1
package/dist/index.mjs
CHANGED
@@ -10,7 +10,7 @@ import {
|
|
10
10
|
toLanguageModelMessages,
|
11
11
|
toLanguageModelTools,
|
12
12
|
toolResultStream
|
13
|
-
} from "./chunk-
|
13
|
+
} from "./chunk-R4FHI4M6.mjs";
|
14
14
|
import {
|
15
15
|
__export
|
16
16
|
} from "./chunk-BJPOCE4O.mjs";
|
@@ -4232,7 +4232,12 @@ var EdgeChatAdapter = class {
|
|
4232
4232
|
constructor(options) {
|
4233
4233
|
this.options = options;
|
4234
4234
|
}
|
4235
|
-
async *run({
|
4235
|
+
async *run({
|
4236
|
+
messages: messages2,
|
4237
|
+
abortSignal,
|
4238
|
+
config,
|
4239
|
+
unstable_assistantMessageId
|
4240
|
+
}) {
|
4236
4241
|
const headers = new Headers(this.options.headers);
|
4237
4242
|
headers.set("Content-Type", "application/json");
|
4238
4243
|
const result = await fetch(this.options.api, {
|
@@ -4241,8 +4246,11 @@ var EdgeChatAdapter = class {
|
|
4241
4246
|
credentials: this.options.credentials ?? "same-origin",
|
4242
4247
|
body: JSON.stringify({
|
4243
4248
|
system: config.system,
|
4244
|
-
messages: toCoreMessages(messages2
|
4249
|
+
messages: toCoreMessages(messages2, {
|
4250
|
+
unstable_includeId: this.options.unstable_sendMessageIds
|
4251
|
+
}),
|
4245
4252
|
tools: config.tools ? toLanguageModelTools(config.tools) : [],
|
4253
|
+
unstable_assistantMessageId,
|
4246
4254
|
...config.callSettings,
|
4247
4255
|
...config.config,
|
4248
4256
|
...this.options.body
|
@@ -4577,7 +4585,8 @@ var LocalThreadRuntimeCore = class extends BaseThreadRuntimeCore {
|
|
4577
4585
|
messages: messages2,
|
4578
4586
|
abortSignal: this.abortController.signal,
|
4579
4587
|
config: this.getModelConfig(),
|
4580
|
-
onUpdate: updateMessage
|
4588
|
+
onUpdate: updateMessage,
|
4589
|
+
unstable_assistantMessageId: message.id
|
4581
4590
|
});
|
4582
4591
|
if (Symbol.asyncIterator in promiseOrGenerator) {
|
4583
4592
|
for await (const r of promiseOrGenerator) {
|