usebeeline 0.0.72 → 0.0.84
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/usebeeline.mjs +4 -4
- package/package.json +1 -1
package/dist/usebeeline.mjs
CHANGED
|
@@ -21382,8 +21382,6 @@ var MonolithRoomTurnLoop = class {
|
|
|
21382
21382
|
const buildPrompt = () => [
|
|
21383
21383
|
this.turnInstructionPrefix,
|
|
21384
21384
|
WarmTranscript.render(this.warmTranscript.select(this.sessionId, transcriptRows), "Room conversation so far:", "New in the Room since your last turn (the earlier conversation is already in this session):"),
|
|
21385
|
-
`Newest message from ${inboxItemAuthorName(item, this.agent.publicKey, names)}:`,
|
|
21386
|
-
roomMessagePrompt("", inboxItemPromptBody(item, this.agent.publicKey), item.attachments, delivered, this.acceptsImages()),
|
|
21387
21385
|
grantDecision ? [
|
|
21388
21386
|
"This is the answer to your grant request; your paused work resumes now.",
|
|
21389
21387
|
"If it was approved and it is a command grant, run it with run_granted_command and the exact argv.",
|
|
@@ -21393,9 +21391,11 @@ var MonolithRoomTurnLoop = class {
|
|
|
21393
21391
|
[
|
|
21394
21392
|
"Write only the substantive Room message you want the human to read.",
|
|
21395
21393
|
"Do not repeat or paraphrase these instructions.",
|
|
21396
|
-
"If the
|
|
21394
|
+
"If the current task is only a nudge to respond, answer the most recent unanswered human message in the conversation instead of echoing the nudge.",
|
|
21397
21395
|
MAINTAIN_ASSIGNED_IDENTITY_DIRECTIVE
|
|
21398
|
-
].join(" ")
|
|
21396
|
+
].join(" "),
|
|
21397
|
+
`Current task selected by the server from ${inboxItemAuthorName(item, this.agent.publicKey, names)}:`,
|
|
21398
|
+
roomMessagePrompt("", inboxItemPromptBody(item, this.agent.publicKey), item.attachments, delivered, this.acceptsImages())
|
|
21399
21399
|
].filter(Boolean).join("\n\n");
|
|
21400
21400
|
const stream = new AgentTurnStream({
|
|
21401
21401
|
api,
|